/* =========================================================
   API Meta Milionária — styles.css (VERSÃO LIMPA)
   Fonte: Manrope (400/700) — corpo e títulos
   ========================================================= */

:root{
  --bg:#050A14;
  --bg2:#070D1C;

  --card:rgba(255,255,255,.06);
  --card2:rgba(255,255,255,.09);

  --stroke:rgba(255,255,255,.12);
  --stroke2:rgba(255,255,255,.18);

  --text:rgba(255,255,255,.69);
  --text-strong:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.69);
  --muted2:rgba(255,255,255,.56);

  --accent:#ff6a2a;
  --accent2:#ffb07a;

  --blue:#49a2ff;
  --green:#30d158;

  --radius:18px;
  --shadow:0 24px 80px rgba(0,0,0,.55);

  --font-body:"Manrope",sans-serif;
  --font-head:"Manrope",sans-serif;

  /* Tipografia (novo) */
  --title-color: rgb(54, 57, 64);
  --title-size: 38px;
  --title-line: 44px;
  --title-weight: 700;

  --body-color: rgba(255, 255, 255, 0.69);
  --body-size: 16px;
  --body-line: 20px;
  --body-weight: 400;
}

*,
*::before,
*::after{ box-sizing:border-box; }

html{ scroll-behavior:smooth; }

body{
  margin:0;
  min-height:100%;
  background:var(--bg);
  color:var(--body-color);
  font-family:var(--font-body);
  font-size:var(--body-size);
  line-height:var(--body-line);
  font-weight:var(--body-weight);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}

::selection{ background: rgba(255,106,42,.32); color: rgba(255,255,255,.92); }

body::before{
  content:"";
  position:fixed;
  inset:-200px;
  z-index:-2;
  background:
    radial-gradient(700px 380px at 20% 10%, rgba(255,106,42,.22), transparent 60%),
    radial-gradient(650px 380px at 80% 0%, rgba(73,162,255,.14), transparent 55%),
    radial-gradient(800px 500px at 50% 100%, rgba(48,209,88,.10), transparent 60%);
  pointer-events:none;
}

body::after{
  content:"";
  position:fixed;
  inset:0;
  z-index:-1;

  background:
    /* Overlay vertical (mantém o peso do dark) */
    linear-gradient(to bottom,
      rgba(5,10,20,.50),
      rgba(5,10,20,.90)
    ),

    /* Vignette horizontal (lados mais escuros / centro mais “aberto”) */
    linear-gradient(90deg,
      rgba(5,10,20,.94) 0%,
      rgba(5,10,20,.72) 18%,
      rgba(5,10,20,.18) 50%,
      rgba(5,10,20,.72) 82%,
      rgba(5,10,20,.94) 100%
    ),

    /* Grid */
    repeating-linear-gradient(90deg,
      rgba(255,255,255,.085) 0 1px,
      transparent 1px 80px
    ),
    repeating-linear-gradient(0deg,
      rgba(255,255,255,.075) 0 1px,
      transparent 1px 80px
    );

  opacity: 1;
  pointer-events:none;
}

a{ color:inherit; text-decoration:none; }
a:hover{ color: rgba(255,255,255,.98); }

img{ max-width:100%; display:block; }
svg{ display:inline-block; }

/* Container */
.wrap{
  width:min(1120px, calc(100% - 48px));
  margin:0 auto;
}

/* Skip link (acessibilidade) */
.skip{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip:focus{
  left:16px;
  top:16px;
  width:auto;
  height:auto;
  padding:10px 14px;
  border-radius:12px;
  background:rgba(255,255,255,.10);
  border:1px solid var(--stroke2);
  z-index:2000;
}

/* =========================================================
   Header
   ========================================================= */
header{
  position:sticky;
  top:0;
  z-index:999;
}
header::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(5,10,20,.72);
  border-bottom:1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  pointer-events:none; /* importante: não bloquear cliques */
}
.topbar{
  height:4px;
  background: linear-gradient(90deg, var(--accent), rgba(255,176,122,.6), transparent);
}

