/* ==========================================================================
   iTick — itick.com.br
   Sistema visual. Módulos no desenho do template Techno (referência), com a
   paleta trocada para a do logo: o azul #0c5adb virou lilás e o verde-limão
   #bbf737 virou o verde-água do pingo do "i".

   Nada de CSS do template foi copiado — os módulos foram reconstruídos.
   Ordem dos blocos: base → cabeçalho → herói → módulos → rodapé → utilidades.
   ========================================================================== */

/* ----- Fonte ------------------------------------------------------------ */
/* Mulish (sucessora da Muli, que o Techno usa), self-hosted. Sem CDN: é uma
   dependência a menos no caminho da primeira pintura. */
@font-face {
  font-family: "Mulish";
  src: url("../fonts/mulish-latin.woff2") format("woff2");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC,
                 U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Mulish";
  src: url("../fonts/mulish-latin-ext.woff2") format("woff2");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
                 U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF,
                 U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ----- Escala ----------------------------------------------------------- */
:root {
  --itk-lilas-50:  #f6f3ff;
  --itk-lilas-100: #ede9fe;
  --itk-lilas-200: #ddd6fe;
  --itk-lilas-300: #c4b5fd;
  --itk-lilas-400: #a78bfa;
  --itk-lilas-500: #8b5cf6;
  --itk-lilas-600: #7c3aed;
  --itk-lilas-700: #6d28d9;
  --itk-lilas-800: #5b21b6;
  --itk-lilas-900: #4c1d95;
  --itk-lilas-950: #2e1065;

  /* O verde vem do pingo do "i". Acento, nunca cor de botão principal. */
  --itk-verde: #34d399;
  --itk-agua:  #2dd4bf;

  --itk-ink:   #1c1523;
  --itk-body:  #5f5870;
  --itk-muted: #8b8399;
  --itk-line:  #e9e5f2;
  --itk-soft:  #f6f4fc;
  --itk-white: #ffffff;

  --itk-grad:        linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
  --itk-grad-deep:   linear-gradient(135deg, #4c1d95 0%, #7c3aed 100%);
  --itk-grad-accent: linear-gradient(135deg, #34d399 0%, #2dd4bf 100%);

  --itk-radius:   14px;
  --itk-radius-g: 24px;

  --itk-shadow:   0 1px 2px rgba(28, 21, 35, .04), 0 10px 30px rgba(28, 21, 35, .06);
  --itk-shadow-g: 0 4px 12px rgba(28, 21, 35, .06), 0 24px 60px rgba(28, 21, 35, .10);
  --itk-shadow-l: 0 10px 30px rgba(124, 58, 237, .30);

  --itk-header: 84px;
}

/* ----- Base ------------------------------------------------------------- */
* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--itk-header) + 20px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--itk-body);
  background: var(--itk-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 .6em;
  color: var(--itk-ink);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -.022em;
}
h1 { font-size: clamp(2.1rem, 4.6vw, 3.3rem); line-height: 1.1; letter-spacing: -.03em; }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.6rem); letter-spacing: -.028em; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.13rem; }
h5 { font-size: 1rem; }
h6 { font-size: .88rem; }

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--itk-lilas-700); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--itk-lilas-800); }

img { max-width: 100%; height: auto; }

ul { margin: 0; padding: 0; }
li { list-style: none; }

:focus-visible {
  outline: 3px solid var(--itk-lilas-500);
  outline-offset: 3px;
  border-radius: 6px;
}

::selection { background: var(--itk-lilas-200); color: var(--itk-ink); }

/* Espaçamentos verticais das seções — a régua do site inteiro. */
.itk-sec    { padding: clamp(64px, 8vw, 110px) 0; }
.itk-sec-sm { padding: clamp(48px, 6vw, 80px) 0; }
.bg-soft    { background: var(--itk-soft); }
.bg-deep    { background: var(--itk-lilas-950); color: rgba(255,255,255,.78); }
.bg-deep h1, .bg-deep h2, .bg-deep h3, .bg-deep h4, .bg-deep h5 { color: #fff; }

/* Pula pro conteúdo — primeiro Tab da página. */
.itk-skip {
  position: absolute;
  left: 16px; top: -120px;
  z-index: 2000;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--itk-white);
  box-shadow: var(--itk-shadow-g);
  font-weight: 700;
  transition: top .2s ease;
}
.itk-skip:focus { top: 16px; }

/* ----- Preloader -------------------------------------------------------- */
/* Sai sozinho no load; se o JS falhar, o CSS o esconde depois de 3s pra que
   ele nunca cubra o site inteiro. */
.itk-loader {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--itk-white);
  animation: itk-loader-out 0s linear 3s forwards;
}
.itk-loader.saiu { opacity: 0; visibility: hidden; transition: opacity .4s ease, visibility .4s ease; }
.itk-loader-mark {
  width: 46px; height: 46px;
  border-radius: 999px 999px 999px 6px;
  background: var(--itk-grad-accent);
  animation: itk-pulsa 1.1s ease-in-out infinite;
}
@keyframes itk-pulsa {
  0%, 100% { transform: scale(.72) rotate(0deg);   opacity: .5; }
  50%      { transform: scale(1)   rotate(-12deg); opacity: 1; }
}
@keyframes itk-loader-out { to { opacity: 0; visibility: hidden; } }

/* ----- Barra superior --------------------------------------------------- */
.itk-topbar {
  background: var(--itk-lilas-950);
  color: rgba(255, 255, 255, .72);
  font-size: .84rem;
}
.itk-topbar a { color: rgba(255, 255, 255, .82); }
.itk-topbar a:hover { color: var(--itk-verde); }
.itk-topbar-in {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
}
.itk-topbar-list { display: flex; flex-wrap: wrap; gap: 22px; align-items: center; }
.itk-topbar-list li { display: flex; align-items: center; gap: 8px; }
.itk-topbar svg { width: 15px; height: 15px; color: var(--itk-verde); flex-shrink: 0; }

/* ----- Cabeçalho -------------------------------------------------------- */
.itk-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--itk-white);
  border-bottom: 1px solid var(--itk-line);
  transition: box-shadow .3s ease, background .3s ease;
}
.itk-header.grudou { box-shadow: 0 6px 24px rgba(28, 21, 35, .08); }
.itk-header-in {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: var(--itk-header);
}

