/* ============================================================================
   ATNO site kit — design system dos sites institucional + landings de produto
   Paleta "ATNO 2026" (derivada do logo: A teal→azul + navy) · Poppins + Montserrat
   Sem framework: custom properties + componentes + motion. Mobile-first.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Marca */
  --ink: #070f26;
  --navy-900: #0d2148;
  --navy-700: #16346e;
  --teal-500: #12b5b0;
  --teal-400: #3ecfc4;
  --blue-500: #2e90fa;
  --grad-brand: linear-gradient(135deg, #3ecfc4 0%, #2e90fa 100%);

  /* Accent do site (institucional = teal; landings sobrescrevem no style do <body>) */
  --accent: var(--teal-500);
  --accent-2: var(--blue-500);

  /* Neutros (matiz navy) */
  --bg: #ffffff;
  --bg-2: #f7f9fc;
  --bg-3: #eef2f8;
  --border: #e2e8f2;
  --text: #0b1220;
  --text-2: #5a6b87;
  --text-3: #8695ad;

  /* Tipografia */
  --font-head: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Ritmo */
  --container: 1160px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 2px rgba(13, 33, 72, 0.05), 0 2px 8px rgba(13, 33, 72, 0.05);
  --shadow-md: 0 2px 6px rgba(13, 33, 72, 0.06), 0 12px 32px rgba(13, 33, 72, 0.10);
  --shadow-lg: 0 6px 16px rgba(13, 33, 72, 0.08), 0 24px 64px rgba(13, 33, 72, 0.14);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset básico ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  /* Derivadas do accent ficam AQUI (não no :root): assim o override de --accent no
     style do <body> das landings é respeitado (var() em custom property resolve no
     elemento onde a propriedade é declarada — gotcha clássico do CSS). */
  --accent-soft: color-mix(in srgb, var(--accent) 10%, #ffffff);
  --accent-border: color-mix(in srgb, var(--accent) 28%, #ffffff);
  --grad-accent: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; margin: 0; letter-spacing: -0.02em; }
p { margin: 0; }
::selection { background: color-mix(in srgb, var(--accent) 25%, #fff); }

/* ---------- Utilitários ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.grad-text {
  background: var(--grad-accent);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.center { text-align: center; }

/* ============================================================================
   Header (glass, sticky)
   ========================================================================== */
.hd {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: rgba(255, 255, 255, 0.72);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.hd.is-scrolled { border-bottom-color: var(--border); background: rgba(255, 255, 255, 0.86); }
.hd__in { display: flex; align-items: center; gap: 28px; height: 72px; }
.hd__logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.hd__logo img { height: 34px; width: auto; }
.hd__logo-suffix {
  font-family: var(--font-head); font-weight: 600; font-size: 20px;
  color: var(--accent); letter-spacing: -0.02em; margin-left: -2px;
}
.hd__nav { display: flex; align-items: center; gap: 4px; margin-left: 8px; }
.hd__link {
  padding: 8px 14px; border-radius: 10px; font-size: 14.5px; font-weight: 500;
  color: var(--text-2); transition: color 0.2s, background 0.2s;
}
.hd__link:hover { color: var(--text); background: var(--bg-2); }
.hd__spacer { flex: 1; }
.hd__actions { display: flex; align-items: center; gap: 10px; }

/* Dropdown Produtos */
.hd__drop { position: relative; }
.hd__drop > .hd__link { display: inline-flex; align-items: center; gap: 6px; }
.hd__drop > .hd__link svg { transition: transform 0.25s var(--ease); }
.hd__menu {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 380px;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(8px) scale(0.98);
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
}
.hd__drop:hover .hd__menu, .hd__drop:focus-within .hd__menu {
  opacity: 1; visibility: visible; transform: translateY(0) scale(1);
}
.hd__drop:hover > .hd__link svg, .hd__drop:focus-within > .hd__link svg { transform: rotate(180deg); }
.hd__item {
  display: flex; align-items: flex-start; gap: 12px; padding: 12px; border-radius: 12px;
  transition: background 0.18s;
}
.hd__item:hover { background: var(--bg-2); }
.hd__dot {
  width: 34px; height: 34px; border-radius: 10px; flex-shrink: 0;
  display: grid; place-items: center; color: #fff; font-weight: 700; font-size: 13px;
  font-family: var(--font-head);
}
.hd__item b { display: block; font-size: 14px; font-weight: 600; color: var(--text); }
.hd__item span { display: block; font-size: 12.5px; color: var(--text-2); line-height: 1.45; }
.hd__item .tag-breve { margin-left: 6px; }

/* Mobile */
.hd__burger { display: none; background: none; border: 0; padding: 8px; border-radius: 10px; }
.hd__burger:hover { background: var(--bg-2); }
.hd__burger svg { display: block; }
@media (max-width: 900px) {
  .hd__nav, .hd__actions .btn--ghost { display: none; }
  .hd__burger { display: block; }
}
.hd-mobile {
  position: fixed; inset: 72px 0 auto 0; z-index: 99; background: #fff;
  border-bottom: 1px solid var(--border); box-shadow: var(--shadow-lg);
  padding: 12px 24px 24px; display: none;
}
.hd-mobile.is-open { display: block; }
.hd-mobile a { display: block; padding: 12px 8px; font-weight: 500; border-radius: 10px; }
.hd-mobile a:hover { background: var(--bg-2); }
.hd-mobile__group { font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-3); padding: 14px 8px 4px; font-weight: 600; }

/* ============================================================================
   Botões
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: 12px; border: 1px solid transparent;
  font-family: var(--font-head); font-weight: 600; font-size: 15px; line-height: 1;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s, border-color 0.2s;
  will-change: transform;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn--primary { background: var(--navy-900); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); background: var(--navy-700); }
.btn--accent { background: var(--grad-accent); color: #fff; box-shadow: 0 8px 24px color-mix(in srgb, var(--accent) 35%, transparent); }
.btn--accent:hover { transform: translateY(-2px); box-shadow: 0 12px 32px color-mix(in srgb, var(--accent) 45%, transparent); }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn--ghost:hover { border-color: var(--text-3); background: var(--bg-2); transform: translateY(-2px); }
.btn--sm { padding: 10px 18px; font-size: 14px; border-radius: 10px; }
.btn--lg { padding: 16px 34px; font-size: 16px; border-radius: 14px; }
.btn svg { flex-shrink: 0; }

/* ============================================================================
   Seções / cabeçalhos de seção
   ========================================================================== */
.sec { padding: 104px 0; position: relative; }
.sec--tight { padding: 72px 0; }
.sec--alt { background: var(--bg-2); }
.sec--dark { background: var(--ink); color: #fff; }
.sec--dark .sec-head p { color: rgba(255, 255, 255, 0.65); }
.sec-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.sec-head--left { margin-inline: 0; text-align: left; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; border-radius: 2px; background: var(--grad-accent); }
.sec-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.75rem); font-weight: 600; }
.sec-head p { margin-top: 16px; font-size: 17px; color: var(--text-2); }

/* ============================================================================
   Hero
   ========================================================================== */
.hero { position: relative; padding: 176px 0 96px; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; pointer-events: none; z-index: -1; }
.hero__glow {
  position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.5;
}
.hero__glow--1 { width: 560px; height: 560px; top: -180px; right: -120px; background: color-mix(in srgb, var(--accent) 26%, transparent); }
.hero__glow--2 { width: 480px; height: 480px; bottom: -220px; left: -140px; background: color-mix(in srgb, var(--accent-2) 18%, transparent); }
.hero__grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, color-mix(in srgb, var(--navy-900) 14%, transparent) 1px, transparent 1px);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 30%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 75% 65% at 50% 30%, #000 30%, transparent 75%);
}
.hero__in { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
@media (max-width: 980px) { .hero__in { grid-template-columns: 1fr; } .hero { padding-top: 140px; } }
.hero h1 {
  font-size: clamp(2.4rem, 5.2vw, 3.9rem); font-weight: 600; letter-spacing: -0.03em;
}
.hero__sub { margin-top: 22px; font-size: 18px; color: var(--text-2); max-width: 540px; }
.hero__ctas { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero__note { margin-top: 18px; font-size: 13.5px; color: var(--text-3); display: flex; align-items: center; gap: 8px; }

.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 999px; font-size: 13px; font-weight: 600;
  background: var(--accent-soft); color: color-mix(in srgb, var(--accent) 72%, var(--ink));
  border: 1px solid var(--accent-border);
}
.chip--dot::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 18%, transparent); }

