:root{
  --bg:#070a12;
  --bg2:#0b1220;
  --card: rgba(255,255,255,.06);
  --line: rgba(255,255,255,.12);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.68);
  --shadow: 0 18px 55px rgba(0,0,0,.45);
  --r: 18px;

  /* corporativo: azul/rojo */
  --primary:#e11d48;      /* rojo */
  --primary2:#ef4444;     /* rojo claro */
  --accent:#3b82f6;       /* azul */
}

*{ 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:
    radial-gradient(900px 500px at 15% 10%, rgba(59,130,246,.18), transparent 60%),
    radial-gradient(700px 420px at 85% 18%, rgba(225,29,72,.18), transparent 62%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  color:var(--text);
}

a{ color:inherit; text-decoration:none; }
.wrap{ width:min(1100px, 92%); margin:0 auto; }

.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(7,10,18,.55);
  border-bottom: 1px solid var(--line);
}
.topbar-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px;               /* un poco más de aire */
  padding:12px 0;
}

.brand{
  display:flex; align-items:center; gap:14px; /* un poco más de gap */
  min-width: 220px;
}

/* ✅ LOGO MÁS GRANDE (sin cambiar estética) */
.logo{
  width:72px;
  height:72px;
  object-fit:contain;
  border-radius:14px;
  background: rgba(255,255,255,.08);
  padding:8px;
  border: 1px solid var(--line);
}

/* Footer logo pequeño se mantiene, pero proporcional */
.logo.sm{
  width:48px;
  height:48px;
  padding:7px;
  border-radius:14px;
}

.brand-name{ font-weight:800; letter-spacing:.2px; }
.brand-sub{ font-size:12px; color:var(--muted); margin-top:2px; }

.nav{ display:flex; gap:14px; }
.nav a{
  font-size:14px; color:var(--muted);
  padding:8px 10px; border-radius: 12px;
}
.nav a:hover{ background: rgba(255,255,255,.06); color: var(--text); }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:10px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-weight:700;
  box-shadow: none;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}
.btn:hover{ transform: translateY(-1px); background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.18); }
.btn:active{ transform: translateY(0px); }

.btn-primary{
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  border-color: rgba(255,255,255,.14);
}
.btn-primary:hover{ background: linear-gradient(135deg, #fb7185, var(--primary2)); }

.btn-ghost{
  background: rgba(255,255,255,.04);
}

.btn-lg{ padding:12px 16px; border-radius: 16px; }

.hero{ padding: 44px 0 26px; }
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:22px;
  align-items:stretch;
}

.pill{
  display:inline-flex;
  font-size:12px;
  padding:8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  color: var(--muted);
}

h1{ margin:14px 0 10px; font-size: 44px; line-height:1.05; letter-spacing:-.6px; }
.lead{ margin:0 0 18px; font-size:16px; color: var(--muted); max-width: 56ch; }

.cta-row{ display:flex; gap:12px; flex-wrap:wrap; margin: 16px 0 14px; }

.trust{ display:flex; flex-wrap:wrap; gap:12px; margin-top: 10px; }
.trust-item{
  display:flex; align-items:center; gap:10px;
  padding:10px 12px;
  border:1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  color: var(--muted);
  font-size:13px;
}
.dot{
  width:10px; height:10px; border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), rgba(255,255,255,.7));
  box-shadow: 0 0 0 3px rgba(59,130,246,.18);
}

.hero-card .card{
  height:100%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.06);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  padding: 18px;
}
.card h3{ margin: 0 0 6px; font-size:18px; }
.small{ margin:0 0 12px; color: var(--muted); font-size:13px; }

.checklist{
  margin: 0;
  padding-left: 18px;
  color: rgba(255,255,255,.86);
}
.checklist li{ margin: 8px 0; }

.mini-cta{ display:flex; gap:10px; margin: 14px 0 12px; flex-wrap:wrap; }
.note{
  border-top: 1px solid var(--line);
  margin-top: 12px;
  padding-top: 12px;
  color: var(--muted);
  font-size: 13px;
}

.section{ padding: 34px 0; }
h2{ margin:0 0 14px; font-size: 26px; letter-spacing: -.3px; }
.muted{ color: var(--muted); }

.steps{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.step{
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: rgba(255,255,255,.04);
  padding: 14px;
  display:flex; gap:12px;
}
.step-n{
  width:34px; height:34px; border-radius: 12px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(225,29,72,.18);
  border:1px solid rgba(225,29,72,.35);
  font-weight: 800;
}
.step h4{ margin: 2px 0 6px; }
.step p{ margin:0; color: var(--muted); font-size: 13px; }

.band{
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: calc(var(--r) + 4px);
  background:
    radial-gradient(520px 260px at 10% 30%, rgba(59,130,246,.20), transparent 60%),
    radial-gradient(520px 260px at 90% 35%, rgba(225,29,72,.18), transparent 60%),
    rgba(255,255,255,.04);
  padding: 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.band h3{ margin:0 0 4px; }
.band-cta{ display:flex; gap:10px; flex-wrap:wrap; }

.faq details{
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: rgba(255,255,255,.04);
  padding: 12px 14px;
  margin: 10px 0;
}
.faq summary{
  cursor:pointer;
  font-weight: 700;
}
.faq p{ margin: 10px 0 0; color: var(--muted); font-size: 13px; }

.footer{
  border-top: 1px solid var(--line);
  padding: 18px 0 28px;
  background: rgba(0,0,0,.12);
}
.footer-inner{
  display:grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items:center;
}
.footer-brand{ display:flex; gap:12px; align-items:center; }
.footer-actions{ display:flex; gap:10px; flex-wrap:wrap; }
.tiny{ grid-column: 1 / -1; font-size: 12px; }

/* ✅ Ajuste móvil: mantiene el look, evita que el header se ponga gigantesco */
@media (max-width: 920px){
  .nav{ display:none; }
  h1{ font-size: 36px; }
  .hero-grid{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
  .footer-inner{ grid-template-columns: 1fr; }

  .logo{
    width:62px;
    height:62px;
    padding:7px;
  }
  .logo.sm{
    width:46px;
    height:46px;
  }
}
/* ===== Logo más grande sin cambiar layout ===== */
.logo{
  width:96px !important;
  height:96px !important;
  padding:4px !important;   /* antes 8px — le quitamos marco interno */
  border-radius:16px;
}

/* En móvil no tan gigante para no empujar botones */
@media (max-width: 920px){
  .logo{
    width:72px !important;
    height:72px !important;
    padding:3px !important;
  }
}
/* ===== Logo limpio sin borde ni caja ===== */
.logo{
  width:96px !important;
  height:96px !important;
  padding:0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

/* tamaño móvil controlado */
@media (max-width: 920px){
  .logo{
    width:72px !important;
    height:72px !important;
  }
}
