/* =========================================================================
   PIZCON — Landing page (HTML/CSS/JS puro)
   Base estrutural: sideshift.app  ·  Header mobile: site antigo PIZCON
   ========================================================================= */

/* ----------------------------------------------------------------------- *
 * 1. Reset + tokens
 * ----------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; }

:root {
  /* Marca / paleta extraída da logo PIZCON */
  --gold:        #FFC400;   /* CTA sólido / destaque / texto sobre escuro */
  --gold-ink:    #8C6A00;   /* dourado legível sobre fundo claro — WCAG AA (>=4.5:1) */
  --gold-line:   #C49100;   /* dourado de traço/borda (uso não-textual) */
  --gold-soft:   #FFF6DC;   /* wash dourado */
  --gold-deep:   #A97C00;

  --ink:         #12100C;   /* texto principal + seções escuras */
  --ink-soft:    #1D1A14;
  --body:        #4B443B;   /* corpo de texto sobre claro */
  --muted:       #736A5D;   /* apoio */
  --on-dark:     #F6F1E7;   /* texto sobre escuro */
  --on-dark-mut: rgba(246,241,231,.64);

  --bg:          #FFFFFF;
  --bg-warm:     #FAF7F1;
  --bg-warm-2:   #F3EEE3;
  --line:        #E9E3D8;
  --line-strong: #D9D1C3;

  /* Bandeira da Itália (detalhe recorrente da marca) */
  --it-green: #009246;
  --it-white: #F7F3EA;
  --it-red:   #CE2B37;

  --r-sm: 10px;
  --r:    14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --pill: 999px;

  --shadow-sm: 0 1px 2px rgba(18,16,12,.05), 0 6px 16px -10px rgba(18,16,12,.18);
  --shadow-md: 0 2px 6px rgba(18,16,12,.06), 0 22px 48px -24px rgba(18,16,12,.28);
  --shadow-gold: 0 16px 34px -12px rgba(255,196,0,.45);

  --container: 1160px;
  --gutter: clamp(1.15rem, 5vw, 2.5rem);
  --section-y: clamp(3.75rem, 8vw, 7rem);

  --header-h-mobile: 78px;

  --ease: cubic-bezier(.16, 1, .3, 1);
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
          Helvetica, Arial, sans-serif;
}

/* ----------------------------------------------------------------------- *
 * 2. Base
 * ----------------------------------------------------------------------- */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-deep) var(--bg-warm-2);
}

/* Barra de rolagem dourada personalizada (WebKit) */
html::-webkit-scrollbar,
body::-webkit-scrollbar { width: 12px; height: 12px; }
html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track { background: var(--bg-warm-2); }
html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #FFD54D 0%, #FFC400 45%, #C49100 100%);
  border: 3px solid var(--bg-warm-2);
  border-radius: 999px;
}
html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover { background: #FFD54D; }

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture, svg, video { display: block; max-width: 100%; }
img, video { height: auto; }

a { color: inherit; text-decoration: none; }

button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; }

h1, h2, h3, h4 {
  color: var(--ink);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -.02em;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid var(--gold-ink);
  outline-offset: 2px;
  border-radius: 4px;
}

[hidden] { display: none !important; }

::selection { background: var(--gold); color: var(--ink); }

/* ----------------------------------------------------------------------- *
 * 3. Utilities / layout primitives
 * ----------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* grids: coluna única explícita no mobile; filhos podem encolher */
.hero__grid,
.testi__grid,
.diag__grid,
.faq__grid,
.feature,
.site-footer__top { grid-template-columns: minmax(0, 1fr); }

.hero__grid > *,
.testi__grid > *,
.diag__grid > *,
.faq__grid > *,
.feature > *,
.proofbar__inner > *,
.hero__actions > *,
.leadform,
.card,
.stat { min-width: 0; }

.section { padding-block: var(--section-y); }
.section--warm  { background: var(--bg-warm); }
.section--warm2 { background: var(--bg-warm-2); }
.section--dark {
  background: var(--ink);
  color: var(--on-dark);
}
.section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 2000;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-ink);
}
.eyebrow::before {
  content: "";
  width: 2.2rem;
  height: 2px;
  background: linear-gradient(to right, var(--gold-ink), transparent);
}
.section--dark .eyebrow { color: var(--gold); }
.section--dark .eyebrow::before { background: linear-gradient(to right, var(--gold), transparent); }

.section-head {
  max-width: 46rem;
  margin-bottom: clamp(2rem, 5vw, 3.25rem);
}
.section-head h2 {
  margin-top: .9rem;
  font-size: clamp(1.7rem, 1rem + 2.7vw, 2.65rem);
}
.section-head p {
  margin-top: 1rem;
  font-size: 1.06rem;
  color: var(--muted);
}
.section--dark .section-head p { color: var(--on-dark-mut); }

.italian-rule {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 3px;
  width: 100%;
}
.italian-rule span:nth-child(1) { background: var(--it-green); }
.italian-rule span:nth-child(2) { background: var(--it-white); }
.italian-rule span:nth-child(3) { background: var(--it-red); }

/* ----------------------------------------------------------------------- *
 * 4. Buttons
 * ----------------------------------------------------------------------- */
