/* ==========================================================================
   Seaven Growth — design system
   Estrutura e linguagem visual inspiradas em upsites.digital
   (títulos caixa-alta pesados, seções centralizadas, blocos escuros de
   contraste, muito respiro), adaptadas à marca Seaven: roxo #7f00ff,
   logo e mascote próprios, copy original.
   ========================================================================== */

:root {
  --primary: #9d4edd;        /* roxo lilás — CTAs, ícones, destaques */
  --primary-2: #c77dff;      /* acento claro — focus, halos */
  --primary-ink: #7b2cbf;    /* roxo p/ texto sobre fundo branco (contraste AA) */
  --grad: linear-gradient(180deg, #a86cf0 0%, #9036e0 100%);

  --ink: #1b1033;          /* títulos / texto forte (equivalente ao navy da ref) */
  --body: #635d78;         /* corpo */
  --muted: #8b85a3;        /* legendas */
  --bg: #ffffff;
  --bg-alt: #faf7ff;
  --faq-bg: #f6f2ff;
  --dark-1: #241046;
  --dark-2: #150528;
  --border: #eae2fb;
  --border-2: #dcccf7;

  --success: #0f7a4b;
  --error: #c0392b;
  --error-bg: #fdf1f0;

  --r-sm: 12px;
  --r: 16px;
  --r-lg: 22px;
  --r-xl: 30px;

  --sh-sm: 0 2px 10px rgba(27, 16, 51, .06);
  --sh: 0 10px 40px -12px rgba(60, 15, 120, .18);
  --sh-lg: 0 30px 70px -20px rgba(60, 15, 120, .30);
  --sh-cta: 0 14px 30px -8px rgba(157, 78, 221, .5);

  --container: 1200px;
  --gutter: clamp(1.1rem, .5rem + 2.4vw, 2rem);
  --space: clamp(4.5rem, 3rem + 6vw, 7.5rem);

  --header-h: 82px;
  --mobilebar-h: 82px;

  --font: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-head: "Montserrat", "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

/* -------------------------------------------------------------------- reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
}
body {
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
body.menu-open { overflow: hidden; }
main { overflow-x: clip; }

::selection { background: var(--primary); color: #fff; }

/* barra de rolagem na cor da marca */
:root { scrollbar-color: var(--primary) var(--bg-alt); scrollbar-width: thin; }
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 999px;
  border: 3px solid var(--bg-alt);
}
::-webkit-scrollbar-thumb:hover { background: var(--primary-ink); }
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--primary-ink); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  font-weight: 900;
  line-height: 1.21;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  text-wrap: balance;
  overflow-wrap: break-word;
}
h1 { font-size: clamp(2rem, 1.35rem + 2.9vw, 3rem); }
h2 { font-size: clamp(1.55rem, 1.15rem + 1.9vw, 2rem); line-height: 1.2; }
h3 { font-size: clamp(1.05rem, .95rem + .5vw, 1.3rem); letter-spacing: 0; line-height: 1.3; }
h4 { font-size: .95rem; }

p { color: var(--body); }
ul, ol { padding-left: 1.15rem; }
strong { color: var(--ink); }

