
/* ===============================
   RESET & TOKENS
   =============================== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
:root{
  --bg:#0c1630;
  --surface:#101a3a;
  --surface-2:#0f1b3d;
  --ink:#eef2ff;
  --muted:#a9b8d1;
  --line:#1f2a54;
  --brand:#00ffb3;
  --brand-2:#2dc86b;
  --accent:#00ffb3;
  --ok:#00ffb3;
  --danger:#ff6b6b;
  --shadow:0 10px 28px rgba(0,0,0,.35);
}
body{
  margin:0;
  font-family:Manrope,system-ui,-apple-system,'Segoe UI',Roboto,Ubuntu,'Helvetica Neue',Arial,sans-serif;
  background:var(--bg);
  color:var(--ink);
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
.container{ width:min(1120px,92%); margin:0 auto; }

.logo-1 img {display: block; margin: 0 auto; width: 20%; background: linear-gradient(135deg, #aeff9a00 0%, #2f3c7e00 50%, #aeff9a00 100%); border-radius: 50%;}
/* ===============================
   HERO
   =============================== */
.hero{
  padding:72px 0 48px;
  background:
   radial-gradient(1200px 600px at 70% -10%, rgb(26, 80, 47) 12%, transparent 60%),
   linear-gradient(180deg, rgba(12,22,48,0) 0%, rgba(12,22,48,.6) 100%);
}
.hero-copy { text-align: center;}
.hero-grid{ align-items:center; }
.hero h1{
  font-family:Manrope,system-ui,-apple-system,'Segoe UI',Roboto,Ubuntu,'Helvetica Neue',Arial,sans-serif;
  font-size: clamp(32px, 4.2vw, 52px);
  line-height:1.15;
  margin:0 0 12px;
  letter-spacing:.2px;
}