.btn {
  --btn-bg: var(--gold);
  --btn-fg: var(--ink);
  --btn-bd: var(--gold-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  min-height: 48px;
  padding: .85rem 1.6rem;
  border: 2px solid var(--btn-bd);
  border-radius: var(--pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-weight: 700;
  font-size: .98rem;
  line-height: 1.25;
  letter-spacing: -.01em;
  max-width: 100%;
  text-align: center;
  text-wrap: balance;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease),
              background-color .25s var(--ease), color .25s var(--ease);
}
.btn svg { width: 1.15em; height: 1.15em; }
.btn > .btn__arrow { flex-shrink: 0; }
.btn--primary { box-shadow: var(--shadow-gold); }
.btn--primary:hover {
  transform: translateY(-2px);
  background: #fff;
  color: var(--gold-ink);
  box-shadow: 3px 3px 0 0 var(--gold-ink);
}
.btn--ghost {
  --btn-bg: #fff;
  --btn-fg: var(--gold-ink);
  box-shadow: var(--shadow-sm);
}
.btn--ghost:hover { transform: translateY(-2px); box-shadow: 3px 3px 0 0 var(--gold-ink); }
.btn--on-dark {
  --btn-bg: transparent;
  --btn-fg: #fff;
  --btn-bd: rgba(246,241,231,.4);
}
.btn--on-dark:hover { --btn-bg: rgba(255,255,255,.08); transform: translateY(-2px); }
.btn--lg { min-height: 54px; padding: 1rem 2rem; font-size: 1.05rem; }
.btn--sm {
  min-height: 40px;
  padding: .5rem .95rem;
  font-size: .85rem;
  border-width: 1.5px;
  gap: .45rem;
}
.btn--sm .btn__arrow { width: 1.3rem; height: 1.3rem; }
.btn--sm .btn__arrow svg { width: .8rem; height: .8rem; }
.btn--block { display: flex; width: 100%; }
.btn[disabled] { opacity: .65; cursor: progress; transform: none; }

.btn__arrow {
  display: inline-grid;
  place-items: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: var(--pill);
  background: var(--ink);
  color: var(--gold);
  transition: transform .25s var(--ease);
}
.btn:hover .btn__arrow { transform: translateX(3px); }
.btn--primary:hover .btn__arrow { background: var(--gold-ink); color: #fff; }

/* ----------------------------------------------------------------------- *
 * 5. Header — desktop
 * ----------------------------------------------------------------------- */
/* Mobile: header FIXO — não some com o scroll-lock do menu (bug do iOS com sticky) */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
}
body { padding-top: var(--header-h-mobile); }

.header-notice {
  display: none;
  background: var(--gold);
  color: var(--ink);
  text-align: center;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: .5rem 1rem;
}

.header-bar { display: none; background: var(--bg); border-bottom: 1px solid var(--line); }
.header-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: 76px;
}
.header-logo img { height: 34px; width: auto; }

.header-nav { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 1.9rem); }
.header-nav a {
  position: relative;
  font-size: .9rem;
  font-weight: 700;
  color: #2A241A;
  padding: .25rem 0;
  transition: color .2s var(--ease);
}
.header-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--gold-ink);
  transition: width .25s var(--ease);
}
.header-nav a:hover { color: var(--gold-ink); }
.header-nav a:hover::after { width: 100%; }

/* ----------------------------------------------------------------------- *
 * 6. Header — mobile (RÉPLICA IDÊNTICA do site antigo PIZCON)
 * ----------------------------------------------------------------------- */
.m-header {
  position: relative;
  height: var(--header-h-mobile);
  overflow: hidden;
  background: #fff;               /* sólido: nada de conteúdo vazando por baixo do header fixo */
}
.m-header__cut {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 3px 2px rgba(18,16,12,.06));   /* leve relevo na curva */
}
.m-header__row {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
  padding-inline: 20px;
}
.m-header__home {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  min-height: 40px;
  font-size: .95rem;
  font-weight: 700;
  color: #81776A;
}
.m-header__home svg { width: 22px; height: 22px; }

.m-header__logo {
  position: absolute;
  left: 50%;
  top: 12px;
  z-index: 20;
  width: 50px;
  height: 50px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.m-header__logo img { width: 100%; height: 100%; object-fit: contain; }

.m-header__stripe {
  position: absolute;
  left: 0;
  top: 51px;
  z-index: 10;
  width: 100%;
  height: 27px;
}

.m-header__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--gold-line);
}

/* Ícone hambúrguer animado (classe .pizcon-burger-menu do site antigo) */
.pizcon-burger-menu {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  color: var(--gold-line);
}
.pizcon-burger-menu svg { width: 2rem; height: 2rem; overflow: visible; }
.pizcon-burger-menu__line {
  fill: none;
  stroke: currentColor;
  stroke-width: 5;
  stroke-linecap: round;
  transform-box: fill-box;
  transform-origin: center;
  transition: opacity 220ms ease,
              transform 480ms cubic-bezier(.16, 1, .3, 1);
}
.pizcon-burger-menu.is-open .pizcon-burger-menu__line--top {
  transform: translateY(10px) rotate(45deg);
}
.pizcon-burger-menu.is-open .pizcon-burger-menu__line--middle {
  opacity: 0;
  transform: scaleX(.12);
}
.pizcon-burger-menu.is-open .pizcon-burger-menu__line--bottom {
  transform: translateY(-10px) rotate(-45deg);
}

/* ----------------------------------------------------------------------- *
 * 7. Menu mobile — painel fullscreen com FADE (opacity/visibility)
 *    Organização inspirada em upsites.digital
 * ----------------------------------------------------------------------- */
