/* =========================
   RESET / BASE
========================= */
*{ margin:0; padding:0; box-sizing:border-box; }
html{ scroll-behavior:smooth; }

body{
  font-family: Inter, system-ui, -apple-system, Arial, sans-serif;
  color:#e9f0ff;
  background:
    radial-gradient(90% 90% at 10% 0%, rgba(0,160,255,.16), transparent 60%),
    radial-gradient(70% 70% at 90% 10%, rgba(0,120,255,.12), transparent 60%),
    #050914;
  min-height:100vh;
  overflow-x:hidden;
  position:relative;
}

.page-overlay{
  position:fixed; inset:0;
  background:rgba(0,0,0,.18);
  z-index:-1;
}

.container{
  width:min(1200px, 92%);
  margin:0 auto;
}

/* =========================
   NAV
========================= */
.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(12px);
  background:rgba(2,8,18,.8);
  border-bottom:1px solid rgba(0,160,255,.12);
}
.topbar-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{ display:flex; align-items:center; gap:10px; font-weight:800; }
.brand-badge{
  width:44px;height:44px;border-radius:12px;
  display:grid;place-items:center;
  background:linear-gradient(180deg,#00c8ff,#007bff);
  color:#001; font-weight:900;
  box-shadow:0 0 20px rgba(0,180,255,.7);
}

.nav{ display:flex; gap:22px; }
.nav a{
  color:#cfe4ff; text-decoration:none; font-weight:600; opacity:.78;
}
.nav a:hover{opacity:1;}
.nav-cta{ margin-left:12px; }

.hamburger{
  display:none; background:transparent; border:0; color:#fff;
  font-size:26px; cursor:pointer;
}
.mobile-nav{
  display:none; flex-direction:column; gap:12px;
  padding:12px 4%; border-top:1px solid rgba(0,160,255,.12);
}
.mobile-nav a{ color:#cfe4ff; text-decoration:none; font-weight:600; }

/* =========================
   BUTTONS
========================= */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:14px 20px; border-radius:14px; font-weight:800;
  text-decoration:none; border:1px solid transparent; transition:.25s ease;
}
.btn-primary{
  background:linear-gradient(90deg,#ff7a3a,#ff3f79);
  color:#fff; box-shadow:0 12px 30px rgba(255,90,90,.25);
}
.btn-primary:hover{ transform:translateY(-2px); filter:saturate(1.1); }
.btn-outline{
  background:rgba(0,20,40,.75);
  border:1px solid rgba(0,160,255,.6);
  color:#e9f0ff;
  box-shadow:0 0 18px rgba(0,120,255,.35) inset;
}
.btn-outline:hover{ transform:translateY(-2px); }
.btn.full{ width:100%; }

/* =========================
   HERO
========================= */
.hero{
  padding:80px 0 48px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1fr 0.8fr; /* <<< ajuste correto */
  gap:42px;
  align-items:center;
}

.eyebrow{
  color:#ff9a55; font-weight:900; letter-spacing:.12em; font-size:.9rem;
}
.title{
  font-size:clamp(2.2rem,4.2vw,3.7rem);
  line-height:1.12; margin:10px 0 14px;
  text-shadow:0 0 20px rgba(0,140,255,.12);
}
.subtitle{ color:#c7d7f5; font-size:1.05rem; max-width:560px; }
.hero-ctas{ display:flex; gap:14px; margin:22px 0 14px; }
.hero-bullets{
  margin-top:8px; display:grid; grid-template-columns:1fr 1fr;
  gap:10px; list-style:none; color:#dbe9ff; font-weight:700;
}

.hero-card{
  display:flex;
  justify-content:center;
  align-items:center;
  overflow:hidden; /* <<< impede quebra */
}

.mockup-wrap{
  width:100%;
  max-width:380px; /* <<< menor para evitar scroll */
  border-radius:20px;
  padding:16px;
  background:rgba(3,10,22,.7);
  border:1px solid rgba(0,160,255,.22);
}

.mockup-wrap img{
  width:100%; height:auto; display:block; border-radius:14px;
  object-fit:contain;
}

/* =========================
   BENEFÍCIOS
========================= */
.benefits{ padding:72px 0; }
.benefit-grid{
  display:grid; grid-template-columns:1fr 1fr;
  gap:34px; align-items:center;
}
.benefit-text h2{
  font-size:clamp(1.8rem,3vw,2.4rem); margin-bottom:12px;
}
.benefit-text p{ color:#c7d7f5; margin-bottom:16px; }
.benefit-list{ display:grid; gap:10px; }
.benefit-item{
  padding:14px 16px; border-radius:12px;
  background:rgba(0,10,24,.7);
  border:1px solid rgba(0,140,255,.25);
}

.benefit-image{ display:flex; justify-content:center; }
.benefit-image img{
  width:100%; max-width:520px; height:auto;
  border-radius:18px; border:1px solid rgba(0,160,255,.18);
  object-fit:cover;
}

/* =========================
   COMO FUNCIONA
========================= */
.how{ padding:72px 0; }
.how-head{text-align:center;margin-bottom:26px;}
.how-head h2{font-size:clamp(2rem,3.2vw,2.8rem);}
.how-head p{color:#c7d7f5;}

.how-grid{
  display:grid; grid-template-columns:1.1fr .9fr;
  gap:30px; align-items:center;
}
.how-cards{ display:grid; gap:14px; }
.how-card{
  background:rgba(1,8,18,.7);
  border:1px solid rgba(0,140,255,.2);
  padding:20px; border-radius:16px;
  box-shadow:0 0 24px rgba(0,120,255,.08);
}
.step{
  width:34px;height:34px;border-radius:999px;
  display:grid;place-items:center;
  background:#0a5bff;color:#fff;font-weight:900;margin-bottom:8px;
}
.how-card h3{margin-bottom:8px;}
.how-card p{color:#c7d7f5;}

.how-image{ display:flex; justify-content:center; }
.how-image img{
  width:100%; max-width:520px; height:auto; border-radius:18px;
  object-fit:contain;
}

/* =========================
   WHY
========================= */
.why{ padding:72px 0; background:rgba(0,0,0,.22); }
.why-grid{
  display:grid; grid-template-columns:1.1fr .9fr;
  gap:30px; align-items:center;
}
.why-text h2{font-size:clamp(2rem,3vw,2.6rem);}
.why-text p{color:#c7d7f5;margin:10px 0 16px;}
.why-cards{display:grid;grid-template-columns:1fr 1fr;gap:12px;}
.why-card{
  padding:16px;border-radius:14px;
  background:rgba(0,10,24,.7);
  border:1px solid rgba(0,140,255,.25);
}
.why-image{ display:flex; justify-content:center; }
.why-image img{
  width:100%; max-width:520px; height:auto; border-radius:18px;
  object-fit:cover;
}

/* =========================
   PLANOS
========================= */
.plans{ padding:72px 0; }
.plans-head{text-align:center;margin-bottom:22px;}
.plans-head p{color:#c7d7f5;}

.plans-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:16px;
}
.plan-card{
  position:relative;
  background:rgba(1,8,18,.8);
  border:1px solid rgba(0,140,255,.2);
  padding:22px; border-radius:18px;
}
.plan-card.featured{
  border-color:rgba(255,120,80,.9);
  box-shadow:0 0 28px rgba(255,100,90,.15);
}
.badge{
  position:absolute; top:-12px; right:16px;
  background:linear-gradient(90deg,#ff7a3a,#ff3f79);
  padding:6px 10px; border-radius:999px;
  font-weight:900; font-size:.8rem;
}
.plan-sub{color:#c7d7f5;margin:6px 0 10px;}
.plan-price{font-size:1.8rem;font-weight:900;margin-bottom:10px;}
.plan-card ul{
  list-style:none;display:grid;gap:6px;color:#dbe9ff;margin-bottom:18px;
}
.plans-cta{
  margin-top:26px; text-align:center; display:grid; gap:10px;
}

/* =========================
   FAQ
========================= */
.faq{ padding:72px 0; background:rgba(0,0,0,.25); }
.faq-head{text-align:center;margin-bottom:18px;}
.faq-head p{color:#c7d7f5;}
.faq-list{display:grid;gap:10px;}
.faq-item{
  background:rgba(1,8,18,.85);
  border:1px solid rgba(0,140,255,.2);
  padding:14px 16px; border-radius:14px;
}
.faq-item summary{cursor:pointer;font-weight:800;}
.faq-item p{color:#c7d7f5;margin-top:8px;}
.faq-cta{text-align:center;margin-top:22px;display:grid;gap:8px;}

/* =========================
   FOOTER
========================= */
.footer{
  padding:26px 0;
  border-top:1px solid rgba(0,160,255,.12);
  background:rgba(2,8,18,.9);
}
.footer-inner{
  display:flex;justify-content:space-between;align-items:center;gap:12px;
}
.footer p{color:#c7d7f5;}

/* =========================
   ANIMAÇÕES / NEON
========================= */
.neon-pulse{
  animation: neonPulse 3.8s ease-in-out infinite;
}
.neon-soft{
  animation: softGlow 5.5s ease-in-out infinite;
}

@keyframes neonPulse{
  0%,100%{
    box-shadow:
      0 0 18px rgba(0,170,255,.45),
      0 0 40px rgba(0,140,255,.25);
    filter:brightness(1);
  }
  50%{
    box-shadow:
      0 0 28px rgba(0,200,255,.85),
      0 0 70px rgba(0,140,255,.4);
    filter:brightness(1.12);
  }
}

@keyframes softGlow{
  0%,100%{ filter:brightness(1); }
  50%{ filter:brightness(1.08); }
}

.pulse{ animation:pulseSoft 4s ease-in-out infinite; }
@keyframes pulseSoft{
  0%,100%{transform:translateY(0);filter:brightness(1)}
  50%{transform:translateY(-2px);filter:brightness(1.12)}
}

.reveal{
  opacity:0; transform:translateY(16px);
  transition:.7s ease;
}
.reveal.in-view{ opacity:1; transform:translateY(0); }
.delay-1{transition-delay:.12s}
.delay-2{transition-delay:.24s}
.delay-3{transition-delay:.36s}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 980px){
  .hero-grid,.benefit-grid,.how-grid,.why-grid{
    grid-template-columns:1fr;
  }
  .plans-grid{grid-template-columns:1fr;}
  .why-cards{grid-template-columns:1fr;}
  .footer-inner{flex-direction:column;text-align:center;}
  .nav{display:none;}
  .hamburger{display:block;}
  .mobile-nav.open{display:flex;}
  .hero-ctas{flex-direction:column;}
}

@media (max-width: 520px){
  .hero-bullets{grid-template-columns:1fr;}
  .title{font-size:2.1rem;}
}