span {
    font-family:'Playfair Display',serif;

}
.hero h1 span{ color:var(--accent); }
.hero .sub{ color:var(--muted); margin:0 0 18px; font-size:clamp(16px,1.6vw,18px); }
.bullets{ list-style:none; padding:0; margin:0 0 18px; }
.bullets li{ margin:6px 0; color:#d7e2ff; }
.hero-art .hero-img{
  width: 400px;
  transform:translateZ(0);
  transition: transform .35s ease, box-shadow .35s ease;
}
.hero-art .hero-img:hover{
  transform: translateY(-2px) scale(1.01);
  box-shadow:0 16px 36px rgba(0,0,0,.5);

}
.guarantee{ color:#a7b5cf; font-size:14px; margin-top:6px }


/* ===============================
   BUTTONS
   =============================== */
.cta-wrap{ display:flex; gap:12px; flex-wrap:wrap; margin:12px 0 12px; }
.btn{
  appearance:none; border:none; cursor:pointer; text-decoration:none; display:inline-block;
  border-radius:14px; padding:11px 20px; font-weight:800; letter-spacing:.2px;
  transition: transform .15s ease, box-shadow .2s ease, filter .2s ease, background .2s ease;
  position:relative; isolation:isolate;
}
.btn:focus-visible{ outline:2px solid #cfe1ff; outline-offset:2px; }
.btn-primary{
  background:linear-gradient(180deg,var(--brand),var(--brand-2));
  color:#06102b; box-shadow:0 10px 24px rgba(110,161,255,.35);
}
.btn-primary:hover{ transform:translateY(-2px); filter:saturate(1.05) brightness(1.02); }
.btn-primary:active{ transform:translateY(0); }
.btn-ghost{ border:1px solid #2a3b73; color:#c7d7ff; background:transparent; }
.btn-ghost:hover{ background:rgba(42,59,115,.18); }
.btn-lg{ padding:16px 24px; font-size:18px }
@keyframes pulse{ 0%{box-shadow:0 0 0 0 rgba(110,161,255,.45)} 100%{box-shadow:0 0 0 16px rgba(110,161,255,0)} }
.pulse{ animation:pulse 1.8s ease-out infinite; }


/* ===============================
   SECTIONS & TYPOGRAPHY
   =============================== */
.section{ padding:30px 0; text-align:center; }
.section h2{
  font-size:clamp(22px,2.4vw,30px);
  margin:0 0 14px;
  font-family:Manrope,system-ui,-apple-system,'Segoe UI',Roboto,Ubuntu,'Helvetica Neue',Arial,sans-serif;
}
.section p{ text-align:left; }
.section .muted{ color:var(--muted); }


/* ===============================
   VÍDEO (banner panorâmico)
   =============================== */
.video-wrapper{
  position:relative;
  width:min(800px, 92%);
  aspect-ratio:21 / 11;
  overflow:hidden;
  border-radius:18px;
  box-shadow:0 10px 30px rgba(0,0,0,.35);
  margin:0 auto 0;
}
.video-wrapper iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border-radius:inherit;
  border: 3px solid rgb(0, 225, 255);

}

/* ===============================
   SEO INTRO
   =============================== */

   #seo-intro{
    display: flex;
    padding: 30px 30px 0px 30px;
    align-items: flex-end;
    flex-direction: row-reverse;
    max-width: 1200px;
    margin: auto;
    text-align: justify ;


   }
   #seo-intro img {margin-right: 20px;}

/* ================================
   COMO FUNCIONA (3 etapas)
   ================================ */
.section-how{
  background: radial-gradient(900px 400px at 50% -30%, rgba(110,161,255,.05), transparent 80%);
}
.section-how h2{ text-align:center; margin-bottom:16px; }
.section-how .steps{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.section-how .step{
  background:var(--surface-2);
  border:1px solid var(--line);
  border-radius:18px;
  padding:24px 20px;
  text-align:left;
  position:relative;
  box-shadow:0 8px 18px rgba(0,0,0,.25);
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.section-how .step:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 28px rgba(0,0,0,.35);
  border-color:#3551a1;
}
.step-icon{ font-size:26px; margin-bottom:8px; }
.section-how .step h3{
  margin:0 0 10px;
  font-size:20px;
  color:var(--accent);
}
.section-how .step p{
  font-size:15px;
  line-height:1.7;
  color:#dfe3ff;
}


/* ===============================
   VOCÊ RECEBE (cards)
   =============================== */
.section-whatyouget .grid3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  align-items:stretch;
  grid-auto-rows:1fr;
}
.card-mini{
  background:var(--surface-2);
  border:1px solid var(--line);
  border-radius:14px; padding:16px;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
  height:100%;
  display:flex; flex-direction:column; justify-content:space-between;
}
.section-whatyouget .card-mini h4{ margin-top:0; }
.section-whatyouget .card-mini p{ margin-bottom:0; }
.card-mini:hover{ transform:translateY(-2px); border-color:#3551a1; }

.get-grid{ align-items:stretch; }
.get-item{ display:flex; flex-direction:column; gap:10px; }
.get-ico{ font-size:24px; line-height:1; text-align:center; }
.get-bullets{ margin:6px 0 0; padding-left:18px; color:#cfe0ff; text-align:left; }
.get-bullets li{ margin:6px 0; }
.get-meta{ margin-top:auto; display:flex; flex-wrap:wrap; gap:8px; }
.tag{
  font-size:12px; color:#c2d2ff; background:#13204a; border:1px solid #26407b;
  padding:4px 8px; border-radius:999px;
}
.get-note{
  display:flex; gap:14px; justify-content:center; flex-wrap:wrap;
  color:#a7b5cf; margin:14px 0 6px;
}


/* ===============================
   PROVA & CIÊNCIA
   =============================== */
.section-proof {
  background: radial-gradient(1000px 600px at 50% -30%, rgba(110,161,255,.05), transparent 80%);
  text-align: left;
}
.section-proof h2 { text-align: center; margin-bottom: 16px; }
.section-proof p {
  max-width: 780px;
  margin: 0 auto 32px;
  text-align: center;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 12px;
}
.proof-item {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px 18px;
  text-align: left;
  box-shadow: 0 8px 18px rgba(0,0,0,.25);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.proof-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,.35);
  border-color: #3551a1;
}
.proof-item h4 { margin: 0 0 8px; font-size: 18px; color: var(--accent); }
.proof-item p { color: #dfe9ff; font-size: 15px; line-height: 1.6; }


/* ===============================
   PREÇO / OFERTA DE LANÇAMENTO
   =============================== */
.section-price{
  background: radial-gradient(900px 400px at 50% -40%, rgba(110,161,255,.08), transparent 80%);
  text-align:center;
}
.section-price .price-card{ display:grid; grid-template-columns:1fr; justify-items:center; }
.section-price .price-card > div{
  background:
    linear-gradient(180deg, rgba(17,27,58,0.85) 0%, rgba(11,20,43,0.95) 100%),
    radial-gradient(1200px 300px at 50% -80%, rgba(110,161,255,.12), transparent 60%);
  border:1px solid #3350a3;
  border-radius:18px; padding:26px 22px; text-align:center; max-width:640px; width:100%;
  box-shadow:0 24px 48px rgba(0,0,0,.45), 0 0 0 1px rgba(110,161,255,.15) inset;
}
.section-price h2{ font-size:clamp(24px,2.4vw,32px); margin-bottom:8px; }
.section-price .price{
  font-size:48px; font-weight:900; margin:10px 0 12px; text-align:center;
  background:linear-gradient(180deg,#eaf1ff,#c7d9ff);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.section-price .price span{ font-size:16px; color:var(--muted); display:block; margin-top:2px; }
.installment{ font-size:17px; color:#bcd3ff; margin-bottom:16px;}
.oferta-img{
  max-width:420px; width:100%; height:auto; display:block; margin:16px auto;
  box-shadow:0 10px 26px rgba(0,0,0,.4);
}
.included{
  list-style:none; padding:0; margin:10px 0 18px; color:#dfe9ff;
  font-size:15px; text-align:left; max-width:360px; margin-left:auto; margin-right:auto;
}
.included li{ margin:8px 0; line-height:1.6; }
.section-price .badges span{
  background:#13204a; padding:6px 12px; border-radius:999px; color:#c2d2ff; font-size:13px;
}
.section-price .help{ color:#a7b5cf; font-size:14px; }
.section-price .help a{ color:#cfe1ff; text-decoration:underline; }
.section-price .help a:hover{ color:#ffffff; }


/* ===============================
   FAQ
   =============================== */
.section-faq details{
  background:var(--surface-2); border:1px solid var(--line);
  border-radius:12px; padding:14px 14px; margin:12px 0;
  transition:border-color .2s ease, background .2s ease;
}
.section-faq details[open]{ border-color:#3551a1; background:#0f1c40; }
.section-faq summary{ cursor:pointer; font-weight:800; list-style:none; }
.section-faq summary::-webkit-details-marker{ display:none; }


/* ===============================
   LEAD FORM
   =============================== */
.section-lead .lead-card{
  background:var(--surface-2); border:1px solid var(--line);
  border-radius:14px; padding:20px; text-align:center;
}
.lead-form{ display:flex; gap:10px; justify-content:center; flex-wrap:wrap; align-items:flex-start; }
.lead-form input{
  border-radius:12px; border:1px solid #2a3b73; background:#0b142b;
  color:#e6edff; padding:12px 14px; min-width:240px;
}
.lead-form input::placeholder{ color:#9fb3c8; }
.lead-form button{ min-width:180px; }


/* ===============================
   WHO
   =============================== */
.section-who .who-list{
  list-style:none;
  margin:28px 0 0;
  padding:0;
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:24px;
}
.section-who .who-list li{
  align-items:flex-start;
  gap:10px;
  background:var(--surface-2);
  border:1px solid var(--line);
  border-radius:14px;
  padding:16px 18px;
  color:#dfe3ff;
  font-size:16px;
  line-height:1.6;
  box-shadow:0 6px 16px rgba(0,0,0,.2);
  transition: transform .25s ease, box-shadow .25s ease, border-color .2s ease;
  height:100%;
}
.section-who .who-list li:hover{
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,.35);
  border-color: #3551a1;
}
.section-who .who-list li .ico{ font-size:18px; line-height:1; margin-top:2px; }


/* ===============================
   BADGES (utilitário)
   =============================== */
.badges{ display:flex; gap:10px; flex-wrap:wrap; margin-top:8px; }
.badges span{
  background:#13204a; border:1px solid #26407b; padding:6px 10px;
  border-radius:999px; color:#c2d2ff; font-size:13px;
}


/* ===============================
   FOOTER
   =============================== */
.footer{ padding:28px 0; border-top:1px solid var(--line); background:#0b142b; margin-top:20px; }
.footer .footer-nav{ display:flex; gap:14px; justify-content:flex-end; color:#a7b5cf; }
.footer a{ color:#c2d2ff; text-decoration:none; }
.footer a:hover{ text-decoration:underline; }


/* ===============================
   FLASH MESSAGES
   =============================== */
.flash-wrapper{position:fixed;top:12px;left:0;right:0;display:flex;justify-content:center;z-index:50}
.flash{padding:10px 16px;border-radius:12px;background:#10254a;color:#cde6ff;border:1px solid #2b4573;box-shadow:var(--shadow)}
.flash.success{background:#0e3b2c;color:#d3ffe8;border-color:#2d6a4f}
.flash.error{background:#3b0e0e;color:#ffd3d3;border-color:#6a2d2d}


/* ===============================
   STICKY CTA
   =============================== */
.sticky-cta{ position:sticky; bottom:12px; z-index:40; display:flex; justify-content:center; }
.sticky-cta .wrap{
  backdrop-filter: blur(6px);
  background:rgba(12,22,48,.65);
  border-radius:16px; padding:10px; box-shadow:var(--shadow);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  justify-items: center;
}

.benefit {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border-radius: 22px;
  padding: 32px 26px;
  max-width: 340px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  text-align: left;
  transition: all .4s ease;
}

.benefit:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.08);
  border-color: rgba(110,161,255,.3);
  box-shadow: 0 16px 40px rgba(110,161,255,0.2);
}

.benefit-icon {
  font-size: 40px;
  margin-bottom: 14px;
  text-align: center;
}

.benefit h3 {
  color: #cfe0ff;
  font-size: 1.3rem;
  margin-bottom: 10px;
  text-align: center;
}

.benefit p {
  color: #b7c6e2;
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
}

.benefit .tagline {
  display: block;
  text-align: center;
  font-size: 13px;
  color: #94b9ff;
  margin-top: 12px;
  letter-spacing: 0.3px;
}

#p-1 { text-align: center;}
#p-2 { text-align: center;}



/* Responsivo */
@media (max-width: 920px){
  .benefit-grid { grid-template-columns: 1fr; gap: 22px; }
  .benefit { text-align:center; max-width:90%; }
}



/* ===============================
   RESPONSIVE
   =============================== */
@media (max-width: 1020px){
  .hero{ padding:56px 0 40px; }
}
@media (max-width: 920px){
  /* Hero centralizado */
  .hero-grid { text-align:center; justify-items:center; }
  .hero h1, .hero .sub, .bullets, .guarantee { text-align:center; }
  .cta-wrap { justify-content:center; }
  .hero-art{ display:flex; justify-content:center; align-items:center; margin-top:20px; }
  .hero-art .hero-img{ max-width:100%; height:auto; }

  #seo-intro{ display: inline;}

  /* Seções */
  .section, .section p { text-align:center; }
  .steps, .section-whatyouget .grid3 { grid-template-columns:1fr; justify-items:center; }
  .step, .card-mini { text-align:center; width:100%; }
  .section-gallery .gallery-grid { grid-template-columns:1fr; justify-items:center; }
  .section-gallery img { max-width:90%; }
  .section-how{ display: grid; align-items: center; flex-direction: column; }
  .section-who .who-list li{ text-align:left; max-width:100%; margin:0 auto; font-size: 12px; }
  /* Lead form */
  .lead-form{ flex-direction:column; align-items:center; }
  .lead-form input, .lead-form button { width:90%; max-width:340px; }

  /* Vídeo mais alto no mobile (formato menos panorâmico) */

  .proof-grid {display: flex; flex-direction: column; align-items: center; margin-left: 30px;  }
  .proof-item {margin-bottom: 5px; max-width: 90%;}
  #como-funciona .steps{
    display: grid;
    grid-template-columns: 1fr !important; /* garante 1 coluna */
    gap: 16px;
  }
  #como-funciona .step{
    max-width: 100%;
    margin: 0 auto;
    text-align: left; /* ou center se preferir */
  }
  .container price-card p { text-align: center;}
  .btn.btn-primary.btn-lg.pulse {font-size: 15px; margin-top: 10px;}
  .logo-1 img { width: 50%;}
}
@media (max-width: 480px){
  .video-wrapper{ aspect-ratio: 16 / 9;}
}

.popup-overlay{
  position:fixed; inset:0; display:none;
  align-items:center; justify-content:center;
  background:rgba(0,0,0,.6); z-index:9999; padding:16px;
}
.popup-overlay.is-open{ display:flex; }
.popup-viewport{
  width:min(460px,100%); height:min(640px,92vh);
  background:#0b0b0c; border-radius:16px; overflow:hidden;
  box-shadow:0 8px 40px rgba(0,0,0,.45); position:relative;
}
#popupFrame{ width:100%; height:100%; border:0; background:transparent; }
.popup-close{
  position:absolute; top:8px; right:10px; font-size:28px; line-height:1;
  background:transparent; color:#fff; border:0; cursor:pointer;
  padding:4px 8px; opacity:.9;
}
.popup-close:hover{ opacity:1; }




.step {
  opacity: 0;
  transform: translateY(18px) scale(.98);
  transition: opacity .6s ease, transform .6s ease,
              box-shadow .25s ease, border-color .25s ease, background .25s ease;
  will-change: opacity, transform;
}

/* entra em cena */
.step.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* hover com brilho neon */
.step:hover {
  border-color: rgba(0, 255, 179, .55);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  box-shadow:
    0 6px 20px rgba(0, 255, 179, .18),
    0 0 0 1px rgba(0, 255, 179, .18) inset;
}

/* ícone levemente “pulsante” no hover */
.step:hover .step-icon {
  filter: drop-shadow(0 0 8px rgba(0,255,179,.55));
  transform: translateY(-1px);
  transition: transform .25s ease, filter .25s ease;
}

/* micro animação de foco no botão CTA */
.pulse {
  position: relative;
  overflow: hidden;
}
.pulse::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50px;
  box-shadow: 0 0 0 0 rgba(0,255,179,.45);
  animation: pulseGlow 2.2s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%   { box-shadow: 0 0 0 0 rgba(0,255,179,.45); }
  70%  { box-shadow: 0 0 0 14px rgba(0,255,179,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,255,179,0); }
}

/* grid confortável no mobile */
@media (max-width: 520px) {
  .steps { gap: 14px !important; }
  .step  { padding: 18px !important; }
}


#bonus-mzn .bonus-card{
  border:1px dashed rgba(255,255,255,.25);
  border-radius:14px;
  background:rgba(255,255,255,.05);
  padding:16px;
  text-align:left;
  transition:box-shadow .25s,border-color .25s,transform .25s;
  opacity:0;transform:translateY(16px);
}
#bonus-mzn .bonus-card.in-view{opacity:1;transform:translateY(0);}
#bonus-mzn .bonus-card:hover{
  border-color:rgba(0,255,179,.6);
  box-shadow:0 8px 30px rgba(0,255,179,.18),
             inset 0 0 0 1px rgba(0,255,179,.18);
  transform:translateY(-3px);
}
#bonus-mzn figure{
  position:relative;
  margin:0;
  border-radius:10px;
  overflow:hidden;
  aspect-ratio:3/4;
  background:#0e1428;
}
#bonus-mzn figure img{
  width:100%;height:100%;object-fit:cover;display:block;
}
#bonus-mzn .tag{
  position:absolute;top:10px;left:10px;
  background:#00ffb3;color:#0b0f1d;
  font-weight:700;font-size:.8rem;
  padding:4px 10px;border-radius:8px;
  box-shadow:0 0 10px rgba(0,255,179,.6);
  letter-spacing:.5px;
}
#bonus-mzn h3{margin:12px 0 4px;color:#00ffb3;font-size:1rem;}
#bonus-mzn p{margin:0;color:#dce4ff;font-size:.95rem;}
@media(max-width:560px){#bonus-mzn .bonus-grid{gap:16px}}

/* ===== Ajustes mobile: #mz-intro ===== */
@media (max-width: 820px) {
  #mz-intro { padding: 42px 0 !important; }

  /* empilha as colunas */
  #mz-intro .container {
    display: block !important;
    max-width: 100% !important;
    padding: 0 18px;
  }

  /* mostra a arte primeiro */
  #mz-intro .hero-art { order: -1; margin-bottom: 18px; }

  /* card da arte */
  #mz-intro .hero-art figure {
    width: 100%;
    max-width: 560px;
    margin: 0 auto 10px !important;
    padding: 10px !important;
    border-radius: 12px;
  }
  #mz-intro .hero-img {
    width: 100% !important;
    height: auto !important;
    border-radius: 10px !important;
    display: block;
  }
  #mz-intro .hero-art figcaption {
    font-size: .85rem !important;
    opacity: .9 !important;
    text-align: center;
  }

  /* textos */
  #mz-intro h2 {
    font-size: 1.35rem !important;
    line-height: 1.25 !important;
    margin: 12px 0 !important;
    text-align: left;
    padding-right: 6px;
  }
  #mz-intro h3 {
    font-size: 1.05rem !important;
    margin: 18px 0 6px !important;
  }
  #mz-intro p,
  #mz-intro .muted {
    font-size: .98rem !important;
    line-height: 1.65 !important;
  }

  /* listas mais “compactas” */
  #mz-intro ul {
    padding-left: 18px !important;
    margin: 8px 0 !important;
  }
  #mz-intro li { margin-bottom: 8px; }

  /* botão ocupa largura confortável */
  #mz-intro .cta a {
    display: inline-block !important;
    width: 100%;
    max-width: 520px;
    text-align: center;
    padding: 14px 18px !important;
    border-radius: 50px !important;
    margin-top: 14px;
  }
}

/* telas bem pequenas */
@media (max-width: 420px) {
  #mz-intro h2 { font-size: 1.22rem !important; }
  #mz-intro h3 { font-size: 1rem !important; }
  #mz-intro p, #mz-intro li { font-size: .95rem !important; }
  #mz-intro .hero-art figure { padding: 8px !important; }
}