.m-menu {
  position: fixed;
  inset: var(--header-h-mobile) 0 0 0;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  background: #fff;
  color: var(--ink);
  opacity: 0;
  visibility: hidden;          /* troca instantânea junto com a classe (não entra na transição) */
  pointer-events: none;
  transition: opacity .25s var(--ease);
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.m-menu.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.m-menu:focus { outline: none; }   /* foco programático no painel (a11y) sem caixa visível */

.m-menu__scroll {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;          /* garante o scroll da lista em webviews (Instagram/FB) */
  overscroll-behavior: contain;
  padding-top: 1.25rem;
}
.m-menu__brand {
  display: flex;
  justify-content: center;
  padding: .25rem 1.5rem 1.25rem;
}
.m-menu__brand img { height: 54px; width: auto; }

.m-menu__list { list-style: none; }
.m-menu__list a {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 62px;
  padding: .5rem 1.5rem;
  background: #fff;
  color: #5F584D;
  border-top: 1px solid var(--line);
  font-size: 1.05rem;
  font-weight: 600;
}
.m-menu__list li:last-child a { border-bottom: 1px solid var(--line); }
.m-menu__list a[aria-current="true"] { background: #F5F3EE; color: var(--gold-ink); }
.m-menu__ico {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border: 1px solid var(--line-strong);
  border-radius: var(--pill);
  color: #70685E;
}
.m-menu__ico svg { width: 22px; height: 22px; }
.m-menu__list a[aria-current="true"] .m-menu__ico { border-color: var(--gold-ink); color: var(--gold-ink); }
.m-menu__label { flex: 1; min-width: 0; }
.m-menu__chev { color: #70685E; flex-shrink: 0; }

.m-menu__foot {
  flex-shrink: 0;
  padding: 1.25rem 1.5rem;
  padding-bottom: max(1.75rem, env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
}
.m-menu__cta {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .8rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  background: #F5F3EE;
  box-shadow: 0 14px 34px rgba(18,16,12,.08);
}
.m-menu__cta-ico {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: var(--pill);
  background: var(--gold);
  color: var(--ink);
}
.m-menu__cta-txt { flex: 1; min-width: 0; }
.m-menu__cta-txt b { display: block; font-size: .88rem; color: var(--gold-ink); }
.m-menu__cta-txt span { display: block; margin-top: 2px; font-size: .78rem; font-weight: 600; color: #5F584D; }
.m-menu__social {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.25rem;
  padding-inline: .25rem;
  color: var(--gold-ink);
}
.m-menu__social a { display: grid; place-items: center; width: 40px; height: 40px; }

/* ----------------------------------------------------------------------- *
 * 8. Hero
 * ----------------------------------------------------------------------- */
.hero { padding-block: clamp(2.5rem, 6vw, 4.5rem) var(--section-y); }
.hero__grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
.hero__kicker {
  font-style: italic;
  font-weight: 700;
  color: var(--gold-ink);
  font-size: 1rem;
  margin-bottom: 1rem;
}
.hero__stars { display: flex; gap: .2rem; color: var(--gold); margin-bottom: .4rem; }
.hero__stars svg { width: 20px; height: 20px; }
.hero h1 {
  font-size: clamp(1.9rem, .9rem + 4vw, 3.6rem);
  font-weight: 900;
  margin-block: .5rem .9rem;
  text-transform: uppercase;
}
.hero h1 .g { color: var(--gold-ink); }
.hero h1 .r { color: var(--it-red); }
.hero h1 .v { color: var(--it-green); }
.hero__sub {
  font-size: clamp(1.02rem, .9rem + .5vw, 1.18rem);
  color: var(--muted);
  max-width: 34rem;
}
.hero__note {
  margin-top: 1rem;
  padding-left: .9rem;
  border-left: 3px solid var(--gold);
  font-size: .92rem;
  font-style: italic;
  color: var(--body);
  max-width: 34rem;
}
.hero__actions {
  display: flex;
  flex-direction: column-reverse;   /* mobile: "Ver Como Funciona" acima do CTA dourado */
  align-items: flex-start;
  gap: .9rem;
  margin-top: 1.6rem;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem .9rem;
  margin-top: 1.4rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--muted);
}
.hero__trust span { display: inline-flex; align-items: center; gap: .4rem; }
.hero__trust svg { width: 15px; height: 15px; color: var(--it-green); }

/* Painel "leitura do dono" — mock */
.hero__panel {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background:
    radial-gradient(120% 80% at 100% 0%, var(--gold-soft), transparent 60%),
    #fff;
  box-shadow: var(--shadow-md);
  padding: clamp(1.2rem, 3vw, 1.75rem);
}
.hero__panel-top {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed var(--line-strong);
}
.hero__panel-top img { width: 38px; height: 38px; }
.hero__panel-top b { font-size: .9rem; color: var(--ink); }
.hero__panel-top span { font-size: .74rem; color: var(--muted); font-weight: 600; }
.hero__metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .7rem;
  margin-top: 1rem;
}
.hero__metric {
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: .7rem .8rem;
  background: #fff;
}
.hero__metric span { font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.hero__metric b { display: block; margin-top: .15rem; font-size: 1.15rem; color: var(--ink); }
.hero__bar { margin-top: 1rem; }
.hero__bar-label { display: flex; justify-content: space-between; font-size: .74rem; font-weight: 700; color: var(--muted); }
.hero__bar-track { margin-top: .4rem; height: 8px; border-radius: var(--pill); background: var(--bg-warm-2); overflow: hidden; }
.hero__bar-fill { height: 100%; width: 62%; border-radius: inherit; background: linear-gradient(90deg, var(--gold), var(--gold-deep)); }

/* ----------------------------------------------------------------------- *
 * 9. Faixa de prova social (thin)
 * ----------------------------------------------------------------------- */
.proofbar { border-block: 1px solid var(--line); background: var(--bg-warm); }
.proofbar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.6rem;
  padding-block: 1.4rem;
}
.proofbar__tag {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-ink);
}
.proofbar__quote { flex: 1; min-width: 260px; font-size: .98rem; color: var(--body); }
.proofbar__quote b { color: var(--ink); }
.proofbar__who { display: flex; align-items: center; gap: .6rem; font-size: .84rem; font-weight: 600; color: var(--muted); }
.proofbar__avatar {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: var(--pill);
  background: var(--ink);
  color: var(--gold);
  font-weight: 800;
  font-size: .9rem;
}

/* ----------------------------------------------------------------------- *
 * 10. Marquee de ferramentas
 * ----------------------------------------------------------------------- */
.tools { padding-block: clamp(2.5rem, 5vw, 3.5rem); background: var(--bg); border-bottom: 1px solid var(--line); }
.tools__label {
  text-align: center;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.4rem;
}
.marquee {
  overflow: hidden;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 48s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee__track,
.marquee:focus-within .marquee__track { animation-play-state: paused; }
.marquee__group {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin: 0;
  padding: 0 .45rem 0 0;   /* zera o padding-inline-start padrão do <ul>; .45rem + gap = emenda idêntica ao ritmo interno */
  list-style: none;
  flex: 0 0 auto;
}
.marquee__group > .chip:first-child { margin-left: .45rem; }
/* pista = 4 grupos idênticos → -25% avança exatamente 1 grupo: loop sem emenda,
   e sempre há 3 grupos preenchendo a tela (cobre telas ultrawide / 4K) */
@keyframes marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-25%, 0, 0); }
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .7rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--pill);
  background: #fff;
  font-size: .9rem;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}
