    /* ─────────────────────────────────────────
       TOKENS
    ───────────────────────────────────────── */
    :root {
      /* ── Cores originais ── */
      --green:       #1e3410;   /* verde escuro militar */
      --green-mid:   #2a4a18;
      --green-field: #4a7c3f;   /* verde campo */
      --gold:        #c8920a;   /* dourado âmbar — CTAs */
      --gold-light:  #e0ab20;
      --cta-hover:   #a87208;
      --cream:       #f4f0e6;
      --bg-accent:   #edeae0;
      --border:      #d8d3c8;
      --white:       #ffffff;
      --gray-100:    #f0ede8;
      --gray-300:    #d0ccc5;
      --gray-500:    #6b6b65;
      --gray-700:    #555550;
      --text:        #1a1a1a;
      --wa-green:    #25D366;

      /* ── Arsenal de Guerra — paleta tática ── */
      --tac-dark:    #0e1a07;   /* hero — fundo mais escuro */
      --tac-mid:     #111e08;   /* seções principais escuras */
      --tac-alt:     #152309;   /* seções alternadas */
      --tac-card:    #1a2c0c;   /* fundo dos cards */
      --tac-olive:   #2a3d14;   /* bordas/separadores */
      --tac-lime:    #cbea3c;   /* accent principal — botões, destaques */
      --tac-lime-dim:#a8c228;   /* lime hover/dim */
      --tac-border:  rgba(203,234,60,.18);
      --tac-text:    rgba(255,255,255,.88);
      --tac-muted:   rgba(255,255,255,.82);

      --radius-sm:   8px;
      --radius-md:   14px;
      --radius-lg:   20px;
      --radius-pill: 999px;

      --shadow-sm:   0 2px 8px rgba(0,0,0,.08);
      --shadow-md:   0 8px 32px rgba(0,0,0,.10);
      --shadow-lg:   0 20px 60px rgba(0,0,0,.18);

      --container:   1100px;
      --section-py:  72px;
    }

    /* ─────────────────────────────────────────
       SKIP LINK
    ───────────────────────────────────────── */
    .skip-link {
      position: absolute;
      top: -100%;
      left: 16px;
      z-index: 9999;
      background: var(--green);
      color: var(--white);
      padding: 8px 16px;
      border-radius: 0 0 6px 6px;
      font-size: 14px;
      font-weight: 600;
      transition: top .2s;
    }
    .skip-link:focus { top: 0; }

    /* ─────────────────────────────────────────
       RESET & BASE
    ───────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html {
      scroll-behavior: smooth;
      overflow-x: clip; /* clip não cria scroll container — mais robusto que hidden */
      max-width: 100%;
    }
    body {
      font-family: 'Open Sans', 'Lato', sans-serif;
      font-size: 16px; line-height: 1.7;
      color: var(--tac-text);
      background: var(--tac-mid);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
      max-width: 100%;
    }
    img { display: block; max-width: 100%; }
    a { text-decoration: none; color: inherit; }
    button { font-family: inherit; cursor: pointer; border: none; background: none; }

    /* ─────────────────────────────────────────
       SCROLL MARGIN — evita que nav sticky cubra âncoras
    ───────────────────────────────────────── */
    #kit, #sobre, #faq, #cta, #perdas, #credibilidade { scroll-margin-top: 56px; }

    /* ─────────────────────────────────────────
       LAYOUT UTILITIES
    ───────────────────────────────────────── */
    .container {
      width: 100%;
      max-width: var(--container);
      margin-inline: auto;
      padding-inline: 20px;
    }
    .section {
      padding-block: var(--section-py);
      overflow-x: hidden;
    }
    .section--green        { background: var(--tac-alt); }
    .section--green-light  { background: var(--tac-alt); }
    .section--cream        { background: var(--tac-mid); }
    .section--white        { background: var(--tac-mid); }

    /* ─────────────────────────────────────────
       TYPOGRAPHY
    ───────────────────────────────────────── */
    .section-label {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 10px; font-weight: 700; letter-spacing: 2.5px;
      text-transform: uppercase; color: var(--tac-lime);
      margin-bottom: 12px;
    }
    .section-label::before {
      content: ''; width: 20px; height: 2px;
      background: currentColor; border-radius: 2px;
    }
    .section-title {
      font-family: 'Merriweather', 'Georgia', serif;
      font-weight: 800; font-size: clamp(26px, 5vw, 38px);
      line-height: 1.2; color: var(--white);
      text-wrap: balance;
    }
    .section-title em { color: var(--tac-lime); font-style: normal; }
    .section-title--white { color: var(--white); }
    .section-title--white em { color: var(--tac-lime); }
    .section-desc {
      font-size: 17px; color: var(--tac-muted);
      line-height: 1.75; margin-top: 12px;
      text-align: left;
    }
    .section-desc--white { color: var(--tac-muted); }

    /* Utilitários de layout — substituem inline styles */
    .text-center           { text-align: center; }
    .section-label--center { justify-content: center; }
    .section-label--gold   { color: var(--gold-light); }
    .section-desc--centered { max-width: 420px; margin-inline: auto; }
    .mt-4  { margin-top: 4px; }
    .mt-8  { margin-top: 8px; }
    .mt-12 { margin-top: 12px; }
    .mt-24 { margin-top: 24px; }
    .section--pt-reduced { padding-top: 40px; }
    .pricing-header-cell {
      background: var(--green);
      color: var(--white);
    }

    /* ─────────────────────────────────────────
       BUTTONS
    ───────────────────────────────────────── */
    .btn {
      display: inline-flex; align-items: center; justify-content: center;
      gap: 8px; padding: 14px 28px;
      font-family: 'Open Sans', sans-serif; font-weight: 700; font-size: 15px;
      border-radius: var(--radius-sm);
      transition: background .2s, transform .1s;
      touch-action: manipulation;
    }
    .btn:hover { transform: translateY(-1px); }
    .btn:focus-visible {
      outline: 3px solid var(--gold);
      outline-offset: 3px;
    }
    .btn--primary {
      background: var(--tac-lime); color: #0a1a04;
      font-weight: 800; letter-spacing: .6px; text-transform: uppercase;
      box-shadow: 0 6px 28px rgba(203,234,60,.30);
    }
    .btn--primary:hover { background: var(--tac-lime); box-shadow: 0 10px 40px rgba(203,234,60,.55); }
    .btn--outline {
      background: transparent; color: var(--white);
      border: 1.5px solid rgba(255,255,255,.4);
    }
    .btn--outline:hover { border-color: rgba(255,255,255,.8); }
    .btn--wa {
      background: var(--wa-green); color: var(--white);
      font-size: 14px; padding: 11px 20px;
      box-shadow: 0 6px 20px rgba(37,211,102,.35);
    }
    .btn--wa svg { width: 18px; height: 18px; flex-shrink: 0; }

    /* ─────────────────────────────────────────
       NAV
    ───────────────────────────────────────── */
    nav {
      position: sticky; top: 0; z-index: 100;
      background: var(--green);
      border-bottom: 1px solid rgba(255,255,255,.08);
      overflow-x: hidden;
    }
    .nav-inner {
      display: flex; align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 10px 20px;
      max-width: var(--container);
      margin-inline: auto;
    }

    /* Brand: ocupa o espaço disponível, pode encolher */
    .nav-brand {
      display: flex; align-items: center; gap: 10px;
      flex: 1 1 auto;   /* cresce e encolhe conforme o espaço */
      min-width: 0;     /* permite truncar filhos se necessário */
      overflow: hidden;
    }
    @keyframes arsenalGlow {
      0%, 100% { color: var(--tac-lime); text-shadow: 0 0 6px rgba(203,234,60,.0); }
      50%      { color: var(--gold-light); text-shadow: 0 0 18px rgba(224,171,32,.75), 0 0 4px rgba(224,171,32,.4); }
    }
    .nav-brand-text {
      font-family: 'Merriweather', serif;
      font-weight: 700;
      font-size: clamp(11px, 2vw, 14px); /* flui entre tamanhos */
      color: var(--tac-lime);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      animation: arsenalGlow 3s ease-in-out infinite;
    }
    .nav-brand-text strong { color: inherit; }
    .nav-divider {
      width: 1px; height: 18px;
      background: rgba(255,255,255,.2);
      flex-shrink: 0;
    }
    .nav-logo {
      height: 22px; width: auto;
      opacity: .85; flex-shrink: 0;
    }

    /* Botão: tamanho fixo e compacto, nunca encolhe */
    .nav-cta {
      flex-shrink: 0;
      padding: 8px 16px;
      font-size: 13px;
      line-height: 1.2;
      border-radius: 6px;
      white-space: nowrap;
    }

    /* < 640px: mostra só logo + botão */
    @media (max-width: 639px) {
      .nav-brand-text,
      .nav-divider { display: none; }
      .nav-logo    { height: 26px; }
      .nav-cta     { padding: 8px 14px; font-size: 12px; }
    }

    /* ─────────────────────────────────────────
       HERO
    ───────────────────────────────────────── */
    .hero {
      background: var(--tac-dark);
      border-bottom: 2px solid var(--tac-olive);
      padding-block: 72px 56px;
      overflow: hidden;
      position: relative;
    }
    /* Grain texture overlay */
    .hero::before {
      content: '';
      position: absolute; inset: 0; z-index: 0;
      pointer-events: none;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      background-size: 200px 200px;
      opacity: .55;
    }
    /* Vinheta lateral */
    .hero::after {
      content: '';
      position: absolute; inset: 0; z-index: 0;
      pointer-events: none;
      background: radial-gradient(ellipse 80% 80% at 50% 50%, transparent 40%, rgba(8,15,4,.55) 100%);
    }
    /* Mobile: tudo empilhado, centralizado */
    .hero-inner {
      display: flex; flex-direction: column;
      align-items: center; gap: 32px;
      position: relative; z-index: 1;
      text-align: center;
    }
    /* Desktop 2 colunas: texto+botões à esquerda, imagem à direita */
    @media (min-width: 768px) {
      .hero-inner {
        display: grid;
        grid-template-columns: 1fr 460px;
        grid-template-rows: auto auto;
        grid-template-areas:
          "text  image"
          "actions image";
        align-items: start;
        gap: 24px 56px;
        text-align: left;
      }
      .hero-text    { grid-area: text; }
      .hero-actions { grid-area: actions; align-self: start; }
      .hero-kit-img { grid-area: image; align-self: center; }
      .hero-video-wrap {
        max-width: 100%;
        width: 460px;
      }
      .hero-proof   { justify-content: flex-start; }
      .hero-actions { justify-content: flex-start; }
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(125,200,42,.12);
      border: 1px solid rgba(125,200,42,.35);
      border-radius: 4px;
      padding: 5px 14px;
      font-size: 11px; font-weight: 700; color: var(--tac-lime);
      letter-spacing: 1.2px; text-transform: uppercase;
    }
    .hero-title {
      font-family: 'Merriweather', 'Georgia', serif;
      font-weight: 800; font-size: clamp(32px, 5vw, 52px);
      line-height: 1.15; color: var(--white);
      text-wrap: balance;
    }
    .hero-title em { color: var(--tac-lime); font-style: italic; }
    .hero-sub {
      font-size: 16px; color: var(--tac-text);
      max-width: 540px; line-height: 1.7;
      text-align: left;
    }
    .hero-kit-img {
      display: flex; justify-content: center;
    }
    .hero-video-wrap {
      position: relative;
      display: inline-block;
      width: 100%; max-width: 480px;
    }
    .hero-kit-img video {
      width: 100%;
      height: auto;
      border-radius: var(--radius-lg);
      display: block;
      filter: drop-shadow(0 24px 56px rgba(0,0,0,.40));
      object-fit: cover;
    }
    /* Botão mute/unmute */
    .hero-mute-btn {
      position: absolute;
      bottom: 12px; right: 12px;
      width: 40px; height: 40px;
      border-radius: 50%;
      border: none;
      cursor: pointer;
      background: rgba(0,0,0,.55);
      backdrop-filter: blur(6px);
      color: #fff;
      display: flex; align-items: center; justify-content: center;
      padding: 0;
      transition: background .2s ease, transform .15s ease;
      z-index: 2;
    }
    .hero-mute-btn:hover {
      background: rgba(0,0,0,.80);
      transform: scale(1.08);
    }
    .hero-mute-btn svg {
      width: 18px; height: 18px;
      pointer-events: none;
    }
    /* Estado inicial: mostra ícone muted, esconde unmuted */
    .hero-mute-btn .icon-unmuted { display: none; }
    .hero-mute-btn .icon-muted   { display: block; }
    /* Quando vídeo está com som */
    .hero-mute-btn.is-unmuted .icon-muted   { display: none; }
    .hero-mute-btn.is-unmuted .icon-unmuted { display: block; }
    /* Pause/play: padrão mostra pause, esconde play */
    .hero-mute-btn .icon-play               { display: none; }
    .hero-mute-btn .icon-pause              { display: block; }
    /* Quando vídeo está pausado */
    .hero-mute-btn.is-paused .icon-pause    { display: none; }
    .hero-mute-btn.is-paused .icon-play     { display: block; }

    /* Hero proof — números de confiança entre subtítulo e CTAs */
    .hero-proof {
      display: flex; align-items: center; flex-wrap: wrap;
      justify-content: center; gap: 8px 16px; margin-top: 4px;
    }
    .hero-proof-item {
      font-size: 13px; color: var(--tac-muted);
    }
    .hero-proof-item strong {
      font-family: 'Merriweather', serif;
      font-weight: 800; font-size: 17px;
      color: var(--tac-lime);
      margin-right: 3px;
    }
    .hero-proof-sep {
      color: var(--tac-olive); font-size: 18px; line-height: 1;
    }
    .hero-actions {
      display: flex; flex-direction: row; flex-wrap: nowrap; gap: 12px;
      align-items: stretch; justify-content: center;
    }
    .hero-actions .btn {
      flex: 1 1 0; min-width: 0;
      padding: 14px 20px;
    }
    /* hero outline btn adapts to dark background */
    .hero .btn--outline {
      color: var(--white);
      border-color: rgba(125,200,42,.35);
    }
    .hero .btn--outline:hover {
      border-color: var(--tac-lime);
      color: var(--tac-lime);
    }

    /* CTA principal com mais destaque */
    .btn--cta-main {
      font-size: 16px;
      padding: 16px 32px;
    }

    /* ─────────────────────────────────────────
       SOCIAL PROOF BAR — MARQUEE/TICKER
    ───────────────────────────────────────── */
    .proof-bar {
      background: var(--tac-mid);
      border-top: 1px solid var(--tac-olive);
      border-bottom: 2px solid var(--tac-lime);
      overflow: hidden;
      /* fade nas bordas para suavizar entrada/saída */
      -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 6%,
        black 94%,
        transparent 100%
      );
      mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 6%,
        black 94%,
        transparent 100%
      );
    }
    .proof-bar-track {
      display: flex;
      align-items: center;
      width: max-content;
      padding-block: 14px;
      animation: ticker 34s linear infinite;
      will-change: transform;
    }
    @keyframes ticker {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
    .proof-item {
      display: inline-flex;
      align-items: baseline;
      gap: 7px;
      padding-inline: 28px;
      white-space: nowrap;
    }
    .proof-item strong {
      font-family: 'Merriweather', serif;
      font-weight: 800;
      font-size: 15px;
      color: var(--tac-lime);
      line-height: 1;
      text-transform: uppercase;
      letter-spacing: .3px;
    }
    .proof-item span {
      font-size: 12px;
      color: var(--tac-muted);
      font-weight: 500;
    }
    .proof-sep {
      color: var(--tac-lime);
      opacity: 0.25;
      font-size: 18px;
      line-height: 1;
      flex-shrink: 0;
    }
    /* Pausa a animação se o usuário prefere menos movimento */
    @media (prefers-reduced-motion: reduce) {
      .proof-bar-track { animation: none; }
    }

    /* ─────────────────────────────────────────
       SEÇÃO — AS PERDAS QUE VOCÊ NÃO VÊ
    ───────────────────────────────────────── */
    .section--bg-accent {
      background: var(--tac-dark);
      position: relative;
    }
    .section--bg-accent .section-label { color: var(--tac-lime); }
    .section--bg-accent .section-title { color: var(--white); }
    .section--bg-accent .section-title em { color: var(--tac-lime); }
    .section--bg-accent .section-desc { color: var(--tac-muted); }

    .perdas-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
      margin-top: 40px;
    }
    @media (min-width: 640px) {
      .perdas-grid { grid-template-columns: repeat(3, 1fr); }
    }
    /* Mobile: stack vertical (sticky) */
    @media (max-width: 639px) {
      .perdas-grid {
        display: block;
        position: relative;
        margin-top: 32px;
        /* altura mínima para o scroll funcionar com sticky */
        padding-bottom: 16px;
      }
      .perda-card {
        position: sticky;
        /* top calculado via JS por índice */
        margin-bottom: 12px;
        transition: transform 0.25s ease, box-shadow 0.25s ease;
        will-change: transform;
      }
    }
    .perda-card {
      background: var(--tac-mid);
      border: 1px solid var(--tac-olive);
      border-radius: var(--radius-md);
      padding: 28px 22px;
      border-top: 3px solid var(--tac-lime);
      box-shadow: 0 4px 24px rgba(0,0,0,.35);
    }
    .perda-icon {
      font-size: 28px;
      margin-bottom: 12px;
    }
    .perda-num {
      font-family: 'Merriweather', serif;
      font-weight: 800;
      font-size: clamp(22px, 4vw, 30px);
      color: var(--tac-lime);
      line-height: 1.1;
      margin-bottom: 6px;
    }
    .perda-card h3 {
      font-family: 'Merriweather', serif;
      font-weight: 700;
      font-size: 17px;
      color: var(--white);
      margin-bottom: 10px;
    }
    .perda-card p {
      font-size: 15px;
      color: var(--tac-muted);
      line-height: 1.7;
      margin-bottom: 14px;
      text-align: left;
    }
    .perda-quote {
      background: rgba(0,0,0,.25);
      border-radius: 4px;
      padding: 10px 12px;
      font-size: 13px;
      color: rgba(255,255,255,.72);
      font-style: italic;
      border-left: 3px solid var(--tac-lime);
    }

    /* ─────────────────────────────────────────
       CREDIBILIDADE — GALLAGHER
    ───────────────────────────────────────── */
    .gallagher-inner {
      display: flex;
      flex-direction: column;
      gap: 32px;
      align-items: flex-start;
    }
    @media (min-width: 640px) {
      .gallagher-inner {
        flex-direction: row;
        align-items: flex-start;
        gap: 48px;
      }
    }
    .gallagher-logo-col {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 12px;
      flex-shrink: 0;
    }
    .gallagher-img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-md);
    }
    .gallagher-badge {
      display: inline-flex;
      align-items: center;
      background: rgba(45,84,39,.1);
      border: 1px solid rgba(45,84,39,.2);
      border-radius: var(--radius-pill);
      padding: 4px 12px;
      font-size: 11px;
      font-weight: 700;
      color: var(--green);
      letter-spacing: .5px;
      text-transform: uppercase;
      white-space: nowrap;
    }
    .gallagher-text-col { flex: 1; }
    .gallagher-desc {
      font-size: 15px;
      color: var(--tac-muted);
      line-height: 1.7;
      margin-top: 12px;
      text-align: left;
    }
    .gallagher-stats {
      display: flex;
      gap: 24px;
      margin-top: 24px;
      flex-wrap: wrap;
    }
    .gallagher-stat {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }
    .gallagher-stat-num {
      font-family: 'Merriweather', serif;
      font-weight: 800;
      font-size: clamp(22px, 4vw, 30px);
      color: var(--tac-lime);
      line-height: 1;
    }
    .gallagher-stat-label {
      font-size: 12px;
      color: var(--tac-muted);
      text-transform: uppercase;
      letter-spacing: .5px;
    }

    /* ─────────────────────────────────────────
       KIT — PREÇO INDIVIDUAL NO CARD
    ───────────────────────────────────────── */
    .kit-card-price {
      font-size: 11px;
      color: var(--green-field);
      font-weight: 600;
      margin-top: 10px;
      padding-top: 10px;
      border-top: 1px solid var(--border);
      text-align: right;
    }

    /* ─────────────────────────────────────────
       CTA — INAÇÃO
    ───────────────────────────────────────── */
    .cta-inaction {
      font-size: 14px;
      color: rgba(255,255,255,.45);
      max-width: 420px;
      margin-inline: auto;
      margin-top: 20px;
      line-height: 1.6;
      font-style: italic;
    }

    /* ─────────────────────────────────────────
       KIT HEADLINE — número gigante contador
    ───────────────────────────────────────── */
    .kit-headline {
      text-align: center;
      margin-bottom: 40px;
      line-height: 1;
    }
    .kit-headline-subtitle {
      font-family: 'Open Sans', sans-serif;
      font-size: clamp(15px, 2vw, 20px);
      color: var(--white);
      letter-spacing: 0.5px;
      margin-bottom: 6px;
      text-transform: lowercase;
    }
    .kit-headline-main {
      font-family: 'Merriweather', Georgia, serif;
      font-weight: 800;
      font-size: clamp(28px, 6vw, 56px);
      color: var(--white);
      letter-spacing: -1px;
      line-height: 1;
      margin: 0;
    }
    .kit-headline-num {
      color: var(--tac-lime);
    }

    /* ─────────────────────────────────────────
       KIT CONTENTS
    ───────────────────────────────────────── */
    /* ─── KIT GRID — DESKTOP: GRID / MOBILE: CARROSSEL ─── */
    .kit-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }

    /* Mobile: carrossel interativo com auto-scroll */
    @media (max-width: 767px) {
      .kit-grid {
        display: flex;
        flex-direction: row;
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding: 4px 0 24px 20px;
        margin-top: 40px;
        scrollbar-width: none;
      }
      .kit-grid::-webkit-scrollbar { display: none; }
      .kit-card {
        flex: 0 0 272px;
        flex-shrink: 0;
        min-width: 0;
      }
    }

    .kit-card {
      background: var(--tac-card);
      border: 1px solid var(--tac-olive);
      border-radius: var(--radius-md);
      padding: 0;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      box-shadow: 0 4px 20px rgba(0,0,0,.35);
      transition: transform .2s, box-shadow .2s, border-color .2s;
    }
    .kit-card:hover {
      transform: translateY(-4px);
      border-color: var(--tac-lime);
      box-shadow: 0 8px 36px rgba(203,234,60,.15);
    }
    .kit-card::before {
      content: ''; position: absolute;
      bottom: 0; left: 0; right: 0; height: 2px;
      background: var(--tac-lime);
      transform: scaleX(0); transform-origin: left;
      transition: transform .3s;
      z-index: 1;
    }
    .kit-card:hover::before { transform: scaleX(1); }

    /* Ribbon BÔNUS */
    .bonus-ribbon {
      position: absolute;
      top: 22px;
      right: -32px;
      background: var(--tac-lime);
      color: #0a1a04;
      font-family: var(--font-body);
      font-weight: 700;
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 6px 44px;
      transform: rotate(45deg);
      z-index: 10;
      box-shadow: 0 2px 8px rgba(0,0,0,0.22);
    }

    /* Capa do produto */
    .kit-card-cover {
      width: 100%;
      background: var(--tac-olive);
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      aspect-ratio: 4 / 3;
    }
    .kit-card-cover img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .35s ease;
    }
    .kit-card:hover .kit-card-cover img {
      transform: scale(1.04);
    }

    /* Conteúdo do card */
    .kit-card-body {
      padding: 20px 20px 22px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }
    .kit-card-tag {
      display: inline-block;
      background: rgba(203,234,60,.08);
      color: var(--tac-lime); font-size: 9px; font-weight: 700;
      letter-spacing: 1.5px; text-transform: uppercase;
      padding: 3px 8px; border-radius: 3px;
      border: 1px solid rgba(203,234,60,.2);
      margin-bottom: 10px;
      width: fit-content;
    }
    .kit-card h3 {
      font-family: 'Merriweather', serif;
      font-weight: 700; font-size: clamp(14px, 2vw, 16px);
      color: var(--white); margin-bottom: 10px;
      line-height: 1.35;
    }
    .kit-card p {
      font-size: 13px; color: var(--tac-muted); line-height: 1.65;
      text-align: left;
      flex: 1;
    }
    .kit-card-pain {
      display: flex; align-items: flex-start; gap: 6px;
      background: rgba(0,0,0,.25);
      border-radius: 4px;
      padding: 10px 12px;
      font-size: 13px; color: var(--white);
      font-style: italic; margin-top: 14px;
      border-left: 2px solid var(--tac-lime);
    }

    /* ─────────────────────────────────────────
       PERSONAS
    ───────────────────────────────────────── */
    .persona-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
      gap: 14px;
      margin-top: 40px;
    }
    /* Mobile: stack vertical (sticky) */
    @media (max-width: 639px) {
      .persona-grid {
        display: block;
        position: relative;
        margin-top: 32px;
        padding-bottom: 16px;
        /* overrides o grid do desktop */
        grid-template-columns: unset;
      }
      .persona-card {
        position: sticky;
        /* top calculado via JS por índice */
        margin-bottom: 10px;
        transition: transform 0.25s ease, box-shadow 0.25s ease;
        will-change: transform;
      }
    }
    .persona-card {
      background: var(--tac-card);
      border: 1px solid var(--tac-olive);
      border-radius: var(--radius-md);
      padding: 24px 18px;
      text-align: center;
      box-shadow: 0 4px 16px rgba(0,0,0,.3);
      transition: border-color .2s, box-shadow .2s;
    }
    .persona-card:hover {
      border-color: var(--tac-lime);
      box-shadow: 0 4px 24px rgba(203,234,60,.12);
    }

    /* ── Emoji pop-up ao entrar na viewport ── */
    @keyframes emoji-pop {
      0%   { transform: scale(0.4) translateY(8px); opacity: 0; }
      60%  { transform: scale(1.25) translateY(-4px); opacity: 1; }
      80%  { transform: scale(0.92) translateY(1px); }
      100% { transform: scale(1) translateY(0); opacity: 1; }
    }

    .persona-emoji {
      font-size: 36px;
      display: block;
      margin-bottom: 12px;
      /* estado inicial: invisível, esperando o card ficar visível */
      opacity: 0;
      transform: scale(0.4) translateY(8px);
    }

    /* Quando o card recebe is-visible (scroll reveal), dispara o pop */
    .persona-card.is-visible .persona-emoji {
      animation: emoji-pop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) both;
      animation-delay: 0.18s; /* leve delay após o card aparecer */
    }
    .persona-card h3 {
      font-family: 'Merriweather', serif;
      font-weight: 700; font-size: 14px; color: var(--white);
      margin-bottom: 8px;
    }
    .persona-card p { font-size: 13px; color: var(--tac-muted); line-height: 1.5; text-align: left; }

    /* ─────────────────────────────────────────
       RESULTS
    ───────────────────────────────────────── */
    .results-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      margin-top: 40px;
    }
    .result-card {
      background: var(--tac-card);
      border: 1px solid var(--tac-olive);
      border-radius: var(--radius-md);
      padding: 24px 20px;
      box-shadow: 0 4px 20px rgba(0,0,0,.3);
      border-left: 4px solid var(--tac-lime);
    }
    .result-num {
      font-family: 'Merriweather', serif;
      font-weight: 800; font-size: clamp(28px, 5vw, 44px);
      color: var(--tac-lime); line-height: 1;
    }
    .result-desc {
      font-size: 13px; color: var(--tac-muted);
      margin-top: 6px; line-height: 1.5;
    }

    /* ─────────────────────────────────────────
       SOBRE A EMPRESA
    ───────────────────────────────────────── */
    .sobre-inner {
      display: grid;
      grid-template-columns: 1fr;
      gap: 40px;
    }
    .sobre-logo-wrap {
      display: flex; align-items: center; justify-content: center;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.15);
      border-radius: var(--radius-md);
      padding: 16px 24px;
      width: fit-content;
    }
    .sobre-logo-wrap img { height: 36px; width: auto; }
    .sobre-text { color: rgba(255,255,255,.75); font-size: 15px; line-height: 1.7; margin-top: 16px; text-align: left; }
    .sobre-text strong { color: var(--white); }
    .sobre-clients {
      display: flex; flex-wrap: wrap; gap: 16px;
      align-items: center; margin-top: 24px;
    }
    .sobre-clients img {
      height: 20px; width: auto;
      filter: brightness(0) invert(1);
      opacity: .6;
    }
    .sobre-link {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 13px; font-weight: 600;
      color: var(--tac-lime); margin-top: 20px;
    }
    .sobre-method {
      background: var(--tac-card);
      border: 1px solid var(--tac-olive);
      border-radius: var(--radius-md);
      padding: 28px 24px;
      box-shadow: 0 4px 20px rgba(0,0,0,.3);
    }
    .sobre-method h3 {
      font-family: 'Merriweather', serif;
      font-weight: 700; font-size: 18px; color: var(--white);
      margin-bottom: 24px;
    }
    .sobre-step {
      display: flex; gap: 16px;
      padding-block: 16px;
      border-top: 1px solid var(--tac-olive);
    }
    .sobre-step:first-of-type { border-top: none; padding-top: 0; }
    .sobre-step-num {
      font-family: 'Merriweather', serif;
      font-weight: 800; font-size: 28px;
      color: var(--tac-lime); flex-shrink: 0; line-height: 1;
    }
    .sobre-step-title {
      font-weight: 700; font-size: 14px; color: var(--white);
      margin-bottom: 4px;
    }
    .sobre-step-desc { font-size: 13px; color: var(--tac-muted); line-height: 1.5; }

    /* Instagram card */
    .ig-card {
      display: flex; align-items: center; justify-content: space-between;
      gap: 12px;
      margin-top: 20px;
      padding: 14px 16px;
      border-radius: var(--radius-md);
      border: 1px solid #e8d5f0;
      background: linear-gradient(135deg, #fdf4ff 0%, #fff8f0 100%);
      text-decoration: none;
      transition: box-shadow .2s ease, transform .2s ease;
    }
    .ig-card:hover {
      box-shadow: 0 4px 20px rgba(188,24,136,.12);
      transform: translateY(-2px);
    }
    .ig-card-left {
      display: flex; align-items: center; gap: 12px;
    }
    .ig-icon { width: 36px; height: 36px; flex-shrink: 0; }
    .ig-card-label {
      font-size: 11px; font-weight: 600;
      text-transform: uppercase; letter-spacing: .8px;
      color: var(--gray-500);
    }
    .ig-card-handle {
      font-size: 14px; font-weight: 700;
      color: var(--text);
    }
    .ig-card-btn {
      font-size: 12px; font-weight: 700;
      color: #bc1888;
      white-space: nowrap;
      padding: 6px 14px;
      border: 1px solid #e0b0d8;
      border-radius: var(--radius-pill);
      background: white;
      transition: background .2s, color .2s;
    }
    .ig-card:hover .ig-card-btn {
      background: #bc1888;
      color: white;
      border-color: #bc1888;
    }

    /* Foto do cliente Bom Futuro */
    .sobre-foto-client {
      margin-top: 28px;
      border-radius: var(--radius-md);
      overflow: hidden;
      box-shadow: var(--shadow-md);
    }
    .sobre-foto-client img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
    }
    @media (min-width: 768px) {
      .sobre-foto-client img { height: 280px; }
    }
    .sobre-foto-caption {
      background: rgba(0,0,0,.45);
      color: rgba(255,255,255,.75);
      font-size: 11px;
      padding: 6px 12px;
      text-align: center;
      letter-spacing: .3px;
    }

    /* Gallagher foto maior no desktop */
    @media (min-width: 768px) {
      .gallagher-img { height: 280px; }
      .gallagher-logo-col { flex: 0 0 45%; }
    }

    /* ─────────────────────────────────────────
       PRICING BREAKDOWN
    ───────────────────────────────────────── */
    .pricing-box {
      background: var(--tac-card);
      border: 1px solid var(--tac-olive);
      border-radius: var(--radius-md);
      box-shadow: 0 8px 40px rgba(0,0,0,.4);
      overflow: hidden;
      max-width: 520px;
      margin-inline: auto;
      margin-top: 40px;
    }
    .pricing-header {
      background: var(--tac-dark);
      border-bottom: 2px solid var(--tac-lime);
      padding: 18px 24px;
      font-family: 'Merriweather', serif;
      font-weight: 700; font-size: 13px;
      letter-spacing: 1.5px; text-transform: uppercase;
      color: var(--tac-lime);
    }
    .pricing-item {
      display: flex; justify-content: space-between;
      align-items: center; gap: 12px;
      padding: 14px 24px;
      border-bottom: 1px solid var(--tac-olive);
      font-size: 13px; color: var(--tac-text);
    }
    .pricing-item:last-child { border-bottom: none; }
    .pricing-item--group-label {
      background: rgba(203,234,60,.06);
      padding: 6px 24px;
      font-size: 9px;
      font-weight: 700;
      color: var(--tac-lime);
      text-transform: uppercase;
      letter-spacing: 1.5px;
      border-bottom: none;
    }
    .pricing-item-val {
      font-family: 'Merriweather', serif;
      font-weight: 700; font-size: 14px;
      color: var(--tac-lime); white-space: nowrap;
      position: relative;
      display: inline-block;
    }

    /* === Animação de risco nos preços === */
    .pricing-item-val::after {
      content: '';
      position: absolute;
      left: -2px;
      top: 50%;
      height: 2px;
      width: calc(100% + 4px);
      background: #c0392b;
      transform: scaleX(0);
      transform-origin: left center;
      transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .pricing-item-val.is-struck::after {
      transform: scaleX(1);
    }
    .pricing-total {
      display: flex; justify-content: space-between;
      align-items: center;
      padding: 16px 24px;
      border-top: 2px solid var(--gray-100);
      margin: 0;
    }
    .pricing-total-label {
      font-family: 'Merriweather', serif;
      font-weight: 700; font-size: 13px;
      text-transform: uppercase; letter-spacing: .5px;
    }
    .pricing-total-val {
      font-family: 'Merriweather', serif;
      font-weight: 800; font-size: 20px;
      text-decoration: line-through; color: var(--gray-300);
    }
    .pricing-discount {
      margin: 0 16px 16px;
      background: rgba(203,234,60,.07);
      border: 2px solid rgba(203,234,60,.3);
      border-radius: var(--radius-md);
      padding: 20px;
      display: flex; flex-direction: column; gap: 14px;
    }
    .pricing-discount-tag {
      display: inline-flex; align-items: center; gap: 6px;
      background: var(--tac-lime); color: #0a1a04;
      font-family: 'Open Sans', sans-serif;
      font-weight: 800; font-size: 10px;
      letter-spacing: 1.5px; text-transform: uppercase;
      padding: 4px 10px; border-radius: 3px;
      width: fit-content;
    }
    .pricing-discount-row {
      display: flex; justify-content: space-between;
      align-items: flex-end; gap: 16px;
    }
    .pricing-discount-label {
      font-size: 13px; color: var(--tac-muted); line-height: 1.5;
    }
    .pricing-discount-label strong {
      display: block; font-size: 15px;
      color: var(--white); margin-bottom: 2px;
    }
    .pricing-main-price {
      text-align: right; flex-shrink: 0;
    }
    .pricing-installment-big {
      font-family: 'Merriweather', serif;
      font-weight: 800; line-height: 1; color: var(--tac-lime);
    }
    .pricing-installment-big .small {
      font-size: 16px; font-weight: 700;
      opacity: .85; display: block;
      letter-spacing: .02em;
    }
    .pricing-installment-big .num {
      font-size: 88px;
      letter-spacing: -.03em;
      animation: price-pulse 3s ease-in-out infinite;
    }
    .pricing-pix-note {
      font-size: 11px; color: var(--tac-muted);
      text-align: right; margin-top: 4px;
    }
    .pricing-card-row {
      display: flex; justify-content: space-between;
      align-items: center; gap: 12px;
      background: rgba(0,0,0,.2);
      border-radius: var(--radius-sm);
      padding: 12px 14px;
    }
    .pricing-card-label { font-size: 12px; color: var(--tac-muted); font-weight: 500; }
    .pricing-card-note  { font-size: 10px; color: var(--tac-muted); opacity: .7; margin-top: 2px; }
    .pricing-card-val {
      font-family: 'Merriweather', serif;
      font-weight: 700; font-size: 15px; color: var(--tac-lime);
      white-space: nowrap;
    }

    /* ─────────────────────────────────────────
       CTA FINAL
    ───────────────────────────────────────── */
    .cta-inner { text-align: center; }
    .cta-kit-img {
      display: flex; justify-content: center;
      margin: 32px auto 8px;
    }
    .cta-kit-img img {
      width: 100%; max-width: 360px;
      height: auto;
      display: block;
      border-radius: var(--radius-lg);
      filter: drop-shadow(0 20px 48px rgba(0,0,0,.45));
    }
    .cta-valor-headline {
      display: flex; flex-direction: column;
      align-items: center;
      margin: 32px auto 8px;
      text-align: center;
      line-height: 1.15;
    }
    .cta-valor-linha1 {
      font-family: 'Merriweather', Georgia, serif;
      font-size: clamp(22px, 4vw, 32px);
      font-weight: 700;
      color: rgba(255,255,255,.6);
    }
    .cta-valor-linha2 {
      font-family: 'Merriweather', Georgia, serif;
      font-size: clamp(32px, 6vw, 52px);
      font-weight: 800;
      color: var(--tac-lime);
      text-decoration: line-through;
      text-decoration-color: rgba(200,146,42,.6);
    }
    .cta-narrative {
      max-width: 520px;
      margin: 32px auto 0;
      text-align: center;
    }
    .cta-narrative p {
      font-size: 17px;
      color: rgba(255,255,255,.75);
      line-height: 1.75;
      margin-bottom: 14px;
    }
    .cta-narrative p strong { color: #fff; }
    .cta-narrative-bridge {
      font-size: 18px !important;
      font-weight: 700;
      color: rgba(255,255,255,.9) !important;
      margin-top: 6px;
      margin-bottom: 0 !important;
    }
    .cta-price-block {
      display: inline-flex; flex-direction: column;
      align-items: center; gap: 6px;
      margin-block: 8px 28px;
    }
    .cta-price-main {
      font-family: 'Merriweather', serif;
      font-weight: 800; line-height: 1; color: var(--tac-lime);
      display: flex; align-items: flex-start; gap: 6px;
    }
    .cta-price-main .small {
      font-size: 22px; font-weight: 700; opacity: .85;
      padding-top: 14px;
    }
    .cta-price-main .num {
      font-size: 120px;
      letter-spacing: -.04em;
      animation: price-pulse 3s ease-in-out infinite;
    }
    .cta-price-period { font-size: 13px; color: rgba(255,255,255,.5); }
    .cta-price-alt    { font-size: 14px; color: rgba(255,255,255,.55); }
    .cta-price-alt strong { color: rgba(255,255,255,.8); }
    .cta-actions {
      display: flex; flex-direction: column;
      align-items: center; gap: 12px;
      margin-top: 8px;
    }
    .cta-guarantee {
      font-size: 13px; color: rgba(255,255,255,.45);
      margin-top: 24px;
    }
    .cta-guarantee strong { color: rgba(255,255,255,.7); }

    /* ─────────────────────────────────────────
       DEPOIMENTOS
    ───────────────────────────────────────── */
    .depoimentos-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }
    .depoimento-card {
      background: var(--tac-card);
      border: 1px solid var(--tac-olive);
      border-top: 3px solid var(--tac-lime);
      border-radius: var(--radius-md);
      padding: 24px;
      box-shadow: 0 4px 20px rgba(0,0,0,.3);
      position: relative;
    }
    .depoimento-card::before {
      content: '"';
      font-family: Georgia, serif;
      font-size: 64px; line-height: 1;
      color: var(--tac-lime); opacity: .12;
      position: absolute; top: 8px; left: 18px;
    }
    .depoimento-texto {
      font-size: 14px; color: var(--tac-text);
      line-height: 1.7; font-style: italic;
      margin-bottom: 16px; padding-top: 20px;
      text-align: left;
    }
    .depoimento-autor {
      display: flex; align-items: center; gap: 12px;
      border-top: 1px solid var(--tac-olive); padding-top: 14px;
    }
    .depoimento-avatar {
      width: 40px; height: 40px; border-radius: 50%;
      background: var(--tac-olive);
      display: flex; align-items: center; justify-content: center;
      font-size: 18px; flex-shrink: 0;
    }
    .depoimento-avatar--initials {
      background: var(--ini-color, var(--tac-lime));
      color: #0a1a04;
      font-family: 'Merriweather', serif;
      font-weight: 800;
      font-size: 13px;
      letter-spacing: .5px;
    }
    .depoimento-nome {
      font-weight: 700; font-size: 13px; color: var(--white);
    }
    .depoimento-local {
      font-size: 12px; color: var(--tac-muted); margin-top: 2px;
    }
    .depoimento-estrelas {
      font-size: 12px; color: var(--tac-lime);
      margin-bottom: 4px;
    }

    /* ─────────────────────────────────────────
       FAQ
    ───────────────────────────────────────── */
    .faq-list { margin-top: 40px; display: flex; flex-direction: column; gap: 8px; max-width: 640px; margin-inline: auto; }
    .faq-item { border: 1px solid var(--tac-olive); border-radius: var(--radius-md); overflow: hidden; }
    .faq-question {
      width: 100%; display: flex; justify-content: space-between;
      align-items: center; gap: 12px;
      padding: 16px 20px;
      font-size: 14px; font-weight: 600; color: var(--white);
      text-align: left; background: var(--tac-card);
      transition: background .2s, color .2s;
      touch-action: manipulation;
    }
    .faq-question:hover { background: rgba(203,234,60,.05); color: var(--tac-lime); }
    .faq-question:focus-visible {
      outline: 3px solid var(--tac-lime);
      outline-offset: -3px;
    }
    .faq-question.open { color: var(--tac-lime); }
    .faq-arrow {
      font-size: 16px; flex-shrink: 0;
      transition: transform .25s; color: var(--tac-muted);
    }
    .faq-question.open .faq-arrow { transform: rotate(180deg); color: var(--tac-lime); }
    .faq-answer {
      display: none; padding: 0 20px 18px;
      font-size: 14px; color: var(--tac-muted); line-height: 1.7;
      background: rgba(0,0,0,.15);
    }
    .faq-answer.open { display: block; }

    /* ─────────────────────────────────────────
       WHATSAPP SECTION
    ───────────────────────────────────────── */
    .wa-section { background: var(--tac-dark); overflow: hidden; position: relative; }
    .wa-bg-icons {
      position: absolute; inset: 0; pointer-events: none; overflow: hidden;
    }
    .wa-bg-icon {
      position: absolute; color: #25D366; opacity: .04;
      animation: waFloat linear infinite;
    }
    .wa-bg-icon svg { width: 100%; height: 100%; fill: currentColor; }
    .wa-bg-icon:nth-child(1) { width:80px;  top:10%; left:4%;  animation-duration:8s;  animation-delay:0s; }
    .wa-bg-icon:nth-child(2) { width:50px;  top:65%; left:10%; animation-duration:11s; animation-delay:-3s; }
    .wa-bg-icon:nth-child(3) { width:110px; top:15%; right:6%; animation-duration:9s;  animation-delay:-1s; }
    .wa-bg-icon:nth-child(4) { width:60px;  top:70%; right:4%; animation-duration:13s; animation-delay:-5s; }
    .wa-bg-icon:nth-child(5) { width:40px;  top:45%; left:48%; animation-duration:7s;  animation-delay:-2s; }
    @keyframes waFloat {
      0%,100% { transform: translateY(0) rotate(0deg); }
      50%      { transform: translateY(-20px) rotate(8deg); }
    }
    .wa-inner {
      position: relative; z-index: 1;
      display: flex; flex-direction: column;
      align-items: center; gap: 40px;
    }
    .wa-content { text-align: center; max-width: 440px; }
    .wa-badge {
      display: inline-flex; align-items: center; gap: 6px;
      background: rgba(37,211,102,.15);
      border: 1px solid rgba(37,211,102,.3);
      border-radius: var(--radius-pill);
      padding: 5px 14px;
      font-size: 11px; font-weight: 700; letter-spacing: 1px;
      text-transform: uppercase; color: var(--wa-green);
      margin-bottom: 20px;
    }
    .wa-badge-dot {
      width: 7px; height: 7px; border-radius: 50%;
      background: var(--wa-green);
      animation: pulse 1.5s ease-in-out infinite;
    }
    @keyframes pulse {
      0%,100% { transform: scale(1); opacity:1; }
      50%      { transform: scale(1.5); opacity:.5; }
    }

    @keyframes price-pulse {
      0%, 100% {
        text-shadow:
          0 0 0px rgba(203,234,60,0),
          0 0 0px rgba(203,234,60,0);
        transform: scale(1);
      }
      50% {
        text-shadow:
          0 0 30px rgba(203,234,60,.55),
          0 0 80px rgba(203,234,60,.25);
        transform: scale(1.03);
      }
    }
    .wa-note { font-size: 12px; color: rgba(255,255,255,.35); margin-top: 14px; }

    /* Bia card */
    .bia-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      overflow: hidden; width: 240px; flex-shrink: 0;
      animation: biaFloat 4s ease-in-out infinite;
    }
    @keyframes biaFloat {
      0%,100% { transform: translateY(0) rotate(-1deg); }
      50%      { transform: translateY(-12px) rotate(1deg); }
    }
    .bia-card img { width: 100%; }
    .bia-card-body {
      padding: 16px 20px 20px;
      text-align: center;
    }
    .bia-card-name {
      font-family: 'Merriweather', serif;
      font-weight: 800; font-size: 20px; color: var(--green-field);
    }
    .bia-card-role {
      font-size: 11px; color: var(--gray-500);
      text-transform: uppercase; letter-spacing: .5px; margin-top: 2px;
    }
    .bia-online {
      display: inline-flex; align-items: center; gap: 5px;
      background: #f0faf3; border-radius: var(--radius-pill);
      padding: 3px 10px; margin-top: 8px;
      font-size: 11px; font-weight: 600; color: var(--wa-green);
    }
    .bia-online::before {
      content: ''; width: 6px; height: 6px; border-radius: 50%;
      background: var(--wa-green);
      animation: pulse 1.5s ease-in-out infinite;
    }

    /* ─────────────────────────────────────────
       FOOTER
    ───────────────────────────────────────── */
    footer {
      background: var(--green);
      border-top: 1px solid rgba(255,255,255,.08);
      padding-block: 32px;
      overflow-x: hidden;
    }
    .footer-inner {
      display: flex; flex-direction: column;
      align-items: center; gap: 16px;
      text-align: center;
    }
    .footer-brand {
      display: flex; align-items: center; gap: 10px;
    }
    .footer-brand-text {
      font-family: 'Merriweather', serif;
      font-weight: 700; font-size: 14px; color: var(--tac-lime);
    }
    .footer-brand-text strong { color: var(--white); }
    .footer-logo { height: 22px; width: auto; opacity: .6; }
    .footer-links {
      display: flex; flex-wrap: wrap;
      justify-content: center; gap: 8px 20px;
    }
    .footer-links a {
      font-size: 13px; color: rgba(255,255,255,.45);
      transition: color .2s;
    }
    .footer-links a:hover { color: rgba(255,255,255,.8); }
    .footer-copy {
      font-size: 11px; color: rgba(255,255,255,.2);
    }

    /* ─────────────────────────────────────────
       RESPONSIVE — md (≥640px)
    ───────────────────────────────────────── */
    /* Mobile — < 640px */
    @media (max-width: 639px) {
      /* Hero: reduz padding e corrige espaçamentos internos */
      .hero { padding-block: 40px 32px; }
      /* Mobile: texto → imagem → botões */
      .hero-inner { display: flex; flex-direction: column; gap: 24px; }
      .hero-kit-img { order: 2; }
      .hero-actions { order: 3; }
      .hero-text {
        display: flex;
        flex-direction: column;
        gap: 14px;
      }
      .hero-sub { text-align: left; }
      .hero-kit-img video { border-radius: var(--radius); }

      /* Botões FORA da nav ficam full-width */
      .hero-actions .btn,
      .cta-actions .btn {
        width: 100%; justify-content: center;
        padding: 16px; font-size: 16px;
      }
      .hero-actions { flex-direction: column; }
      .results-grid { grid-template-columns: repeat(2, 1fr); }
      .pricing-discount-row { flex-direction: column; }
    }

    @media (min-width: 640px) {
      .results-grid { grid-template-columns: repeat(4, 1fr); }
      .sobre-inner  { grid-template-columns: 1fr 1fr; }
      .wa-inner     { flex-direction: row; align-items: center; justify-content: center; }
      .wa-content   { text-align: left; }
      .wa-badge     { margin-bottom: 20px; }
      .cta-actions  { flex-direction: row; justify-content: center; }
      .footer-inner { flex-direction: row; justify-content: space-between; text-align: left; }
    }

    /* ─────────────────────────────────────────
       RESPONSIVE — lg (≥960px)
    ───────────────────────────────────────── */
    /* Desktop ≥ 960px: grid 2 colunas — texto+botões à esquerda, imagem à direita */
    @media (min-width: 960px) {
      .hero-video-wrap { max-width: 560px; }
    }

    /* ─────────────────────────────────────────
       ANIMAÇÕES DE ENTRADA — HERO
    ───────────────────────────────────────── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }
    @keyframes kitReveal {
      from { opacity: 0; transform: scale(.94); }
      to   { opacity: 1; transform: scale(1); }
    }

    /* Stagger de entrada dos elementos do hero */
    .hero-badge {
      animation: fadeIn .5s ease both;
      animation-delay: .1s;
    }
    .hero-title {
      animation: fadeUp .6s ease both;
      animation-delay: .25s;
    }
    .hero-sub {
      animation: fadeUp .6s ease both;
      animation-delay: .4s;
    }
    .hero-proof {
      animation: fadeUp .5s ease both;
      animation-delay: .55s;
    }
    .hero-actions {
      animation: fadeUp .5s ease both;
      animation-delay: .7s;
    }
    .hero-kit-img {
      animation: kitReveal .7s ease both;
      animation-delay: .45s;
    }

    /* Botão pulsante — pseudo-elemento composited (opacity+transform, sem repintura) */
    @keyframes btnPulse {
      0%        { transform: scale(1);    opacity: .7; }
      50%       { transform: scale(1.18); opacity: 0; }
      100%      { transform: scale(1.18); opacity: 0; }
    }
    .btn--cta-main {
      position: relative;
      isolation: isolate;
    }
    .btn--cta-main::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background: var(--tac-lime);
      z-index: -1;
      animation: btnPulse 2.2s ease-out infinite;
      animation-delay: 1.2s;
    }
    .btn--cta-main:hover::before,
    .btn--cta-main:focus::before {
      animation: none;
    }

    /* ─────────────────────────────────────────
       SCROLL REVEAL — ANIMAÇÕES DE ENTRADA
    ───────────────────────────────────────── */
    .reveal-el {
      opacity: 0;
      will-change: opacity, transform;
      transition: opacity .65s cubic-bezier(.16,1,.3,1),
                  transform .65s cubic-bezier(.16,1,.3,1);
    }
    .reveal-el.is-visible {
      opacity: 1 !important;
      transform: none !important;
    }
    /* Direções de entrada */
    .reveal-up    { transform: translateY(44px); }
    .reveal-left  { transform: translateX(-40px) translateY(10px); }
    .reveal-right { transform: translateX(40px) translateY(10px); }
    .reveal-scale { transform: scale(.88) translateY(22px); }

    /* ─────────────────────────────────────────
       BOTÃO FLUTUANTE — aparece após hero
    ───────────────────────────────────────── */
    .float-cta {
      position: fixed;
      bottom: 24px;
      left: 50%;
      transform: translateX(-50%) translateY(80px);
      z-index: 900;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
      white-space: nowrap;
    }
    .float-cta.is-visible {
      opacity: 1;
      pointer-events: auto;
      transform: translateX(-50%) translateY(0);
    }
    .float-cta .btn {
      padding: 14px 28px;
      font-size: 15px;
      box-shadow: 0 6px 24px rgba(0,0,0,0.22), 0 2px 8px rgba(0,0,0,0.14);
      position: relative;
      isolation: isolate;
    }
    /* Anel de pulso do botão flutuante */
    .float-cta .btn::before {
      content: '';
      position: absolute;
      inset: -3px;
      border-radius: calc(var(--radius-pill) + 3px);
      background: var(--tac-lime);
      z-index: -1;
      animation: floatPulse 2s ease-out infinite;
    }
    .float-cta .btn:hover::before,
    .float-cta .btn:focus::before {
      animation: none;
    }
    @keyframes floatPulse {
      0%   { transform: scale(1);    opacity: 0.5; }
      60%  { transform: scale(1.22); opacity: 0; }
      100% { transform: scale(1.22); opacity: 0; }
    }

    /* ═══════════════════════════════════════════
       ARSENAL DE GUERRA — OVERRIDES FINAIS
    ═══════════════════════════════════════════ */

    /* ── CTA final — verde escuro com padrão tático ── */
    .section--green {
      background: var(--tac-alt);
      position: relative;
    }
    .section--green::before {
      content: '';
      position: absolute; inset: 0;
      background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 40px,
        rgba(203,234,60,.02) 40px,
        rgba(203,234,60,.02) 41px
      );
      pointer-events: none;
    }

    /* ── Float CTA ── */
    .float-cta .btn--primary {
      box-shadow: 0 4px 24px rgba(203,234,60,.4);
    }

    /* ── Sobre — textos no dark ── */
    .sobre-text { color: var(--tac-muted); }
    .sobre-step-title { color: var(--white); }
    .sobre-step-desc { color: var(--tac-muted); }
    .sobre-step-num { color: var(--tac-lime); border-color: var(--tac-olive); }
    .sobre-link { color: var(--tac-lime); }

    /* ── FAQ no dark ── */
    .faq-question { color: var(--white); }
    .faq-question:hover { color: var(--tac-lime); }
    .faq-answer p { color: var(--tac-muted); }
    .faq-item { border-color: var(--tac-olive); }

    /* ── Gallagher badge no dark ── */
    .gallagher-badge {
      background: rgba(203,234,60,.08);
      border-color: rgba(203,234,60,.2);
      color: var(--tac-lime);
    }

    /* ── Footer no dark ── */
    footer { background: var(--tac-dark); }
    .footer-copy { color: var(--tac-muted); }
    .footer-links a { color: var(--tac-muted); }
    .footer-links a:hover { color: var(--tac-lime); }
    .footer-brand-text { color: var(--tac-lime); }
    .footer-brand-text strong { color: var(--white); }

    /* ─────────────────────────────────────────
       ACESSIBILIDADE — prefers-reduced-motion
    ───────────────────────────────────────── */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
      }
    }
