/* ===========================
   Variáveis & Design Tokens
   =========================== */
:root {
  /* Escala de cinzas (0 claro → 1000 escuro) */
  --gray-0: #ffffff;
  --gray-50: #f9f9f9;
  --gray-100: #f2f2f2;
  --gray-200: #e6e6e6;
  --gray-300: #d4d4d4;
  --gray-400: #bdbdbd;
  --gray-500: #9a9a9a;
  --gray-600: #7a7a7a;
  --gray-700: #5a5a5a;
  --gray-800: #3a3a3a;
  --gray-900: #1f1f1f;
  --gray-950: #121212;
  --gray-1000: #0b0b0b;

  /* Cores de texto */
  --text-strong: var(--gray-0);
  --text: var(--gray-500);
  --text-muted: var(--gray-400);

  /* Fundos */
  --bg-dark: var(--gray-1000);
  --bg-dark-2: #0e0e0e;
  --bg-light: var(--gray-0);

  /* Acentos */
  --accent: #1c73ff; /* principal */
  --accent-2: #1c73ff; /* variação leve */
  --accent-3: #1c73ff; /* variação escura */

  /* Bordas e efeitos */
  --border-dark: rgba(255, 255, 255, 0.12);
  --border-ghost: rgba(255, 255, 255, 0.18);
  --border-light: rgba(0, 0, 0, 0.12);
  --glow-soft: 0 30px 40px rgba(0, 0, 0, 0.1);

  /* Sombra CTA */
  --shadow-cta: 0 10px 30px rgb(28, 115, 255), 0 2px 8px rgb(28, 115, 255);
  --shadow-cta-hover: 0 14px 34px rgb(28, 115, 255),
    0 3px 10px rgb(28, 115, 255);

  /* Tamanhos e espaçamentos */
  --radius-lg: 32px;
  --radius-md: 18px;
  --radius-sm: 12px;

  --container: 1200px;
  --pad-section: 8rem;
  --gap-lg: 48px;
  --gap-md: 28px;

  /* Tipografia */
  --ff: "Sora", system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu,
    "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  --fs-h1: clamp(28px, 4.2vw, 48px);
  --fs-sub: clamp(15px, 2vw, 18px);
  --fs-btn: 16px;
  --fs-eyebrow: 12px;

  /* Motion */
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --dur: 0.2s;

  /* Breakpoint base */
  --bp: 940px;
}

/* =============
   Reset Básico
   ============= */
* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  scroll-behavior: smooth !important;
}

html, body { height: 100%; }
body { overflow: auto; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg-dark);
  color: var(--text-strong);
  font-family: var(--ff);
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@font-face{
  font-family:"Inter";
  src:
    url("./fonts/Sora-VariableFont_wght.ttf") format("ttf");
  font-weight:100 900;
  font-style:normal;
  font-display:swap;
}


/* =======================
   Utilitários de Seções
   ======================= */
.section {
  padding: var(--pad-section) 2rem;
}
.section--light {
  background: var(--bg-light);
  color: var(--gray-900);
}
.section--light p {
  color: var(--gray-600);
}
.section--dark {
  background: var(--bg-dark);
  color: var(--text-strong);
}
.container {
  max-width: var(--container);
  margin: 0 auto;
}
.h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin: 8px 0 8px;
  color: currentColor;
  /* margin: 0; */
}

/* =================
   Botões & Microcopy
   ================= */

.microcopy {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 10px;
}

/* ===========
   HERO
   =========== */

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;              /* desktop ocupa a janela inteira */
  overflow: hidden;
  box-sizing: border-box;
  background: var(--bg-dark, #000);
}

/* BG decorativo leve (desktop) */
.hero__bg {
  position: absolute;
  inset: 0;
  background: url("img/bg-hero.avif") center / cover no-repeat;
  opacity: 0.08;
  z-index: -1;
  pointer-events: none;
}

/* Grid desktop */
.hero__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  min-height: 100%;
}

/* Coluna de texto (ESQ) */
.hero__content {
  z-index: 2;
  flex: 0 0 auto;
  max-width: 48%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  padding: 64px 0 56px;
  box-sizing: border-box;
}

.hero__headline {
  font-size: 2.8rem;
  line-height: 1.3;
  margin: 0;
  color: var(--gray-200);
  font-weight: 600;
  text-transform: capitalize;
}

.hero__text {
  font-size: 1.3rem;
  line-height: 1.6;
  color: var(--gray-600);
  margin: 0;
}

/* CTA */
.hero__btn {
  display: inline-block;
  background: linear-gradient(45deg, #3ab46d, #2bcc9e, #86fd1d);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  text-decoration: none;
  text-align: center;
  padding: 1rem 1rem;
  border: none;
  border-radius: 8px;
  background-size: 200% auto;
  background-position: left center;
  transition: transform .3s ease, opacity .3s ease;
  /* NADA de align-self/margens específicas aqui */
}

.hero__btn:hover {
  transform: translateY(-6px);
}

.hero .hero__btn {
  align-self: flex-start;   /* só o botão do hero precisa disso */
  margin-top: 1.5rem;       /* respiro apenas no hero */
}


/* Coluna da imagem (DIR) — topo → fundo no desktop */
.hero__image--desktop {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 52%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  pointer-events: none;
}
.hero__image--desktop img {
  height: 100%;
  width: auto;
  object-fit: cover;
  display: block;
}

/* Imagem mobile (escondida no desktop) */
.hero__image--mobile {
  display: none;
  width: 100vw;
  margin: 0;
}

/* ===== Prova social ===== */
.hero__proof {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
  font-size: 0.85rem;
}
.proof__pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: #111;
  padding: 4px 10px;
  border-radius: 9999px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}