.head{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}

.mark{
  width:38px;
  height:38px;
  border-radius:14px;
  background:
    radial-gradient(18px 18px at 30% 30%, rgba(255,255,255,.35), transparent 60%),
    linear-gradient(135deg, rgba(255,106,42,.9), rgba(255,176,122,.35));
  box-shadow: 0 12px 30px rgba(255,106,42,.22);
  border:1px solid rgba(255,255,255,.14);
  flex:0 0 auto;
}

/* seu HTML não usa .brand-text, então estilizamos pelo contexto */
.brand strong{
  font-family:var(--font-head);
  color: var(--text-strong);
  font-weight:700;
  font-size:14px;
  letter-spacing:.02em;
  line-height:1.1;
  display:block;
}
.brand span{
  display:block;
  font-size:12px;
  color:var(--muted2);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

/* Nav */
nav{
  display:flex;
  gap:10px;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.06);
}
nav a{
  font-size:13px;
  font-weight:700;
  color:var(--muted);
  padding:8px 10px;
  border-radius:12px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
nav a:hover{
  color:var(--text-strong);
  background:rgba(255,255,255,.06);
  transform: translateY(-1px);
}

/* =========================================================
   Buttons
   ========================================================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.06);
  color:var(--text-strong);
  font-weight:700;
  letter-spacing:.01em;
  cursor:pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
  user-select:none;
}
.btn svg{ width:18px; height:18px; }

.btn:hover{
  transform: translateY(-1px);
  border-color: rgba(255,255,255,.18);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}
.btn:active{ transform: translateY(0); }
.btn:focus-visible{
  outline:none;
  box-shadow: 0 0 0 3px rgba(255,106,42,.25), 0 0 0 1px rgba(255,255,255,.22);
}

.btn-ghost{ background:rgba(255,255,255,.04); }

.btn-cta{
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-color: rgba(255,106,42,.35);
  color: #0b0f18;
}
.btn-cta:hover{ box-shadow: 0 20px 55px rgba(255,106,42,.22); }

.btn-sm{
  padding:10px 12px;
  border-radius:12px;
  font-size:13px;
}

/* =========================================================
   HERO
   ========================================================= */
.hero{ padding:54px 0 24px; }

.hero-inner{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:14px;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  color:var(--muted);
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-size:12px;
}
.pulse{
  width:8px;
  height:8px;
  border-radius:999px;
  background:var(--accent);
  box-shadow: 0 0 0 0 rgba(255,106,42,.4);
  animation: pulse 1.6s infinite;
}
@keyframes pulse{
  0%{ box-shadow: 0 0 0 0 rgba(255,106,42,.45); }
  70%{ box-shadow: 0 0 0 10px rgba(255,106,42,0); }
  100%{ box-shadow: 0 0 0 0 rgba(255,106,42,0); }
}

.h1{
  margin:5px 0 5px;
  font-family:var(--font-head);
  font-weight:var(--title-weight);
  font-size:clamp(30px, 4vw, 42px);
  line-height:var(--title-line);
  letter-spacing:0;
  max-width:980px;
  color:rgba(255,255,255,.92);
  text-shadow: 0 0 18px rgba(255,255,255,.22);
}
.h2{
  margin:20px 0 20px;
  font-family:var(--font-head);
  font-weight:var(--title-weight);
  font-size:clamp(24px, 3.2vw, 38px);
  line-height:var(--title-line);
  letter-spacing:0;
  color:rgba(255,255,255,.92);
  text-shadow: 0 0 18px rgba(255,255,255,.22);
}

.grad{
  background: linear-gradient(90deg, var(--accent), var(--accent2), rgba(255,255,255,.95));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.sub{
  margin:0;
  color: var(--body-color);
  font-weight: var(--body-weight);
  font-size: var(--body-size);
  line-height: var(--body-line);
  max-width:920px;
}

/* VSL card */
.vsl-shell{
  width:min(980px, 100%);
  margin-top:18px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.04));
  box-shadow: var(--shadow);
  overflow:hidden;
}