/* ============================================================================
   Cards
   ========================================================================== */
.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 30px; box-shadow: var(--shadow-sm); position: relative;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

/* Card de produto (ecossistema) */
.pcard { display: flex; flex-direction: column; gap: 14px; overflow: hidden; }
.pcard::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--pc, var(--accent)), color-mix(in srgb, var(--pc, var(--accent)) 40%, #fff));
  opacity: 0; transition: opacity 0.28s;
}
.pcard:hover { border-color: color-mix(in srgb, var(--pc, var(--accent)) 35%, var(--border)); }
.pcard:hover::before { opacity: 1; }
.pcard__mark {
  width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
  color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 17px;
  background: linear-gradient(135deg, var(--pc, var(--accent)), color-mix(in srgb, var(--pc, var(--accent)) 62%, var(--ink)));
  box-shadow: 0 8px 20px color-mix(in srgb, var(--pc, var(--accent)) 35%, transparent);
}
.pcard h3 { font-size: 19px; font-weight: 600; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.pcard__tag { font-size: 13.5px; font-weight: 600; color: color-mix(in srgb, var(--pc, var(--accent)) 78%, var(--ink)); }
.pcard p { font-size: 14.5px; color: var(--text-2); flex: 1; }
.pcard__cta {
  display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: 14.5px;
  color: color-mix(in srgb, var(--pc, var(--accent)) 80%, var(--ink));
}
.pcard__cta svg { transition: transform 0.22s var(--ease); }
.pcard:hover .pcard__cta svg { transform: translateX(4px); }
.tag-breve {
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 6px; background: var(--bg-3); color: var(--text-2);
}

/* Marks SVG dos produtos: quando o mark é <img>, o fundo/gradiente do container sai
   de cena (o SVG traz o próprio fundo arredondado) e só a sombra colorida fica. */
img.pcard__mark, img.eco__mark, img.fnode__mark, img.hd__dot {
  background: none; padding: 0; border-radius: 24%;
  box-shadow: 0 8px 20px color-mix(in srgb, var(--pc, var(--accent)) 30%, transparent);
}

/* Card pilar / benefício */
.fcard { display: flex; flex-direction: column; gap: 12px; padding: 26px; border-radius: var(--radius-lg); }
.fcard__icon {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent); border: 1px solid var(--accent-border);
}
.fcard h3 { font-size: 16.5px; font-weight: 600; }
.fcard p { font-size: 14.5px; color: var(--text-2); }

