/* ================================================================
   landing-protocolo.css — Landing: Protocolo de Recuperación 20 Min
   Mobile-first. Sin frameworks.
   ================================================================ */

:root {
  --navy:        #1B3A5C;
  --navy-light:  #2A527D;
  --orange:      #E8633A;
  --orange-hover:#D0512A;
  --gold:        #F4A261;
  --bg:          #F8F9FA;
  --text:        #2D3748;
  --text-light:  #718096;
  --border:      #E2E8F0;
  --radius:      10px;
  --shadow:      0 4px 20px rgba(0,0,0,.10);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; }

body {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── LAYOUT ─────────────────────────────────────────────────── */

.lp-wrap {
  max-width: 520px;
  margin: 0 auto;
  padding: 0 20px 48px;
}

/* ── TOP BAR ─────────────────────────────────────────────────── */

.lp-topbar {
  padding: 20px 0 16px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}

.lp-topbar img {
  display: block;
  margin: 0 auto;
}

/* ── HERO ────────────────────────────────────────────────────── */

.lp-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.lp-hero h1 {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--navy);
  margin-bottom: 16px;
}

.lp-hero p {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 24px;
  line-height: 1.7;
}

.lp-hero-img {
  width: 100%;
  border-radius: var(--radius);
  display: block;
  margin-bottom: 32px;
  object-fit: cover;
  max-height: 280px;
}

/* ── BENEFICIOS ──────────────────────────────────────────────── */

.lp-benefits {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}

.lp-benefits ul {
  list-style: none;
}

.lp-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
  padding: 8px 0;
}

.lp-benefits li + li {
  border-top: 1px solid var(--border);
}

.lp-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: #DCFCE7;
  color: #16A34A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  margin-top: 1px;
}

/* ── SOCIAL PROOF ────────────────────────────────────────────── */

.lp-social-proof {
  text-align: center;
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 28px;
  font-style: italic;
}

/* ── FORMULARIO ──────────────────────────────────────────────── */

.lp-form-section {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  margin-bottom: 32px;
}

.lp-form-label {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  text-align: center;
}

.lp-form input[type="text"],
.lp-form input[type="email"] {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 16px;
  font-family: inherit;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color .2s;
  margin-bottom: 12px;
  -webkit-appearance: none;
}

.lp-form input:focus {
  border-color: var(--navy-light);
}

.lp-form input::placeholder {
  color: #A0AEC0;
}

.lp-btn {
  width: 100%;
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 16px;
  border-radius: var(--radius);
  font-size: 17px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background .2s, transform .1s;
  margin-top: 4px;
  -webkit-appearance: none;
}

.lp-btn:hover { background: var(--orange-hover); }
.lp-btn:active { transform: scale(.99); }
.lp-btn:disabled { opacity: .7; cursor: not-allowed; }

.lp-privacy {
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
  margin-top: 12px;
}

.lp-error {
  display: none;
  background: #FEF2F2;
  border: 1px solid #FECACA;
  color: #DC2626;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  margin-top: 12px;
}

/* ── ESTADO DE ÉXITO ─────────────────────────────────────────── */

.lp-success {
  display: none;
  text-align: center;
  padding: 40px 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 32px;
}

.lp-success-icon {
  font-size: 48px;
  margin-bottom: 16px;
  line-height: 1;
}

.lp-success h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.lp-success p {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 24px;
  line-height: 1.7;
}

.lp-success-link {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  transition: background .2s;
}

.lp-success-link:hover { background: var(--navy-light); }

/* ── FOOTER ──────────────────────────────────────────────────── */

.lp-footer {
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.lp-footer a {
  color: var(--text-light);
  text-decoration: underline;
}

/* ── DESKTOP ─────────────────────────────────────────────────── */

@media (min-width: 540px) {
  .lp-hero h1 { font-size: 30px; }
  .lp-form-section { padding: 36px 32px; }
  .lp-benefits { padding: 28px 32px; }
}
