/* Alianza Efectiva — landing final (Base44 LandingPreview) */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }


:root {
  --navy:       #0a1a2f;
  --navy-2:     #12233d;
  --navy-3:     #0e1823;
  --lime:       #c0f92b;
  --lime-dark:  #9dc62a;
  --teal:       #00a8a8;
  --orange:     #f39200;
  --sky:        #0ea5e9;
  --green:      #22c55e;
  --gold:       #b8860b;
  --bg:         #ffffff;
  --bg-alt:     #f2f4f7;
  --text:       #1a2333;
  --text-muted: #546e7a;
  --border:     #e0e6ee;
  --radius:     16px;
  --radius-sm:  10px;
  --shadow-sm:  0 1px 3px rgba(10,26,47,.08);
  --shadow-md:  0 4px 24px rgba(10,26,47,.12);
  --shadow-lg:  0 12px 48px rgba(10,26,47,.22);
  --transition: .3s cubic-bezier(.4,0,.2,1);
  --font-head:  'Archivo', 'Inter', system-ui, sans-serif;
  --font-body:  'Inter', system-ui, -apple-system, sans-serif;
}

body {
  font-family: var(--font-body); font-size: 16px; line-height: 1.6;
  color: var(--text); background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
h1,h2,h3,h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.15; letter-spacing: -.02em; }
a { text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input,select,textarea { font-family: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 64px 0; }
.section-head { text-align: center; max-width: 780px; margin: 0 auto 44px; }
.section-head h2 { font-size: clamp(1.55rem, 3.6vw, 2.3rem); color: var(--navy); margin-bottom: 14px; }
.section-head p { color: var(--text-muted); font-size: 1.02rem; line-height: 1.65; }

/* Animaciones */
@keyframes aePulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.12); } }
@keyframes aeFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes aeGlow {
  0%   { box-shadow: 0 0 0 0 rgba(192,249,43,.55); }
  70%  { box-shadow: 0 0 0 16px rgba(192,249,43,0); }
  100% { box-shadow: 0 0 0 0 rgba(192,249,43,0); }
}
@keyframes aeSpin { to { transform: rotate(360deg); } }
@keyframes aePopIn { 0% { transform: scale(0); } 100% { transform: scale(1); } }
@keyframes aeFadeInUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

.anim-pulse  { animation: aePulse 2.2s ease-in-out infinite; }
.anim-float  { animation: aeFloat 3s ease-in-out infinite; }
.anim-glow   { animation: aeGlow 2.6s ease-out infinite; }
.d1 { animation-delay: .25s; } .d2 { animation-delay: .55s; } .d3 { animation-delay: .85s; }
@media (prefers-reduced-motion: reduce) {
  .anim-pulse,.anim-float,.anim-glow { animation: none; }
}

/* ═══════════ HEADER ═══════════ */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; max-width: 1200px; margin: 0 auto; gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  min-width: 0;
  flex: 0 1 auto;
}
.logo img {
  height: auto;
  width: auto;
  max-height: 48px;
  max-width: min(220px, 72vw);
  object-fit: contain;
  object-position: left center;
}
.header-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy-3); color: #fff;
  font-weight: 700; font-size: .9rem;
  padding: 11px 22px; border-radius: 999px;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 18px rgba(14,24,35,.25);
  white-space: nowrap;
}
.header-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(14,24,35,.45); }
.header-cta svg { width: 15px; height: 15px; }