/* Grids */
.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

/* ============================================================================
   Mockup frame (browser vetorial p/ screenshots ilustrativos)
   ========================================================================== */
.frame {
  border-radius: var(--radius-lg); border: 1px solid var(--border);
  background: #fff; box-shadow: var(--shadow-lg); overflow: hidden;
}
.frame__bar {
  display: flex; align-items: center; gap: 6px; padding: 12px 16px;
  background: var(--bg-2); border-bottom: 1px solid var(--border);
}
.frame__dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border); }
.frame__dot:nth-child(1) { background: #fca5a5; }
.frame__dot:nth-child(2) { background: #fcd34d; }
.frame__dot:nth-child(3) { background: #86efac; }
.frame__url {
  margin-left: 10px; flex: 1; max-width: 320px; height: 22px; border-radius: 7px;
  background: #fff; border: 1px solid var(--border);
  font-size: 11px; color: var(--text-3); display: flex; align-items: center; padding: 0 10px;
  font-family: var(--font-body);
}
.frame svg { display: block; width: 100%; height: auto; }

/* ============================================================================
   Fluxo de conexões (como as soluções se conectam)
   ========================================================================== */
.flow { position: relative; padding: 24px 0; }
/* Colunas conforme a quantidade de produtos — o registry manda, não o CSS. */
.flow__nodes { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; position: relative; z-index: 1; }
@media (max-width: 760px) { .flow__nodes { grid-template-columns: repeat(2, 1fr); } }
.fnode {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px; text-align: center; box-shadow: var(--shadow-sm);
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s;
}
.fnode:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--fc, var(--accent)) 40%, var(--border)); box-shadow: var(--shadow-md); }
.fnode__mark {
  width: 42px; height: 42px; margin: 0 auto 10px; border-radius: 12px; display: grid; place-items: center;
  color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 15px;
  background: linear-gradient(135deg, var(--fc, var(--accent)), color-mix(in srgb, var(--fc, var(--accent)) 62%, var(--ink)));
}
.fnode b { display: block; font-family: var(--font-head); font-size: 14.5px; font-weight: 600; }
.fnode span { font-size: 12.5px; color: var(--text-2); }
.flow__svg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.flow__svg path {
  fill: none; stroke: color-mix(in srgb, var(--accent) 45%, var(--border));
  stroke-width: 2; stroke-dasharray: 6 8; stroke-linecap: round;
}

