:root{
  --bg:#070A12;
  --panel:rgba(10,16,32,.72);
  --panel-2:rgba(10,16,32,.5);
  --border:rgba(110,220,255,.18);

  --text:#EAF2FF;
  --muted:rgba(234,242,255,.72);

  --primary:#29B6FF;
  --primary-2:#0A6CFF;
  --glow:rgba(41,182,255,.35);

  --danger:#FF3B30;
  --danger-bg:rgba(255,59,48,.12);

  --shadow:0 18px 50px rgba(0,0,0,.55);
  --shadow-soft:0 10px 30px rgba(0,0,0,.35);

  --radius:18px;
  --radius-lg:26px;

  --container:1120px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }

html,
body{
  width:100%;
  max-width:100%;
  overflow-x:hidden;
}

body{
  margin:0;
  font-family:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,"Apple Color Emoji","Segoe UI Emoji";
  background:
    radial-gradient(1200px 700px at 25% 10%, rgba(41,182,255,.14), transparent 60%),
    radial-gradient(900px 600px at 80% 20%, rgba(10,108,255,.14), transparent 60%),
    linear-gradient(180deg, #04060D 0%, var(--bg) 100%);
  color:var(--text);
  line-height:1.55;
  overflow-x:hidden;
}

a{ color:inherit; text-decoration:none; }

p{ margin:0 0 14px; }

h1,
h2,
h3{
  margin:0 0 12px;
  letter-spacing:-.02em;
  text-align:inherit;
}

h1{ font-size:clamp(2rem, 3.2vw, 3.15rem); line-height:1.08; }
h2{ font-size:clamp(1.55rem, 2.2vw, 2.2rem); line-height:1.15; }
h3{ font-size:1.06rem; }

.lead{ font-size:1.07rem; color:var(--muted); }
.muted{ color:var(--muted); }
.emphasis{ font-size:1.05rem; }

.emphasis-red{ color:var(--danger); }
.emphasis-red strong{ color:inherit; font-weight:800; }

.container{
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  padding-left:20px;
  padding-right:20px;
}

.section{
  padding:64px 0;
  position:relative;
}

.section-alt{
  background:linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
  border-top:1px solid rgba(255,255,255,.04);
  border-bottom:1px solid rgba(255,255,255,.04);
}

.section-head{
  max-width:72ch;
  margin-bottom:22px;
}

.skip-link{
  position:absolute;
  left:-9999px;
  top:10px;
  z-index:9999;
  background:#fff;
  color:#000;
  padding:10px 12px;
  border-radius:10px;
}
.skip-link:focus{ left:10px; }

.bg-orbs{
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:-1;
}

.orb{
  position:absolute;
  filter:blur(40px);
  opacity:.55;
  border-radius:999px;
}

.orb-1{ width:380px; height:380px; left:-90px; top:120px; background:rgba(41,182,255,.28); }
.orb-2{ width:520px; height:520px; right:-160px; top:40px; background:rgba(10,108,255,.25); }
.orb-3{ width:420px; height:420px; left:30%; bottom:-140px; background:rgba(41,182,255,.18); }

.header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter:blur(10px);
  background:rgba(3,6,14,.55);
  border-bottom:1px solid rgba(255,255,255,.06);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:240px;
}

.brand-logo{
  width:56px;
  height:56px;
  border-radius:16px;
  box-shadow:0 0 0 1px rgba(110,220,255,.22), 0 18px 60px rgba(41,182,255,.18);
}

.brand-title{
  font-weight:800;
  letter-spacing:-.02em;
}

.brand-subtitle{
  font-size:.92rem;
  color:var(--muted);
}

.header-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.02);
  box-shadow:0 8px 25px rgba(0,0,0,.25);
  transition:transform .12s ease, box-shadow .12s ease, border-color .12s ease, background .12s ease;
  font-weight:650;
}

.btn:hover{
  transform:translateY(-1px);
  border-color:rgba(110,220,255,.25);
  box-shadow:0 14px 40px rgba(0,0,0,.35);
}

.btn:active{ transform:translateY(0) scale(.99); }

.btn-primary{
  background:linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
  border-color:rgba(110,220,255,.35);
  box-shadow:0 16px 50px rgba(41,182,255,.16);
}

.btn-ghost{ background:rgba(255,255,255,.02); }

.btn-lg{
  padding:14px 18px;
  border-radius:16px;
}

.cta-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin:18px 0 14px;
}

.cta-row.center,
.cta-row--center{ justify-content:center; }

.section-alert{ padding:20px 0 12px; }

.alert{
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:14px 16px;
  border-radius:var(--radius);
  border:1px solid rgba(255,59,48,.35);
  background:linear-gradient(180deg, var(--danger-bg), rgba(255,59,48,.04));
  box-shadow:var(--shadow-soft);
}

.alert-icon{
  width:28px;
  height:28px;
  border-radius:10px;
  background:rgba(255,59,48,.18);
  color:#ffd4d1;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  flex:0 0 auto;
  box-shadow:0 0 0 1px rgba(255,59,48,.28);
}