.proof__stars { display: flex; gap: 4px; }
.star { width: 12px; height: 12px; fill: #FFC107; }
.proof__count { font-size: 0.75rem; color: #6b7280; }
.proof__text {
  margin: 0;
  color: var(--text-strong, #fff);
  font-weight: 600;
  line-height: 1.3;
  text-align: left;
}

/* Centraliza a prova social no mobile */
@media (max-width: 640px) {
  .hero__proof { flex-direction: column; align-items: center; text-align: center; }
  .proof__text { text-align: center; }
}

/* =========================
   MOBILE (≤640px) e TABLET (641–1024px)
   ========================= */

/* Telefones */
@media (max-width: 640px){
  :root{
    --overlap: 320px;               /* quanto o conteúdo sobe sobre a imagem */
    --fade-h: 620px;                /* base do degradê */
  }

  .hero{
    min-height: auto;
    background: #000;
    position: relative;
  }

  .hero__content {
    padding: 0 1rem;
  }

  .hero .hero__btn {
    margin: auto;
    font-size: 1.5rem;
    /* width: 100%; */
  }

  .hero__btn {
    font-size: 1.25rem;
    width: 100%;
  }

  /* evita “vazar” o bg quadriculado no mobile */
  .hero__bg{ display: none; }

  .hero__image--desktop{ display: none !important; }

  .hero__image-wrapper{
    position: relative;
    display: block;
    width: 100%;
    background:#000;               /* fundo sólido atrás da imagem */
  }

  .hero__image--mobile{
    display: block !important;
    width: 100%;
    height: auto;
    object-fit: contain;           /* NUNCA corta a imagem */
    object-position: center top;
    background:#000;               /* letterbox preto nas faixas internas */
  }

  .hero__image-wrapper::after{
    content:"";
    position:absolute;
    left:0; right:0; bottom:0;
    height: calc(var(--fade-h) + 10vh); /* estende o degradê além da imagem */
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0)   0%,
      rgba(0,0,0,0) 30%,
      /* rgba(0,0,0,.2) 50%, */
      rgba(0,0,0,.8) 60%,
      rgba(0,0,0,.9) 82%,
      #000            100%           /* fecha em preto sólido */
    );
    pointer-events:none;
  }

  .hero__inner{
    position:relative;
    display:block;
    padding: 0 16px 32px;
    z-index:2;
    margin-top: calc(-1 * var(--overlap));
  }

  .hero__content{
    max-width:100% !important;
    text-align:center;
    color:#fff;
  }

  .hero__headline{ font-size:1.9rem; line-height:1.2; }
  .hero__text{ font-size:1rem; line-height:1.5; }
}

.verdinho {
  color: #33c085;
}

/* Tablets */
@media (min-width: 641px) and (max-width: 1024px){
  :root{
    --overlap: 700px;
    --fade-h: 1300px;
  }

  .hero{
    min-height:auto;
    background:#000;
    position:relative;
  }

  .hero__btn {
    margin: auto;
  }

  /* evita bg decorativo sob o degradê */
  .hero__bg{ display:none; }

  .hero__image--desktop{ display:none !important; }

  .hero__image-wrapper{
    position:relative;
    display:block;
    width:100%;
    background:#000;
  }

  .hero__image--mobile{
    display:block !important;
    width:100%;
    height:auto;
    object-fit:contain;
    object-position:center top;
    background:#000;
  }

  .hero__image-wrapper::after{
    content:"";
    position:absolute;
    left:0; right:0; bottom:0;
    height: calc(var(--fade-h) + 6vh);
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0)   0%,
      rgba(0,0,0,0) 30%,
      /* rgba(0,0,0,.2) 50%, */
      rgba(0,0,0,.8) 60%,
      rgba(0,0,0,.9) 82%,
      #000            100%           /* fecha em preto sólido */
    );
    pointer-events:none;
  }

  .hero__inner{
    position:relative;
    display:block;
    padding: 0 20px 40px;
    z-index:2;
    margin-top: calc(-1 * var(--overlap));
  }

  .hero__content{
    max-width:720px;
    margin:0 auto;
    text-align:center;
    color:#fff;
  }

  .hero__headline{ font-size:2.2rem; line-height:1.25; }
  .hero__text{ font-size:1.1rem; line-height:1.55; }
}



/* Sessão */
.how__copy {
  text-align: center;
}

.how__copy h2 {
  margin-bottom: 3rem;
  font-size: 2.5rem;
}

/* Cards */
.how__cards {
  display: grid;
  gap: 1.5rem;
}

/* Layout Desktop */
@media (min-width: 900px) {
  .how__cards {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1100px;
    margin: 0 auto;
  }
}

/* Card */
.how__card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.875rem;
  align-items: start;
  padding: 1rem 1.125rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.how__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.12);
}

/* Badge */
.how__badge {
  --size: 36px;
  width: var(--size);
  height: var(--size);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.95rem;
  color: #fff;
  border-radius: 12px;
  background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
  box-shadow: 0 6px 18px rgba(255, 61, 61, 0.25);
}

/* Texto */
.how__card p {
  margin: 0;
  line-height: 1.5;
  color: var(--gray-900);
  font-size: 1rem;
  text-align: left;
}