/* Linha SVG "desenhada" no scroll */
[data-draw] path, [data-draw] line { stroke-dashoffset: var(--len, 600); stroke-dasharray: var(--len, 600); }
[data-draw].is-visible path, [data-draw].is-visible line {
  animation: draw 1.6s var(--ease) forwards;
}
@keyframes draw { to { stroke-dashoffset: 0; } }

/* ============================================================================
   Comparativo (por que a ATNO)
   ========================================================================== */
.vs { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: stretch; }
@media (max-width: 860px) { .vs { grid-template-columns: 1fr; } }
.vs__col { border-radius: var(--radius-lg); padding: 34px; }
.vs__col--old { background: var(--bg-2); border: 1px dashed var(--border); }
.vs__col--new {
  background: linear-gradient(160deg, color-mix(in srgb, var(--accent) 7%, #fff), #fff 55%);
  border: 1px solid var(--accent-border); box-shadow: var(--shadow-md);
}
.vs__col h3 { font-size: 18px; font-weight: 600; margin-bottom: 18px; }
.vs__item { display: flex; gap: 12px; padding: 10px 0; font-size: 14.5px; color: var(--text-2); align-items: flex-start; }
.vs__item svg { flex-shrink: 0; margin-top: 2px; }
.vs__item--ok { color: var(--text); }
.vs__item--ok svg { color: var(--accent); }
.vs__item--no svg { color: var(--text-3); }

/* ============================================================================
   Depoimentos (carousel)
   ========================================================================== */
.tst { overflow: hidden; position: relative; }
.tst__track { display: flex; gap: 22px; transition: transform 0.6s var(--ease); }
.tcard {
  flex: 0 0 min(420px, 86vw); background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-sm);
}
.tcard__stars { color: #f5b60b; letter-spacing: 3px; font-size: 14px; margin-bottom: 14px; }
.tcard p { font-size: 15px; color: var(--text-2); font-style: italic; }
.tcard__who { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.tcard__avatar {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  background: var(--grad-brand); color: #fff; font-weight: 700; font-family: var(--font-head); font-size: 15px;
}
.tcard__who b { display: block; font-size: 14px; }
.tcard__who span { font-size: 12.5px; color: var(--text-3); }
.tst__nav { display: flex; gap: 10px; justify-content: center; margin-top: 30px; }
.tst__btn {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--border); background: #fff;
  display: grid; place-items: center; color: var(--text-2);
  transition: all 0.2s var(--ease);
}
.tst__btn:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

/* ============================================================================
   FAQ (accordion)
   ========================================================================== */
.faq { max-width: 760px; margin: 0 auto; }
.faq details {
  border: 1px solid var(--border); border-radius: var(--radius); background: #fff;
  margin-bottom: 12px; overflow: hidden; transition: border-color 0.2s;
}
.faq details[open] { border-color: var(--accent-border); box-shadow: var(--shadow-sm); }
.faq summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 20px 24px; font-family: var(--font-head); font-weight: 600; font-size: 15.5px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary svg { flex-shrink: 0; color: var(--text-3); transition: transform 0.3s var(--ease); }
.faq details[open] summary svg { transform: rotate(45deg); color: var(--accent); }
.faq .faq__a { padding: 0 24px 20px; font-size: 14.5px; color: var(--text-2); }

/* ============================================================================
   Lista de espera (form)
   ========================================================================== */
.wl {
  max-width: 640px; margin: 0 auto; background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 38px; box-shadow: var(--shadow-lg);
}
.sec--dark .wl { border-color: rgba(255, 255, 255, 0.08); }
.wl__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 22px; }
@media (max-width: 620px) { .wl__grid { grid-template-columns: 1fr; } }
.wl label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.wl input {
  width: 100%; padding: 13px 16px; border-radius: 12px; border: 1px solid var(--border);
  font: inherit; font-size: 14.5px; color: var(--text); background: var(--bg-2);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.wl input:focus {
  outline: none; border-color: var(--accent); background: #fff;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 14%, transparent);
}
.wl .full { grid-column: 1 / -1; }
.wl__foot { margin-top: 22px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.wl__hint { font-size: 12.5px; color: var(--text-3); }
.wl__erro {
  margin-top: 14px; padding: 12px 16px; border-radius: 12px; font-size: 14px;
  background: #fef2f2; border: 1px solid #fecaca; color: #b91c1c;
}
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ============================================================================
   CTA final
   ========================================================================== */
.cta-final {
  position: relative; border-radius: 28px; overflow: hidden; padding: 72px 40px; text-align: center;
  background: var(--ink); color: #fff;
}
.cta-final::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(600px 300px at 20% 0%, color-mix(in srgb, var(--accent) 30%, transparent), transparent 70%),
    radial-gradient(600px 300px at 85% 100%, color-mix(in srgb, var(--accent-2) 25%, transparent), transparent 70%);
}
.cta-final > * { position: relative; }
.cta-final h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 600; }
.cta-final p { margin: 16px auto 0; max-width: 560px; color: rgba(255, 255, 255, 0.7); font-size: 16.5px; }
.cta-final .hero__ctas { justify-content: center; }
.cta-final .btn--ghost { color: #fff; border-color: rgba(255, 255, 255, 0.25); }
.cta-final .btn--ghost:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.5); }