.chip__ico { display: inline-flex; width: 20px; height: 20px; flex-shrink: 0; }
.chip__ico svg { width: 100%; height: 100%; }
.chip__ico--brand { color: var(--gold-line); }   /* ícones próprios PIZCON herdam o dourado */

/* ----------------------------------------------------------------------- *
 * 11. Números
 * ----------------------------------------------------------------------- */
.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.stat {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: #fff;
  padding: 1.3rem 1.2rem;
  box-shadow: var(--shadow-sm);
}
.stat b {
  display: block;
  font-size: clamp(1.7rem, 1rem + 2.1vw, 2.4rem);
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -.02em;
  line-height: 1.1;
  overflow-wrap: break-word;
}
.stat span { display: block; margin-top: .3rem; font-size: .92rem; font-weight: 700; color: var(--ink); }
.stat small { display: block; margin-top: .25rem; font-size: .82rem; color: var(--muted); }

/* ----------------------------------------------------------------------- *
 * 12. Cards genéricos (método, resultados)
 * ----------------------------------------------------------------------- */
.cards {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
.cards--3 { grid-template-columns: 1fr; }
.card {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: #fff;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.card:hover { transform: translateY(-4px); border-color: rgba(196,145,0,.5); box-shadow: var(--shadow-md); }
.card__ico {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: var(--r-sm);
  background: var(--gold-soft);
  color: var(--gold-ink);
  margin-bottom: 1rem;
}
.card__ico svg { width: 24px; height: 24px; }
.card h3 { font-size: 1.12rem; margin-bottom: .5rem; }
.card p { font-size: .95rem; color: var(--muted); }
.card__kicker { font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-ink); }

.section--dark .card {
  background: var(--ink-soft);
  border-color: rgba(246,241,231,.12);
  box-shadow: none;
}
.section--dark .card p { color: var(--on-dark-mut); }
.section--dark .card__ico { background: rgba(255,196,0,.14); color: var(--gold); }

/* ----------------------------------------------------------------------- *
 * 13. Ciclo — 6 passos individuais
 * ----------------------------------------------------------------------- */
.cycle { margin-top: clamp(2.5rem, 6vw, 4rem); }
.cycle__lead {
  font-size: clamp(1.15rem, 1rem + 1vw, 1.5rem);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 1.5rem;
  max-width: 34rem;
}
.cycle__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  counter-reset: cyc;
}
.cycle__step {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: #fff;
  padding: 1.4rem 1.4rem 1.4rem 1.4rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.cycle__step::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(var(--gold), var(--gold-deep));
}
.cycle__step:hover {
  transform: translateY(-4px);
  border-color: rgba(196,145,0,.5);
  box-shadow: var(--shadow-md);
}
.cycle__n {
  display: inline-block;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .12em;
  color: var(--gold-ink);
}
.cycle__step h3 { margin-block: .3rem .5rem; font-size: 1.18rem; }
.cycle__step p { color: var(--muted); font-size: .95rem; }

/* ----------------------------------------------------------------------- *
 * 14. Ecossistema — blocos alternados
 * ----------------------------------------------------------------------- */