.vsl-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 14px;
  border-bottom:1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.18);
}

.mini-pills{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.mp{
  font-size:12px;
  font-weight:700;
  color: rgba(255,255,255,.82);
  padding:6px 10px;
  border-radius:999px;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
}

.ratio{
  position:relative;
  aspect-ratio:16 / 9;
  width:100%;
  background:
    radial-gradient(600px 320px at 30% 0%, rgba(255,106,42,.14), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(0,0,0,.25));
}
.ratio iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}

.vsl-overlay{
  position:absolute;
  top:14px;
  left:14px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius:999px;
  background: rgba(0,0,0,.55);
  border:1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.92);
  font-size:11px;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.vsl-overlay svg{
  width:18px;
  height:18px;
  color: var(--accent);
}

.vsl-bottom{
  padding:16px;
  border-top:1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.14);
}

.vsl-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  justify-content:center;
}

.micro{
  margin-top:12px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
  color: var(--muted2);
  font-weight:700;
  font-size:13px;
}
.micro .b{
  width:6px;
  height:6px;
  border-radius:999px;
  background: var(--accent);
  opacity:.85;
  align-self:center;
}

/* Trust pills */
.trust{
  margin-top:18px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.86);
  font-weight:700;
  font-size:13px;
}
.pill svg{
  width:18px;
  height:18px;
  color: var(--accent);
}

/* Cross */
.cross-wrap{
  width:min(1020px,100%);
  margin-top:26px;
}
.cross-title{
  margin:0 0 14px;
  color: var(--muted);
  font-weight:700;
}
.cross{
  display:grid;
  grid-template-columns: minmax(260px,1fr) 110px minmax(260px,1fr);
  grid-template-rows: auto auto;
  gap:16px;
  align-items:stretch;
}
.cross > .fcard:nth-child(1){ grid-column:1; grid-row:1; }
.cross > .fcard:nth-child(2){ grid-column:1; grid-row:2; }
.cross > .center{ grid-column:2; grid-row:1 / span 2; }
.cross > .fcard:nth-child(4){ grid-column:3; grid-row:1; }
.cross > .fcard:nth-child(5){ grid-column:3; grid-row:2; }

.center{ display:flex; align-items:center; justify-content:center; }

.core{
  width:90px;
  height:90px;
  border-radius:28px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:
    radial-gradient(30px 30px at 30% 30%, rgba(255,255,255,.18), transparent 60%),
    linear-gradient(135deg, rgba(255,106,42,.35), rgba(73,162,255,.18));
  border:1px solid rgba(255,255,255,.16);
  box-shadow: 0 25px 80px rgba(0,0,0,.55), 0 0 0 1px rgba(255,106,42,.18);
}
.core svg{ width:42px; height:42px; color: rgba(255,255,255,.92); }

.fcard{
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding:18px;
}
.fcard h4{
  margin:0 0 8px;
  font-family:var(--font-head);
  color: var(--text-strong);
  font-weight:700;
  font-size:16px;
  letter-spacing:-0.02em;
}
.fcard p{
  margin:0;
  color: var(--body-color);
  font-weight: var(--body-weight);
  font-size: var(--body-size);
  line-height: var(--body-line);
}

/* =========================================================
   Sections
   ========================================================= */
.section{ padding:76px 0; }
.section .wrap > .reveal:first-child{ text-align:center; }

.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin:0 auto 10px;
  color: var(--muted2);
  font-weight:700;
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.kicker::before{
  content:"";
  width:16px;
  height:2px;
  border-radius:999px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.lead{
  margin:10px auto 0;
  color: var(--body-color);
  font-weight: var(--body-weight);
  font-size: var(--body-size);
  line-height: var(--body-line);
  max-width:900px;
}

.section-divider{
  height:1px;
  margin-top:46px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.14), transparent);
}
.sep{
  height:1px;
  margin:28px 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
}