/* ===========================
   Sessão 3 – Presets (cards)
   =========================== */
.presets__head {
  text-align: center;
  margin-bottom: 28px;
}
.presets__title {
  color: var(--gray-900);
  font-size: 2.5rem;
  /* font-size: 1.85rem; */
  line-height: 1.3;
  font-weight: 600;
  margin: 0;
}
.presets__sub {
  color: var(--text-muted);
  font-size: 1.2rem;
  margin: 0.5rem auto 3rem;
  max-width: 500px;
}

/* Grid dos cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap-lg);
}
@media (max-width: 1100px) {
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
/* Mobile: 2 colunas */
@media (max-width: 700px) {
  .cards {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .card {
    padding: 12px;
  }
  .card .ba {
    --ba-ratio: 3/4;
  } /* menos alto no mobile */
}
/* Extra-pequeno */
@media (max-width: 380px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

/* Card */
.card {
  /* text-align: center;
  background: linear-gradient(180deg, #111 0%, #0f0f0f 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.28);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease); */

  text-align: center;
  background: transparent; /* mesma cor da sessão */
  /* border-top: 1px solid rgba(41, 41, 41, 0.322); */
  border-left: none;
  border-right: none;
  border-bottom: none;
  border-radius: 0; /* remove arredondamento */
  padding: 0 0 3rem; /* remove padding */
  box-shadow: none; /* remove sombra */
}

.card__title {
  margin: 0;
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--gray-800);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
/* .card__count {
  font-size: 2px;
  color: var(--text-muted);
  background-color: rgba(0, 0, 0, 0.368);
  margin: 0;
} */

.card_description {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
}

/* Badge do card */
.badge {
  /* display: inline-flex; */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 999px;
  /* border: 1px solid rgba(255, 255, 255, 0.16); */
  /* background: rgba(0, 0, 0, 0.3); */
  color: var(--gray-0);
  font-size: 12px;
  letter-spacing: 0.06em;
  /* margin: 0 auto 0.4rem; */
  /* backdrop-filter: saturate(130%) blur(1px); */
}



/* .card__count {
  position: relative;
  z-index: 1;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  white-space: nowrap;
  backdrop-filter: blur(4px);
  background: linear-gradient(rgba(0, 0, 0, 1), rgba(0, 0, 0, 1)) padding-box,
    linear-gradient(45deg, #833ab4ac, #fd1d1dac, #fcb045ad) border-box;
  border: 1px solid transparent;
  background-clip: padding-box, border-box;
} */

.badge--floating {
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 10px;
  /* font-weight: 600; */
  backdrop-filter: blur(4px);
}

/* Comparador dentro do card */
.card .ba {
  --ba-max-w: 100%;
  --ba-ratio: 4/5;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .card__title {
    font-size: 1.5rem;
    font-weight: 500;
  }
}

.card img {
  width: 100%;
  /* max-width: 340px; limite aproximado do preview */
  height: auto;
  display: block;
  margin: 0 auto; /* centraliza */
  border-radius: 8px;
}


/* FAQ – lista simples de bundles (mesma linguagem visual) */
.bundle-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: grid;
  gap: 10px;
}
.bundle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;                     /* seção FAQ é clara */
  color: var(--gray-900);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
}
.bundle__name { font-size: .98rem; }
.bundle__count {
  font-size: .8rem;
  color: var(--gray-700);
  background: var(--gray-100);
  border: 1px solid var(--border-light);
  padding: 3px 10px;
  border-radius: 999px;
  white-space: nowrap;
}


/* ===========================
   Seção Bônus Unificado
   =========================== */
.bonus-unificado {
  background: var(--bg-light);
  color: var(--gray-900);
  padding: var(--pad-section) 20px;
}

.bonus-unificado .container {
  max-width: 700px;
}
.bonus-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 36px;
}
.bonus-title {
  margin: 0;
  font-size: 2.5rem;
  line-height: 1.3;
  font-weight: 600;
}
.bonus-sub {
  font-size: 1rem;
  color: var(--gray-700);
  margin: 0;
  margin-top: 0.5rem;
}

.badge--bonus {
  background: rgba(28, 115, 255, 0.1);
  border: 1px solid rgba(28, 115, 255, 1);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-block;
  padding: 6px 14px;
  margin-bottom: 10px;
  color: rgba(28, 115, 255, 1);
}

.text-gradient {
   background: linear-gradient(5deg, #3ab46d, #2bcc9e, #86fd1d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* para navegadores que suportam */
  color: transparent; /* fallback */
}

.bonus__count {
  text-transform: uppercase;
  font-weight: 600;
}

.bonus-media {
  display: flex;
  justify-content: center;
}
.bonus-mockup {
  display: block;
  max-width: 520px;
  width: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border: none;
  line-height: 0;

  /* background-color: #000; */
}

.bonus-mockup img {
  width: 70%;
  height: auto;
  display: block;
  max-width: 100%;
  margin: auto;
}

.bonus-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border: none;
  margin: 0;
  padding: 0;
  background-color: transparent;
  border-radius: var(--radius-sm);
  margin-top: 2rem;
}

.bonus-block {
  text-align: center;
}

.bonus-separator {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin: 4rem auto;
  /* max-width: 400px; */
}

.bonus-mockup {
  max-width: 520px;
  width: 100%;
  margin: 0 auto;
  line-height: 0;
  border-radius: var(--radius-sm);
}

