:root{
  --bg:#070a10;
  --text:#e8ecf6;
  --muted:#aeb6cc;
  --accent:#d6b15f;
  --border: rgba(255,255,255,.12);
}

*{box-sizing:border-box}
body{margin:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;background:radial-gradient(900px 500px at 15% 0%, rgba(214,177,95,.18), transparent 60%), var(--bg);color:var(--text)}
a{color:inherit;text-decoration:none}
.container{width:min(1100px,92%);margin:0 auto}

.lp-top{position:sticky;top:0;background:rgba(7,10,16,.72);backdrop-filter:blur(12px);border-bottom:1px solid var(--border);z-index:10}
.lp-top__wrap{display:flex;align-items:center;justify-content:space-between;padding:14px 0;gap:12px}
.brand{display:flex;align-items:center;gap:10px}
.brand img{width:180px;height:42px;object-fit:contain}

.btn{display:inline-flex;align-items:center;justify-content:center;padding:12px 16px;border-radius:14px;background:linear-gradient(135deg, rgba(214,177,95,1), rgba(170,130,45,1));color:#111;font-weight:800;border:0}
.btn--ghost{background:transparent;border:1px solid var(--border);color:var(--text)}

.lp{padding:24px 0 36px}
.lp-hero{padding:22px 0}
.lp-hero__grid{display:grid;grid-template-columns:1.1fr .9fr;gap:16px;align-items:start}
h1{margin:0 0 10px;font-size:38px;line-height:1.05}
p{margin:0 0 14px;color:var(--muted)}
.chips{display:flex;flex-wrap:wrap;gap:8px;margin:10px 0 16px}
.chips span{font-size:12px;border:1px solid var(--border);padding:8px 10px;border-radius:999px;background:rgba(255,255,255,.03);color:var(--muted)}
.actions{display:flex;gap:12px;flex-wrap:wrap}

.panel, .card{
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border:1px solid var(--border);
  border-radius:18px;
  padding:18px;
}

.form{display:grid;gap:10px;margin-top:10px}
label{display:grid;gap:6px;font-size:13px;color:var(--muted)}
input,select,textarea{
  border-radius:12px;border:1px solid var(--border);
  background:rgba(255,255,255,.03);color:var(--text);
  padding:12px 12px;outline:none;
}
textarea{resize:vertical}

.lp-section{padding:22px 0}
.grid3{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}



.lp-section2{
  padding:22px;
  background:#fff; /* fundo branco */
  color:#000; /* texto escuro para contraste */
}

.img-saude{
  max-width:100%;
  height:auto;
}



@media (max-width: 900px){
  .lp-hero__grid{grid-template-columns:1fr}
  .grid3{grid-template-columns:1fr}
  h1{font-size:32px}
}


/* WhatsApp Floating Button */
.wa-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: #25D366;
  box-shadow: 0 14px 30px rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.22);
}

.wa-float:hover{ transform: translateY(-2px); }
.wa-float:active{ transform: translateY(0); }

.wa-float svg{ width: 28px; height: 28px; fill: #0b1b11; }


.agebox{
  border-radius:16px;
  padding:14px;

}

.agebox__head{
  display:flex;
  flex-direction:column;
  gap:4px;
  margin-bottom:12px;
}
.agebox__head strong{ color: var(--text); }
.agebox__head span{ color: var(--muted); font-size:12px; }

.agegrid{
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap:10px;
}

.ageitem{
  border:1px solid var(--border);
  border-radius:14px;
  padding:10px;
  background: rgba(255,255,255,.03);
  display:grid;
  gap:8px;
}
.ageitem span{
  font-size:12px;
  color: var(--muted);
}
.ageitem input{
  width:100%;
  padding:10px 10px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.16);
}

.agebox__foot{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-top:12px;
  color: var(--muted);
}
.btn-mini{ padding:10px 12px; border-radius:12px; }

@media (max-width: 900px){
  .agegrid{ grid-template-columns: repeat(2, 1fr); }
}