/* ═══════════ HERO ═══════════ */
.hero {
  position: relative; overflow: hidden;
  background:
    linear-gradient(115deg, rgba(10,26,47,.96) 0%, rgba(14,32,58,.88) 45%, rgba(10,26,47,.65) 100%),
    url('../img/hero.jpg') center/cover no-repeat;
  padding: 40px 0 64px;
  color: #fff;
}
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 40px; position: relative; }
.hero-content { max-width: 600px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  width: fit-content; max-width: 100%;
  background: rgba(192,249,43,.14); border: 1px solid rgba(192,249,43,.4);
  border-radius: 999px; padding: 7px 18px;
  font-size: .82rem; font-weight: 600; color: var(--lime); line-height: 1.35;
  margin-bottom: 22px;
}
.hero-eyebrow svg { width: 15px; height: 15px; flex-shrink: 0; }
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.1rem);
  color: #fff; margin-bottom: 8px;
}
.hero h1 .accent-lime { color: var(--lime); }
.hero .hero-amount {
  display: block; margin-bottom: 18px;
}
.hero-amount-label {
  display: block;
  font-size: clamp(1.02rem, 2.2vw, 1.28rem);
  font-weight: 700;
  color: rgba(255,255,255,.92);
  margin-bottom: 6px;
}
.hero-amount-value {
  display: inline-block;
  font-family: var(--font-head);
  font-size: clamp(2.45rem, 6.8vw, 3.75rem);
  font-weight: 800;
  color: var(--lime);
  letter-spacing: -.03em;
  line-height: .95;
  text-shadow: 0 0 28px rgba(192,249,43,.4);
}
.hero-amount-currency {
  display: inline-block;
  margin-left: 8px;
  font-size: clamp(1rem, 2.1vw, 1.25rem);
  font-weight: 800;
  color: var(--lime);
  vertical-align: .45em;
}
.hero-sub { color: rgba(255,255,255,.82); font-size: 1.08rem; line-height: 1.65; margin-bottom: 28px; }

/* Métricas destacadas */
.hero-stats {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  background: var(--lime);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 22px;
  box-shadow: 0 10px 36px rgba(192,249,43,.38);
}
.stat-card {
  padding: 18px 14px 16px;
  text-align: center;
  background: transparent;
  border: 0;
  border-radius: 0;
}
.stat-card + .stat-card {
  border-left: 1px solid rgba(14,24,35,.14);
}
.stat-card .stat-lbl {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(14,24,35,.72);
  display: block;
  line-height: 1.3;
  margin-bottom: 6px;
}
.stat-card .stat-val {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.45rem, 3vw, 2.05rem);
  color: var(--navy-3);
  display: block;
  line-height: 1.05;
}
.stat-card .stat-val small {
  display: block;
  font-size: .42em;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 5px 0 0;
  color: rgba(14,24,35,.7);
}
.stat-card.stat-featured {
  background: #d4ff5c;
}
.stat-card.stat-featured .stat-val {
  font-size: clamp(1.7rem, 3.5vw, 2.35rem);
}

.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  background: linear-gradient(135deg, var(--lime), #a8e52a);
  color: var(--navy); font-weight: 800; font-size: 1.02rem;
  padding: 15px 32px; border-radius: 999px; border: none;
  box-shadow: 0 6px 26px rgba(192,249,43,.35);
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(192,249,43,.5); }
.btn-primary svg { width: 17px; height: 17px; }
.hero-note { display: flex; align-items: center; gap: 8px; margin-top: 18px; font-size: .82rem; color: rgba(255,255,255,.65); }
.hero-note svg { width: 14px; height: 14px; color: var(--lime); flex-shrink: 0; }

