:root{
  --bg:#0B0F1A;
  --card:#10172A;
  --card2:#0E1424;
  --text:#EAF0FF;
  --muted:rgba(234,240,255,.72);
  --line:rgba(234,240,255,.10);
  --primary:#2E6BFF;
  --accent:#25D366;
  --shadow: 0 18px 50px rgba(0,0,0,.35);
  --radius: 18px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

.bg{
  position:fixed;
  inset:0;
  background:
    radial-gradient(900px 550px at 15% 10%, rgba(46,107,255,.24), transparent 60%),
    radial-gradient(900px 550px at 90% 25%, rgba(37,211,102,.16), transparent 55%),
    radial-gradient(800px 500px at 40% 95%, rgba(46,107,255,.14), transparent 60%);
  pointer-events:none;
  z-index:-1;
}

.wrap{
  width:min(1120px, 92vw);
  margin:0 auto;
}

a{ color:inherit; text-decoration:none; }
.link{
  color: var(--muted);
  font-weight:600;
  padding:10px 10px;
  border-radius: 10px;
}
.link:hover{ background: rgba(255,255,255,.05); color: var(--text); }

.nav{
  position:sticky;
  top:0;
  backdrop-filter: blur(12px);
  background: rgba(11,15,26,.55);
  border-bottom: 1px solid var(--line);
  z-index: 10;
}
.nav__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.nav__actions{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.brand__mark{
  width:42px;height:42px;
  border-radius: 14px;
  display:grid;place-items:center;
  font-weight:800;
  background: linear-gradient(135deg, rgba(46,107,255,.95), rgba(46,107,255,.55));
  box-shadow: var(--shadow);
  border:1px solid rgba(255,255,255,.08);
}
.brand__name{ font-weight:800; letter-spacing: .2px; }
.brand__tag{ font-size:12px; color: var(--muted); }

.brand--mini .brand__mark{ width:38px; height:38px; border-radius: 13px; }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 11px 14px;
  border-radius: 14px;
  font-weight:800;
  border:1px solid rgba(255,255,255,.10);
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
  cursor:pointer;
}
.btn:hover{ transform: translateY(-1px); }
.btn--primary{
  background: linear-gradient(135deg, rgba(46,107,255,.95), rgba(46,107,255,.70));
}
.btn--ghost{
  background: rgba(255,255,255,.05);
}
.btn--lg{ padding: 14px 18px; border-radius: 16px; }

.hero{
  padding: 44px 0 18px;
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 22px;
  align-items: start;
}
@media (max-width: 960px){
  .hero{ grid-template-columns: 1fr; padding-top: 28px; }
  .nav__actions .link{ display:none; }
}

.pill{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: var(--muted);
  font-weight:600;
  width: fit-content;
}
.dot{
  width:9px; height:9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(37,211,102,.12);
}

h1{
  margin:14px 0 12px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.9px;
}
.grad{
  background: linear-gradient(90deg, #CFE0FF, #7FA6FF, #B8FFE0);
  -webkit-background-clip: text;
  background-clip:text;
  color: transparent;
}

.lead{
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  max-width: 56ch;
}

.hero__cta{ display:flex; gap:10px; flex-wrap:wrap; margin-top: 18px; }

.trust{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
  margin-top: 22px;
}
@media (max-width: 720px){
  .trust{ grid-template-columns: 1fr; }
}
.trust__item{
  display:flex;
  gap:12px;
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
}
.kpi{ font-size: 20px; }
.trust__title{ font-weight:800; }
.trust__desc{ color: var(--muted); font-size: 12px; margin-top: 2px; }

.section{ padding: 36px 0; }
.section__head h2{
  margin: 0 0 8px;
  font-size: 28px;
  letter-spacing: -0.4px;
}
.section__head p{
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  max-width: 70ch;
}

.card{
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.grid3{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
  margin-top: 18px;
}
.grid2{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
  margin-top: 18px;
}
@media (max-width: 960px){
  .grid3{ grid-template-columns: 1fr; }
  .grid2{ grid-template-columns: 1fr; }
}

.grid3 .card, .grid2 .card{
  padding: 18px;
}
.icon{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  background: rgba(46,107,255,.18);
  border: 1px solid rgba(46,107,255,.35);
  font-weight: 900;
  margin-bottom: 10px;
}

.list{
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.75;
}
.list li{ margin: 5px 0; }

.callout{
  margin-top: 16px;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(37,211,102,.22);
  background: rgba(37,211,102,.06);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
}

.video__box{
  margin-top: 16px;
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
}
.video__box iframe{
  width:100%;
  aspect-ratio: 16/9;
  display:block;
}
.video__cta{
  margin-top: 14px;
  display:flex;
  align-items:center;
  gap: 12px;
  flex-wrap: wrap;
}
.muted{ color: var(--muted); }

.pricing{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
@media (max-width: 960px){
  .pricing{ grid-template-columns: 1fr; }
}
.price{ padding: 18px; position:relative; }
.price__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
}
.badge{
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  color: var(--muted);
  font-weight: 700;
}
.badge--hot{
  background: rgba(37,211,102,.10);
  border: 1px solid rgba(37,211,102,.25);
  color: #BFFFE0;
}
.price__value{
  margin: 12px 0 12px;
  font-size: 22px;
  font-weight: 900;
}
.price__value span{ font-size: 40px; letter-spacing: -1px; }
.price__value small{ color: var(--muted); font-weight: 700; }

.price--featured{
  border: 1px solid rgba(46,107,255,.35);
  background: linear-gradient(180deg, rgba(46,107,255,.10), rgba(255,255,255,.04));
}

.note{
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px dashed rgba(255,255,255,.18);
  color: var(--muted);
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items:center;
}

.faq{ margin-top: 16px; display:grid; gap: 12px; }
details summary{
  cursor:pointer;
  font-weight: 800;
  list-style: none;
}
details summary::-webkit-details-marker{ display:none; }
details.card{ padding: 16px 18px; }
details p{ color: var(--muted); margin: 10px 0 0; line-height: 1.6; }

.final-cta{
  margin-top: 18px;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(46,107,255,.25);
  background: rgba(46,107,255,.08);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.final-cta h3{ margin:0 0 6px; }
.final-cta p{ margin:0; }

.footer{
  padding: 34px 0 18px;
  border-top: 1px solid var(--line);
  margin-top: 14px;
}
.footer__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.footer__bottom{
  margin-top: 12px;
  font-size: 12px;
}

/* =========================
   WhatsApp-like chat (override)
   ========================= */
.phone { overflow: hidden; }
.chat{
  padding: 14px 12px 16px;
  background:
    radial-gradient(900px 550px at 15% 10%, rgba(255,255,255,.04), transparent 60%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Crect width='220' height='220' fill='%230e1622'/%3E%3Cg opacity='0.12'%3E%3Cpath d='M0 40h220v2H0zM0 90h220v2H0zM0 140h220v2H0zM40 0v220h2V0zM90 0v220h2V0zM140 0v220h2V0z' fill='%23ffffff'/%3E%3C/g%3E%3C/svg%3E");
  background-size: auto, 220px 220px;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

/* base bubble */
.b{
  display:block;
  width: fit-content;
  max-width: 84%;
  padding: 9px 10px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.35;
  margin: 6px 0;
  position: relative;
  box-shadow: 0 10px 18px rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.08);
}

/* incoming (left) */
.b--in{
  margin-right: auto;
  background: rgba(255,255,255,.06);
  color: rgba(234,240,255,.92);
  border-top-left-radius: 6px;
}

/* outgoing (right) - WhatsApp green */
.b--out{
  margin-left: auto;
  background: #1f6f5b; /* verde escuro estilo WhatsApp */
  color: #eafff6;
  border-color: rgba(0,0,0,.18);
  border-top-right-radius: 6px;
}

/* success bubble (still incoming, but highlighted) */
.b--success{
  background: rgba(37,211,102,.14);
  border-color: rgba(37,211,102,.30);
  color: #d8ffe9;
}

/* little "tails" */
.b--in:before{
  content:"";
  position:absolute;
  left:-6px; top:10px;
  width: 10px; height: 10px;
  background: rgba(255,255,255,.06);
  transform: rotate(45deg);
  border-left: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.b--out:before{
  content:"";
  position:absolute;
  right:-6px; top:10px;
  width: 10px; height: 10px;
  background: #1f6f5b;
  transform: rotate(45deg);
  border-right: 1px solid rgba(0,0,0,.18);
  border-top: 1px solid rgba(0,0,0,.18);
}

/* spacing like real chat */
.b + .b{ margin-top: 6px; }
.phone__hint{ opacity:.75; }


/* =========================
   Corrige fundo "riscado" e deixa com cara de WhatsApp
   ========================= */
.card.phone{
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(10,14,24,.70);
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
}

.phone__top{
  background: rgba(0,0,0,.22);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.chat{
  /* remove o grid anterior */
  background-image:
    radial-gradient(900px 650px at 30% 20%, rgba(255,255,255,.06), transparent 62%),
    radial-gradient(700px 520px at 70% 80%, rgba(37,211,102,.10), transparent 60%),
    radial-gradient(900px 650px at 85% 15%, rgba(46,107,255,.10), transparent 62%);
  background-color: #0e1621; /* base "WhatsApp dark" */
  background-size: auto;
}

/* deixa o rodapé mais "real" */
.phone__bottom{
  background: rgba(0,0,0,.18);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 10px 12px;
}

/* hint pequeno e único */
.phone__hint{
  font-size: 12px;
  color: rgba(234,240,255,.65);
}


/* bolha enviada mais WhatsApp */
.b--out{
  background: #1f7a5a;
  border: none;
}
.b--out:before{
  background: #1f7a5a;
  border: none;
}

/* bolha recebida mais limpa */
.b--in{
  border: none;
  background: rgba(255,255,255,.08);
}
.b--in:before{
  background: rgba(255,255,255,.08);
  border: none;
}


/* =========================
   WhatsApp real wallpaper
   ========================= */
.chat{
  background-color: #0b141a !important;
  background-image:
    radial-gradient(1200px 600px at 10% 10%, rgba(255,255,255,.04), transparent 60%),
    radial-gradient(900px 500px at 90% 90%, rgba(37,211,102,.12), transparent 60%);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 14px 12px 18px;
}


/* =========================
   WhatsApp bubbles (final)
   ========================= */
.b{
  max-width: 78%;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.35;
  margin: 6px 0;
  box-shadow: none;
}

/* recebidas (esquerda) */
.b--in{
  margin-right: auto;
  background: #1f2c34;
  color: #e9edef;
  border-radius: 8px 8px 8px 0;
}

/* enviadas (direita) */
.b--out{
  margin-left: auto;
  background: #005c4b;
  color: #e9edef;
  border-radius: 8px 8px 0 8px;
}

/* sucesso */
.b--success{
  background: #1f6f5b;
  color: #eafff6;
}

/* remove qualquer rabo antigo */
.b--in:before,
.b--out:before{
  display:none !important;
}


/* ===== Fix: topo do "WhatsApp" não cortar o título ===== */
.phone__top{
  padding: 14px 14px !important;
  min-height: 62px;
  display:flex;
  align-items:center;
  gap: 10px;
}

.phone__meta{
  padding-top: 2px;
}

.phone__name{
  font-size: 14px;
  font-weight: 800;
  line-height: 1.15;
}

.phone__sub{
  font-size: 12px;
  opacity: .8;
  line-height: 1.1;
}