.feature {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  padding-block: clamp(2rem, 5vw, 3rem);
}
.feature + .feature { border-top: 1px solid rgba(246,241,231,.12); }
.feature__body .verb {
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
}
.feature__body h3 { font-size: clamp(1.35rem, 1rem + 1.6vw, 1.9rem); margin-block: .5rem .7rem; }
.feature__body p { color: var(--on-dark-mut); max-width: 32rem; }
.feature__body .focus {
  margin-top: .9rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--on-dark);
  letter-spacing: .02em;
}
.feature__visual {
  border: 1px solid rgba(246,241,231,.14);
  border-radius: var(--r-lg);
  background: linear-gradient(160deg, rgba(255,196,0,.12), transparent 60%), var(--ink-soft);
  padding: clamp(1.4rem, 4vw, 2.2rem);
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .7rem;
}
.feature__visual .big {
  font-size: clamp(1.6rem, 1rem + 3vw, 2.4rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -.02em;
}
.feature__visual .row {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .86rem;
  color: var(--on-dark-mut);
}
.feature__visual .row svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }
.feature__price {
  display: inline-flex;
  align-items: baseline;
  gap: .35rem;
  margin-top: .3rem;
}
.feature__price b { font-size: 1.5rem; color: #fff; font-weight: 900; }
.feature__price span { font-size: .82rem; color: var(--on-dark-mut); }

/* ----------------------------------------------------------------------- *
 * 15. Tabela comparativa
 * ----------------------------------------------------------------------- */
.compare__wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow-sm); }
.compare {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  background: #fff;
}
.compare th, .compare td {
  padding: 1rem 1.1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
  font-size: .92rem;
}
.compare thead th {
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--bg-warm);
}
.compare thead th.is-pizcon { color: var(--gold-ink); background: var(--gold-soft); }
.compare tbody th { font-weight: 700; color: var(--ink); width: 26%; }
.compare td.is-pizcon { background: rgba(255,196,0,.06); color: var(--ink); font-weight: 600; }
.compare tr:last-child td, .compare tbody tr:last-child td, .compare tbody tr:last-child th { border-bottom: 0; }
.compare .ic { display: inline-flex; align-items: center; gap: .45rem; }
.compare .ic svg { width: 16px; height: 16px; flex-shrink: 0; }
.compare .ic--yes svg { color: var(--it-green); }
.compare .ic--no svg { color: #B98F8F; }

/* ----------------------------------------------------------------------- *
 * 16. Mapa — domínios (pills + cards)
 * ----------------------------------------------------------------------- */
.map__pills {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.5rem;
}
.map__pill {
  padding: .55rem 1rem;
  border: 1px solid rgba(246,241,231,.22);
  border-radius: var(--pill);
  background: rgba(246,241,231,.04);
  color: var(--on-dark-mut);
  font-size: .84rem;
  font-weight: 700;
  transition: all .2s var(--ease);
}
.map__pill:hover { border-color: rgba(246,241,231,.5); color: var(--on-dark); }
.map__pill[aria-selected="true"] { background: var(--gold); border-color: var(--gold); color: var(--ink); }

/* painéis: crossfade suave em vez de troca seca */
.map__panels { position: relative; }
.map__panel {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  inset: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s;
}
.map__panel.is-active {
  opacity: 1;
  visibility: visible;
  position: relative;
  transform: none;
  pointer-events: auto;
}
.map__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: .7rem;
}
.map__item {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(246,241,231,.12);
  border-radius: var(--r-sm);
  background: var(--ink-soft);
}
.map__item svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.map__item b { color: #fff; font-size: .95rem; display: block; }
.map__item span { color: var(--on-dark-mut); font-size: .85rem; }
.map__item em {
  display: block;
  font-style: normal;
  margin-top: .55rem;
  padding-top: .55rem;
  border-top: 1px solid rgba(246,241,231,.12);
  color: var(--gold);
  font-size: .78rem;
}

/* ----------------------------------------------------------------------- *
 * 17. Resultados — antes/depois
 * ----------------------------------------------------------------------- */
.beforeafter {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}
.ba {
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.3rem;
  background: #fff;
}
.ba span { font-size: .74rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.ba--before span { color: #B98F8F; }
.ba--after span { color: var(--it-green); }
.ba b { display: block; margin-top: .4rem; font-size: 1.05rem; color: var(--ink); }
.ba--after { background: var(--gold-soft); border-color: rgba(255,196,0,.4); }

/* ----------------------------------------------------------------------- *
 * 18. Prova social — depoimento + vídeo
 * ----------------------------------------------------------------------- */
.testi__grid { display: grid; gap: clamp(1.75rem, 4vw, 3rem); align-items: center; }
.testi__col { min-width: 0; }
.testi__col h2 {
  margin-top: .9rem;
  font-size: clamp(1.6rem, 1rem + 2.4vw, 2.4rem);
}
.testi__lead {
  margin-top: 1rem;
  color: var(--on-dark-mut);
  font-size: 1.02rem;
}
.testi__quote {
  margin-top: 1.6rem;
  font-size: clamp(1.1rem, 1rem + 1vw, 1.45rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.5;
}
.testi__quote::before { content: "\201C"; color: var(--gold); }
.testi__quote::after { content: "\201D"; color: var(--gold); }
.testi__who { margin-top: 1.1rem; display: flex; align-items: center; gap: .8rem; }
.testi__who .av {
  display: grid; place-items: center;
  width: 46px; height: 46px;
  border-radius: var(--pill);
  background: var(--gold); color: var(--ink);
  font-weight: 900;
}
.testi__who b { color: #fff; display: block; font-size: .95rem; }
.testi__who span { color: var(--on-dark-mut); font-size: .84rem; }
.testi__badge {
  display: inline-block;
  margin-top: 1rem;
  padding: .35rem .8rem;
  border: 1px solid rgba(255,196,0,.4);
  border-radius: var(--pill);
  font-size: .76rem;
  font-weight: 700;
  color: var(--gold);
}
.testi__video {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin-inline: auto;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(246,241,231,.16);
  background: #000;
}
.testi__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.testi__sound {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .5rem .9rem;
  border-radius: var(--pill);
  background: rgba(18,16,12,.72);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  backdrop-filter: blur(6px);
}
.testi__sound svg { width: 15px; height: 15px; }

/* ----------------------------------------------------------------------- *
 * 19. Formulário de diagnóstico
 * ----------------------------------------------------------------------- */
.diag__head { max-width: 44rem; margin-inline: auto; text-align: center; margin-bottom: clamp(1.75rem, 4vw, 2.5rem); }
.diag__head .eyebrow { justify-content: center; }
.diag__head .eyebrow::before { display: none; }

/* faixa de garantias — cartões com ícone */
.diag__stats {
  list-style: none;
  margin: 0 0 clamp(2rem, 5vw, 3.25rem);
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem;
}
.diag__stats li {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.diag__stats li:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.diag__stat-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--gold-soft, rgba(214,158,46,.14));
  color: var(--gold-ink);
}
.diag__stat-ico svg { width: 1.3rem; height: 1.3rem; }
.diag__stat-txt { display: flex; flex-direction: column; gap: .1rem; min-width: 0; }
.diag__stats b { font-size: 1.08rem; font-weight: 800; color: var(--ink); }
.diag__stats span { font-size: .82rem; color: var(--muted); line-height: 1.3; }

.diag__grid { display: grid; gap: clamp(1.75rem, 4vw, 3rem); align-items: start; }
.diag__info { min-width: 0; }
.diag__h {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-ink);
  margin: 1.75rem 0 .9rem;
}
.diag__h:first-child { margin-top: 0; }

.diag__flow {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .6rem;
}
.diag__flow li {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .92rem;
  font-weight: 600;
  color: var(--ink);
}
.diag__flow li span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border-radius: var(--pill);
  background: var(--gold);
  color: var(--ink);
  font-size: .8rem;
  font-weight: 900;
}

/* Pra quem é / não é */
.fit__grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
.fit__col {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: #fff;
  padding: clamp(1.4rem, 4vw, 2rem);
  box-shadow: var(--shadow-sm);
}
.fit__col h2 { font-size: 1.2rem; margin-bottom: .9rem; }
.fit__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.fit__col li {
  position: relative;
  padding-left: 1.7rem;
  font-size: .95rem;
  color: var(--body);
}
.fit__col li::before {
  position: absolute;
  left: 0; top: 0;
  font-weight: 900;
}
.fit__col--yes { border-color: rgba(0,146,70,.3); }
.fit__col--yes li::before { content: "✓"; color: var(--it-green); }
.fit__col--no { background: var(--bg-warm); }
.fit__col--no li::before { content: "✕"; color: #B98F8F; }
.getlist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .7rem;
}
.getlist li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .95rem;
  font-weight: 600;
  color: var(--ink);
}
.getlist svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--it-green);
}

