
:root{
  --bg:#f7fafc;
  --card:#ffffff;
  --text:#0f172a;
  --muted:#475569;
  --border:rgba(148,163,184,.35);
  --shadow: 0 14px 45px rgba(2,6,23,.10);
  --shadow2: 0 10px 25px rgba(2,6,23,.08);

  --primary:#2563eb;
  --primary2:#38bdf8;
  --accent:#22c55e;

  --radius: 18px;
  --radius2: 26px;

  --max: 1160px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background:
    radial-gradient(1100px 500px at 10% -10%, rgba(56,189,248,.16), transparent 60%),
    radial-gradient(900px 450px at 95% 0%, rgba(37,99,235,.16), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 55%, #ffffff 100%);
  color:var(--text);
  line-height:1.6;
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{width:92%;max-width:var(--max);margin:0 auto}
.page{min-height:100vh;display:flex;flex-direction:column}
main{flex:1}

.badge{
  display:inline-flex;align-items:center;gap:.5rem;
  padding:.4rem .9rem;border-radius:999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(10px);
  font-size:.82rem;color:var(--muted);
}
.dot{width:.5rem;height:.5rem;border-radius:999px;background:var(--accent)}

header{
  position:sticky;top:0;z-index:50;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner{
  display:flex;align-items:center;justify-content:space-between;
  padding: .9rem 0; gap:1rem;
}
.brand{
  display:flex;align-items:center;gap:.75rem;font-weight:800;
  letter-spacing:-.02em;
}
.brand-mark{
  width:38px;height:38px;border-radius:14px;
  background: radial-gradient(circle at 30% 30%, var(--primary2), var(--primary));
  box-shadow: 0 12px 30px rgba(37,99,235,.28);
}
.brand span{font-size:1.05rem}
nav{display:none;align-items:center;gap:1.3rem;font-weight:600;font-size:.95rem}
nav a{color:#0f172a;opacity:.82;position:relative;padding:.35rem .2rem}
nav a:hover{opacity:1}
nav a::after{
  content:"";position:absolute;left:.2rem;right:.2rem;bottom:.1rem;height:2px;
  background: linear-gradient(90deg, var(--primary), var(--primary2));
  transform:scaleX(0);transform-origin:left;transition:transform .18s ease;
  border-radius:999px;
}
nav a:hover::after{transform:scaleX(1)}
.header-cta{display:none;gap:.6rem;align-items:center}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.45rem;
  padding:.78rem 1.12rem;border-radius:999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.85);
  cursor:pointer;font-weight:700;font-size:.95rem;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
}
.btn:hover{transform:translateY(-1px);box-shadow:var(--shadow2)}
.btn-primary{
  border-color: transparent;
  color:white;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  box-shadow: 0 16px 40px rgba(37,99,235,.25);
}
.btn-primary:hover{box-shadow: 0 20px 55px rgba(37,99,235,.28)}
.btn-ghost{background:transparent}
.btn-ghost:hover{background: rgba(15,23,42,.04)}

.burger{display:flex;flex-direction:column;gap:5px;cursor:pointer}
.burger span{width:26px;height:2px;border-radius:999px;background:#0f172a;opacity:.8}
.mobile{
  display:none;border-top:1px solid var(--border);
  background: rgba(255,255,255,.86);backdrop-filter: blur(14px);
}
.mobile-inner{padding: .9rem 0;display:grid;gap:.6rem}
.mobile a{padding:.55rem .4rem;border-radius:12px;font-weight:700;color:#0f172a;opacity:.85}
.mobile a:hover{background: rgba(15,23,42,.04);opacity:1}
.mobile .row{display:flex;gap:.6rem;flex-wrap:wrap;padding-top:.4rem}

.hero{
  padding: 4.8rem 0 2.2rem;
}
.hero-grid{
  display:grid;grid-template-columns: 1.25fr 1fr;gap:2.2rem;align-items:center;
}
.h-title{
  font-size: clamp(2.15rem, 4.2vw, 3.35rem);
  line-height:1.12;margin:.9rem 0 .9rem;letter-spacing:-.03em;
}
.h-sub{color:var(--muted);font-size:1.05rem;max-width:42rem}
.hero-actions{display:flex;gap:.75rem;flex-wrap:wrap;margin-top:1.35rem}
.hero-metrics{
  display:grid;grid-template-columns: repeat(2, minmax(0,1fr));
  gap:.75rem;margin-top:1.5rem
}
.metric{
  background: rgba(255,255,255,.78);
  border:1px solid var(--border);
  border-radius: 16px;
  padding: .9rem 1rem;
  box-shadow: 0 14px 45px rgba(2,6,23,.07);
}
.metric b{font-size:1.05rem}
.metric span{display:block;color:var(--muted);font-size:.88rem;margin-top:.15rem}

.glass-card{
  background: rgba(255,255,255,.74);
  border:1px solid var(--border);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.card-pad{padding: 1.35rem 1.35rem}
.card-title{font-size:1.05rem;font-weight:800;letter-spacing:-.02em;margin:0 0 .55rem}
.card-text{color:var(--muted);margin:0 0 1rem}
.pills{display:flex;flex-wrap:wrap;gap:.55rem}
.pill{
  border-radius:999px;padding:.45rem .75rem;
  border:1px solid var(--border);
  background: rgba(255,255,255,.9);
  font-weight:700;font-size:.86rem;color:#0f172a;opacity:.9
}
.pill small{color:var(--muted);font-weight:800;margin-left:.35rem}

section{padding: 3.2rem 0}
.section-head{max-width:58rem;margin-bottom:1.4rem}
.kicker{font-weight:900;letter-spacing:.18em;text-transform:uppercase;font-size:.78rem;color:rgba(15,23,42,.62)}
.h2{font-size:1.7rem;letter-spacing:-.02em;margin:.35rem 0 .55rem}
.p{color:var(--muted);font-size:1rem;margin:0}

.grid3{display:grid;grid-template-columns: repeat(3, minmax(0,1fr));gap:1rem;margin-top:1.2rem}
.grid2{display:grid;grid-template-columns: 1.2fr 1fr;gap:1.2rem;margin-top:1.2rem}
.card{
  background: rgba(255,255,255,.85);
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem 1.2rem;
  box-shadow: 0 14px 45px rgba(2,6,23,.06);
}
.card h3{margin:.1rem 0 .45rem;font-size:1.08rem;letter-spacing:-.01em}
.card p{margin:0;color:var(--muted)}
.list{margin:.8rem 0 0;padding:0;list-style:none;display:grid;gap:.55rem}
.list li{display:flex;gap:.6rem;align-items:flex-start}
.tick{
  width:22px;height:22px;border-radius:8px;
  background: rgba(34,197,94,.14);
  border:1px solid rgba(34,197,94,.28);
  display:flex;align-items:center;justify-content:center;
  margin-top:2px;flex:0 0 auto;
}
.tick svg{width:14px;height:14px}

.logo-grid{
  display:grid;grid-template-columns: repeat(6, minmax(0,1fr));gap:.9rem;margin-top:1.2rem
}
.logo-slot{
  min-height:64px;
  display:flex;align-items:center;justify-content:center;
  border-radius: 18px;
  border:1px dashed rgba(148,163,184,.55);
  background: rgba(255,255,255,.7);
  color: rgba(15,23,42,.62);
  font-weight:800;font-size:.88rem;
}
.logo-slot img{max-height:38px;object-fit:contain;filter:saturate(1.05)}

.cta{
  background: linear-gradient(135deg, rgba(37,99,235,.10), rgba(56,189,248,.12));
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.cta-inner{
  display:flex;gap:1.2rem;align-items:center;justify-content:space-between;
  flex-wrap:wrap;
}
.cta h3{margin:0;font-size:1.25rem;letter-spacing:-.02em}
.cta p{margin:.25rem 0 0;color:var(--muted)}
.form{
  display:grid;gap:.75rem;margin-top:1rem
}
.input, textarea{
  width:100%;
  padding:.8rem .9rem;
  border-radius: 14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.92);
  font: inherit;
}
textarea{min-height:140px;resize:vertical}
.notice{font-size:.84rem;color:rgba(71,85,105,.95)}
.alert{
  border-radius: 14px;
  padding:.85rem 1rem;
  border:1px solid var(--border);
  background: rgba(255,255,255,.85);
}
.ok{border-color: rgba(34,197,94,.35); background: rgba(34,197,94,.08)}
.err{border-color: rgba(239,68,68,.35); background: rgba(239,68,68,.08)}

footer{
  background: #0b1220;
  color: rgba(226,232,240,.78);
  margin-top: 2.2rem;
}
.footer-top{
  padding: 2.6rem 0 1.6rem;
  border-bottom: 1px solid rgba(148,163,184,.18);
}
.footer-grid{
  display:grid;grid-template-columns: 1.4fr 1fr 1fr;gap:1.4rem
}
.footer-brand{
  display:flex;gap:.8rem;align-items:flex-start
}
.footer-brand .mark{
  width:44px;height:44px;border-radius:16px;
  background: radial-gradient(circle at 30% 30%, var(--primary2), var(--primary));
  box-shadow: 0 14px 40px rgba(37,99,235,.25);
}
.footer-brand b{display:block;font-size:1.05rem;color:white;letter-spacing:-.02em}
.footer-brand p{margin:.25rem 0 0;color: rgba(226,232,240,.70)}
.footer-col h4{margin:0 0 .65rem;font-size:.78rem;letter-spacing:.18em;text-transform:uppercase;color: rgba(226,232,240,.55)}
.footer-links{list-style:none;padding:0;margin:0;display:grid;gap:.45rem}
.footer-links a{color: rgba(226,232,240,.72)}
.footer-links a:hover{color:white}
.footer-bottom{
  padding: 1.05rem 0;
  display:flex;gap:.8rem;flex-wrap:wrap;justify-content:space-between;
  color: rgba(226,232,240,.55);font-size:.82rem
}

.whatsapp-float{
  position:fixed;right:18px;bottom:18px;z-index:9999;
  width:54px;height:54px;border-radius:999px;
  background: #ffffff;
  border:1px solid rgba(148,163,184,.45);
  box-shadow: 0 18px 45px rgba(2,6,23,.20);
  display:flex;align-items:center;justify-content:center;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
  opacity:.98;
}
.whatsapp-float:hover{transform:translateY(-2px);box-shadow: 0 22px 60px rgba(2,6,23,.28);opacity:1}
.whatsapp-float svg{width:26px;height:26px}

@media (min-width: 900px){
  nav{display:flex}
  .header-cta{display:flex}
  .burger{display:none}
}
@media (max-width: 980px){
  .hero-grid{grid-template-columns: 1fr}
  .grid3{grid-template-columns: 1fr}
  .grid2{grid-template-columns: 1fr}
  .logo-grid{grid-template-columns: repeat(3, minmax(0,1fr))}
  .footer-grid{grid-template-columns: 1fr}
}