.alert-text strong{ color:#ffb3ad; display:block; }
.alert-text .muted{ display:block; margin-top:4px; }

.section-hero{
  padding-top:34px;
  background-color:#000;
}

.hero-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:26px;
  align-items:center;
}

.hero-grid--single{
  grid-template-columns:1fr;
  justify-items:center;
  text-align:center;
}

.hero-copy{ padding:18px 0; }

.hero-copy--center{
  max-width:100%;
  width:100%;
  margin:0 auto;
}

.hero-copy--center .lead{
  max-width:92ch;
  margin:0 auto;
  text-wrap:balance;
}

.trust-list{
  list-style:none;
  padding:0;
  margin:12px 0;
  color:rgba(234,242,255,.86);
}

.trust-list li{ margin:8px 0; }

.trust-list--center{
  display:inline-block;
  text-align:left;
  margin-left:auto;
  margin-right:auto;
}

.mini-badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:12px;
}

.mini-badges--center{ justify-content:center; }

.badge{
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(110,220,255,.18);
  background:rgba(255,255,255,.02);
  color:rgba(234,242,255,.80);
  font-size:.9rem;
}

.split{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:22px;
  align-items:start;
}

.mini-cards{
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
}

.card{
  border-radius:var(--radius);
  border:1px solid rgba(110,220,255,.14);
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  box-shadow:var(--shadow-soft);
  padding:16px;
}

.card h3{ margin-bottom:6px; }
.card p{ color:var(--muted); margin:0; }

.card-strong{ padding:18px; }

.features-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
  margin-top:10px;
}

.feature{
  display:flex;
  gap:12px;
  padding:16px;
  border-radius:var(--radius);
  border:1px solid rgba(110,220,255,.14);
  background:rgba(255,255,255,.02);
  box-shadow:var(--shadow-soft);
}

.feature-icon{
  width:40px;
  height:40px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(41,182,255,.14);
  border:1px solid rgba(110,220,255,.18);
  flex:0 0 auto;
}

.section-cta{ margin-top:18px; }

.section-features .section-head{
  max-width:100%;
  width:100%;
}

.section-features .section-head .muted{ max-width:100%; }

.section-features .section-cta{
  display:flex;
  justify-content:center;
}

.timeline{
  list-style:none;
  padding:0;
  margin:18px 0 0;
  display:grid;
  grid-template-columns:repeat(5, minmax(0, 1fr));
  gap:12px;
}

.step{
  border-radius:var(--radius);
  border:1px solid rgba(110,220,255,.14);
  background:rgba(255,255,255,.02);
  box-shadow:var(--shadow-soft);
  padding:14px;
  min-height:160px;
  position:relative;
}

.step-num{
  width:34px;
  height:34px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(41,182,255,.16);
  border:1px solid rgba(110,220,255,.18);
  font-weight:800;
  margin-bottom:10px;
}

.step-content p{ color:var(--muted); margin:0; }

.guarantee{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  width:fit-content;
  max-width:100%;
  margin:16px auto 0;
  padding:14px 18px;
  border-radius:var(--radius);
  border:1px solid rgba(110,220,255,.18);
  background:rgba(41,182,255,.08);
  box-shadow:var(--shadow-soft);
  text-align:center;
}

.two-col{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
  margin-top:14px;
}

.checklist{
  margin:10px 0 0;
  padding-left:18px;
  color:rgba(234,242,255,.82);
}

.checklist li{
  margin:8px 0;
  color:var(--muted);
}

.footnote{
  margin-top:14px;
  color:rgba(234,242,255,.65);
  font-size:.92rem;
}

.big-card{
  border-radius:calc(var(--radius-lg) + 6px);
  border:1px solid rgba(110,220,255,.18);
  background:
    radial-gradient(900px 320px at 20% 10%, rgba(41,182,255,.10), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  box-shadow:var(--shadow);
  padding:26px;
  text-align:center;
}

.big-card p{
  color:var(--muted);
  margin:0 auto 14px;
  text-wrap:balance;
  text-align-last:center;
}

@media (min-width:981px){
  .big-card p{ max-width:110ch; }
}

.microcopy{
  margin-top:10px;
  color:rgba(234,242,255,.72);
  font-size:.95rem;
}

.section-contact{ padding-bottom:76px; }

.contact-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:18px;
  align-items:start;
}

.contact-points{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:14px;
}

.pill{
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(110,220,255,.16);
  background:rgba(255,255,255,.02);
  color:rgba(234,242,255,.80);
  font-size:.92rem;
}

.form{
  border-radius:var(--radius-lg);
  border:1px solid rgba(110,220,255,.18);
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  box-shadow:var(--shadow);
  padding:18px;
}

label{ display:block; margin-bottom:12px; }

label span{
  display:block;
  margin-bottom:6px;
  color:rgba(234,242,255,.82);
  font-size:.92rem;
}