.bonus-video {
  width: 100%;
  height: auto;
  margin: 0;
  display: block;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.bonus-copy {
  margin-top: 1rem;
}

.bonus-cta {
  text-align: center;
  margin-top: 5rem;
}

/* Texto do bônus */
.bonus-copy {
  text-align: left;
}
.bonus-name {
  font-size: 1.5rem;
  font-weight: 200;
  margin: 2rem 0 1rem;
}
.bonus-desc {
  margin: 0;
  color: var(--gray-600);
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .bonus-name {
    font-size: 1.2rem;
    text-align: left;
  }

  .bonus-desc {
    text-align: left;
  }
}

@media (min-width: 768px) {
  .bonus-block {
    text-align: center;
  }
}

/* ===========================
   Seção Oferta Final
   =========================== */

.section.offer {
  padding: 0;
  padding-top: 6rem;
}   
.offer {
  background: var(--bg-light);
  color: var(--text-strong);
  text-align: center;
  padding: var(--pad-section) 20px;
}
.offer__inner {
  max-width: 640px;
  margin: 0 auto;
}
.offer__title {
  font-size: 2.5rem;
}

.offer__subtitle {
  color: var(--text-muted);
}

.offer__receber {
  margin: 0;
  margin-top: 3rem;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.offer__text {
  margin: 0;
  margin-bottom: 3rem;
}

/* Checklist centralizado (texto à esquerda) */
.offer__list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  text-align: left;
}
.offer__list li {
  margin:  0;
  /* text-align: center; */
  color: var(--gray-300);
  font-size: 0.875rem;
  /* font-weight: lighter; */
  border-top: 1px solid rgba(255, 255, 255, 0.122);
  padding: 0.5rem;
}

.offer__list li strong {
  color: var(--text-strong);
  font-weight: 600;
}

.cupom {
  display: inline-block;
  border: 1px dashed rgba(255, 255, 255, 0.24);
  padding: 0.2rem 0.55rem;
  border-radius: 10px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.aviso {
  /* color: var(--gray-400); */
  margin: 0;
  margin-bottom: 1rem;
  
}

.offer__price {
  margin: 3rem 0 0;
}
.old-price {
  color: var(--gray-200);
  font-size: 1.25rem;
  margin: 0;
}

.check {
  color: rgb(28, 115, 255);
}
.old-price s {
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

.new-price {
  color: var(--text-muted);
}
.new-price strong {
  font-size: 3.5rem;
  color: var(--text-strong);
  margin: 0;
}

.price {
  font-size: 3.5rem;
  color: var(--text-strong);
  margin: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  line-height: 1.3;
}

.simbolo {
  margin: 0;
  font-size: 1.5rem;
  margin-right: 0.5rem;
}

.tempo {
  color: #fff;
  /* background-color: rgb(122, 0, 0); */
}

.pagamento_unico {
  font-size: 1rem;
  margin: 0;
  color: var(--text-muted);
  font-style: italic;
}

.offer__cta {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}


.offer__cta a {
  margin: auto;
  font-weight: bold;
  animation: pulse 1.5s infinite;
  transform-origin: center;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 255, 51, 0.6); /* cor inicial (rosa do gradiente) */
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(0, 255, 34, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(9, 255, 0, 0);
  }
}

/* Ajuste para containers de CTA */
.presets__cta {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.offer_img {
  max-width: 100%;
  opacity: 0.6;
  display: block;
  margin: 2rem auto;
}

/* Caixa da oferta (retângulo) */
.offer__box {
  background: var(--bg-dark);
  border-radius: 2rem;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 20px 40px rgba(0,0,0,.35);
}

/* Faixa 80% OFF */
.offer__ribbon {
  position: absolute;
  top: 18px;
  right: -54px;               /* desloca para fora para criar o ângulo */
  display: inline-block;
  padding: 12px 70px;
  font-weight: 800;
  font-size: .9rem;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
  transform: rotate(45deg);
  transform-origin: center;
  z-index: 3;
  background: none;           /* zera qualquer background herdado */
  /* usa seu gradiente primário se existir; senão usa o fallback abaixo */
  background-image: var(--gradient-primary, linear-gradient(90deg, #ff006e 0%, #ff5f00 100%)) !important;
  box-shadow: 0 10px 20px rgba(0,0,0,.35);
}

.offer__ribbon span {
  display: block;
  text-align: center;
}

/* Opcional: melhor encaixe visual da faixa */
.offer__ribbon::after{
  content:"";
  position:absolute;
  top: 100%;
  right: 0;
  border-top: 8px solid rgba(0,0,0,.22);
  border-left: 8px solid transparent;
}

/* Responsivo: aproxima a faixa em telas menores */
@media (max-width: 500px) {
  .btn {
    max-width: 100%;
    font-size: 15px;
    padding: 14px 10px;
  }
  .offer__ribbon{
    right: -60px;
    padding: 10px 62px;
  }
}

.offer__microcopy {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
  margin-top: 0.5rem;
}


/* ===========================
   Seção FAQ
   =========================== */
.faq {
  background: var(--bg-light);
  color: var(--gray-900);
  padding: var(--pad-section) 20px;
}

.garantia {
  padding-bottom: 1px;
}

.faq__inner {
  max-width: 720px;
  margin: 0 auto;
}
.faq__title {
  text-align: center;
  margin-bottom: 28px;
  font-size: 2.5rem;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__item {
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}
.faq__question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-weight: 600;
  font-size: 16px;
  padding: 16px 20px;
  cursor: pointer;
  color: var(--gray-900);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s ease;
}
.faq__question:hover {
  background: var(--gray-100);
}
.faq__question::after {
  content: "+";
  font-size: 20px;
  transition: transform 0.2s ease;
}
.faq__question[aria-expanded="true"]::after {
  content: "–";
  transform: rotate(180deg);
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  color: var(--gray-700);
  font-size: 15px;
  line-height: 1.5;
  transition: max-height 0.3s ease;
}
.faq__answer p {
  margin: 16px 0;
}
.faq__item.open .faq__answer {
  /* max-height: 500px; */
  padding-bottom: 16px;
}

/* ===========================
   Animações de entrada
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  animation: reveal 0.6s ease forwards;
}
.reveal.d2 {
  animation-delay: 0.08s;
}
.reveal.d3 {
  animation-delay: 0.16s;
}
.reveal.d4 {
  animation-delay: 0.24s;
}
@keyframes reveal {
  to {
    opacity: 1;
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .btn {
    transition: none;
  }
}

/* ===========================
   RESPONSIVO – Tablet (≤ 940px)
   =========================== */
@media (max-width: 940px) {
  .hero__inner {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "eyebrow"
      "title"
      "sub"
      "media"
      "cta";
    gap: 12px;
    row-gap: 12px;
  }

  .hero__copy {
    display: contents;
    text-align: center;
  }

  /* Mapear cada elemento para sua área */
  .hero .eyebrow {
    grid-area: eyebrow;
    justify-self: center;
    margin-bottom: 6px;
  }
  .hero__copy .h1 {
    grid-area: title;
    margin: 6px 0;
    line-height: 1.15;
  }
  .hero__copy .sub {
    grid-area: sub;
    margin: 0;
    max-width: 56ch;
    margin-inline: auto;
  }
  .hero__media {
    grid-area: media;
    justify-self: center;
    margin-top: 8px;
  }

  /* CTA fica por último (abaixo da imagem) */
  .cta-row {
    grid-area: cta;
    justify-content: center;
    margin-top: 10px;
  }

  /* (opcional) padding do hero um pouco menor no tablet */
  .section {
    padding: 4rem 4rem;
  }

  /* Centralizar conteúdo do hero */
  .hero__copy {
    text-align: center;
  }
  .hero__copy .h1,
  .hero__copy p,
  .hero__copy .microcopy,
  .hero__copy .eyebrow {
    margin-left: auto;
    margin-right: auto;
  }
  .eyebrow {
    margin-left: auto;
    margin-right: auto;
  }
  .cta-row {
    justify-content: center;
  }
  .microcopy {
    text-align: center;
  }

  /* Mockup */
  .mockup {
    width: 100%;
    border-radius: 24px;
    margin-inline: auto;
  }

  /* Sessão 2 */
  .how__grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "ba"
      "cta";
    gap: var(--gap-md);
  }
  .how__copy {
    text-align: center;
  }
  .how__cta {
    display: flex;
    justify-content: center;
  }

  /* Bônus */
  .bonus-grid {
    grid-template-columns: 1fr;
    gap: var(--gap-md);
    text-align: center;
  }
  .bonus-copy {
    text-align: center;
  }
  .bonus-grid--reverse .bonus-media {
    order: 1;
  }
  .bonus-grid--reverse .bonus-copy {
    order: 2;
  }
}

.site-footer {
  background: #0f0f0f; /* ou var(--gray-900) se estiver usando variables */
  color: #aaa;
  text-align: center;
  padding: 3rem 16px;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.site-footer p {
  margin: 0;
}

/* ===========================
   RESPONSIVO – Mobile (≤ 700px)
   =========================== */
@media (max-width: 700px) {
  /* HERO: CTA abaixo da imagem */
  .hero__inner {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "eyebrow"
      "title"
      "sub"
      "media"
      "cta";
    gap: 10px;
    row-gap: 10px;
  }
  .hero__copy {
    display: contents;
    text-align: center;
  }
  .hero .eyebrow {
    margin-bottom: 6px;
    grid-area: eyebrow;
    justify-self: center;
  }
  .hero__copy .h1 {
    grid-area: title;
    margin: 6px 0 6px;
    line-height: 1.15;
  }
  .hero__copy .sub {
    grid-area: sub;
    margin: 0;
    max-width: 56ch;
    margin-inline: auto;
  }
  .hero__media {
    grid-area: media;
    justify-self: center;
    margin-top: 8px;
  }
  .cta-row {
    grid-area: cta;
    justify-content: center;
    margin-top: 10px;
  }

  .section {
    padding: 4rem 2rem;
  }

  .garantia {
    padding-bottom: 1px;
  }
}

/* ===========================
   RESPONSIVO – XS (≤ 380px)
   =========================== */
@media (max-width: 380px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

@keyframes auto-compare {
  0% {
    --pos: 0%;
  }
  50% {
    --pos: 100%;
  }
  100% {
    --pos: 0%;
  }
}

.ba--auto {
  animation: auto-compare 6s ease-out infinite;
}

.ba__img.is-after.auto {
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
  transition: clip-path 750ms linear;
}

.ba__label-dynamic {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 5;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  font-size: 1rem;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
  text-transform: uppercase;
  pointer-events: none;
  backdrop-filter: blur(3px);
  transition: opacity 0.3s ease;
  opacity: 1;
}

[data-animate] {
  opacity: 0;
  transform: translateY(30px); /* vem de baixo */
  transition: all 0.8s ease-out;
}

[data-animate].active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  h2 {
    font-size: 1.875rem !important;
  }
  .presets__sub {
    max-width: none;
  }



  .how__ba {
    max-width: none;
  }

  
}
/* ai papai */


/* ===== Any-Image-Style (isolado) ===== */
.xics{
  position: relative;
  width: 100%;
  aspect-ratio: var(--ratio, 162/257);
  border-radius: 10px;
  overflow: hidden;
  display: block;
}

.xics__images{ position:absolute; inset:0; }
.xics__img{
  position:absolute; inset:0;
  background-size: cover;
  background-position: center;
  will-change: clip-path;
}
.xics__img--right{ z-index:1; }               /* ANTES */
.xics__img--left{ z-index:2;                   /* DEPOIS (mascara animada) */
  clip-path: inset(0 100% 0 0);
  animation: xics-sweep var(--speed,6s) ease-in-out infinite;
}

/* Linha divisória animando junto */
.xics__line{
  position:absolute; top:0; left:0;
  width: 3px; height: 100%;
  background: rgba(0,0,0,1);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.2); /* leve contorno, opcional */
  pointer-events: none;
  animation: xics-line var(--speed,6s) ease-in-out infinite;
  z-index: 3;
}

/* Tag simples (opcional) — você pode trocar para "Antes/Después" via JS se quiser */
.xics__tag{
  position:absolute; top:12px; right:12px;
  z-index:4;
  background: rgba(0,0,0,.7);
  color:#fff; font-size:12px; font-weight:700; text-transform:uppercase;
  padding:4px 10px; border-radius:999px; backdrop-filter: blur(3px);
}


@keyframes xics-sweep{
   0%   { clip-path: inset(0 100% 0 0); }  /* ANTES */
  26.7%{ clip-path: inset(0 100% 0 0); }  /* pausa no ANTES (1.6s) */
  40%  { clip-path: inset(0   0%  0 0); } /* ida (0.8s) */
  73.3%{ clip-path: inset(0   0%  0 0); } /* pausa no DEPOIS (2.0s) */
  86.7%{ clip-path: inset(0 100% 0 0); }  /* volta (0.8s) */
  100% { clip-path: inset(0 100% 0 0); }  /* pausa final (0.8s) */
}
/* SUBSTITUA este bloco */
@keyframes xics-line{
0%   { left: 0%;   transform: translateX(0); }
  26.7%{ left: 0%;   transform: translateX(0); }       /* pausa no ANTES */
  40%  { left: 100%; transform: translateX(-100%); }   /* ida */
  73.3%{ left: 100%; transform: translateX(-100%); }   /* pausa no DEPOIS */
  86.7%{ left: 0%;   transform: translateX(0); }       /* volta */
  100% { left: 0%;   transform: translateX(0); }       /* pausa final */
}



.hero__image-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
}

/* Carrossel */
.hero__carousel {
  display: flex;
  width: 100%;
  will-change: transform;
  transition: transform .6s ease;
}

.hero__slide {
  flex: 0 0 100%;
  width: 100%;
  height: auto;
  pointer-events: none;
  user-select: none;
}

/* Mostra o carrossel só no mobile, se quiser */
@media (min-width: 1024px) {
  .hero__image-wrapper { display: none; }
}


/* ===== Container ===== */
.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
}

/* ===== Trilho e slides ===== */
.carousel__track {
  display: flex;
  transition: transform .5s ease;
  will-change: transform;
  cursor: grab;          /* feedback no desktop */
  touch-action: pan-y;   /* permite rolagem vertical da página */
}
.carousel--dragging .carousel__track { 
  transition: none; 
  cursor: grabbing;
}

.carousel__slide {
  flex: 0 0 100%;
  width: 100%;
  height: auto;
  display: block;
  user-select: none;
  pointer-events: none;   /* evita drag nativo da imagem */
}

/* ===== Botões (opcionais) ===== */
.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: rgba(0,0,0,.4);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
}
.carousel__btn:focus { outline: 2px solid rgba(255,255,255,.8); outline-offset: 2px; }
.carousel__btn--prev { left: 8px; }
.carousel__btn--next { right: 8px; }

/* ===== Dots (somente dentro de .carousel__dots) ===== */
.carousel__dots {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 3; /* acima da imagem e das thumbs */
}
.carousel__dots button {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,.45);
  cursor: pointer;
  transition: width .2s ease, background .2s ease;
}
.carousel__dots button[aria-current="true"] {
  background: #fff;
  width: 18px;
  border-radius: 6px; /* vira 'pílula' quando ativo */
}