/* ═══════════ FORMULARIO ═══════════ */
.hero-form-wrap { position: relative; }
.form-card {
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 28px 24px;
  border: 1px solid rgba(224,230,238,.7);
  position: relative;
  overflow: hidden;
}
.form-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--green), var(--sky), var(--orange));
}
.form-title { font-size: 1.45rem; color: var(--navy-3); margin-bottom: 4px; }
.form-subtitle { font-size: .95rem; color: var(--gold); font-weight: 600; margin-bottom: 22px; }
.lead-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 14px; }
.form-group { position: relative; }
.form-group label { display: block; font-size: .78rem; font-weight: 600; color: var(--navy-3); margin-bottom: 5px; }
.form-group label .req { color: #dc2626; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; font-size: 15px;
  padding: 10px 11px; min-height: 42px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  background: #fbfcfe; color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none; appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%23546e7a' stroke-width='2'%3E%3Cpath d='M3 5l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
  padding-right: 34px;
}
.form-group textarea { resize: vertical; min-height: 84px; line-height: 1.5; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #9fb0c3; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,168,168,.15);
}
.form-group.error input,
.form-group.error select,
.form-group.error textarea { border-color: #dc2626; box-shadow: 0 0 0 3px rgba(220,38,38,.12); }
.error-msg { display: none; font-size: .75rem; color: #dc2626; margin-top: 3px; font-weight: 500; }
.form-group.error .error-msg { display: block; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.btn-submit {
  width: 100%; padding: 14px; font-size: 1rem; font-weight: 800;
  color: #fff; background: var(--navy-3);
  border-radius: var(--radius-sm);
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
  box-shadow: 0 5px 18px rgba(14,24,35,.28);
  display: flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 50px; margin-top: 4px;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 9px 26px rgba(14,24,35,.4); }
.btn-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.btn-submit .spinner {
  width: 16px; height: 16px; border: 2px solid rgba(255,255,255,.3);
  border-top-color: #fff; border-radius: 50%; animation: aeSpin .6s linear infinite;
}
.form-fineprint { font-size: .68rem; color: #8896a8; line-height: 1.45; margin-top: 12px; text-align: center; }

.form-success { display: none; text-align: center; padding: 20px 10px; animation: aeFadeInUp .5s ease; }
.form-success.show { display: block; }
.success-circle {
  width: 72px; height: 72px; margin: 0 auto 20px;
  border-radius: 50%; background: #ecfdf5;
  display: flex; align-items: center; justify-content: center;
  animation: aePopIn .4s cubic-bezier(.34,1.56,.64,1);
}
.success-circle svg { width: 36px; height: 36px; color: var(--green); }
.form-success h3 { font-size: 1.35rem; color: var(--navy-3); margin-bottom: 10px; }
.form-success p { color: var(--text-muted); font-size: .95rem; line-height: 1.6; max-width: 340px; margin: 0 auto; }

/* ═══════════ CINTILLA DE CONFIANZA ═══════════ */
.trust-bar {
  background: linear-gradient(120deg, var(--navy-3), var(--navy-2));
  padding: 34px 0;
}
.trust-bar-inner { display: grid; grid-template-columns: 1fr; gap: 26px; text-align: center; }
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.trust-icon {
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg, var(--lime), var(--lime-dark));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 22px rgba(192,249,43,.35);
}
.trust-icon svg { width: 27px; height: 27px; color: var(--navy-3); }
.trust-item span { color: #fff; font-size: .92rem; font-weight: 600; max-width: 240px; line-height: 1.4; }
.trust-item small { color: rgba(255,255,255,.6); font-size: .78rem; display: block; margin-top: 2px; font-weight: 400; }

/* ═══════════ CRÉDITOS PARA ═══════════ */
.purposes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.purpose-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px 20px; text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.purpose-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--teal); }
.purpose-icon {
  width: 62px; height: 62px; margin: 0 auto 16px;
  border-radius: 18px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--navy-2), var(--navy-3));
  box-shadow: 0 8px 22px rgba(10,26,47,.25);
}
.purpose-icon svg { width: 29px; height: 29px; color: var(--lime); }
.purpose-card h3 { font-size: 1rem; color: var(--navy-3); margin-bottom: 7px; }
.purpose-card p { font-size: .82rem; color: var(--text-muted); line-height: 1.55; }