.itk-brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.itk-brand img { height: 34px; width: auto; display: block; }

.itk-nav { margin-left: auto; }
.itk-nav > ul { display: flex; align-items: center; gap: 4px; }
.itk-nav > ul > li { position: relative; }
.itk-nav > ul > li > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 15px;
  color: var(--itk-ink);
  font-size: .96rem;
  font-weight: 700;
  letter-spacing: -.01em;
  border-radius: 10px;
}
.itk-nav > ul > li > a:hover,
.itk-nav > ul > li.ativo > a { color: var(--itk-lilas-700); background: var(--itk-lilas-50); }
.itk-nav .seta { width: 11px; height: 11px; opacity: .5; }

/* Submenu — abre no hover no desktop, no clique no celular. */
.itk-sub {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 244px;
  padding: 10px;
  background: var(--itk-white);
  border: 1px solid var(--itk-line);
  border-radius: var(--itk-radius);
  box-shadow: var(--itk-shadow-g);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
}
.itk-nav > ul > li:hover > .itk-sub,
.itk-nav > ul > li:focus-within > .itk-sub {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.itk-sub a {
  display: block;
  padding: 9px 14px;
  border-radius: 9px;
  color: var(--itk-body);
  font-size: .93rem;
  font-weight: 600;
}
.itk-sub a:hover { background: var(--itk-lilas-50); color: var(--itk-lilas-700); }

.itk-header-acoes { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.itk-burger {
  display: none;
  width: 46px; height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--itk-line);
  border-radius: 12px;
  background: var(--itk-white);
  cursor: pointer;
  padding: 0;
}
.itk-burger span { display: block; position: relative; width: 20px; height: 2px; border-radius: 2px; background: var(--itk-ink); transition: background .2s; }
.itk-burger span::before,
.itk-burger span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2px;
  border-radius: 2px; background: var(--itk-ink);
  transition: transform .25s ease, top .25s ease;
}
.itk-burger span::before { top: -7px; }
.itk-burger span::after  { top: 7px; }
.itk-burger[aria-expanded="true"] span { background: transparent; }
.itk-burger[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.itk-burger[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

/* ----- Botões ----------------------------------------------------------- */
.itk-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: inherit;
  font-size: .97rem;
  font-weight: 800;
  letter-spacing: -.01em;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease,
              border-color .25s ease, color .25s ease;
}
.itk-btn svg { width: 17px; height: 17px; flex-shrink: 0; }
.itk-btn:hover { transform: translateY(-3px); }
.itk-btn:active { transform: translateY(-1px); }

.itk-btn-1 { background: var(--itk-grad); color: #fff; box-shadow: var(--itk-shadow-l); }
.itk-btn-1:hover { color: #fff; box-shadow: 0 16px 36px rgba(124, 58, 237, .38); }

.itk-btn-2 {
  background: var(--itk-white);
  color: var(--itk-ink);
  border-color: var(--itk-line);
  box-shadow: var(--itk-shadow);
}
.itk-btn-2:hover { color: var(--itk-lilas-700); border-color: var(--itk-lilas-300); }

.itk-btn-3 {
  background: var(--itk-grad-accent);
  color: #06342a;
  box-shadow: 0 10px 26px rgba(45, 212, 191, .32);
}
.itk-btn-3:hover { color: #06342a; box-shadow: 0 16px 34px rgba(45, 212, 191, .4); }

.itk-btn-branco {
  background: rgba(255, 255, 255, .12);
  color: #fff;
  border-color: rgba(255, 255, 255, .38);
  backdrop-filter: blur(6px);
}
.itk-btn-branco:hover { color: #fff; background: rgba(255, 255, 255, .22); }

.itk-btn-sm { padding: 10px 20px; font-size: .9rem; }
.itk-btn-lg { padding: 17px 34px; font-size: 1.03rem; }

/* Link com seta que anda no hover. */
.itk-link-seta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: .95rem;
  color: var(--itk-lilas-700);
}
.itk-link-seta svg { width: 16px; height: 16px; transition: transform .25s ease; }
.itk-link-seta:hover svg { transform: translateX(5px); }

/* ----- Título de seção -------------------------------------------------- */
/* Sub-título em caixa alta, título grande e a barrinha — o mesmo trio do
   Techno, que é o que dá ritmo entre uma seção e outra. */
.itk-titulo { margin-bottom: 54px; }
.itk-titulo.centro { text-align: center; margin-inline: auto; max-width: 760px; }
.itk-titulo .sub {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  padding: 7px 16px 7px 12px;
  border-radius: 999px;
  background: var(--itk-lilas-50);
  color: var(--itk-lilas-700);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.itk-titulo .sub::before {
  content: "";
  width: 9px; height: 9px;
  border-radius: 999px 999px 999px 2px;
  background: var(--itk-grad-accent);
  flex-shrink: 0;
}
.itk-titulo h2 { margin-bottom: 18px; text-wrap: balance; }
.itk-titulo p { font-size: 1.06rem; max-width: 62ch; margin-bottom: 0; }
.itk-titulo.centro p { margin-inline: auto; }

/* A barrinha animada embaixo do título. */
.itk-bar { position: relative; width: 82px; height: 4px; border-radius: 4px; background: var(--itk-lilas-100); margin-top: 22px; overflow: hidden; }
.itk-titulo.centro .itk-bar { margin-inline: auto; }
.itk-bar::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 34px; height: 100%;
  border-radius: 4px;
  background: var(--itk-grad-accent);
  animation: itk-bar-anda 2.6s ease-in-out infinite;
}
@keyframes itk-bar-anda {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(48px); }
}
.bg-deep .itk-titulo .sub { background: rgba(255,255,255,.1); color: #fff; }
.bg-deep .itk-titulo p { color: rgba(255,255,255,.76); }
.bg-deep .itk-bar { background: rgba(255,255,255,.18); }

/* ----- Herói ------------------------------------------------------------ */
.itk-hero {
  position: relative;
  padding: clamp(56px, 7vw, 96px) 0 clamp(64px, 8vw, 104px);
  background: linear-gradient(168deg, var(--itk-lilas-50) 0%, #fff 62%);
  overflow: hidden;
}
/* Duas manchas de cor atrás do conteúdo. Decorativas, fora do fluxo. */
.itk-hero::before,
.itk-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}
.itk-hero::before {
  top: -220px; right: -140px;
  width: 620px; height: 620px;
  background: radial-gradient(closest-side, rgba(167, 139, 250, .38), transparent 72%);
}
.itk-hero::after {
  bottom: -260px; left: -180px;
  width: 560px; height: 560px;
  background: radial-gradient(closest-side, rgba(52, 211, 153, .26), transparent 72%);
}
.itk-hero > .container { position: relative; z-index: 2; }

.itk-hero h1 { margin-bottom: 22px; }
/* CADA FRASE NA SUA LINHA, sem depender de onde o texto quebraria sozinho.
   A do meio precisa continuar em linha para "para" e a palavra que gira
   ficarem lado a lado — daí ela ser block com o filho inline-block. */
.itk-hero h1 .itk-linha { display: block; text-wrap: balance; }
.itk-hero .chamada { font-size: clamp(1.05rem, 1.6vw, 1.2rem); max-width: 36em; margin-bottom: 34px; }

/* Texto que troca sozinho no h1 — "shows", "corridas", "congressos"... */
.itk-troca {
  position: relative;
  display: inline-block;
  min-width: 5ch;
  color: var(--itk-lilas-700);
}
.itk-troca .palavra {
  display: inline-block;
  animation: itk-troca-in .5s cubic-bezier(.22, .9, .32, 1) both;
}
@keyframes itk-troca-in {
  from { opacity: 0; transform: translateY(14px) rotateX(-40deg); }
  to   { opacity: 1; transform: none; }
}

.itk-hero-selos { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.itk-hero-selos li {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--itk-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  font-size: .87rem;
  font-weight: 700;
  color: var(--itk-body);
}
.itk-hero-selos svg { width: 15px; height: 15px; color: var(--itk-verde); flex-shrink: 0; }

/* Telefone desenhado em HTML — é a tela de exemplo, e muda junto com o
   produto. Um PNG envelheceria escondido. */
.itk-fone {
  position: relative;
  width: min(320px, 100%);
  margin-inline: auto;
  padding: 12px;
  border-radius: 42px;
  background: linear-gradient(160deg, #342a44, var(--itk-ink));
  box-shadow: 0 34px 80px rgba(28, 21, 35, .30);
  animation: itk-flutua 6s ease-in-out infinite;
}
@keyframes itk-flutua {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
.itk-fone::after {
  content: "";
  position: absolute;
  top: 25px; left: 50%;
  width: 88px; height: 6px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(255, 255, 255, .16);
}
.itk-tela { border-radius: 31px; background: #fff; overflow: hidden; }
.itk-tela-topo { padding: 36px 20px 20px; background: var(--itk-grad); color: #fff; }
.itk-tela-topo .evento { font-size: 1.14rem; font-weight: 800; line-height: 1.25; letter-spacing: -.02em; }
.itk-tela-topo .quando { font-size: .82rem; opacity: .86; margin-top: 4px; }
.itk-tela-corpo { padding: 16px; }
.itk-lote {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 12px 14px; margin-bottom: 10px;
  border: 1px solid var(--itk-line);
  border-radius: 13px;
}
.itk-lote.ativo { border-color: var(--itk-lilas-300); background: var(--itk-lilas-50); }
.itk-lote.esgotado { opacity: .5; }
.itk-lote.esgotado .preco { text-decoration: line-through; }
.itk-lote .nome { font-weight: 800; font-size: .93rem; color: var(--itk-ink); }
.itk-lote .nota { font-size: .74rem; color: var(--itk-muted); }
.itk-lote .preco { font-weight: 800; font-size: .96rem; color: var(--itk-ink); white-space: nowrap; }
.itk-tela-botao {
  margin-top: 12px; padding: 13px;
  border-radius: 999px;
  background: var(--itk-grad);
  color: #fff;
  text-align: center;
  font-weight: 800;
  font-size: .93rem;
}
.itk-tela-pe { margin-top: 12px; text-align: center; font-size: .74rem; color: var(--itk-muted); }

/* Etiquetas que flutuam ao redor do telefone. */
.itk-fone-tag {
  position: absolute;
  display: flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--itk-line);
  box-shadow: var(--itk-shadow-g);
  font-size: .82rem;
  font-weight: 800;
  color: var(--itk-ink);
  white-space: nowrap;
  z-index: 3;
}
.itk-fone-tag svg { width: 15px; height: 15px; flex-shrink: 0; }
.itk-fone-tag.t1 { top: 76px;  left: -56px;  animation: itk-flutua 5s ease-in-out infinite .4s; }
.itk-fone-tag.t2 { bottom: 128px; right: -46px; animation: itk-flutua 5.6s ease-in-out infinite .9s; }
.itk-fone-tag.t3 { bottom: 34px; left: -40px;  animation: itk-flutua 6.2s ease-in-out infinite .2s; }
.itk-fone-tag .ok { color: var(--itk-verde); }
.itk-fone-tag .lil { color: var(--itk-lilas-600); }

/* ----- Flipbox (cartão que vira) ---------------------------------------- */
/* Frente com ícone e título; costas com a explicação. É o módulo de destaque
   do Techno logo abaixo do herói. */
.itk-flip { perspective: 1000px; height: 100%; }
.itk-flip-in {
  position: relative;
  height: 100%;
  min-height: 238px;
  transition: transform .7s cubic-bezier(.22, .9, .32, 1);
  transform-style: preserve-3d;
}
.itk-flip:hover .itk-flip-in,
.itk-flip:focus-within .itk-flip-in { transform: rotateY(180deg); }
.itk-flip-face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 26px;
  border-radius: var(--itk-radius-g);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.itk-flip-frente {
  background: var(--itk-white);
  border: 1px solid var(--itk-line);
  box-shadow: var(--itk-shadow);
}
.itk-flip-verso {
  background: var(--itk-grad);
  color: rgba(255, 255, 255, .9);
  transform: rotateY(180deg);
  box-shadow: var(--itk-shadow-l);
}
.itk-flip-verso h4 { color: #fff; }
.itk-flip-icone {
  display: flex; align-items: center; justify-content: center;
  width: 60px; height: 60px;
  margin-bottom: 20px;
  border-radius: 18px;
  background: var(--itk-lilas-50);
  color: var(--itk-lilas-600);
}
.itk-flip-icone svg { width: 27px; height: 27px; }
.itk-flip-face h4 { margin-bottom: 0; font-size: 1.1rem; }
.itk-flip-verso p { font-size: .95rem; margin-bottom: 0; }
.itk-flip-verso h4 { margin-bottom: 10px; }

/* ----- Cartão de recurso ------------------------------------------------ */
.itk-card {
  position: relative;
  height: 100%;
  padding: 34px 30px;
  border: 1px solid var(--itk-line);
  border-radius: var(--itk-radius-g);
  background: var(--itk-white);
  box-shadow: var(--itk-shadow);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
/* A faixa de cor que sobe do rodapé do cartão no hover. */
.itk-card::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: var(--itk-grad-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.itk-card:hover { transform: translateY(-8px); box-shadow: var(--itk-shadow-g); border-color: var(--itk-lilas-200); }
.itk-card:hover::after { transform: scaleX(1); }
.itk-card-icone {
  display: flex; align-items: center; justify-content: center;
  width: 58px; height: 58px;
  margin-bottom: 22px;
  border-radius: 17px;
  background: var(--itk-lilas-50);
  color: var(--itk-lilas-600);
  transition: background .3s ease, color .3s ease;
}
.itk-card:hover .itk-card-icone { background: var(--itk-grad); color: #fff; }
.itk-card-icone svg { width: 26px; height: 26px; }
.itk-card h4 { margin-bottom: 10px; }
.itk-card p { font-size: .97rem; margin-bottom: 0; }
.itk-card .itk-link-seta { margin-top: 18px; }

/* ----- Passos (como funciona) ------------------------------------------- */
.itk-passos { counter-reset: itk-passo; }
.itk-passo {
  position: relative;
  height: 100%;
  padding: 38px 28px 32px;
  border: 1px solid var(--itk-line);
  border-radius: var(--itk-radius-g);
  background: var(--itk-white);
  box-shadow: var(--itk-shadow);
  transition: transform .3s ease, box-shadow .3s ease;
}
.itk-passo:hover { transform: translateY(-6px); box-shadow: var(--itk-shadow-g); }
.itk-passo-n {
  counter-increment: itk-passo;
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  margin-bottom: 22px;
  border-radius: 16px;
  background: var(--itk-grad);
  color: #fff;
  font-size: 1.16rem;
  font-weight: 900;
  box-shadow: var(--itk-shadow-l);
}
.itk-passo-n::before { content: counter(itk-passo, decimal-leading-zero); }
.itk-passo h4 { margin-bottom: 10px; }
.itk-passo p { font-size: .97rem; margin-bottom: 0; }
/* A linha pontilhada que liga um passo ao seguinte. Some no último e no
   celular, onde os cartões ficam empilhados. */
.itk-passo-liga::before {
  content: "";
  position: absolute;
  top: 64px; right: -30px;
  width: 30px;
  border-top: 2px dashed var(--itk-lilas-200);
}

/* ----- Contadores ------------------------------------------------------- */
.itk-contadores {
  position: relative;
  padding: clamp(44px, 5vw, 62px) clamp(24px, 4vw, 56px);
  border-radius: 30px;
  background: var(--itk-grad-deep);
  box-shadow: 0 30px 70px rgba(76, 29, 149, .3);
  overflow: hidden;
}
.itk-contadores::before {
  content: "";
  position: absolute;
  right: -120px; top: -140px;
  width: 460px; height: 460px;
  border-radius: 999px;
  background: radial-gradient(closest-side, rgba(52, 211, 153, .34), transparent 70%);
  pointer-events: none;
}
.itk-contadores > * { position: relative; }
.itk-contador { text-align: center; color: #fff; }
.itk-contador .n {
  display: flex; align-items: baseline; justify-content: center; gap: 2px;
  font-size: clamp(2.1rem, 4.4vw, 3rem);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.itk-contador .n .suf { color: var(--itk-verde); }
.itk-contador p { margin: 6px 0 0; font-size: .93rem; color: rgba(255, 255, 255, .74); }

/* ----- Chamada com vídeo / faixa ---------------------------------------- */
.itk-chamada {
  position: relative;
  padding: clamp(56px, 7vw, 92px) clamp(28px, 5vw, 68px);
  border-radius: 32px;
  background: var(--itk-grad-deep);
  color: rgba(255, 255, 255, .86);
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(76, 29, 149, .28);
}
.itk-chamada::before {
  content: "";
  position: absolute;
  left: -160px; bottom: -180px;
  width: 520px; height: 520px;
  border-radius: 999px;
  background: radial-gradient(closest-side, rgba(45, 212, 191, .3), transparent 70%);
  pointer-events: none;
}
.itk-chamada > * { position: relative; }
.itk-chamada h2 { color: #fff; margin-bottom: 16px; }
.itk-chamada p { font-size: 1.06rem; margin-bottom: 30px; }
.itk-chamada .itk-acoes { display: flex; flex-wrap: wrap; gap: 14px; }

/* Botão de play com o anel que pulsa. */
.itk-play {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 82px; height: 82px;
  border-radius: 999px;
  background: #fff;
  color: var(--itk-lilas-700);
  box-shadow: 0 14px 36px rgba(0, 0, 0, .2);
  flex-shrink: 0;
}
.itk-play svg { width: 26px; height: 26px; margin-left: 4px; }
.itk-play::before,
.itk-play::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, .5);
  animation: itk-anel 2.6s ease-out infinite;
}
.itk-play::after { animation-delay: 1.3s; }
@keyframes itk-anel {
  0%   { transform: scale(1);   opacity: .7; }
  100% { transform: scale(1.9); opacity: 0; }
}

/* ----- Depoimentos ------------------------------------------------------ */
.itk-depo {
  height: auto;
  padding: 34px 30px;
  border: 1px solid var(--itk-line);
  border-radius: var(--itk-radius-g);
  background: var(--itk-white);
  box-shadow: var(--itk-shadow);
}
.itk-depo .aspas { width: 38px; height: 38px; color: var(--itk-lilas-200); margin-bottom: 16px; }
.itk-depo blockquote { margin: 0 0 22px; font-size: 1.03rem; color: var(--itk-ink); font-weight: 600; line-height: 1.6; }
.itk-depo footer { display: flex; align-items: center; gap: 14px; }
.itk-depo .avatar {
  width: 48px; height: 48px;
  border-radius: 999px;
  background: var(--itk-grad);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900;
  font-size: 1rem;
  flex-shrink: 0;
}
.itk-depo .quem { font-weight: 800; color: var(--itk-ink); font-size: .97rem; line-height: 1.3; }
.itk-depo .onde { font-size: .85rem; color: var(--itk-muted); }

/* ----- Carrossel (Swiper) ----------------------------------------------- */
.itk-swiper { padding-bottom: 58px !important; }
.itk-swiper .swiper-slide { height: auto; }
.itk-swiper .swiper-pagination-bullet {
  width: 9px; height: 9px;
  background: var(--itk-lilas-300);
  opacity: 1;
  transition: width .25s ease, background .25s ease;
}
.itk-swiper .swiper-pagination-bullet-active { width: 28px; border-radius: 999px; background: var(--itk-lilas-600); }
.itk-swiper-nav { display: flex; gap: 10px; }
.itk-swiper-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px;
  border: 1px solid var(--itk-line);
  border-radius: 999px;
  background: var(--itk-white);
  color: var(--itk-ink);
  cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
.itk-swiper-btn:hover { background: var(--itk-grad); color: #fff; border-color: transparent; transform: translateY(-3px); }
.itk-swiper-btn svg { width: 17px; height: 17px; }
.itk-swiper-btn.swiper-button-disabled { opacity: .4; cursor: default; transform: none; }

/* ----- Verticais (tipos de evento) -------------------------------------- */
.itk-vertical {
  position: relative;
  height: 100%;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 26px;
  border-radius: var(--itk-radius-g);
  background: var(--itk-lilas-950);
  color: rgba(255, 255, 255, .8);
  overflow: hidden;
  transition: transform .35s ease;
}
.itk-vertical::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--itk-grad-deep);
  opacity: .9;
  transition: opacity .35s ease;
}
.itk-vertical::after {
  content: "";
  position: absolute;
  right: -70px; top: -70px;
  width: 220px; height: 220px;
  border-radius: 999px;
  background: radial-gradient(closest-side, rgba(52, 211, 153, .5), transparent 70%);
  transition: transform .5s ease;
}
.itk-vertical > * { position: relative; z-index: 2; }
.itk-vertical:hover { transform: translateY(-8px); }
.itk-vertical:hover::after { transform: scale(1.35); }
.itk-vertical .ico { width: 34px; height: 34px; color: var(--itk-verde); margin-bottom: auto; }
.itk-vertical h4 { color: #fff; margin: 18px 0 8px; font-size: 1.12rem; }
.itk-vertical p { font-size: .92rem; margin: 0; }

/* ----- Lista de checagem ------------------------------------------------ */
.itk-checks li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 14px;
  font-size: 1rem;
}
.itk-checks li:last-child { margin-bottom: 0; }
.itk-checks li::before {
  content: "";
  position: absolute;
  left: 0; top: .38em;
  width: 20px; height: 20px;
  border-radius: 999px;
  background: var(--itk-grad-accent);
}
.itk-checks li::after {
  content: "";
  position: absolute;
  left: 6px; top: .72em;
  width: 7px; height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}
.itk-checks strong { color: var(--itk-ink); font-weight: 800; }
.bg-deep .itk-checks strong { color: #fff; }

/* ----- Preço / taxa ----------------------------------------------------- */
.itk-plano {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 38px 32px;
  border: 1px solid var(--itk-line);
  border-radius: var(--itk-radius-g);
  background: var(--itk-white);
  box-shadow: var(--itk-shadow);
  transition: transform .3s ease, box-shadow .3s ease;
}
.itk-plano:hover { transform: translateY(-8px); box-shadow: var(--itk-shadow-g); }
.itk-plano.destaque {
  border-color: transparent;
  background: var(--itk-grad-deep);
  color: rgba(255, 255, 255, .84);
  box-shadow: 0 24px 60px rgba(76, 29, 149, .3);
}
.itk-plano.destaque h3, .itk-plano.destaque .valor { color: #fff; }
.itk-plano.destaque .itk-checks li::before { background: #fff; }
.itk-plano.destaque .itk-checks li::after { border-color: var(--itk-lilas-700); }
.itk-plano .tag {
  position: absolute;
  top: 20px; right: 20px;
  padding: 5px 13px;
  border-radius: 999px;
  background: var(--itk-grad-accent);
  color: #06342a;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.itk-plano h3 { font-size: 1.2rem; margin-bottom: 6px; }
.itk-plano .valor { font-size: 2.2rem; font-weight: 900; letter-spacing: -.04em; color: var(--itk-ink); line-height: 1.15; }
.itk-plano .obs { font-size: .9rem; margin-bottom: 24px; }
.itk-plano .itk-checks { margin-bottom: 28px; }
.itk-plano .itk-btn { margin-top: auto; width: 100%; }

/* ----- Acordeão (perguntas) --------------------------------------------- */
.itk-acc { border: 1px solid var(--itk-line); border-radius: var(--itk-radius); background: var(--itk-white); margin-bottom: 14px; box-shadow: var(--itk-shadow); overflow: hidden; transition: border-color .25s ease; }
.itk-acc[open] { border-color: var(--itk-lilas-200); }
.itk-acc summary {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 26px;
  cursor: pointer;
  font-weight: 800;
  font-size: 1.03rem;
  color: var(--itk-ink);
  list-style: none;
}
.itk-acc summary::-webkit-details-marker { display: none; }
.itk-acc summary::after {
  content: "";
  flex-shrink: 0;
  width: 11px; height: 11px;
  border-right: 2.5px solid var(--itk-lilas-600);
  border-bottom: 2.5px solid var(--itk-lilas-600);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform .28s ease;
}
.itk-acc[open] summary::after { transform: rotate(-135deg) translate(-2px, -2px); }
.itk-acc .corpo { padding: 0 26px 24px; font-size: .99rem; }
.itk-acc[open] .corpo { animation: itk-abre .3s ease both; }
@keyframes itk-abre {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: none; }
}

/* ----- Formulário ------------------------------------------------------- */
.itk-form { display: grid; gap: 18px; }
.itk-campo label {
  display: block;
  margin-bottom: 7px;
  font-size: .88rem;
  font-weight: 800;
  color: var(--itk-ink);
}
.itk-campo input,
.itk-campo select,
.itk-campo textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--itk-line);
  border-radius: 12px;
  background: var(--itk-white);
  font-family: inherit;
  font-size: .98rem;
  color: var(--itk-ink);
  transition: border-color .25s ease, box-shadow .25s ease;
}
.itk-campo textarea { min-height: 140px; resize: vertical; }
.itk-campo input:focus,
.itk-campo select:focus,
.itk-campo textarea:focus {
  outline: none;
  border-color: var(--itk-lilas-400);
  box-shadow: 0 0 0 4px var(--itk-lilas-100);
}
.itk-campo .ajuda { margin: 6px 0 0; font-size: .82rem; color: var(--itk-muted); }
.itk-form-aviso {
  padding: 14px 18px;
  border-radius: 12px;
  background: var(--itk-lilas-50);
  border: 1px solid var(--itk-lilas-200);
  font-size: .9rem;
}

/* ----- Faixa de assinatura ---------------------------------------------- */
.itk-assina {
  padding: clamp(36px, 4vw, 52px) clamp(24px, 4vw, 52px);
  border-radius: 26px;
  background: var(--itk-lilas-50);
  border: 1px solid var(--itk-lilas-200);
}
.itk-assina h3 { margin-bottom: 8px; }
.itk-assina p { margin-bottom: 0; }

/* ----- Banner das páginas internas -------------------------------------- */
.itk-banner {
  position: relative;
  padding: clamp(52px, 6vw, 92px) 0;
  background: var(--itk-grad-deep);
  color: rgba(255, 255, 255, .8);
  overflow: hidden;
}
.itk-banner::before {
  content: "";
  position: absolute;
  right: -140px; top: -160px;
  width: 500px; height: 500px;
  border-radius: 999px;
  background: radial-gradient(closest-side, rgba(52, 211, 153, .3), transparent 70%);
  pointer-events: none;
}
.itk-banner > .container { position: relative; z-index: 2; }
.itk-banner h1 { color: #fff; margin-bottom: 12px; }
.itk-banner p { font-size: 1.06rem; max-width: 60ch; margin-bottom: 0; }
.itk-migalha { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 18px; font-size: .88rem; }
.itk-migalha a { color: rgba(255, 255, 255, .74); font-weight: 700; }
.itk-migalha a:hover { color: var(--itk-verde); }
.itk-migalha span { color: rgba(255, 255, 255, .42); }
.itk-migalha .atual { color: #fff; font-weight: 700; }

/* ----- Páginas de texto ------------------------------------------------- */
.itk-texto { max-width: 780px; }
.itk-texto h2 { margin-top: 46px; font-size: 1.5rem; }
.itk-texto h2:first-child { margin-top: 0; }
.itk-texto h3 { margin-top: 30px; font-size: 1.15rem; }
.itk-texto ul { margin: 0 0 1rem; padding-left: 24px; }
.itk-texto ul li { list-style: disc; margin-bottom: 8px; }
.itk-texto .atualizado { font-size: .9rem; color: var(--itk-muted); margin-bottom: 36px; }

/* ----- Erro 404 --------------------------------------------------------- */
.itk-404 { text-align: center; padding: clamp(70px, 11vw, 140px) 0; }
.itk-404 .codigo {
  font-size: clamp(5rem, 17vw, 10rem);
  font-weight: 900;
  letter-spacing: -.06em;
  line-height: 1;
  background: var(--itk-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.itk-404 p { max-width: 40em; margin-inline: auto; }

/* ----- Rodapé ----------------------------------------------------------- */
.itk-footer { background: var(--itk-lilas-950); color: rgba(255, 255, 255, .68); padding-top: clamp(56px, 7vw, 88px); }
.itk-footer h5 {
  margin-bottom: 20px;
  color: #fff;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.itk-footer a { color: rgba(255, 255, 255, .68); }
.itk-footer a:hover { color: var(--itk-verde); }
.itk-footer-marca img { height: 34px; margin-bottom: 20px; }
.itk-footer-marca p { max-width: 34ch; font-size: .95rem; }
.itk-footer-links li { margin-bottom: 11px; }
.itk-footer-links a { font-size: .95rem; font-weight: 600; }
.itk-footer-contato li { display: flex; gap: 11px; margin-bottom: 13px; font-size: .95rem; }
.itk-footer-contato svg { width: 17px; height: 17px; color: var(--itk-verde); flex-shrink: 0; margin-top: 4px; }
.itk-social { display: flex; gap: 10px; margin-top: 22px; }
.itk-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  transition: background .25s ease, transform .25s ease;
}
.itk-social a:hover { background: var(--itk-grad-accent); color: #06342a; transform: translateY(-3px); }
.itk-social svg { width: 17px; height: 17px; }
.itk-footer-base {
  margin-top: clamp(40px, 5vw, 62px);
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  align-items: center;
  justify-content: space-between;
  font-size: .87rem;
}
.itk-footer-base p { margin: 0; }
.itk-footer-base nav { display: flex; flex-wrap: wrap; gap: 22px; }

/* ----- Voltar ao topo --------------------------------------------------- */
.itk-topo {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 800;
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  border: none;
  border-radius: 999px;
  background: var(--itk-grad);
  color: #fff;
  box-shadow: var(--itk-shadow-l);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s;
}
.itk-topo.visivel { opacity: 1; visibility: visible; transform: none; }
.itk-topo svg { width: 18px; height: 18px; }

/* ----- WhatsApp flutuante ----------------------------------------------- */
.itk-zap {
  position: fixed;
  right: 22px; bottom: 82px;
  z-index: 800;
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  box-shadow: 0 12px 30px rgba(37, 211, 102, .38);
  transition: transform .25s ease;
}
.itk-zap:hover { color: #fff; transform: scale(1.08); }
.itk-zap svg { width: 26px; height: 26px; }

/* ----- Utilidades ------------------------------------------------------- */
.itk-acoes { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.text-lilas { color: var(--itk-lilas-700) !important; }
.text-verde { color: var(--itk-verde) !important; }
.itk-realce {
  background: linear-gradient(180deg, transparent 62%, var(--itk-lilas-200) 62%);
  padding: 0 2px;
}
.itk-nota { font-size: .88rem; color: var(--itk-muted); }
.itk-nota-clara { color: rgba(255, 255, 255, .72); }
.itk-plano-un { font-size: 1rem; font-weight: 700; letter-spacing: -.01em; opacity: .7; }

/* ----- Iframe do cadastro (cadastro.html embute app.itick.com.br/cadastro) --- */
/* ----- Cadastro (querovender): UMA moldura, campo em etapas com fade -------- */
.itk-cadastro { max-width: 620px; margin-inline: auto; }

.itk-cadastro-card {
  position: relative;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--itk-lilas-200);
  border-radius: var(--itk-radius-g);
  background: var(--itk-white);
  box-shadow: 0 24px 70px rgba(124, 58, 237, .16), 0 2px 6px rgba(28, 21, 35, .05);
  text-align: center;
  overflow: hidden;
}
.itk-cadastro-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: var(--itk-grad);
}
.itk-cadastro-card .sub {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px;
  padding: 6px 14px 6px 10px; border-radius: 999px;
  background: var(--itk-lilas-50); color: var(--itk-lilas-700);
  font-size: .76rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
}
.itk-cadastro-card .sub::before {
  content: ""; width: 8px; height: 8px; border-radius: 999px 999px 999px 2px;
  background: var(--itk-grad-accent);
}
.itk-cadastro-card h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); margin-bottom: 10px; }
.itk-etapa > p { color: var(--itk-body); max-width: 42ch; margin: 0 auto 22px; }

/* Uma etapa por vez, com fade. O [hidden] tira do fluxo; as classes animam. */
.itk-etapa { animation: itk-etapa-in .4s cubic-bezier(.22,.9,.32,1) both; }
.itk-etapa.saindo { animation: itk-etapa-out .28s ease forwards; }
@keyframes itk-etapa-in  { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
@keyframes itk-etapa-out { from { opacity: 1; transform: none; } to { opacity: 0; transform: translateY(-10px); } }
@media (prefers-reduced-motion: reduce) { .itk-etapa, .itk-etapa.saindo { animation: none; } }

/* O CAMPO é o destaque: grande, centrado, foco lilás forte. */
.itk-doc-campo {
  width: 100%; height: 66px;
  border: 2px solid var(--itk-lilas-200); border-radius: 18px;
  background: var(--itk-white); text-align: center;
  font-family: inherit; font-size: 1.5rem; font-weight: 800; letter-spacing: .02em;
  font-variant-numeric: tabular-nums; color: var(--itk-ink);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.itk-doc-campo::placeholder { font-size: 1rem; font-weight: 500; letter-spacing: 0; color: var(--itk-muted); }
.itk-doc-campo:focus { outline: none; border-color: var(--itk-lilas-500); box-shadow: 0 0 0 5px var(--itk-lilas-100); }
.itk-doc-campo.erro { border-color: #f2a3a3; box-shadow: 0 0 0 5px #fbeaea; }
.itk-doc-campo-sm { height: 56px; font-size: 1.15rem; letter-spacing: 0; }

.itk-doc-dupla { display: grid; grid-template-columns: 130px 1fr; gap: 12px; }
@media (max-width: 420px) { .itk-doc-dupla { grid-template-columns: 1fr; } }

.itk-doc-erro { margin: 10px 0 0; font-size: .86rem; font-weight: 700; color: #c0392b; }

.itk-doc-botao { width: 100%; height: 58px; margin-top: 16px; font-size: 1.02rem; }
.itk-doc-botao:disabled { opacity: .5; cursor: not-allowed; transform: none; box-shadow: none; }

/* Medidor de força da senha */
.itk-forca { margin-top: 14px; text-align: left; }
.itk-forca-barras { display: flex; gap: 6px; }
.itk-forca-barras span { height: 6px; flex: 1; border-radius: 999px; background: var(--itk-line); transition: background .25s ease; }
.itk-forca.n1 span:nth-child(-n+1),
.itk-forca.n2 span:nth-child(-n+2),
.itk-forca.n3 span:nth-child(-n+3),
.itk-forca.n4 span:nth-child(-n+4) { background: var(--itk-lilas-500); }
.itk-forca.n1 span:nth-child(-n+1) { background: #e0524f; }
.itk-forca.n2 span:nth-child(-n+2) { background: #e6a545; }
.itk-forca-txt { margin: 8px 0 0; font-size: .82rem; color: var(--itk-muted); }
.itk-forca-txt.ok { color: var(--itk-lilas-700); font-weight: 700; }

.itk-cadastro-card .itk-selos {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
  margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--itk-line);
}
.itk-cadastro-card .itk-selos li { display: inline-flex; align-items: center; gap: 6px; font-size: .84rem; font-weight: 700; color: var(--itk-body); }
.itk-cadastro-card .itk-selos svg { width: 15px; height: 15px; color: var(--itk-verde); }

/* ----- Banner das páginas internas -------------------------------------- */
.itk-banner {
  position: relative;
  padding: clamp(52px, 6vw, 92px) 0;
  background: var(--itk-grad-deep);
  color: rgba(255, 255, 255, .8);
  overflow: hidden;
}
.itk-banner::before {
  content: "";
  position: absolute;
  right: -140px; top: -160px;
  width: 500px; height: 500px;
  border-radius: 999px;
  background: radial-gradient(closest-side, rgba(52, 211, 153, .3), transparent 70%);
  pointer-events: none;
}
.itk-banner > .container { position: relative; z-index: 2; }
.itk-banner h1 { color: #fff; margin-bottom: 12px; }
.itk-banner p { font-size: 1.06rem; max-width: 60ch; margin-bottom: 0; }
.itk-migalha { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 18px; font-size: .88rem; }
.itk-migalha a { color: rgba(255, 255, 255, .74); font-weight: 700; }
.itk-migalha a:hover { color: var(--itk-verde); }
.itk-migalha span { color: rgba(255, 255, 255, .42); }
.itk-migalha .atual { color: #fff; font-weight: 700; }

/* ----- Páginas de texto ------------------------------------------------- */
.itk-texto { max-width: 780px; }
.itk-texto h2 { margin-top: 46px; font-size: 1.5rem; }
.itk-texto h2:first-child { margin-top: 0; }
.itk-texto h3 { margin-top: 30px; font-size: 1.15rem; }
.itk-texto ul { margin: 0 0 1rem; padding-left: 24px; }
.itk-texto ul li { list-style: disc; margin-bottom: 8px; }
.itk-texto .atualizado { font-size: .9rem; color: var(--itk-muted); margin-bottom: 36px; }

/* ----- Erro 404 --------------------------------------------------------- */
.itk-404 { text-align: center; padding: clamp(70px, 11vw, 140px) 0; }
.itk-404 .codigo {
  font-size: clamp(5rem, 17vw, 10rem);
  font-weight: 900;
  letter-spacing: -.06em;
  line-height: 1;
  background: var(--itk-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.itk-404 p { max-width: 40em; margin-inline: auto; }

/* ----- Rodapé ----------------------------------------------------------- */
.itk-footer { background: var(--itk-lilas-950); color: rgba(255, 255, 255, .68); padding-top: clamp(56px, 7vw, 88px); }
.itk-footer h5 {
  margin-bottom: 20px;
  color: #fff;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.itk-footer a { color: rgba(255, 255, 255, .68); }
.itk-footer a:hover { color: var(--itk-verde); }
.itk-footer-marca img { height: 34px; margin-bottom: 20px; }
.itk-footer-marca p { max-width: 34ch; font-size: .95rem; }
.itk-footer-links li { margin-bottom: 11px; }
.itk-footer-links a { font-size: .95rem; font-weight: 600; }
.itk-footer-contato li { display: flex; gap: 11px; margin-bottom: 13px; font-size: .95rem; }
.itk-footer-contato svg { width: 17px; height: 17px; color: var(--itk-verde); flex-shrink: 0; margin-top: 4px; }
.itk-social { display: flex; gap: 10px; margin-top: 22px; }
.itk-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  transition: background .25s ease, transform .25s ease;
}
.itk-social a:hover { background: var(--itk-grad-accent); color: #06342a; transform: translateY(-3px); }
.itk-social svg { width: 17px; height: 17px; }
.itk-footer-base {
  margin-top: clamp(40px, 5vw, 62px);
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  align-items: center;
  justify-content: space-between;
  font-size: .87rem;
}
.itk-footer-base p { margin: 0; }
.itk-footer-base nav { display: flex; flex-wrap: wrap; gap: 22px; }

/* ----- Voltar ao topo --------------------------------------------------- */
.itk-topo {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 800;
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  border: none;
  border-radius: 999px;
  background: var(--itk-grad);
  color: #fff;
  box-shadow: var(--itk-shadow-l);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s;
}
.itk-topo.visivel { opacity: 1; visibility: visible; transform: none; }
.itk-topo svg { width: 18px; height: 18px; }

/* ----- WhatsApp flutuante ----------------------------------------------- */
.itk-zap {
  position: fixed;
  right: 22px; bottom: 82px;
  z-index: 800;
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  box-shadow: 0 12px 30px rgba(37, 211, 102, .38);
  transition: transform .25s ease;
}
.itk-zap:hover { color: #fff; transform: scale(1.08); }
.itk-zap svg { width: 26px; height: 26px; }

/* ----- Utilidades ------------------------------------------------------- */
.itk-acoes { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.text-lilas { color: var(--itk-lilas-700) !important; }
.text-verde { color: var(--itk-verde) !important; }
.itk-realce {
  background: linear-gradient(180deg, transparent 62%, var(--itk-lilas-200) 62%);
  padding: 0 2px;
}
.itk-nota { font-size: .88rem; color: var(--itk-muted); }
.itk-nota-clara { color: rgba(255, 255, 255, .72); }
.itk-plano-un { font-size: 1rem; font-weight: 700; letter-spacing: -.01em; opacity: .7; }

/* ----- Iframe do cadastro (cadastro.html embute app.itick.com.br/cadastro) --- */
/* ----- Cadastro (querovender): UMA moldura, e o campo é o destaque ---------- */
.itk-cadastro { max-width: 620px; margin-inline: auto; }

/* O box único da página. Fundo claro, sombra forte e um filete lilás no topo:
   é ele que puxa o olho pro campo. O iframe por dentro é transparente. */
.itk-cadastro-card {
  position: relative;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--itk-lilas-200);
  border-radius: var(--itk-radius-g);
  background: var(--itk-white);
  box-shadow: 0 24px 70px rgba(124, 58, 237, .16), 0 2px 6px rgba(28, 21, 35, .05);
  text-align: center;
  overflow: hidden;
}
.itk-cadastro-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--itk-grad);
}
.itk-cadastro-card .sub {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 14px;
  padding: 6px 14px 6px 10px;
  border-radius: 999px;
  background: var(--itk-lilas-50);
  color: var(--itk-lilas-700);
  font-size: .76rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
}
.itk-cadastro-card .sub::before {
  content: ""; width: 8px; height: 8px; border-radius: 999px 999px 999px 2px;
  background: var(--itk-grad-accent);
}
.itk-cadastro-card h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 10px; }
.itk-cadastro-card > p { color: var(--itk-body); max-width: 40ch; margin: 0 auto 22px; }

.itk-doc { display: flex; flex-direction: column; gap: 14px; }

/* O CAMPO é o destaque da página: grande, centrado, com foco lilás forte. */
.itk-doc-campo {
  width: 100%;
  height: 68px;
  border: 2px solid var(--itk-lilas-200);
  border-radius: 18px;
  background: var(--itk-white);
  text-align: center;
  font-family: inherit;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: .02em;
  font-variant-numeric: tabular-nums;
  color: var(--itk-ink);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.itk-doc-campo::placeholder { font-size: 1.05rem; font-weight: 500; letter-spacing: 0; color: var(--itk-muted); }
.itk-doc-campo:focus { outline: none; border-color: var(--itk-lilas-500); box-shadow: 0 0 0 5px var(--itk-lilas-100); }
.itk-doc-campo.erro { border-color: #f2a3a3; box-shadow: 0 0 0 5px #fbeaea; }

.itk-doc-ajuda { margin: 0; font-size: .84rem; color: var(--itk-muted); }
.itk-doc-ajuda.erro { color: #c0392b; font-weight: 700; }

.itk-doc-botao { width: 100%; height: 60px; font-size: 1.05rem; }
.itk-doc-botao:disabled { opacity: .5; cursor: not-allowed; transform: none; box-shadow: none; }

.itk-cadastro-card .itk-selos {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
  margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--itk-line);
}
.itk-cadastro-card .itk-selos li {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .84rem; font-weight: 700; color: var(--itk-body);
}
.itk-cadastro-card .itk-selos svg { width: 15px; height: 15px; color: var(--itk-verde); }
.itk-doc-empilha { display: flex; flex-direction: column; gap: 12px; }