/* ===== Thumbs (somente dentro de .carousel__thumbs) ===== */
.carousel__thumbs {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  overflow: auto;
  padding-bottom: 2px;
}
.carousel__thumbs button {
  all: unset;              /* reseta estilos nativos de button */
  cursor: pointer;
  border-radius: 10px;
  overflow: hidden;
  outline-offset: 2px;
  flex: 0 0 auto;
  display: block;          /* garante caixa sólida */
}
.carousel__thumbs button img {
  display: block;
  width: 60px;
  height: 60px;
  object-fit: cover;
  opacity: .8;
  transition: opacity .2s, transform .2s, box-shadow .2s, filter .2s;
  filter: brightness(0.6); /* deixa mais escuro */
}

/* Thumb ativa */
.carousel__thumbs button[aria-current="true"] img {
  opacity: 1;
  filter: brightness(1);  /* volta ao normal */
  transform: scale(1.03);
  box-shadow: 0 0 0 2px #000 inset;
}

/* Hero: impedir gesto horizontal (mantém scroll vertical normal) */
.hero__carousel { touch-action: pan-y; }

/* Imagens não “arrastáveis” */
.hero__slide { user-select: none; pointer-events: none; }

/* (para os cards você já tem) */
.carousel__track .carousel__slide {
  user-select: none;
  pointer-events: none;
}