/* ═══════════ PROCESO ═══════════ */
.process { background: linear-gradient(160deg, #0e1823 0%, #1e2a38 100%); }
.process .section-head h2 { color: var(--lime); }
.process .section-head p { color: rgba(255,255,255,.8); }
.steps-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px 18px; margin-bottom: 40px; }
.step { text-align: center; }
.step-circle {
  width: 64px; height: 64px; margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lime), var(--lime-dark));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 1.6rem; font-weight: 800; color: var(--navy-3);
}
.step h3 { color: #fff; font-size: 1.02rem; margin-bottom: 7px; }
.step p { color: rgba(255,255,255,.65); font-size: .84rem; line-height: 1.55; max-width: 260px; margin: 0 auto; }
.process-cta { text-align: center; }

/* ═══════════ INFORMACIÓN CLARA ═══════════ */
.info-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.info-card {
  background: var(--bg-alt); border-radius: var(--radius);
  padding: 26px 20px; text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.info-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.info-card svg { width: 36px; height: 36px; margin: 0 auto 14px; color: var(--orange); }
.info-card h3 { font-size: .98rem; color: var(--navy-3); margin-bottom: 7px; }
.info-card p { font-size: .82rem; color: var(--text-muted); line-height: 1.55; }
.info-disclaimer {
  max-width: 760px; margin: 0 auto 40px; text-align: center;
  font-size: .92rem; color: var(--text-muted); line-height: 1.65;
  background: var(--bg-alt); border-left: 4px solid var(--orange);
  border-radius: 10px; padding: 18px 22px;
}

/* ═══════════ BENEFICIOS ═══════════ */
.benefits { background: var(--bg-alt); }
.benefits-grid { display: grid; grid-template-columns: 1fr; gap: 36px; align-items: center; }
.benefits-content h2 { font-size: clamp(1.5rem, 3.2vw, 2.1rem); color: var(--navy-3); margin-bottom: 26px; }
.benefit-row { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.benefit-icon {
  width: 54px; height: 54px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy-2), var(--navy-3));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(10,26,47,.22);
}
.benefit-icon svg { width: 24px; height: 24px; color: var(--lime); }
.benefit-row p { font-size: .98rem; font-weight: 600; color: var(--navy-3); line-height: 1.45; }
.benefit-row p small { display: block; font-weight: 400; font-size: .8rem; color: var(--text-muted); margin-top: 2px; }
.benefit-image { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.benefit-image img { width: 100%; height: 380px; object-fit: cover; }

/* ═══════════ CTA FINAL ═══════════ */
.cta-section {
  background:
    linear-gradient(115deg, rgba(10,26,47,.96) 0%, rgba(18,35,61,.9) 100%),
    url('../img/hero.jpg') center/cover no-repeat;
  text-align: center; padding: 72px 0;
}
.cta-section h2 { color: #fff; font-size: clamp(1.6rem, 3.6vw, 2.4rem); margin-bottom: 12px; }
.cta-section p { color: rgba(255,255,255,.78); margin-bottom: 28px; font-size: 1.02rem; }

/* ═══════════ FOOTER ═══════════ */
.footer { background: #f7f9fc; color: #546e7a; padding: 44px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 32px; margin-bottom: 30px; }
.footer-brand img {
  height: auto;
  width: auto;
  max-height: 48px;
  max-width: 200px;
  object-fit: contain;
  margin-bottom: 14px;
}
.footer-brand p { font-size: .88rem; line-height: 1.6; max-width: 340px; }
.footer-brand .slogan { color: #598b2c; font-weight: 600; margin-top: 6px; }
.footer-col h4 { color: var(--navy-3); font-size: .92rem; margin-bottom: 12px; }
.footer-col p, .footer-col a { display: block; color: #5f7186; font-size: .84rem; margin-bottom: 8px; }
.footer-col a:hover { color: var(--navy-3); }
.footer-disclaimer {
  font-size: .76rem; color: #8896a8; line-height: 1.55; max-width: none; width: 100%; margin: 0 0 18px;
}
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 18px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-size: .78rem; color: #8896a8; text-align: left;
}
.footer-bottom p { margin: 0; }
.footer-bottom a {
  color: #8896a8; text-decoration: none; white-space: nowrap; margin-left: auto;
}
.footer-bottom a:hover { color: var(--navy-3); }

/* ═══════════ CTA MÓVIL ═══════════ */
.mobile-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: rgba(255,255,255,.96); backdrop-filter: blur(10px);
  border-top: 1px solid var(--border); padding: 12px 20px;
  box-shadow: 0 -4px 20px rgba(10,26,47,.1);
  transition: transform .25s ease, opacity .25s ease;
}
.mobile-cta.is-hidden {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.mobile-cta button {
  width: 100%; padding: 14px; font-size: 1rem; font-weight: 800; color: var(--navy-3);
  background: linear-gradient(135deg, var(--lime), #a8e52a);
  border-radius: 999px; box-shadow: 0 4px 16px rgba(192,249,43,.4);
}

/* ═══════════ REVEAL ═══════════ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════ RESPONSIVE ═══════════ */
@media (min-width: 640px) {
  .purposes-grid { grid-template-columns: repeat(3, 1fr); }
  .info-cards { grid-template-columns: repeat(4, 1fr); }
  .steps-grid { grid-template-columns: repeat(4, 1fr); }
  .form-row { grid-template-columns: 1fr 1fr; }
  .trust-bar-inner { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .section { padding: 84px 0; }
  .hero { padding: 56px 0 80px; }
  .hero-grid { grid-template-columns: 1.05fr .95fr; gap: 52px; align-items: start; }
  .hero-form-wrap { position: sticky; top: 92px; }
  .purposes-grid { grid-template-columns: repeat(5, 1fr); }
  .benefits-grid { grid-template-columns: 1fr 1fr; gap: 52px; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .form-card { padding: 32px 30px; }
}
@media (max-width: 1023px) {
  body { padding-bottom: 80px; }
  body.legal { padding-bottom: 0; }
  body:not(.legal) .header-cta { display: none; }
  .mobile-cta { display: block; }
  .hero-content { order: -1; }
  .hero-grid { gap: 24px; }
  .hero { padding: 20px 0 36px; }
  .header-inner { padding: 10px 16px; }
  .logo img { height: auto; max-height: 40px; max-width: min(180px, 78vw); }
  .container { padding: 0 16px; }
  .form-card { padding: 16px 14px; }
  .form-title { font-size: 1.12rem; }
  .form-subtitle { font-size: .8rem; margin-bottom: 12px; }
  .lead-form { gap: 8px; }
  .form-row { gap: 8px; }
  .form-group label { font-size: .72rem; margin-bottom: 4px; }
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px;
    padding: 8px 10px;
    min-height: 40px;
  }
  .form-group textarea { min-height: 72px; }
  .btn-submit { padding: 12px; font-size: .92rem; min-height: 44px; }
  .form-fineprint { font-size: .62rem; margin-top: 8px; }
  .form-check-text { font-size: .75rem; }
  .hero-amount-value { font-size: clamp(2.15rem, 11vw, 2.8rem); }
  .hero-stats { gap: 0; }
  .stat-card { padding: 14px 10px; }
  .stat-card .stat-lbl { font-size: .62rem; }
  .stat-card .stat-val { font-size: 1.2rem; }
  .stat-card.stat-featured .stat-val { font-size: 1.42rem; }
  .hero-sub { font-size: .95rem; margin-bottom: 20px; }
  .hero-eyebrow {
    gap: 0;
    padding: 4px 11px;
    font-size: .68rem;
    line-height: 1.3;
    margin-bottom: 14px;
    text-wrap: balance;
  }
  .hero-eyebrow svg { display: none; }
  .section { padding: 48px 0; }
  .footer-bottom { flex-wrap: wrap; gap: 8px 16px; }
}
@media (max-width: 767px) {
  .info-cards { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}

.btn-submit .btn-loading { align-items: center; gap: 8px; }
.form-group-aviso { margin-top: 2px; }
.form-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  cursor: pointer;
  margin: 0;
}
.form-check input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}
.form-check .check {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  background: #fbfcfe;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}
.form-check .check::after {
  content: '';
  width: 5px;
  height: 9px;
  border: solid transparent;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translate(-1px, -1px);
}
.form-check input:focus-visible + .check {
  box-shadow: 0 0 0 3px rgba(0,168,168,.18);
  border-color: var(--teal);
}
.form-check input:checked + .check {
  background: var(--navy-3);
  border-color: var(--navy-3);
}
.form-check input:checked + .check::after {
  border-color: var(--lime);
}
.form-group.error .form-check .check {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220,38,38,.12);
}
.form-check-text {
  font-size: .82rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.45;
}
.form-check-text a {
  color: var(--navy-3);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-check-text a:hover { color: var(--teal); }
.form-nota { margin: 0; }
.form-general-error {
  display: none;
  font-size: .85rem;
  color: #dc2626;
  font-weight: 600;
  text-align: center;
}
.form-general-error.show { display: block; }
.legal-copy { color: var(--text); }
.legal-copy p { margin-bottom: 14px; color: var(--text-muted); }
.legal-copy h1 { margin-bottom: 18px; color: var(--navy-3); }
.legal-copy h2 { margin: 28px 0 8px; font-size: 1.25rem; }
.legal-copy a { color: var(--navy-3); text-decoration: underline; text-underline-offset: 2px; }
.legal-copy a:hover { color: var(--teal); }