/* ============================================================================
   Footer
   ========================================================================== */
.ft { background: var(--ink); color: rgba(255, 255, 255, 0.72); padding: 72px 0 0; margin-top: 104px; }
.ft__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 56px; }
@media (max-width: 860px) { .ft__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .ft__grid { grid-template-columns: 1fr; } }
.ft__brand img { height: 34px; margin-bottom: 16px; }
.ft__brand p { font-size: 14px; max-width: 300px; }
.ft h4 { color: #fff; font-size: 13.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 18px; }
.ft a { display: block; padding: 6px 0; font-size: 14px; color: rgba(255, 255, 255, 0.6); transition: color 0.2s; }
.ft a:hover { color: #fff; }
.ft__dot { display: inline-block; width: 8px; height: 8px; border-radius: 3px; margin-right: 8px; }
.ft__social { display: flex; gap: 10px; margin-top: 20px; }
.ft__social a {
  display: grid; place-items: center; width: 38px; height: 38px; padding: 0;
  border-radius: 11px; border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.2s var(--ease);
}
.ft__social a:hover {
  color: #fff; border-color: var(--accent); transform: translateY(-2px);
  background: color-mix(in srgb, var(--accent) 20%, transparent);
}
.ft__social svg { width: 18px; height: 18px; }
.ft__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.09); padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-size: 13px; color: rgba(255, 255, 255, 0.45);
}

/* ============================================================================
   Motion (reveal on-scroll · floating · parallax · glow)
   ========================================================================== */
[data-reveal] {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--d, 0s);
}
[data-reveal="left"] { transform: translateX(-30px); }
[data-reveal="right"] { transform: translateX(30px); }
[data-reveal="scale"] { transform: scale(0.94); }
[data-reveal].is-visible { opacity: 1; transform: none; }

.float { animation: float 6s ease-in-out infinite; animation-delay: var(--fd, 0s); }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.pulse-glow { animation: pulseGlow 3.2s ease-in-out infinite; }
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 30%, transparent); }
  50% { box-shadow: 0 0 0 12px transparent; }
}

[data-parallax] { will-change: transform; transition: transform 0.15s linear; }

.grad-anim {
  background-size: 200% 200%;
  animation: gradShift 8s ease infinite;
}
@keyframes gradShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Cursor glow (hero) */
.cursor-glow {
  position: absolute; width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 14%, transparent), transparent 65%);
  pointer-events: none; transform: translate(-50%, -50%); z-index: 0;
  opacity: 0; transition: opacity 0.4s;
}
.hero:hover .cursor-glow { opacity: 1; }