/* =========================================================
   Grid + cards
   ========================================================= */
.grid{
  margin-top:26px;
  display:grid;
  gap:16px;
  grid-template-columns: repeat(2, minmax(0,1fr));
}
.grid.cols-3{ grid-template-columns: repeat(3, minmax(0,1fr)); }

.card{
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  box-shadow: 0 20px 70px rgba(0,0,0,.28);
}
.pad{ padding:20px; }

.lift{
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.lift:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.2);
  box-shadow: 0 30px 90px rgba(0,0,0,.45);
  background: rgba(255,255,255,.06);
}

.iconbox{
  width:46px;
  height:46px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,106,42,.14);
  border:1px solid rgba(255,106,42,.25);
  box-shadow: 0 18px 45px rgba(255,106,42,.10);
  margin-bottom:14px;
  color: rgba(255,255,255,.92);
}
.iconbox.blue{
  background: rgba(73,162,255,.14);
  border-color: rgba(73,162,255,.28);
  box-shadow: 0 18px 45px rgba(73,162,255,.10);
}
.iconbox.green{
  background: rgba(48,209,88,.14);
  border-color: rgba(48,209,88,.28);
  box-shadow: 0 18px 45px rgba(48,209,88,.10);
}
.iconbox svg{ width:22px; height:22px; }

.ctitle{
  margin:0 0 6px;
  font-family:var(--font-head);
  color: var(--text-strong);
  font-weight:700;
  font-size:16px;
  letter-spacing:-0.02em;
}
.ctext{
  margin:0;
  color: var(--body-color);
  font-weight: var(--body-weight);
  font-size: var(--body-size);
  line-height: var(--body-line);
}

/* =========================================================
   Timeline
   ========================================================= */
.timeline{
  margin-top:28px;
  position:relative;
  display:flex;
  flex-direction:column;
  gap:16px;
}
.timeline::before{
  content:"";
  position:absolute;
  left:18px;
  top:16px;
  bottom:16px;
  width:2px;
  background: rgba(255,255,255,.12);
}
.titem{
  position:relative;
  display:grid;
  grid-template-columns: 340px 1fr;
  gap:18px;
  align-items:center;
  padding:18px 18px 18px 56px;
  background: rgba(255,255,255,.045);
  border:1px solid rgba(255,255,255,.12);
  border-radius:20px;
}
.tmark{
  position:absolute;
  left:10px;
  top:30px;
  width:18px;
  height:18px;
  border-radius:999px;
  background: var(--bg);
  border:2px solid var(--accent);
  box-shadow: 0 0 0 8px rgba(255,106,42,.14);
}
.media{
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.25);
  aspect-ratio: 16 / 10;
}
.media img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.ttext h4{
  margin:0 0 8px;
  font-family:var(--font-head);
  color: var(--text-strong);
  font-weight:700;
  font-size:18px;
  letter-spacing:-0.02em;
}
.ttext p{
  margin:0;
  color: var(--body-color);
  font-weight: var(--body-weight);
  font-size: var(--body-size);
  line-height: var(--body-line);
}

/* =========================================================
   Accordion
   ========================================================= */