input,
textarea{
  width:100%;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.20);
  color:var(--text);
  padding:12px;
  outline:none;
  transition:border-color .12s ease, box-shadow .12s ease;
}

input::placeholder,
textarea::placeholder{ color:rgba(234,242,255,.45); }

input:focus,
textarea:focus{
  border-color:rgba(41,182,255,.45);
  box-shadow:0 0 0 4px rgba(41,182,255,.12);
}

.form-note{
  margin-top:10px;
  font-size:.9rem;
  color:rgba(234,242,255,.60);
}

.form-success{
  margin-top:10px;
  font-size:.95rem;
  color:rgba(186,255,214,.95);
  min-height:22px;
}

.hp-field-wrapper{
  display:none !important;
}

.footer{
  border-top:1px solid rgba(255,255,255,.06);
  background:rgba(3,6,14,.55);
  backdrop-filter:blur(10px);
  padding:18px 0;
}

.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.footer-left{
  display:flex;
  align-items:center;
  gap:10px;
  color:rgba(234,242,255,.78);
}

.footer-logo{
  border-radius:10px;
  box-shadow:0 0 0 1px rgba(110,220,255,.20);
}

.footer-links{
  display:flex;
  gap:14px;
}

.footer-links a{
  color:rgba(234,242,255,.72);
  font-size:.95rem;
}

.footer-links a:hover{ color:rgba(234,242,255,.92); }

.footer-inner--center{ justify-content:center; }
.footer-left--center{
  justify-content:center;
  width:100%;
}

.whatsapp-fab{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:120;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:12px 14px;
  border-radius:999px;
  background:linear-gradient(135deg, #25D366 0%, #16A34A 100%);
  color:#fff;
  border:1px solid rgba(255,255,255,.22);
  box-shadow:0 14px 30px rgba(0,0,0,.35);
  font-weight:700;
  transition:transform .12s ease, box-shadow .12s ease, filter .12s ease;
}

.whatsapp-fab:hover{
  transform:translateY(-1px);
  box-shadow:0 18px 40px rgba(0,0,0,.45);
  filter:saturate(1.05);
}

.whatsapp-fab:focus-visible{
  outline:none;
  box-shadow:0 0 0 4px rgba(37,211,102,.28), 0 14px 30px rgba(0,0,0,.35);
}

.whatsapp-fab__icon{
  font-size:1.05rem;
  line-height:1;
}

.whatsapp-fab__text{
  line-height:1;
  letter-spacing:.01em;
}

#como-funciona .section-head .muted{ white-space:nowrap; }

.section-objections .section-head{
  max-width:100%;
  width:100%;
  margin-left:auto;
  margin-right:auto;
  text-align:center;
}

@media (min-width:981px){
  .section-objections .section-head h2{
    white-space:nowrap;
    font-size:clamp(1.75rem, 2.2vw, 2.2rem);
  }
}

.section-objections .section-head .muted{
  max-width:92ch;
  margin-left:auto;
  margin-right:auto;
  text-wrap:balance;
}

.desktop-break{ display:inline; }

p,
li,
.muted,
.lead,
.form-note,
.footnote,
.checklist li,
.card p,
.feature p,
.step-content p,
.alert-text,
.form-success{
  text-align:justify;
  text-justify:inter-word;
}

.hero-copy--center,
.section-objections .section-head,
.section-features .section-head,
.big-card{
  text-align:center;
}

.result-title{
  color:var(--danger);
  font-size:clamp(1.35rem, 1.9vw, 1.85rem);
  margin-top:6px;
}

@media (max-width:980px){
  .header-actions{ display:none; }

  .container{
    padding-left:16px;
    padding-right:16px;
  }

  .split,
  .features-grid,
  .timeline,
  .two-col,
  .contact-grid{ grid-template-columns:1fr; }

  .step{ min-height:auto; }

  .big-card{ text-align:left; }

  .cta-row.center,
  .cta-row--center{ justify-content:flex-start; }

  .trust-list--center{
    display:block;
    text-align:left;
  }

  .hero-grid--single{
    text-align:left;
    justify-items:stretch;
  }

  .mini-badges--center{ justify-content:flex-start; }

  #como-funciona .section-head .muted{
    white-space:normal;
    overflow:visible;
    text-overflow:unset;
  }

  .desktop-break{ display:none; }

  .hero-title{
    font-size:clamp(1.6rem, 6.2vw, 2.2rem);
    white-space:normal;
  }

  .btn{
    margin-left:auto;
    margin-right:auto;
  }

  .cta-row,
  .section-cta{
    display:flex;
    justify-content:center !important;
  }

  .cta-row{
    flex-direction:column;
    align-items:center;
  }

  .btn-lg{ width:min(420px, 100%); }

  .whatsapp-fab{
    right:14px;
    bottom:14px;
    padding:11px 13px;
  }

  .whatsapp-fab__text{ display:none; }
}

@media (prefers-reduced-motion:reduce){
  *{ transition:none !important; }
  html{ scroll-behavior:auto; }
}
