:root{
  --bg:#f4f6f8;
  --card:#ffffff;
  --text:#111827;
  --muted:#6b7280;
  --border:#e5e7eb;
  --brand:#e63946;     /* rojo institucional */
  --brand2:#111827;    /* negro elegante */
  --shadow: 0 20px 50px rgba(0,0,0,.10);
  --radius: 18px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background: radial-gradient(1200px 500px at 50% 10%, rgba(230,57,70,.10), transparent 60%),
              radial-gradient(900px 450px at 15% 90%, rgba(17,24,39,.08), transparent 60%),
              var(--bg);
  color:var(--text);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:28px;
}

.wrap{
  width:100%;
  max-width: 980px;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:28px;
  align-items:stretch;
}

@media (max-width: 900px){
  .wrap{ grid-template-columns: 1fr; }
}

.hero{
  border-radius: var(--radius);
  padding:34px;
  background:
    linear-gradient(135deg, rgba(17,24,39,.92), rgba(17,24,39,.86)),
    radial-gradient(900px 450px at 20% 10%, rgba(230,57,70,.35), transparent 60%),
    radial-gradient(900px 450px at 80% 90%, rgba(230,57,70,.25), transparent 60%);
  box-shadow: var(--shadow);
  color:#fff;
  position:relative;
  overflow:hidden;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.18);
  padding:10px 14px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing:.2px;
}

.badge .dot{
  width:9px;height:9px;border-radius:50%;
  background: var(--brand);
  box-shadow: 0 0 0 6px rgba(230,57,70,.18);
}

.hero h1{
  margin:18px 0 10px;
  font-size: 34px;
  line-height:1.12;
}

.hero p{
  margin:0;
  color: rgba(255,255,255,.78);
  font-size: 14.5px;
  line-height:1.6;
  max-width: 46ch;
}

.hero .meta{
  margin-top:22px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.pill{
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.14);
  padding:10px 12px;
  border-radius: 12px;
  font-size:13px;
  color: rgba(255,255,255,.85);
}

.card{
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:28px;
  border:1px solid var(--border);
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom: 10px;
}

.brand img{
  width:42px;height:42px;
  border-radius: 12px;
  object-fit: contain;
  background:#fff;
  border:1px solid var(--border);
  padding:6px;
}

.brand .title{
  line-height:1.1;
}
.brand .title strong{ display:block; font-size:14px; }
.brand .title span{ font-size:12.5px; color:var(--muted); }

.card h2{
  margin: 12px 0 6px;
  font-size: 24px;
}

.card p{
  margin:0 0 18px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.5;
}

.form{
  display:grid;
  gap:12px;
}

.input{
  display:flex;
  flex-direction:column;
  gap:6px;
}

label{
  font-size: 12.5px;
  color: var(--muted);
}

input{
  width:100%;
  padding: 12px 14px;
  border-radius: 12px;
  border:1px solid var(--border);
  background:#fff;
  outline:none;
  font-size: 14px;
}

input:focus{
  border-color: rgba(230,57,70,.55);
  box-shadow: 0 0 0 4px rgba(230,57,70,.12);
}

.btn{
  margin-top:6px;
  width:100%;
  padding: 12px 14px;
  border-radius: 12px;
  border:none;
  background: var(--brand);
  color:#fff;
  font-weight: 700;
  font-size: 14px;
  cursor:pointer;
}

.btn:hover{ filter: brightness(.98); }

.footer{
  margin-top:14px;
  font-size: 12px;
  color: var(--muted);
  text-align:center;
}

.small-links{
  margin-top:8px;
  display:flex;
  justify-content:center;
  gap:12px;
  font-size:12px;
}

.small-links a{
  color: var(--muted);
  text-decoration:none;
}
.small-links a:hover{ color: var(--brand2); }