/* Card de chamada para WhatsApp (substitui o formulário) */
.diag__cta {
  align-self: start;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background:
    radial-gradient(120% 70% at 100% 0%, var(--gold-soft), transparent 72%),
    #fff;
  padding: clamp(1.5rem, 4vw, 2.2rem);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.diag__cta-note {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: .82rem;
  color: var(--muted);
}
.diag__cta-tag {
  display: inline-block;
  padding: .35rem .85rem;
  border-radius: var(--pill);
  background: var(--gold-soft);
  color: var(--gold-ink);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.diag__cta b {
  display: block;
  margin-top: 1rem;
  font-size: clamp(1.1rem, 1rem + .8vw, 1.35rem);
  color: var(--ink);
  line-height: 1.3;
}
.diag__cta > p {
  margin-top: .6rem;
  font-size: .92rem;
  color: var(--muted);
}
.diag__cta .btn { margin-top: 1.4rem; }
.diag__cta .btn svg { width: 1.3em; height: 1.3em; }
.diag__cta-alt {
  margin-top: .9rem;
  font-size: .82rem;
  color: var(--muted);
}
.diag__cta-alt a { color: var(--gold-ink); font-weight: 700; }

/* ----------------------------------------------------------------------- *
 * 20. FAQ
 * ----------------------------------------------------------------------- */
.faq__grid { display: grid; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
.faq__list { display: grid; gap: .7rem; }
.faq__item {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: #fff;
  overflow: hidden;
}
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  font-weight: 700;
  color: var(--ink);
  list-style: none;
  cursor: pointer;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary .plus {
  flex-shrink: 0;
  width: 22px; height: 22px;
  position: relative;
  transition: transform .25s var(--ease);
}
.faq__item summary .plus::before,
.faq__item summary .plus::after {
  content: "";
  position: absolute;
  inset: 50% 2px auto 2px;
  height: 2px;
  background: var(--gold-ink);
  border-radius: 2px;
}
.faq__item summary .plus::after { transform: rotate(90deg); }
.faq__item[open] summary .plus { transform: rotate(45deg); }
.faq__item .faq__a {
  padding: 0 1.25rem 1.2rem;
  color: var(--muted);
  font-size: .95rem;
}
.faq__aside .card { position: sticky; top: 100px; }

/* ----------------------------------------------------------------------- *
 * 21. CTA final
 * ----------------------------------------------------------------------- */
.finalcta { text-align: center; background: var(--gold-soft); }
.finalcta h2 { font-size: clamp(1.7rem, 1rem + 3vw, 2.7rem); max-width: 24ch; margin-inline: auto; }
.finalcta p { margin-top: 1rem; color: var(--body); max-width: 46ch; margin-inline: auto; }
.finalcta .btn { margin-top: 1.8rem; }

/* ----------------------------------------------------------------------- *
 * 22. Footer
 * ----------------------------------------------------------------------- */
.site-footer { background: var(--ink); color: var(--on-dark-mut); }
.site-footer__top {
  display: grid;
  gap: 2rem;
  padding-block: clamp(2.5rem, 6vw, 4rem);
}
.site-footer__brand img { height: 40px; width: auto; margin-bottom: 1rem; }
.site-footer__brand p { font-size: .9rem; max-width: 30rem; }
.site-footer__brand .socials { display: flex; gap: .5rem; margin-top: 1.2rem; }
.site-footer__brand .socials a {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  border: 1px solid rgba(246,241,231,.2);
  border-radius: var(--pill);
  color: var(--on-dark);
  transition: background-color .2s var(--ease);
}
.site-footer__brand .socials a:hover { background: rgba(246,241,231,.1); }
.site-footer__col h4 { color: #fff; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .9rem; }
.site-footer__col ul { list-style: none; display: grid; gap: .55rem; }
.site-footer__col a { font-size: .9rem; transition: color .2s var(--ease); }
.site-footer__col a:hover { color: var(--gold); }
.site-footer__bar {
  border-top: 1px solid rgba(246,241,231,.14);
  padding-block: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.5rem;
  justify-content: space-between;
  font-size: .8rem;
}
.site-footer__bar a:hover { color: var(--gold); }

/* ----------------------------------------------------------------------- *
 * 23. WhatsApp flutuante
 * ----------------------------------------------------------------------- */
.wa-float {
  position: fixed;
  right: clamp(14px, 4vw, 26px);
  bottom: clamp(14px, 4vw, 26px);
  z-index: 900;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .8rem 1.15rem .8rem .9rem;
  border-radius: var(--pill);
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
  font-size: .9rem;
  box-shadow: 0 14px 32px -8px rgba(196,145,0,.55);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.wa-float svg { width: 24px; height: 24px; }
.wa-float__txt { display: none; }
.wa-float:hover { transform: translateY(-2px) scale(1.03); }
.wa-float::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid var(--gold);
  animation: wa-pulse 2.4s var(--ease) infinite;
}
@keyframes wa-pulse {
  0%   { opacity: .6; transform: scale(1); }
  70%  { opacity: 0;  transform: scale(1.35); }
  100% { opacity: 0;  transform: scale(1.35); }
}

/* ----------------------------------------------------------------------- *
 * 24. Cookie banner (LGPD)
 * ----------------------------------------------------------------------- */
.cookie {
  position: fixed;
  left: clamp(12px, 4vw, 24px);
  right: clamp(12px, 4vw, 24px);
  bottom: clamp(12px, 4vw, 24px);
  z-index: 950;
  max-width: 404px;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.15rem 1.3rem 1.25rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-lg);
  background: #FFFDF8;
  box-shadow:
    0 22px 50px -14px rgba(120,80,10,.30),
    0 0 0 6px rgba(255,196,0,.06);
  animation: cookie-in .5s var(--ease) both;
  isolation: isolate;
}
.cookie::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,196,0,.12), transparent 42%);
  pointer-events: none;
}
.cookie[hidden] { display: none; }
.cookie > * { position: relative; }