.acc{
  margin-top:24px;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.acc-item{
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  overflow:hidden;
  background: rgba(255,255,255,.045);
}
.acc-btn{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:16px 18px;
  background:transparent;
  border:0;
  color: var(--text-strong);
  cursor:pointer;
  text-align:left;
  font:inherit;
}
.acc-btn .q{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  line-height:1.35;
}
.badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:68px;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(255,106,42,.14);
  border:1px solid rgba(255,106,42,.28);
  color: rgba(255,255,255,.90);
  font-size:12px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.chev{
  width:20px;
  height:20px;
  opacity:.8;
  transition: transform .25s ease;
  flex:0 0 auto;
}
.panel{
  display:grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s ease;
}
.panel-inner{
  overflow:hidden;
  padding: 0 18px 0;
  color: var(--body-color);
  font-weight: var(--body-weight);
  font-size: var(--body-size);
  line-height: var(--body-line);
}
.acc-item[data-open="true"] .panel,
.acc-btn[aria-expanded="true"] + .panel{ grid-template-rows: 1fr; }
.acc-item[data-open="true"] .panel-inner,
.acc-btn[aria-expanded="true"] + .panel .panel-inner{ padding: 0 18px 18px; }
.acc-item[data-open="true"] .chev,
.acc-btn[aria-expanded="true"] .chev{ transform: rotate(180deg); }

/* =========================================================
   Carrossel
   ========================================================= */
.print-carousel{
  margin-top: 26px;
  position: relative;
  overflow: hidden;
  padding: 10px 0;

  --card-w: 380px;
  --card-h: 798px;
  --gap: 12px;
  --duration: 55s;
}

.print-carousel::before,
.print-carousel::after{
  content:"";
  position:absolute;
  top:0; bottom:0;
  width: 90px;
  z-index: 2;
  pointer-events:none;
}
.print-carousel::before{
  left:0;
  background: linear-gradient(90deg, rgba(5,10,20,.98), rgba(5,10,20,0));
}
.print-carousel::after{
  right:0;
  background: linear-gradient(-90deg, rgba(5,10,20,.98), rgba(5,10,20,0));
}

.print-carousel__track{
  display:flex;
  flex-wrap: nowrap;
  gap: var(--gap);
  width: max-content;
  will-change: transform;
  animation: printMarquee var(--duration) linear infinite;
}

@media (hover:hover){
  .print-carousel:hover .print-carousel__track{
    animation-play-state: paused;
  }
}

.print-carousel__item{
  flex: 0 0 auto;
  width: var(--card-w);
  aspect-ratio: 380 / 798;
}

@keyframes printMarquee{
  from{ transform: translate3d(0,0,0); }
  to{ transform: translate3d(-50%,0,0); }
}

@media (max-width: 768px){
  .print-carousel{
    --card-w: min(380px, 88vw);
    --card-h: calc(var(--card-w) * 2.05);
    --gap: 10px;
    --duration: 50s;
  }

  .print-carousel::before,
  .print-carousel::after{
    width: 48px;
  }
}

/* =========================================================
   Provas
   ========================================================= */
.vproof{ overflow:hidden; }

/* Centraliza o card de vídeo de prova */
.proofs-center{
  margin-top: 26px;
  display:flex;
  justify-content:center;
}

.thumb{
  position:relative;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(500px 220px at 25% 0%, rgba(255,106,42,.14), transparent 65%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(0,0,0,.35));
  border-bottom:1px solid rgba(255,255,255,.08);
  display:flex;
  align-items:center;
  justify-content:center;
}

.meta{
  padding:14px 16px 16px;
  display:flex;
  flex-direction:column;
  gap:6px;
}
.meta b{
  font-family:var(--font-head);
  color: var(--text-strong);
  font-weight:700;
}
.meta span{
  color: var(--body-color);
  font-weight: var(--body-weight);
  font-size: var(--body-size);
  line-height: var(--body-line);
}

/* Se o bloco .meta estiver vazio, some (evita “caixa esticada” abaixo do vídeo) */
.vproof .meta:empty{
  display:none;
  padding:0;
}

.thumb.thumb-embed{
  display:block;
  padding:0;
}
.thumb.thumb-embed .thumb-embed-inner{
  position:absolute;
  inset:0;
}
.thumb.thumb-embed vturb-smartplayer{
  width:100% !important;
  height:100% !important;
  max-width:none !important;
  margin:0 !important;
  display:block !important;
}

.vproof-vertical{
  grid-column: 1 / -1;
  justify-self: center;
  width: min(520px, 100%);
}
.vproof-vertical .thumb{
  aspect-ratio: 4 / 5; /* 1080x1350 (4:5) */
  height:auto !important;
}
@media (max-width: 520px){
  .vproof-vertical{ width: 100%; }
}

.proofs-grid{
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 980px;
  margin-left:auto;
  margin-right:auto;
}
.proof-img{
  padding:0;
  overflow:hidden;
  border-radius: 18px;
}
.proof-img img{
  width:100%;
  height:auto;
  display:block;
}
@media (max-width: 640px){
  .proofs-grid{
    grid-template-columns: 1fr;
    max-width: 520px;
  }
}

/* =========================================================
   BÔNUS
   ========================================================= */
.bonus-grid{
  grid-template-columns: repeat(2, minmax(0, 420px));
  justify-content:center;
  gap:18px;
}

.bonus-media{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:10px;
  border-radius:16px;
  overflow:hidden;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  margin-bottom: 14px;
}

.bonus-media img{
  display:block;
  max-width:100%;
  width:auto;
  height:auto;
  max-height: 640px;
  object-fit: contain;
}

@media (max-width: 720px){
  .bonus-grid{
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
  .bonus-media img{
    max-height: 560px;
  }
}

/* =========================================================
   Garantia
   ========================================================= */
.guarantee{
  margin-top:22px;
  display:flex;
  gap:14px;
  align-items:flex-start;
  padding:18px;
  border-radius:20px;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);
}
.seal{
  width:44px;
  height:44px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(48,209,88,.14);
  border:1px solid rgba(48,209,88,.28);
  flex:0 0 auto;
}
.guarantee h3{
  margin:0 0 6px;
  font-family:var(--font-head);
  color: var(--text-strong);
  font-weight:700;
}
.guarantee p{
  margin:0;
  color: var(--body-color);
  font-weight: var(--body-weight);
  font-size: var(--body-size);
  line-height: var(--body-line);
}

/* =========================================================
   Oferta
   ========================================================= */
.pricing-grid{
  margin-top:26px;
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:16px;
  align-items:start;
}
.price-card{
  border-radius:24px;
  border:1px solid rgba(255,106,42,.22);
  background:
    radial-gradient(700px 260px at 30% 0%, rgba(255,106,42,.14), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.04));
  box-shadow: var(--shadow);
}
.price-in{ padding:20px; }
.price-top{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.price-top h3{
  margin:0;
  font-family:var(--font-head);
  color: var(--text-strong);
  font-weight:700;
}
.price-pill{
  padding:8px 10px;
  border-radius:999px;
  background: rgba(48,209,88,.14);
  border:1px solid rgba(48,209,88,.28);
  color: rgba(255,255,255,.88);
  font-weight:700;
  font-size:12px;
}
.price{
  margin-top:16px;
  padding:14px 16px;
  border-radius:18px;
  background: rgba(0,0,0,.18);
  border:1px solid rgba(255,255,255,.10);
}
.was{ color: rgba(255,255,255,.55); font-weight:700; text-decoration: line-through; }
.now{
  margin-top:4px;
  font-family:var(--font-head);
  font-weight:700;
  font-size:28px;
  color: var(--text-strong);
}
.inst{ margin-top:2px; color: rgba(255,255,255,.72); font-weight:700; }

.rows{
  margin-top:16px;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.row{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:12px;
  border-radius:16px;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
}
.row b{
  display:block;
  color: var(--text-strong);
  font-family:var(--font-head);
  font-weight:700;
  margin-bottom:2px;
}
.row span{
  display:block;
  color: var(--body-color);
  font-weight: var(--body-weight);
  font-size: var(--body-size);
  line-height: var(--body-line);
}

.fine{
  margin:14px 0 0;
  color: var(--body-color);
  font-weight: var(--body-weight);
  font-size: var(--body-size);
  line-height: var(--body-line);
}

.notfor{
  border-radius:24px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  padding:20px;
}
.notfor h3{
  margin:0 0 12px;
  font-family:var(--font-head);
  color: var(--text-strong);
  font-weight:700;
}
.notfor ul{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.notfor li{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:12px;
  border-radius:18px;
  background: rgba(0,0,0,.16);
  border:1px solid rgba(255,255,255,.08);
}
.x{
  width:36px;
  height:36px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,106,42,.12);
  border:1px solid rgba(255,106,42,.22);
  color: rgba(255,255,255,.92);
  flex:0 0 auto;
}
.notfor b{
  display:block;
  font-family:var(--font-head);
  color: var(--text-strong);
  font-weight:700;
}
.notfor span{
  display:block;
  margin-top:2px;
  color: var(--body-color);
  font-weight: var(--body-weight);
  font-size: var(--body-size);
  line-height: var(--body-line);
}

/* =========================================================
   CTA final
   ========================================================= */
.final{
  text-align:center;
  border-radius:24px;
  padding:26px 22px;
  border:1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(800px 260px at 50% 0%, rgba(255,106,42,.16), transparent 62%),
    rgba(255,255,255,.04);
  box-shadow: var(--shadow);
}
.final h3{
  margin:0 0 10px;
  font-family:var(--font-head);
  color: var(--text-strong);
  font-weight:700;
  font-size:24px;
}
.final p{
  margin:0 auto 16px;
  color: var(--body-color);
  font-weight: var(--body-weight);
  font-size: var(--body-size);
  line-height: var(--body-line);
  max-width:820px;
}

/* =========================================================
   Footer
   ========================================================= */
footer{ margin-top:28px; padding:24px 0 56px; }
.foot{
  display:flex;
  gap:18px;
  justify-content:space-between;
  flex-wrap:wrap;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.08);
}
.disc{
  max-width:520px;
  color: var(--body-color);
  font-weight: var(--body-weight);
  font-size: var(--body-size);
  line-height: var(--body-line);
}

footer a{
  color: rgba(255,255,255,.72);
  font-weight:700;
  font-size:13px;
}
footer a:hover{
  color: rgba(255,255,255,.95);
  text-decoration: underline;
  text-decoration-color: rgba(255,106,42,.55);
  text-underline-offset: 3px;
}

/* =========================================================
   Reveal
   ========================================================= */
.reveal{ opacity:1; transform:none; }

.js .reveal{
  opacity:0;
  transform: translateY(10px);
  transition: opacity .7s ease, transform .7s ease;
}
.js .reveal.is-in{
  opacity:1;
  transform:none;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px){
  .titem{ grid-template-columns: 1fr; }
  .pricing-grid{ grid-template-columns: 1fr; }
  nav{
    max-width: 100%;
    overflow:auto;
    scrollbar-width: none;
  }
  nav::-webkit-scrollbar{ display:none; }
}

@media (max-width: 900px){
  .cross{
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .cross > *{
    grid-column: auto !important;
    grid-row: auto !important;
  }
  .center{ justify-content:center; }
  .core{ width:78px; height:78px; border-radius:24px; }
}

@media (max-width: 820px){
  nav{ display:none; }
}

@media (max-width: 680px){
  .wrap{ width:min(1120px, calc(100% - 28px)); }
  .grid{ grid-template-columns: 1fr; }
  .grid.cols-3{ grid-template-columns: 1fr; }

  .vsl-actions .btn,
  .pricing-grid .btn,
  .final .btn{ width:100%; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .pulse{ animation:none; }
  .lift, .btn, .js .reveal{ transition:none !important; }
}

/* =========================================================
   FIXES (CTA + alinhamentos)
   ========================================================= */

section[id], #checkout{
  scroll-margin-top: 96px;
}

/* =========================================================
   CARROSSEL — remover moldura (borda/fundo/sombra/arredondado)
   ========================================================= */

.print-carousel{
  padding: 0 !important;
}

.print-carousel__item{
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
}

.print-carousel__item img{
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  border-radius: 0 !important;
}