/* ===== Responsivo opcional ===== */
/* Em telas pequenas, se quiser esconder botões e usar só arrasto + dots:
@media (max-width: 560px){
  .carousel__btn{ display:none; }
}
*/
/* base dos itens */
.feat{display:flex;align-items:center;gap:10px;padding:10px 14px;border-radius:14px;color:#fff}
.feat__icon{width:28px;height:28px;display:grid;place-items:center;border-radius:999px;flex:0 0 28px}
.feat__icon svg{width:16px;height:16px;color:#fff}
.feat__text{font-weight:600;font-size:14px;letter-spacing:.2px;line-height:1.2}


/* ====== Ticker base ====== */
/* ===== Ticker ancorado no HERO (como antes) ===== */
.ticker{
  --h:42px;                 /* altura da faixa */
  --fs:14px;
  --gap:18px;

  color:#fff;
  border-radius:999px;
  background:rgba(17,17,17,.85);
  border:1px solid rgba(255,255,255,.14);
  backdrop-filter:blur(10px);
  overflow:hidden;
  z-index:5;
}

.hero__inner{ position:relative; }             /* pai relativo p/ ancorar */
.ticker--hero{
  position:absolute;
  left:50%;
  bottom:8px;
  transform:translateX(-50%);
  max-width:min(680px, 94%);
  width:100%;
}

/* dá espaço pro título não ficar por baixo da faixa (apenas mobile) */
@media (max-width:640px){
  .hero__content{ padding-bottom: calc(var(--h) + 20px); }
}

/* ===== estrutura do ticker ===== */
.ticker__viewport{
  height:var(--h);
  display:flex; align-items:center;
  overflow:hidden; border-radius:inherit;
}

.ticker__track{
  display:flex; align-items:center;
  gap:var(--gap);
  height:100%;
  padding:0 12px;
  white-space:nowrap;
  width:max-content;                 /* largura exata do conteúdo (A|A) */
  will-change:transform;
  animation: marquee var(--dur,25s) linear infinite;
}

/* item */
.ticker__item{
  display:inline-flex; align-items:center; gap:8px;
   font-size:var(--fs); line-height:1; letter-spacing:.2px;
}

/* separador (escopado) */
.ticker .dot{
  width:8px; height:8px; border-radius:999px; flex:0 0 8px;
  background:linear-gradient(45deg,#8a2be2,#ff3d3d);
  box-shadow:0 0 0 2px rgba(255,255,255,.06);
}

/* evita scroll horizontal no hero em mobile */
.hero, .hero__inner, .hero__content { overflow-x: clip; }

/* pausa no hover (desktop) */
@media (hover:hover){ .ticker:hover .ticker__track{ animation-play-state: paused; } }
@media (prefers-reduced-motion: reduce){ .ticker__track{ animation:none !important; } }

/* loop perfeito: move metade do trilho duplicado */
@keyframes marquee{ from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* Altura do ticker usada em todo lugar */
:root{
  --ticker-h: 42px;         /* mesmo valor que você usa em .ticker (--h) */
  --ticker-gap: 68px;       /* respiro entre headline e ticker */
}


/* garante o contexto p/ posicionar o ticker */
.hero__inner{ position: relative; }

/* o seu ticker pode continuar como está; só garantimos que use a mesma var */
.ticker{ --h: var(--ticker-h); }

/* >>> AQUI está o truque: dá espaço abaixo do H1 para não ficar por baixo do ticker */
@media (max-width: 640px){
  .hero__headline{
    display: block;
    /* margin-bottom: calc(var(--ticker-h) + var(--ticker-gap)) !important; */
  }
}

/* se preferir que SEMPRE respeite (desktop também), remova o @media acima */
/* ===== HERO DESKTOP (desktop-only) ===== */
#hero-desktop { display: none; }
@media (min-width:1025px){
  #hero-desktop { display:block; }
  #hero-mobile  { display:none !important; }
}

/* Wrapper */
.hero--desktop{
  position: relative;
  min-height: 92vh;         /* espaço inferior reduzido */
  background: #000;
  overflow: hidden;
}

/* Faixa de imagens — grandes, sem gap/borda */
.hero--desktop .hero-strip{
  position: relative;
  height: 56vh;             /* altura das imagens */
}
.hero--desktop .strip__mask{
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero--desktop .strip__track{
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  display: flex;
  align-items: stretch;
  gap: 0;                   /* sem espaçamento */
  padding: 0;               /* sem padding */
  will-change: transform;
  z-index: 1;               /* trilhas abaixo da sombra e do texto */
}
.hero--desktop .strip__track--a{ animation: strip-a 60s linear infinite; }
.hero--desktop .strip__track--b{ animation: strip-b 60s linear infinite; }
@keyframes strip-a { from{transform:translateX(0%)}   to{transform:translateX(-100%)} }
@keyframes strip-b { from{transform:translateX(100%)} to{transform:translateX(0%)} }

.hero--desktop .strip__track img{
  height: 100%;
  width: auto;
  object-fit: cover;
  display: block;
  border-radius: 0;         /* sem bordas */
}

/* Sombra por cima das imagens */
.hero--desktop .strip__fade{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 26vh;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,.55) 55%, #000 100%);
  pointer-events: none;
  z-index: 2;
}

/* Texto centralizado, meio sobre imagens / meio na área preta */
.hero--desktop .hero__overlay{
  position: absolute;
  inset: 0;
  z-index: 3;               /* acima das imagens e da sombra */
}
.hero--desktop .hero__inner{
  position: relative;
  width: 100%;
  height: 100%;
}
.hero--desktop .hero__content{
  position: absolute;
  left: 50%;
  top: 56vh;                /* mesmo valor da faixa de imagens */
  transform: translate(-50%, -62%); /* puxa um pouco para cima */
  text-align: center;
  width: min(100%, 980px);
  padding: 0 24px;
}

.hero--desktop .hero__headline{ color: var(--gray-0, #fff); margin-bottom: 12px; }
.hero--desktop .ticker--hero{ margin-top: 10px; }


/* ===== Bundle Stats (versão fundo branco) ===== */
.stats {
  background: #fff;            /* fundo branco */
  color: var(--gray-700, #4b4b4b);
  text-align: center;
  padding: clamp(48px, 8vw, 120px) 0;
  border-top: 1px solid var(--border-light, #ececec);
  border-bottom: 1px solid var(--border-light, #ececec);
}
.stats .container { max-width: 920px; margin: 0 auto; padding: 0 20px; }

.stats__kicker {
  font-size: .95rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-500, #8a8a8a);
  margin: 0 0 18px;
}

.stats__item { margin: clamp(28px, 6vw, 64px) 0; }

.stats__big {
  line-height: .95;
  margin-bottom: 10px;
  /* glow bem leve e neutro para branco */
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.08));
}
.stats__big .text-gradient {
  display: inline-block;
  font-weight: 900;
  letter-spacing: -.02em;
  font-size: clamp(56px, 12vw, 140px);
  /* gradiente neutro (preto → cinza escuro), sem cor do exemplo */
  background: linear-gradient(180deg, #111 0%, #222 60%, #000 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stats__sub {
  margin: 0;
  font-size: clamp(14px, 1.6vw, 18px);
  color: var(--gray-600, #6e6e6e);
  opacity: .95;
}

/* CTA discreta para fundo branco */
.stats__cta {
  display: inline-block;
  margin-top: clamp(8px, 2vw, 16px);
  font-weight: 700;
  color: var(--gray-900, #111);
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--border-light, #e8e8e8);
  background: #fff;
  transition: background .15s ease, transform .15s ease;
}
.stats__cta:hover { background: #f7f7f7; transform: translateY(-1px); }

/* espaçamento mais justo em telas muito altas */
@media (min-height: 900px) {
  .stats { padding-top: 96px; padding-bottom: 120px; }
}

/* Título e lead da seção stats (fundo branco) */
.stats__title{
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  color: var(--gray-900, #111);
  margin: 0 0 6px;
}
.stats__lead{
  margin: 0 auto 18px;
  max-width: 720px;
  color: var(--gray-600, #6e6e6e);
  font-size: 1.05rem;
  line-height: 1.7;
}



/* ===== Seção "Ainda tem muito mais" (fundo branco) ===== */
.more-bonus{
  background:#fff;
  color:#111;
  padding: clamp(0, 8vw, 120px) 0 0; /* topo com respiro; base sem para colar nas faixas */
  /* border-top: 1px solid var(--border-light, #ececec); */
}
.more-bonus .container{
  max-width: 920px;
  margin: 0 auto 22px;
  padding: 0 20px;
  text-align: center;
}
.more-bonus__title{
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  margin: 0 0 2rem;
  letter-spacing: -0.01em;
}
.more-bonus__lead{
  margin: 0 auto 2rem;
  max-width: 720px;
  color: var(--gray-700, #5f5f5f);
  font-size: 1.05rem;
  line-height: 1.65;
}

/* ===== Marquee duplo contínuo ===== */
/* ===== Marquee: cada imagem ocupa a largura total da tela ===== */
.marquee{
  background: #fff;
  line-height: 0;
  overflow: hidden;
}

.marquee__row{
  /* altura passa a ser automática, definida pela imagem mais alta */
  height: auto;
  margin: 0;           /* sem espaço entre as duas faixas */
}

.marquee__row + .marquee__row{
  margin-top: 0;       /* zero gap entre as faixas */
}

.marquee__track{
  display: flex;
  align-items: flex-start;  /* não esticar imagens na altura */
  gap: 0;                   /* sem espaço entre imagens */
  width: max-content;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: var(--dur, 50s); /* agora controlada via JS */
}

.marquee__row[data-dir="left"]  .marquee__track{ animation-name: marquee-left; }
.marquee__row[data-dir="right"] .marquee__track{ animation-name: marquee-right; }


:root{ --gap: 2px; }

/* espaço entre as imagens */
.marquee__track{ gap: var(--gap); }

/* CADA IMG = 100vw de largura; altura natural, sem crop */
.marquee__track img{
  flex: 0 0 calc(50vw - var(--gap));
  width: calc(50vw - var(--gap));
  height: auto;     /* mantém proporção original (sem cortar) */
  display: block;
  margin: 0;
  border: 0;
  object-fit: unset;   /* garante que não force 'cover' */
  object-position: center;
}

/* animações para o loop contínuo */
@keyframes marquee-left{
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes marquee-right{
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