.cookie__art { flex-shrink: 0; width: 58px; height: 58px; }
.cookie__art svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  transform-origin: 50% 62%;
  animation: cookie-bob 4.8s ease-in-out infinite;
  filter: drop-shadow(0 6px 8px rgba(120,80,10,.22));
}

.cookie__body { min-width: 0; }
.cookie__body b { display: block; font-size: 1rem; color: var(--ink); letter-spacing: -.01em; }
.cookie__body b span { color: var(--gold-ink); }
.cookie__body p { margin-top: .4rem; font-size: .83rem; line-height: 1.5; color: var(--muted); }
.cookie__body p a { color: var(--gold-ink); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }

.cookie__actions { display: flex; gap: .55rem; margin-top: .95rem; }
.cookie__actions button {
  flex: 1;
  min-height: 42px;
  padding: 0 1rem;
  border-radius: var(--pill);
  font-weight: 800;
  font-size: .85rem;
  transition: transform .15s var(--ease), box-shadow .2s var(--ease),
              background-color .2s var(--ease), border-color .2s var(--ease);
}
.cookie__accept {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 9px 20px -7px rgba(255,196,0,.65);
}
.cookie__accept:hover { transform: translateY(-1px); box-shadow: 0 12px 24px -7px rgba(255,196,0,.8); }
.cookie__reject {
  background: #fff;
  color: var(--body);
  border: 1px solid var(--line-strong);
}
.cookie__reject:hover { transform: translateY(-1px); border-color: var(--gold-ink); color: var(--ink); }

@keyframes cookie-in {
  from { opacity: 0; transform: translateY(26px) scale(.95); }
  to   { opacity: 1; transform: none; }
}
@keyframes cookie-bob {
  0%, 100% { transform: rotate(-7deg) translateY(0); }
  50%      { transform: rotate(7deg) translateY(-2px); }
}