/* Acessibilidade: sem movimento */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* ============================== Planos e preços ============================== */
.plans {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px; max-width: 980px; margin: 0 auto; align-items: stretch;
}
.plan {
  position: relative; display: flex; flex-direction: column;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 30px 26px 26px;
}
.plan--pop {
  border-color: var(--accent);
  box-shadow: 0 18px 44px color-mix(in srgb, var(--accent) 18%, transparent);
}
.plan__pop {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--grad-accent); color: #fff; font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; padding: 5px 14px;
  border-radius: 999px; white-space: nowrap;
}
.plan h3 { font-size: 19px; font-weight: 650; }
.plan__desc { margin-top: 4px; font-size: 13.5px; color: var(--text-2); }
.plan__price { margin-top: 16px; font-size: 34px; font-weight: 700; letter-spacing: -0.02em; }
.plan__price small { font-size: 14px; font-weight: 500; color: var(--text-3); }
.plan__anual { font-size: 12.5px; color: var(--text-2); margin-top: 2px; }
.plan__trial { display: inline-block; margin-top: 10px; font-size: 12.5px; font-weight: 700; color: var(--accent); }
.plan ul { margin: 18px 0 24px; display: grid; gap: 8px; list-style: none; padding: 0; }
.plan li { display: flex; gap: 8px; font-size: 14px; color: var(--text-2); }
.plan li svg { flex-shrink: 0; margin-top: 2px; color: var(--accent); }
.plan .btn { margin-top: auto; justify-content: center; }

/* ---- Planos: trial em destaque, toggle mensal/anual e economia ---- */
.plans-trial {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: fit-content; margin: -8px auto 22px; padding: 9px 18px;
  border-radius: 999px; font-size: 14px; color: var(--text);
  background: color-mix(in srgb, var(--accent) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
}
.plans-trial svg { color: var(--accent); flex-shrink: 0; }
.plans-toggle {
  display: flex; width: fit-content; margin: 0 auto 30px; padding: 4px;
  border: 1px solid var(--border); border-radius: 999px; background: var(--bg-2); gap: 4px;
}
.plans-toggle__opt {
  display: inline-flex; align-items: center; gap: 8px; border: 0; cursor: pointer;
  padding: 9px 18px; border-radius: 999px; font-size: 14px; font-weight: 600;
  color: var(--text-2); background: transparent; transition: all 0.2s var(--ease);
}
.plans-toggle__opt.is-on { background: var(--grad-accent); color: #fff; box-shadow: var(--shadow-sm); }
.plans-toggle__tag {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
  padding: 3px 8px; border-radius: 999px; background: rgba(255, 255, 255, 0.22);
}
.plans-toggle__opt:not(.is-on) .plans-toggle__tag {
  background: color-mix(in srgb, var(--accent) 14%, transparent); color: var(--accent);
}
.plans[data-modo="anual"] .plan__modo--mensal { display: none; }
.plans[data-modo="mensal"] .plan__modo--anual { display: none; }
.plan__eco {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 10px; width: fit-content;
  padding: 5px 12px; border-radius: 999px; font-size: 12.5px; font-weight: 700;
  color: #0e8f6b; background: rgba(34, 199, 138, 0.12); border: 1px solid rgba(34, 199, 138, 0.35);
}
.plan__nudge {
  margin-top: 8px; font-size: 12.5px; line-height: 1.5; color: var(--text-2);
  padding: 8px 12px; border-radius: 10px;
  background: rgba(245, 158, 11, 0.10); border: 1px solid rgba(245, 158, 11, 0.30);
}
.plan__trial { display: inline-flex; align-items: center; gap: 6px; }

/* ==================== Números (prova social) ==================== */
.sec--numeros { padding-top: 24px; padding-bottom: 24px; }
.numeros { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; padding: 26px 28px;
  border: 1px solid var(--border); border-radius: 20px; background: var(--bg-2); }
.numeros__item { text-align: center; }
.numeros__item strong { display: block; font-family: var(--font-head); font-weight: 700;
  font-size: clamp(24px, 3.2vw, 34px); line-height: 1.1; background: var(--grad-accent);
  -webkit-background-clip: text; background-clip: text; color: transparent; }
.numeros__item span { display: block; margin-top: 6px; font-size: 13px; color: var(--text-3); }
@media (max-width: 720px) { .numeros { grid-template-columns: repeat(2, 1fr); gap: 16px; } }

/* ==================== Segmentos ==================== */
.segmentos { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; max-width: 760px; margin: 0 auto; }
.segmentos__chip { padding: 10px 18px; border: 1px solid var(--border); border-radius: 999px;
  background: var(--bg); font-family: var(--font-head); font-weight: 500; font-size: 14px;
  color: var(--text-2); transition: border-color .2s var(--ease), color .2s var(--ease); }
.segmentos__chip:hover { border-color: var(--accent); color: var(--text); }