:focus-visible { outline: 3px solid var(--primary-2); outline-offset: 3px; border-radius: 6px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

/* ---------------------------------------------------------------- utilities */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.narrow { max-width: 760px; margin-inline: auto; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.gtext { color: var(--primary); }

.skip-link {
  position: fixed; top: 10px; left: 10px; z-index: 1200;
  padding: 10px 18px; background: var(--ink); color: #fff;
  border-radius: 10px; font-weight: 700; text-decoration: none;
  transform: translateY(-180%); transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

html.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s cubic-bezier(.22, 1, .36, 1), transform .7s cubic-bezier(.22, 1, .36, 1);
  transition-delay: calc(var(--i, 0) * 65ms);
}
html.js [data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* anime.js faz o "pop" dos ícones; enquanto não assume, ficam escondidos.
   Se a lib falhar, o .is-visible do main.js (IntersectionObserver) revela. */
html.anime .cards > .card .icon-tile { opacity: 0; transition: opacity .5s ease; }
html.anime .cards > .card.is-visible .icon-tile { opacity: 1; }

/* ----------------------------------------------------------------- sections */
.section { padding-block: var(--space); }
.section--alt { background: var(--bg-alt); }
.section--faq { background: #fff; }
.section--dark {
  background: var(--dark-2);
  color: rgba(255, 255, 255, .74);
  position: relative;
  overflow: hidden;
}
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--dark::before {
  content: "";
  position: absolute;
  width: 620px; height: 620px;
  top: -300px; right: -180px;
  background: radial-gradient(circle, rgba(155, 60, 255, .38), transparent 68%);
  filter: blur(60px);
  pointer-events: none;
}
.section--dark + .section--dark { padding-top: 0; }
.section--dark + .section--dark::before { display: none; }

.section__head {
  max-width: 760px;
  margin: 0 auto clamp(2.75rem, 1.5rem + 3.5vw, 4.5rem);
  text-align: center;
}
.section__head p { margin-top: 1.1rem; font-size: 1.12rem; color: var(--body); }
.section--dark .section__head p { color: rgba(255, 255, 255, .7); }

.eyebrow {
  display: block;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}
.section--dark .eyebrow { color: #c9a6ff; }

.lead { font-size: 1.125rem; line-height: 1.56; color: var(--body); }
.section--dark .lead { color: rgba(255, 255, 255, .82); }

/* ------------------------------------------------------------------ buttons
   Espelhado de upsites.digital (a.btn / .item.phone a): pílula SEMPRE
   contornada (2px), fundo transparente, texto na cor da marca, uppercase
   com letter-spacing .05em. Hover: leve scale + box-shadow deslocado. */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 32px 10px 36px;
  border: 2px solid var(--primary);
  border-radius: 30px;
  background: transparent;
  color: var(--primary-ink);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all .3s ease 0s;
}
.btn:hover,
.btn:focus-visible {
  transform: scale(1.06);
  box-shadow: 3px 3px 0 0 var(--primary);
  background: transparent;
  color: var(--primary-ink);
}
.btn svg { flex: none; width: 16px; height: 16px; }
.btn--lg { padding: 15px 40px 13px 44px; font-size: 16px; }

/* secundário — mesmo formato, contorno/texto mais neutros */
.btn--ghost { border-color: var(--border-2); color: var(--ink); }
.btn--ghost:hover,
.btn--ghost:focus-visible { border-color: var(--primary); color: var(--primary-ink); box-shadow: 3px 3px 0 0 var(--primary); }

/* sobre faixa escura — contorno branco */
.btn--light,
.btn--on-dark,
.btn--on-dark.btn--ghost { border-color: #fff; color: #fff; background: transparent; }
.btn--on-dark.btn--ghost { border-color: rgba(255, 255, 255, .6); }
.btn--light:hover, .btn--light:focus-visible,
.btn--on-dark:hover, .btn--on-dark:focus-visible {
  transform: scale(1.06);
  box-shadow: 3px 3px 0 0 rgba(255, 255, 255, .9);
  color: #fff; border-color: #fff;
}
.btn--wa { border-color: var(--primary); color: var(--primary-ink); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row.center { justify-content: center; }

/* link com seta */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-weight: 800;
  text-transform: uppercase;
  font-size: .82rem;
  letter-spacing: .06em;
  text-decoration: none;
  color: var(--primary-ink);
}
.arrow-link:hover { gap: .75rem; }

/* -------------------------------------------------------------------- topbar */
.topbar { background: var(--dark-2); color: #fff; font-size: .88rem; }
.topbar .container {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: .2rem .55rem; min-height: 42px; padding-block: 7px; text-align: center;
}
.topbar strong { color: #fff; font-weight: 700; }
.topbar a { color: #d9bcff; font-weight: 800; text-decoration: none; }
.topbar a:hover { color: #fff; text-decoration: underline; }
@media (max-width: 620px) { .topbar strong { display: none; } .topbar { font-size: .82rem; } }

/* -------------------------------------------------------------------- header
   Estrutura, medidas e comportamento espelhados de upsites.digital
   (header#top): barra branca sólida sticky, links 12px/600 uppercase com
   sublinhado que cresce até 50%, dropdown com fade, CTA pílula contornada,
   e no scroll o header encolhe (24px -> 15px) e ganha drop-shadow. */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: #fff;
  padding-block: 24px;
  transition: padding .3s ease 0s, box-shadow .3s ease 0s;
}
.site-header.is-stuck {
  padding-block: 15px;
  box-shadow: 0 18px 40px -22px rgba(60, 15, 120, .28);
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0 24px;
}
.brand {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head);
  font-weight: 600; font-size: .82rem; text-transform: uppercase; letter-spacing: .09em;
  color: var(--ink); text-decoration: none;
}
.brand img { width: 30px; height: auto; border-radius: 8px; }

.nav-desktop { display: flex; justify-content: flex-end; }
.nav-desktop > ul { display: flex; align-items: center; list-style: none; padding: 0; margin: 0; }
.nav-desktop > ul > li { position: relative; padding: 0 31px 0 0; }
.nav-desktop a {
  position: relative;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 0;
  color: #726977;
  font-family: var(--font);
  font-weight: 600; font-size: 12px; line-height: 15px; letter-spacing: .05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color .3s ease 0s;
}
.nav-desktop a::after {
  content: "";
  position: absolute; left: 0; bottom: 3px;
  width: 0; height: 2px; background: var(--primary);
  transition: all .3s ease 0s;
}
.nav-desktop a:hover,
.nav-desktop a[aria-current]:not([aria-current="false"]) { color: var(--primary-ink); }
.nav-desktop a:hover::after,
.nav-desktop a[aria-current]:not([aria-current="false"])::after { width: 50%; }
.nav-desktop .dd-caret { display: inline-flex; color: var(--primary); }
.nav-desktop .dd-caret svg { width: 14px; height: 14px; }

/* dropdown de serviços — espelhado de upsites (li ul) */
.has-submenu > .submenu {
  position: absolute; top: 80%; left: -20px;
  list-style: none; margin: 0; padding: 20px;
  width: 240px; text-align: left;
  background: #fff; border-radius: 12px;
  box-shadow: 0 10px 30px 0 rgba(27, 16, 51, .18);
  opacity: 0; visibility: hidden;
  transition: all .3s ease 0s;
}
.has-submenu:hover > .submenu,
.has-submenu:focus-within > .submenu { top: 100%; opacity: 1; visibility: visible; }
.submenu li { display: block; padding: 5px 0; }
.submenu li:last-child { padding-bottom: 0; }
.submenu a {
  display: block; padding: 0 0 7px;
  font-size: 12px; letter-spacing: .05em;
}
.submenu a::after { display: none; }
.submenu a:hover { color: var(--primary-ink); }

/* CTA do header — pílula contornada estilo upsites (.item.phone a) */
.nav-tools { display: flex; align-items: center; justify-content: flex-end; }
.header-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px 8px 16px;
  border: 2px solid var(--primary);
  border-radius: 20px;
  background: transparent;
  color: var(--primary-ink);
  font-weight: 700; font-size: 13px; letter-spacing: .05em; text-transform: uppercase;
  text-decoration: none;
  transition: all .3s ease 0s;
}
.header-cta svg { width: 15px; height: 15px; flex: none; }
.header-cta:hover { transform: scale(1.06); box-shadow: 3px 3px 0 0 var(--primary); }

@media (max-width: 1040px) {
  .nav-desktop, .nav-tools { display: none; }
  /* no mobile o cabeçalho é a .mobile-bar; esconde o header/topbar de desktop */
  .topbar, .site-header { display: none; }
  body { padding-top: var(--mobilebar-h); }
}
@media (min-width: 1041px) { .mobile-bar, .mobile-panel { display: none !important; } }

/* --------------------------------------------------------------------- hero */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(2.5rem, 1.5rem + 5vw, 5.5rem) clamp(1.75rem, 1.2rem + 2.5vw, 3rem);
  background:
    radial-gradient(38% 45% at 50% 0%, rgba(155, 60, 255, .14), transparent 70%),
    linear-gradient(180deg, #fbf7ff, #fff 78%);
  text-align: center;
}
.hero__inner { position: relative; z-index: 2; max-width: 900px; margin-inline: auto; }
.hero h1 { margin-bottom: 1.4rem; }
.hero .lead { max-width: 62ch; margin: 0 auto; }
.hero .btn-row { margin-top: 2.25rem; justify-content: center; }
.hero__note { margin-top: 1.1rem; font-size: .95rem; color: var(--muted); }

.hero__rating {
  display: inline-flex; align-items: center; flex-wrap: wrap; justify-content: center; gap: 4px 8px;
  font-weight: 700; font-size: .82rem;
  color: var(--muted); margin-bottom: 1rem;
}
.hero__rating strong { color: var(--ink); }
.hero__rating a { color: var(--primary-ink); }
.hero__rating .stars { display: inline-flex; gap: 2px; color: #f5a623; }
.hero__rating .stars svg { width: 16px; height: 16px; }
.hero__rating-text { color: var(--muted); }
.hero__rating-since { color: var(--muted); }
.hero__rating-since::before { content: "·"; margin-right: 8px; }
@media (max-width: 560px) {
  .hero__rating { flex-direction: column; gap: 6px; }
  .hero__rating-since::before { display: none; }
}

@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* faixa de plataformas — carrossel centralizado com logos reais */
.logos {
  padding-block: clamp(2.5rem, 1.5rem + 3vw, 4rem);
  border-block: 1px solid var(--border);
  background: #fff;
  text-align: center;
}
/* dentro do hero: sem linhas, fundo transparente, só os logos andando */
.logos--in-hero {
  border-block: 0;
  background: transparent;
  padding-block: clamp(1.75rem, 1.2rem + 2vw, 3rem) 0;
  position: relative;
  z-index: 2;
}
.logos--in-hero .logos__label { margin-bottom: 1.25rem; }
.logos__label {
  font-size: .74rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 1.75rem;
}
.logos__viewport {
  overflow: hidden;
  max-width: 900px;
  margin-inline: auto;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.logos__track {
  display: flex;
  width: max-content;
  gap: 3rem;
  padding-block: .25rem;
  animation: marquee 42s linear infinite;
}
.logos:hover .logos__track,
.logos__track:hover { animation-play-state: paused; }
.logo-chip {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  white-space: nowrap;
  opacity: .6;
  transition: opacity .2s ease;
}
.logo-chip:hover { opacity: 1; }
.logo-chip img { width: 24px; height: 24px; flex: none; }
@keyframes marquee { to { transform: translateX(calc(-50% - 1.5rem)); } }
@media (prefers-reduced-motion: reduce) {
  .logos__viewport { -webkit-mask-image: none; mask-image: none; }
  .logos__track { animation: none; flex-wrap: wrap; justify-content: center; width: auto; max-width: 940px; margin-inline: auto; gap: 1.25rem 2.25rem; }
}

/* selos / certificações — só publicar os que a Seaven realmente possui */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .7rem;
  margin-top: 2.25rem;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  border: 1px solid var(--border-2);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--ink);
  background: #fff;
}
.trust-badge svg { width: 16px; height: 16px; flex: none; }
.trust-badge .g-dot { color: #4285f4; }
.trust-badge .stars { color: #f5a623; letter-spacing: 1px; display: inline-flex; }
.trust-badge .stars svg { width: 13px; height: 13px; }

/* ------------------------------------------------------------------- grids */
.cards { display: grid; gap: 22px; }
.cards--2 { grid-template-columns: repeat(2, 1fr); }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.cards--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2.1rem 1.6rem;
  box-shadow: var(--sh-sm);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--sh); border-color: var(--border-2); }
.card h3 { margin-bottom: .55rem; }
.card p { font-size: .98rem; }
.card .arrow-link { margin-top: auto; padding-top: 1.1rem; }

/* círculo com ícone de linha (referência: círculos teal da upsites) */
.icon-tile {
  display: grid; place-items: center;
  width: 52px; height: 52px;
  flex: none;
  border-radius: 50%;
  border: 2px solid var(--primary);
  color: var(--primary);
  background: rgba(127, 0, 255, .06);
}
.icon-tile svg { width: 24px; height: 24px; }
.card .icon-tile { margin-bottom: 1.3rem; }
.section--dark .icon-tile { border-color: rgba(199, 166, 255, .7); color: #d9c2ff; background: rgba(255, 255, 255, .05); }

/* lista de itens com divisórias (referência: "COMO CRIAMOS SITES") */
.feature-list { list-style: none; padding: 0; margin: 0; display: grid; }
.feature-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  column-gap: 1.25rem;
  row-gap: .4rem;
  padding: 1.75rem 0;
  border-top: 1px solid var(--border);
}
.feature-list li:first-child { border-top: 0; padding-top: 0; }
.section--dark .feature-list li { border-color: rgba(255, 255, 255, .14); }
.feature-list .icon-tile { grid-row: span 2; }
.feature-list h3 { text-transform: none; letter-spacing: 0; font-size: 1.15rem; align-self: center; }
.feature-list p { grid-column: 2; font-size: .98rem; }
.section--dark .feature-list p { color: rgba(255, 255, 255, .68); }
@media (max-width: 520px) {
  .feature-list li { grid-template-columns: 1fr; row-gap: .6rem; }
  .feature-list p, .feature-list h3 { grid-column: 1; }
}

.section--dark .card {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .12);
  box-shadow: none;
  color: rgba(255, 255, 255, .72);
}
.section--dark .card:hover { border-color: rgba(255, 255, 255, .3); }

@media (max-width: 1000px) { .cards--4, .cards--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .cards--2, .cards--3, .cards--4 { grid-template-columns: 1fr; } }

/* ------------------------------------------------------- steps (contratar) */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.step {
  text-align: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2.4rem 1.8rem;
  box-shadow: var(--sh-sm);
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: grid; place-items: center;
  width: 58px; height: 58px; margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 2px solid var(--border-2);
  color: var(--primary);
  font-weight: 900; font-size: 1.1rem;
}
.step h3 { margin-bottom: .5rem; }
@media (max-width: 780px) { .steps { grid-template-columns: 1fr; } }

/* ----------------------------------------------------------- processo num. */
.process { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; counter-reset: p; max-width: 900px; margin-inline: auto; }
.process li {
  counter-increment: p;
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: clamp(1rem, .5rem + 2vw, 2.25rem);
  align-items: start;
  padding: 1.9rem;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--r-lg);
}
.section:not(.section--dark) .process li { background: #fff; border-color: var(--border); box-shadow: var(--sh-sm); }
.process li::before {
  content: counter(p, decimal-leading-zero);
  font-weight: 900;
  font-size: clamp(2.2rem, 1.4rem + 3vw, 3.4rem);
  line-height: 1;
  color: var(--primary-2);
}
.section:not(.section--dark) .process li::before { color: var(--primary); }
.process h3 { margin-bottom: .35rem; }
.process li > div > p { color: rgba(255, 255, 255, .68); }
.section:not(.section--dark) .process li > div > p { color: var(--body); }
@media (max-width: 560px) { .process li { grid-template-columns: 1fr; gap: .4rem; } }

/* -------------------------------------------------------------- stats band */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat__num {
  display: block;
  font-weight: 900;
  font-size: clamp(2.6rem, 1.8rem + 3vw, 3.9rem);
  line-height: 1;
  color: #fff;
}
.section--dark .stat__num { background: linear-gradient(180deg, #fff, #d9b8ff); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat__label { margin-top: .7rem; font-size: .92rem; color: rgba(255, 255, 255, .62); text-transform: uppercase; letter-spacing: .08em; }
.section:not(.section--dark) .stat__num { color: var(--primary); }
.section:not(.section--dark) .stat__label { color: var(--muted); }
@media (max-width: 900px) { .stats { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1.5rem; } }

/* ------------------------------------------------------------------- split */
.split { display: grid; grid-template-columns: 5fr 6fr; gap: clamp(2rem, 1rem + 5vw, 4.5rem); align-items: center; }
.split > * { min-width: 0; }
.split--top { align-items: start; }
.split .eyebrow, .split h2 { text-align: left; }
.split .section__head { margin: 0 0 1.5rem; text-align: left; max-width: none; }
.split-art {
  display: grid; place-items: center;
}
.split-art img {
  width: min(100%, 420px);
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 24px 44px rgba(60, 15, 120, .2));
}
@media (prefers-reduced-motion: reduce) { .split-art img { animation: none; } }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split-art { order: -1; }
  .split-art img { width: min(72%, 300px); }
}

/* --------------------------------------------------------------- checklist */
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.checklist.cols-2 { grid-template-columns: 1fr 1fr; max-width: 900px; margin-inline: auto; }
.checklist li {
  display: flex; gap: .8rem; align-items: flex-start;
  font-weight: 600; color: var(--ink); font-size: 1.03rem;
}
.section--dark .checklist li { color: rgba(255, 255, 255, .85); }
.checklist li::before {
  content: "";
  flex: none; margin-top: 2px;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--grad);
  -webkit-mask: no-repeat center / 13px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  mask: no-repeat center / 13px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}
.checklist.warn li::before {
  background: #f0a01e;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round'%3E%3Cline x1='12' y1='7' x2='12' y2='13'/%3E%3Cline x1='12' y1='17' x2='12.01' y2='17'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round'%3E%3Cline x1='12' y1='7' x2='12' y2='13'/%3E%3Cline x1='12' y1='17' x2='12.01' y2='17'/%3E%3C/svg%3E");
}
@media (max-width: 640px) { .checklist.cols-2 { grid-template-columns: 1fr; } }

/* ----------------------------------------------------------------- pricing */
.pricing { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 900px; margin-inline: auto; }
.plan {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.6rem 2.2rem;
  box-shadow: var(--sh-sm);
  text-align: center;
}
.plan.is-featured {
  border: 2px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box, var(--grad) border-box;
  box-shadow: var(--sh-lg);
}
.plan__tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  padding: 6px 16px; border-radius: 999px;
  background: var(--grad); color: #fff;
  font-size: .68rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase;
}
.plan h3 { margin-bottom: .7rem; }
.plan p { margin-bottom: 1.6rem; }
@media (max-width: 780px) { .pricing { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------- faq */
.faq { display: grid; gap: 12px; max-width: 860px; margin-inline: auto; }
.faq details {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: #fff;
  padding: 0 1.6rem;
  box-shadow: var(--sh-sm);
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.faq details:hover { border-color: var(--border-2); }
.faq details[open] {
  border-color: var(--primary-2);
  background: linear-gradient(180deg, #fdfbff, #fff 40%);
  box-shadow: 0 18px 45px -20px rgba(157, 78, 221, .35);
}
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; gap: 1rem;
  padding: 1.35rem 0;
  font-weight: 800; font-size: 1.04rem; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq .faq-q { flex: 1; }
.faq .faq-ico {
  flex: none;
  display: grid; place-items: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--border-2);
  color: var(--primary);
  transition: transform .3s cubic-bezier(.22, 1, .36, 1), background-color .2s ease, border-color .2s ease, color .2s ease;
}
.faq .faq-ico svg { width: 16px; height: 16px; }
.faq details[open] .faq-ico {
  transform: rotate(135deg);
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.faq .faq-a { overflow: hidden; }
.faq .faq-a > p {
  padding: 0 0 1.5rem;
  color: var(--body);
  max-width: 62ch;
}

/* ---------------------------------------------------------------- cta band */
.cta {
  position: relative; overflow: hidden;
  background: var(--grad);
  color: #fff;
  border-radius: var(--r-xl);
  padding: clamp(2.75rem, 1.5rem + 6vw, 5rem);
  text-align: center;
}
.cta::before, .cta::after { content: ""; position: absolute; border-radius: 50%; filter: blur(70px); }
.cta::before { width: 340px; height: 340px; top: -170px; left: -70px; background: rgba(255, 255, 255, .38); }
.cta::after { width: 300px; height: 300px; bottom: -180px; right: -50px; background: rgba(45, 0, 100, .5); }
.cta > * { position: relative; }
.cta h2 { color: #fff; }
.cta .eyebrow { color: #e6d2ff; }
.cta p { color: rgba(255, 255, 255, .9); margin-top: .8rem; font-size: 1.15rem; max-width: 54ch; margin-inline: auto; }
.cta .btn-row { margin-top: 2rem; }
.cta__meta { margin-top: 1.25rem; font-size: .88rem; color: rgba(255, 255, 255, .72); }

/* -------------------------------------------------------------- breadcrumb */
.breadcrumb { padding-block: 1rem; border-bottom: 1px solid var(--border); background: var(--bg-alt); }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: .4rem; list-style: none; padding: 0; margin: 0; font-size: .8rem; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.breadcrumb li::after { content: "›"; margin-left: .4rem; color: var(--border-2); }
.breadcrumb li:last-child::after { content: ""; }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--primary-ink); }
.breadcrumb [aria-current="page"] { color: var(--ink); font-weight: 700; }

/* --------------------------------------------------------------- page hero */
.page-hero {
  position: relative; overflow: hidden;
  padding-block: clamp(3rem, 2rem + 4vw, 5rem);
  background: radial-gradient(40% 60% at 50% 0%, rgba(155, 60, 255, .12), transparent 70%), linear-gradient(180deg, #fbf7ff, #fff);
  text-align: center;
}
.page-hero .lead { margin: 1.15rem auto 0; max-width: 62ch; }
.page-hero .btn-row { margin-top: 1.75rem; justify-content: center; }

/* ------------------------------------------------------- páginas legais / 404
   Hero com ícone + selo de data, corpo com seções numeradas e cartão de
   contato no fim. Cada página tem um ícone e um tom próprio. */
.legal-hero {
  position: relative; overflow: hidden;
  padding-block: clamp(3.5rem, 2.5rem + 5vw, 6rem) clamp(2.25rem, 1.8rem + 3vw, 3.5rem);
  text-align: center;
  background:
    radial-gradient(52% 72% at 50% 0%, rgba(155, 60, 255, .16), transparent 70%),
    linear-gradient(180deg, #faf6ff, #fff);
}
.legal-hero--cookies {
  background:
    radial-gradient(52% 72% at 50% 0%, rgba(234, 178, 100, .24), transparent 70%),
    linear-gradient(180deg, #fdf7ee, #fff);
}
.legal-hero--terms {
  background:
    radial-gradient(52% 72% at 50% 0%, rgba(91, 88, 224, .18), transparent 70%),
    linear-gradient(180deg, #f4f5ff, #fff);
}
.legal-hero__icon {
  display: grid; place-items: center;
  width: 70px; height: 70px; margin: 0 auto 1.4rem;
  border-radius: 22px;
  background: #fff; border: 1px solid var(--border-2);
  color: var(--primary);
  box-shadow: 0 20px 45px -18px rgba(60, 15, 120, .28);
}
.legal-hero--cookies .legal-hero__icon { color: #c8862f; }
.legal-hero--terms .legal-hero__icon { color: #5b58e0; }
.legal-hero__icon svg { width: 33px; height: 33px; }
.legal-hero h1 { margin-bottom: 1rem; }
.legal-hero__updated {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 15px; border-radius: 999px;
  background: #fff; border: 1px solid var(--border-2);
  font-size: .78rem; font-weight: 700; letter-spacing: .02em; color: var(--muted);
}
.legal-hero__updated::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--primary);
}

.legal { max-width: 740px; margin-inline: auto; counter-reset: legal; }
.legal__intro {
  font-size: 1.06rem; line-height: 1.6; color: var(--body);
  padding: 1.3rem 1.6rem; margin-bottom: 2.75rem;
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: var(--r-lg);
}
.legal h2 {
  counter-increment: legal;
  display: flex; align-items: center; gap: .85rem;
  font-size: 1.14rem; text-transform: none; letter-spacing: 0; line-height: 1.35;
  margin-top: 2.6rem; margin-bottom: .8rem;
}
.legal h2::before {
  content: counter(legal, decimal-leading-zero);
  flex: none;
  display: grid; place-items: center;
  width: 34px; height: 34px; border-radius: 11px;
  background: var(--grad); color: #fff;
  font-family: var(--font); font-size: .82rem; font-weight: 800; letter-spacing: 0;
}
.legal > p, .legal > ul { color: var(--body); }
.legal > p + p, .legal > ul, .legal > p { margin-top: .9rem; }
.legal ul { padding-left: 1.15rem; display: grid; gap: .5rem; }
.legal a { color: var(--primary-ink); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.legal__cta {
  margin-top: 3.25rem;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1rem 1.5rem;
  padding: 1.6rem 1.8rem;
  border-radius: var(--r-lg);
  background: linear-gradient(155deg, #faf6ff, #f2ebff);
  border: 1px solid var(--border-2);
}
.legal__cta p { font-weight: 700; color: var(--ink); margin: 0; }
.legal__cta .btn { flex: none; }
@media (max-width: 560px) {
  .legal__cta { flex-direction: column; align-items: stretch; text-align: center; }
  .legal__cta .btn { justify-content: center; }
}

/* -------------------------------------------------------------------- prose */
.prose { max-width: 760px; margin-inline: auto; }
.prose h2 { margin-top: 2.75rem; font-size: 1.5rem; text-align: left; }
.prose h3 { margin-top: 1.75rem; }
.prose p, .prose ul, .prose ol { margin-top: 1rem; }
.prose li { margin-top: .45rem; }
.prose a { text-decoration: underline; }
.split .prose { margin-inline: 0; text-align: left; }

/* --------------------------------------------------------------------- form */
.form {
  display: grid; gap: 1.15rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: clamp(1.6rem, 1rem + 3vw, 2.75rem);
  box-shadow: var(--sh);
  text-align: left;
}
.field { display: grid; gap: .4rem; }
.field label { font-weight: 800; color: var(--ink); font-size: .9rem; text-transform: uppercase; letter-spacing: .04em; }
.field .hint { font-size: .82rem; color: var(--muted); }
.field input, .field select, .field textarea {
  font: inherit; color: var(--ink);
  padding: 13px 15px;
  border: 1.5px solid var(--border-2);
  border-radius: var(--r-sm);
  background: #fff; width: 100%;
  transition: border-color .15s, box-shadow .15s;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--primary); outline: none; box-shadow: 0 0 0 4px var(--bg-alt);
}
.field .error-text { display: none; font-size: .85rem; font-weight: 700; color: var(--error); }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--error); background: var(--error-bg); }
.field.has-error .error-text { display: block; }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }
.form-status { padding: 13px 17px; border-radius: var(--r-sm); font-weight: 700; display: none; }
.form-status.is-ok { display: block; background: #e7f6ee; color: var(--success); }
.form-status.is-err { display: block; background: var(--error-bg); color: var(--error); }

/* ------------------------------------------------------------------ footer */
.site-footer {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--dark-1), var(--dark-2));
  color: rgba(255, 255, 255, .64);
  padding-block: clamp(3rem, 2rem + 4vw, 4.5rem) 2rem;
  font-size: .93rem;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: 2.5rem; }
.site-footer .brand { color: #fff; }
.footer-about { max-width: 34ch; margin-top: 1rem; color: rgba(255, 255, 255, .55); }
.site-footer h4 { color: #fff; font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.site-footer a { color: rgba(255, 255, 255, .64); text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-bottom {
  margin-top: 3rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between;
  font-size: .82rem; color: rgba(255, 255, 255, .4);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------- mobile chrome
   Cabeçalho normal no topo: foguete à esquerda, logo ao centro,
   botão de menu à direita. */
.mobile-bar {
  position: fixed; left: 0; right: 0; top: 0; z-index: 950;
  height: var(--mobilebar-h);
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  padding: 0 16px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 30px -22px rgba(27, 16, 51, .5);
}
.mobile-bar .mb-home { justify-self: start; color: var(--ink); }
/* foguete: SVG estático (fallback / sem JS); quando o Lottie carrega, o JS
   adiciona .is-lottie e a animação da lib assume, ampliada pra preencher. */
.mobile-bar .mb-rocket {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  overflow: hidden;
  transform-origin: 50% 58%;
  animation: rocket-hover 2.8s ease-in-out infinite;
}
.mobile-bar .mb-rocket.is-lottie { animation: none; }
.mobile-bar .mb-rocket svg { width: 100%; height: 100%; display: block; }
/* Lottie: canvas 1147x1722 com o foguete pequeno e centrado — amplia e
   deixa o overflow cortar só a margem vazia (o foguete inteiro aparece). */
.mobile-bar .mb-rocket.is-lottie svg { transform: scale(2.4); transform-origin: 50% 47%; }
@keyframes rocket-hover {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50%      { transform: translateY(-3px) rotate(3deg); }
}
@media (prefers-reduced-motion: reduce) {
  .mobile-bar .mb-rocket { animation: none; }
}
.mobile-bar .mb-logo { justify-self: center; }
.mobile-bar .mb-toggle { justify-self: end; }
.mobile-bar a, .mobile-bar button {
  display: inline-grid; place-items: center; min-width: 46px; min-height: 46px;
  background: none; border: 0; color: var(--ink); cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
/* nada de quadrado roxo no toque: o ícone que vira X já indica o estado */
.mobile-bar a:focus, .mobile-bar a:focus-visible,
.mobile-bar a:focus .ani, .mobile-bar a:focus-visible .ani,
.mobile-bar a:focus svg, .mobile-bar a:focus-visible svg { outline: none; }
#open-menu .ani { display: grid; place-items: center; }
#open-menu .close .line {
  fill: none; stroke: var(--primary); stroke-width: 6;
  transition: stroke-dasharray .55s cubic-bezier(.4, 0, .2, 1), stroke-dashoffset .55s cubic-bezier(.4, 0, .2, 1);
}
#open-menu .close .line1 { stroke-dasharray: 60 207; }
#open-menu .close .line2 { stroke-dasharray: 60 60; }
#open-menu .close .line3 { stroke-dasharray: 60 207; }
#open-menu.opened .close .line1 { stroke-dasharray: 90 207; stroke-dashoffset: -134; }
#open-menu.opened .close .line2 { stroke-dasharray: 1 60; stroke-dashoffset: -30; }
#open-menu.opened .close .line3 { stroke-dasharray: 90 207; stroke-dashoffset: -134; }

/* menu mobile — estrutura da referência upsites.digital:
   painel branco fullscreen, lista única e plana, linha = ícone redondo
   contornado + rótulo + chevron ">", redes sociais no rodapé. */
.mobile-panel {
  position: fixed; inset: 0; z-index: 940;
  background: #fff;
  padding-top: var(--mobilebar-h);
  overflow-y: auto;
  opacity: 0; visibility: hidden;
  transition: opacity .45s ease, visibility .45s ease;
}
.mobile-panel.is-open { opacity: 1; visibility: visible; }
.mobile-panel .menu-scroll {
  padding: 10px 0 40px;
  -webkit-overflow-scrolling: touch;
}
ul.menu-mobile { list-style: none; padding: 0; margin: 0; display: block; }
ul.menu-mobile > li { width: 100%; margin: 0; }
ul.menu-mobile > li + li { border-top: 1px solid var(--border); }
ul.menu-mobile a {
  position: relative;
  display: flex; align-items: center; gap: 20px;
  max-width: 380px; margin: 0 auto;
  padding: 15px 34px 15px 20px;
  font-weight: 500; font-size: 1rem; letter-spacing: 0; text-transform: none;
  color: var(--ink); text-decoration: none;
}
/* sem estado de hover no menu mobile — em touch ele "gruda" depois do toque */
@media (hover: hover) {
  ul.menu-mobile a:hover { color: var(--primary-ink); }
  ul.menu-mobile a:hover .box-icon { border-color: var(--primary); background: var(--bg-alt); }
}
.box-icon {
  flex: none; display: grid; place-items: center;
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--border-2);
  color: var(--primary); background: none;
  transition: border-color .2s ease, background-color .2s ease, color .2s ease;
}
.box-icon svg { width: 20px; height: 20px; }
.row-label { flex: 1; }
ul.menu-mobile a .row-chev {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  display: grid; color: var(--muted);
}
ul.menu-mobile .menu-cta a { font-weight: 700; color: var(--primary-ink); }
ul.menu-mobile .menu-cta .box-icon { border-color: var(--primary); background: var(--primary); color: #fff; }

ul.share {
  list-style: none; margin: 12px auto 0; padding: 0 20px;
  max-width: 380px;
  display: flex; align-items: center; justify-content: center; gap: 22px;
}
ul.share li { margin: 0; padding: 0; }
ul.share a {
  display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--border-2);
  color: var(--primary);
  transition: transform .2s ease, border-color .2s ease, background-color .2s ease;
}
ul.share a:hover { transform: scale(1.12); border-color: var(--primary); background: var(--bg-alt); }
ul.share svg { width: 20px; height: 20px; }

.wa-float {
  position: fixed; right: 20px; bottom: 26px; z-index: 930;
  display: grid; place-items: center;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--grad); color: #fff;
  box-shadow: 0 12px 30px rgba(157, 78, 221, .5);
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.07); }
.wa-float::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid rgba(157, 78, 221, .5);
  animation: wa-pulse 2.4s ease-out infinite;
}
@keyframes wa-pulse { 0% { transform: scale(1); opacity: .7; } 70% { transform: scale(1.5); opacity: 0; } 100% { transform: scale(1.5); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .wa-float::after { animation: none; } }
@media (max-width: 1040px) { .wa-float { bottom: 20px; } }

/* cookie banner — card no canto, com biscoito ilustrado */
.cookie-banner[hidden] { display: none !important; }
.cookie-banner {
  position: fixed; left: 18px; bottom: 18px; z-index: 1000;
  width: min(400px, calc(100vw - 36px));
  display: flex; gap: 14px; align-items: flex-start;
  background: #fff;
  border: 1px solid var(--border-2);
  border-radius: 22px;
  box-shadow: 0 26px 60px -18px rgba(60, 15, 120, .38), 0 4px 12px -4px rgba(27, 16, 51, .12);
  padding: 18px 20px;
  animation: cookie-in .5s cubic-bezier(.22, 1, .36, 1);
}
@keyframes cookie-in { from { opacity: 0; transform: translateY(20px) scale(.95); } to { opacity: 1; transform: none; } }
.cookie-banner__cookie {
  flex: none;
  display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 14px;
  background: linear-gradient(160deg, #fdf3e3, #f3e2c8);
  border: 1px solid #efe0c6;
}
.cookie-banner__cookie svg { animation: cookie-wiggle 4.5s ease-in-out infinite; transform-origin: 50% 60%; }
@keyframes cookie-wiggle {
  0%, 88%, 100% { transform: rotate(0); }
  92% { transform: rotate(-10deg); }
  96% { transform: rotate(8deg); }
}
.cookie-banner__title { font-family: var(--font-head); font-weight: 800; color: var(--ink); font-size: .95rem; margin-bottom: 4px; }
.cookie-banner__text { font-size: .84rem; line-height: 1.5; color: var(--body); }
.cookie-banner__text a { color: var(--primary-ink); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.cookie-banner .cookie-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: 13px; }
.cookie-btn {
  font: inherit; font-size: .8rem; font-weight: 700; letter-spacing: .01em;
  padding: 8px 16px; border-radius: 999px; cursor: pointer;
  border: 1.5px solid var(--border-2); background: #fff; color: var(--ink);
  transition: border-color .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.cookie-btn:hover { border-color: var(--primary); color: var(--primary-ink); }
.cookie-btn--accept { border-color: transparent; background: var(--grad); color: #fff; box-shadow: 0 8px 18px -6px rgba(157, 78, 221, .55); }
.cookie-btn--accept:hover { color: #fff; transform: translateY(-1px); box-shadow: 0 12px 22px -6px rgba(157, 78, 221, .6); }
.cookie-btn--link { border-color: transparent; background: transparent; color: var(--muted); padding-inline: 6px; }
.cookie-btn--link:hover { color: var(--primary-ink); }
@media (prefers-reduced-motion: reduce) {
  .cookie-banner, .cookie-banner__cookie svg { animation: none; }
}
@media (max-width: 1040px) {
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; width: auto; }
}

/* --------------------------------------------------------------------- 404 */
.notfound { min-height: 66vh; display: grid; place-content: center; text-align: center; padding-block: 4rem; }
.notfound .legal-hero__icon { margin-bottom: 1.3rem; }
.notfound .code {
  font-weight: 900; font-size: clamp(3.5rem, 2.4rem + 10vw, 7rem); line-height: 1;
  color: var(--primary);
  margin-bottom: .4rem;
  background: linear-gradient(180deg, var(--primary), var(--primary-2));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.notfound h1 { font-size: clamp(1.35rem, 1.1rem + 1.6vw, 2rem); }
.notfound .lead { margin: 1rem auto 0; max-width: 46ch; }
.notfound .btn-row { margin-top: 2rem; justify-content: center; }

/* =====================================================================
   Landing page — componentes específicos da página única
   ===================================================================== */

.sr-only {
  position: absolute !important;
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* header simplificado das páginas legais: só logo + "voltar" */
.site-header--min .nav-desktop { margin-inline: auto 0; }
.site-header--min .header-inner { justify-content: space-between; }

/* métricas em cards claros (faixa de números da referência) */
.stats--cards {
  gap: 20px;
}
.stats--cards .stat {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem 1.25rem;
  box-shadow: var(--sh-sm);
}

/* diferenciais em 2 colunas no desktop */
@media (min-width: 760px) {
  .feature-list--2col { grid-template-columns: 1fr 1fr; column-gap: clamp(2rem, 1rem + 4vw, 4rem); }
  .feature-list--2col li:first-child { padding-top: 1.75rem; }
  .feature-list--2col li:nth-child(2) { border-top: 0; padding-top: 1.75rem; }
}

.checklist-title {
  font-weight: 800; color: var(--ink); font-size: 1.05rem;
  margin-bottom: 1.1rem;
}

/* rodapé da LP: 4 colunas em vez de 5 */
.footer-grid--lp { grid-template-columns: 1.6fr repeat(3, 1fr); }
@media (max-width: 900px) { .footer-grid--lp { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid--lp { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------- comparação */
.compare { max-width: 960px; margin-inline: auto; overflow-x: auto; }
.compare__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: .96rem;
}
.compare__table th,
.compare__table td {
  padding: 1rem 1.1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--border);
}
.compare__table thead th {
  font-size: .74rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted);
  border-bottom: 2px solid var(--border-2);
}
.compare__table thead th.is-us { color: var(--primary-ink); }
.compare__table tbody th[scope="row"] {
  font-weight: 800; color: var(--ink); text-transform: none; letter-spacing: 0;
  white-space: nowrap;
}
.compare__table td { color: var(--body); }
.compare__table .is-us {
  background: linear-gradient(180deg, #fbf5ff, #f6eeff);
  color: var(--ink);
  font-weight: 600;
}
.compare__table tbody tr:first-child .is-us { box-shadow: inset 0 2px 0 var(--primary-2); }
.compare__table tbody tr:last-child th,
.compare__table tbody tr:last-child td { border-bottom: 0; }

@media (max-width: 900px) {
  .compare { overflow-x: visible; }
  .compare__table,
  .compare__table thead,
  .compare__table tbody,
  .compare__table tr { display: block; }
  .compare__table thead { display: none; }
  .compare__table tr {
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 1.1rem 1.25rem;
    margin-bottom: 14px;
    background: #fff;
    box-shadow: var(--sh-sm);
  }
  .compare__table tbody th[scope="row"] {
    display: block;
    padding: 0 0 .6rem;
    border: 0;
    font-size: 1.05rem;
  }
  .compare__table td {
    display: grid;
    grid-template-columns: minmax(0, 8.5rem) 1fr;
    gap: .25rem 1rem;
    padding: .55rem 0;
    border-bottom: 1px solid var(--border);
  }
  .compare__table tr td:last-child { border-bottom: 0; padding-bottom: 0; }
  .compare__table td::before {
    content: attr(data-label);
    font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
    color: var(--muted);
  }
  .compare__table td.is-us {
    margin-top: .4rem;
    border-radius: var(--r-sm);
    padding: .7rem .8rem;
  }
  .compare__table td.is-us::before { color: var(--primary-ink); }
}