/* Painel "Personalizar" */
.cookie__prefs {
  margin-top: .9rem;
  display: grid;
  gap: .5rem;
}
.cookie__prefs[hidden] { display: none; }
.cookie__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  padding: .7rem .85rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  background: #fff;
  cursor: pointer;
}
.cookie__row span { display: flex; flex-direction: column; }
.cookie__row b { font-size: .82rem; color: var(--ink); }
.cookie__row small { font-size: .74rem; color: var(--muted); line-height: 1.35; }
/* switch */
.cookie__row input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  width: 40px;
  height: 22px;
  border-radius: var(--pill);
  background: var(--line-strong);
  position: relative;
  cursor: pointer;
  transition: background-color .2s var(--ease);
}
.cookie__row input[type="checkbox"]::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,.25);
  transition: transform .2s var(--ease);
}
.cookie__row input[type="checkbox"]:checked { background: var(--gold); }
.cookie__row input[type="checkbox"]:checked::after { transform: translateX(18px); }
.cookie__row input[type="checkbox"]:disabled { opacity: .55; cursor: not-allowed; }
.cookie__row input[type="checkbox"]:focus-visible { outline: 3px solid var(--gold-ink); outline-offset: 2px; }

.cookie__link {
  display: block;
  margin: .7rem auto 0;
  padding: .3rem .5rem;
  font-size: .8rem;
  font-weight: 700;
  color: var(--gold-ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie__link[hidden] { display: none; }
.cookie__save {
  width: 100%;
  margin-top: .7rem;
}
.cookie__save[hidden] { display: none; }

/* ----------------------------------------------------------------------- *
 * 25. Páginas legais (privacidade / cookies / termos)
 * ----------------------------------------------------------------------- */
.legal { padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.legal__wrap { max-width: 44rem; margin-inline: auto; }
.legal .badge {
  display: inline-block;
  padding: .35rem .8rem;
  border-radius: var(--pill);
  background: var(--gold-soft);
  color: var(--gold-ink);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.legal h1 { margin-block: 1rem .3rem; font-size: clamp(1.8rem, 1rem + 3vw, 2.6rem); }
.legal .updated { font-size: .84rem; color: var(--muted); }
.legal h2 { margin-top: 2rem; font-size: 1.2rem; }
.legal p, .legal li { margin-top: .7rem; font-size: .96rem; color: var(--body); }
.legal ul { padding-left: 1.2rem; }
.legal a { color: var(--gold-ink); text-decoration: underline; }
.legal__back { display: inline-flex; align-items: center; gap: .4rem; margin-top: 2.5rem; font-weight: 700; color: var(--gold-ink); }

/* ----------------------------------------------------------------------- *
 * 26. 404
 * ----------------------------------------------------------------------- */
.e404 {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 3rem var(--gutter);
}
.e404 .badge {
  display: inline-block;
  padding: .35rem .8rem;
  border-radius: var(--pill);
  background: var(--gold-soft);
  color: var(--gold-ink);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.e404 .code { font-size: clamp(4rem, 2rem + 12vw, 8rem); font-weight: 900; color: var(--gold-ink); line-height: 1; margin-block: .5rem; }
.e404 h1 { font-size: clamp(1.4rem, 1rem + 2.4vw, 2rem); max-width: 20ch; }
.e404 p { margin-top: .8rem; color: var(--muted); max-width: 42ch; }
.e404 img { width: 140px; margin: 1.5rem auto 0; }
.e404__actions { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin-top: 1.8rem; }

/* ----------------------------------------------------------------------- *
 * 27. Responsivo
 * ----------------------------------------------------------------------- */
@media (min-width: 700px) {
  .hero__actions { flex-direction: row; flex-wrap: wrap; align-items: center; }
  .stats__grid { grid-template-columns: repeat(4, 1fr); }
  .cards--3 { grid-template-columns: repeat(3, 1fr); }
  .beforeafter { grid-template-columns: 1fr 1fr; }
  .fit__grid { grid-template-columns: 1fr 1fr; }
  .map__list { grid-template-columns: repeat(2, 1fr); }
  .wa-float__txt { display: inline; }
  .cookie__actions { gap: .8rem; }

  .diag__stats { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1024px) {
  html { scroll-padding-top: 130px; }

  .site-header { position: sticky; inset: auto; top: 0; }
  body { padding-top: 0; }

  .m-header, .m-menu { display: none; }
  .header-notice { display: block; }
  .header-bar { display: block; }

  .hero__grid { grid-template-columns: 1.05fr .95fr; }
  .hero__sub { font-size: 1.18rem; }

  .proofbar__inner { flex-wrap: nowrap; }

  .feature { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .feature:nth-child(even) .feature__body { order: 2; }

  .cycle__steps { grid-template-columns: repeat(3, 1fr); }

  .testi__grid { grid-template-columns: 1.1fr .9fr; align-items: center; }
  .diag__grid { grid-template-columns: 1fr .85fr; gap: clamp(2rem, 5vw, 4rem); }
  .diag__cta { position: sticky; top: 100px; }
  .faq__grid { grid-template-columns: 1.4fr .6fr; }

  .site-footer__top { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; }
}

@media (min-width: 1200px) {
  .hero h1 { font-size: 3.6rem; }
}

/* ----------------------------------------------------------------------- *
 * 28. Reduced motion
 * ----------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .marquee { -webkit-mask-image: none; mask-image: none; }
  .marquee__track { animation: none; width: 100%; }
  .marquee__group { flex-wrap: wrap; justify-content: center; padding-right: 0; }
  .marquee__group + .marquee__group { display: none; }
  .wa-float::after { display: none; }
}
