/* =============================================
   LANDING PAGE VSL – Dra. Yasmin Pacheco
   ============================================= */

:root {
  --p: #00A5B4;
  --p-dark: #007D8A;
  --p-light: #1EC1D1;
  --green: #6DC135;
  --green-dark: #56991F;
  --gold: #F59E0B;
  --text: #1A2E32;
  --muted: #4A6A70;
  --border: #C8EAED;
  --bg: #F4FBFC;
  --surface: #FFFFFF;
  --font: 'Outfit', sans-serif;
  --display: 'Playfair Display', serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--bg); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* ---------- Mini Header Landing ---------- */
.land-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.land-header-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
}
@media (max-width: 480px) {
  .land-header-logo {
    height: 36px; /* Ajuste a escala en móviles muy pequeños */
  }
}

/* ---------- Urgency Bar ---------- */
.urgency-bar {
  background: linear-gradient(90deg, #7C3AED, #2563EB);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: .875rem;
  font-weight: 500;
  position: sticky;
  top: 0;
  z-index: 100;
}
.ub-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.ub-dot {
  width: 8px; height: 8px;
  background: #4ADE80;
  border-radius: 50%;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%,100%{transform:scale(1);opacity:1}
  50%{transform:scale(1.4);opacity:.7}
}
.ub-timer {
  background: rgba(0,0,0,.2);
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: .05em;
}

/* ---------- VSL Hero ---------- */
.vsl-hero {
  background: linear-gradient(180deg, #0F1729 0%, #1e3a6e 100%);
  padding: 60px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.vsl-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(59,130,246,.2), transparent 70%);
}
.vsl-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.vsl-badge {
  display: inline-block;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 500;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.vsl-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -.02em;
}
.vsl-title em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  color: #7DD3FA;
}
.vsl-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,.75);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.vsl-subtitle strong { color: #fff; }

/* Video */
.vsl-video-wrap {
  position: relative;
  max-width: 720px;
  margin: 0 auto 32px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.5);
  border: 3px solid rgba(255,255,255,.15);
}
.vsl-video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  cursor: pointer;
}
.vsl-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.75);
}
.vsl-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(0,0,0,.25);
  transition: background .3s;
}
.vsl-video-thumb:hover .vsl-play-overlay { background: rgba(0,0,0,.35); }
.vsl-play-btn {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--p), var(--p-dark));
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: transform .3s, box-shadow .3s;
  box-shadow: 0 8px 32px rgba(37,99,235,.6);
}
.vsl-play-btn:hover { transform: scale(1.1); box-shadow: 0 12px 40px rgba(37,99,235,.8); }
.play-icon { margin-left: 4px; }
.vsl-play-label { color: rgba(255,255,255,.85); font-size: .9rem; font-weight: 500; }
.vsl-video-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(0,0,0,.6);
  color: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: .75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(8px);
}
.vsl-video-real {
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0F1729;
}
.video-placeholder-msg {
  color: rgba(255,255,255,.6);
  text-align: center;
  line-height: 1.7;
  font-size: .95rem;
  padding: 24px;
}

/* Post-video CTA */
.vsl-post-cta { animation: fadeInUp .6s ease; }
@keyframes fadeInUp { from{opacity:0;transform:translateY(16px)} to{opacity:1;transform:translateY(0)} }
.vsl-cta-eyebrow {
  color: #4ADE80;
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.btn-vsl-cta {
  display: inline-block;
  background: linear-gradient(135deg, #F59E0B, #D97706);
  color: #fff;
  padding: 20px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: .02em;
  box-shadow: 0 8px 32px rgba(245,158,11,.5);
  transition: all .3s;
  animation: pulseCta 2s ease-in-out infinite;
}
@keyframes pulseCta {
  0%,100%{box-shadow:0 8px 32px rgba(245,158,11,.5)}
  50%{box-shadow:0 12px 48px rgba(245,158,11,.8)}
}
.btn-vsl-cta:hover { transform: translateY(-3px) scale(1.02); }
.vsl-cta-note {
  color: rgba(255,255,255,.55);
  font-size: .85rem;
  margin-top: 14px;
}
.vsl-cta-note strong { color: rgba(255,255,255,.85); }

/* ---------- Social Proof ---------- */
.sp-section {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  text-align: center;
}
.sp-inner { max-width: 700px; margin: 0 auto; }
.sp-label { font-size: 1rem; color: var(--muted); margin-bottom: 16px; }
.sp-label strong { color: var(--text); }
.sp-avatars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 12px;
}
.sp-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 3px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .8rem;
  color: #fff;
  margin-left: -12px;
}
.sp-avatar:first-child { margin-left: 0; }
.sp-more {
  background: linear-gradient(135deg, var(--p), var(--p-dark));
  font-size: .7rem;
  width: 48px; height: 48px;
}
.sp-stars { color: #F59E0B; font-size: .9rem; }
.sp-stars span { color: var(--muted); font-size: .85rem; }

/* ---------- Pain Points ---------- */
.pain-section {
  background: linear-gradient(180deg,#EFF6FF,var(--bg));
  padding: 80px 24px;
  text-align: center;
}
.pain-inner { max-width: 900px; margin: 0 auto; }
.pain-title { font-size: clamp(1.5rem,3vw,2.25rem); font-weight: 800; margin-bottom: 48px; }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px,1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.pain-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 20px;
  transition: transform .3s, box-shadow .3s;
}
.pain-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(37,99,235,.1); }
.pain-icon { font-size: 2.5rem; margin-bottom: 12px; }
.pain-card p { font-size: .9rem; color: var(--muted); line-height: 1.6; }
.pain-solution {
  background: linear-gradient(135deg, var(--p), var(--p-dark));
  color: #fff;
  padding: 24px 32px;
  border-radius: 16px;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* ---------- Benefits ---------- */
.benefits-section { padding: 80px 24px; background: var(--surface); }
.benefits-inner { max-width: 700px; margin: 0 auto; }
.benefits-title {
  font-size: clamp(1.5rem,3vw,2.25rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 48px;
}
.benefits-title em { font-family: var(--display); font-style: italic; color: var(--p); }
.benefits-list { display: flex; flex-direction: column; gap: 20px; }
.benefit-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg);
  transition: all .3s;
}
.benefit-item:hover { border-color: rgba(37,99,235,.3); background: #EFF6FF; }
.bi-check {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--p), var(--p-dark));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
  font-size: 1rem;
}
.bi-text strong { display: block; font-weight: 700; margin-bottom: 4px; }
.bi-text p { font-size: .9rem; color: var(--muted); }

/* ---------- Testimonials Landing ---------- */
.land-testi { padding: 80px 24px; background: var(--bg); }
.lt-inner { max-width: 1100px; margin: 0 auto; }
.lt-title { font-size: clamp(1.5rem,3vw,2.25rem); font-weight: 800; text-align: center; margin-bottom: 48px; }
.lt-title em { font-family: var(--display); font-style: italic; color: var(--p); }
.lt-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px,1fr));
  gap: 24px;
}
.lt-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  transition: transform .3s;
}
.lt-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(37,99,235,.1); }
.lt-card.featured-t {
  background: linear-gradient(135deg, var(--p), var(--p-dark));
  color: #fff;
  border-color: transparent;
}
.lt-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 16px; }
.lt-text { font-size: .95rem; line-height: 1.7; color: var(--muted); margin-bottom: 24px; font-style: italic; }
.lt-card.featured-t .lt-text { color: rgba(255,255,255,.85); }
.lt-author { display: flex; align-items: center; gap: 12px; }
.lt-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .85rem; color: #fff; flex-shrink: 0;
}
.lt-author strong { display: block; font-weight: 700; font-size: .9rem; }
.lt-author span { font-size: .78rem; color: var(--muted); }
.lt-card.featured-t .lt-author span { color: rgba(255,255,255,.7); }

/* ---------- About Section ---------- */
.about-section { padding: 80px 24px; background: var(--surface); }
.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 24px 64px rgba(0,0,0,.15);
}
.about-credentials {
  position: absolute;
  bottom: -20px; left: 20px; right: 20px;
  background: var(--surface);
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cred-item { font-size: .85rem; font-weight: 600; color: var(--text); }
.section-label-dark {
  display: inline-block;
  font-size: .875rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--p);
  background: rgba(37,99,235,.08);
  padding: 6px 14px; border-radius: 50px;
  margin-bottom: 16px;
}
.about-title { font-size: clamp(1.5rem,3vw,2.25rem); font-weight: 800; margin-bottom: 20px; line-height: 1.2; }
.about-title em { font-family: var(--display); font-style: italic; color: var(--p); }
.about-content p { color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.about-content em { color: var(--text); font-style: italic; font-weight: 500; }
.about-cta-inline { margin-top: 24px; }
.btn-about {
  display: inline-block;
  background: linear-gradient(135deg, var(--p), var(--p-dark));
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  transition: all .3s;
  box-shadow: 0 4px 16px rgba(37,99,235,.35);
}
.btn-about:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,99,235,.5); }

/* ---------- Landing Form ---------- */
.land-form-section {
  padding: 80px 24px;
  background: linear-gradient(135deg, #EFF6FF, #F0F9FF);
}
.lf-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.lf-title { font-size: clamp(1.5rem,3vw,2.25rem); font-weight: 800; margin-bottom: 16px; line-height: 1.2; }
.lf-title em { font-family: var(--display); font-style: italic; color: var(--p); }
.lf-desc { color: var(--muted); line-height: 1.7; margin-bottom: 28px; }
.lf-guarantees { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.lg-item { display: flex; align-items: center; gap: 10px; font-size: .9rem; font-weight: 500; color: var(--text); }
.lg-item svg { color: var(--p); flex-shrink: 0; }
.lf-urgency {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(37,99,235,.06);
  border: 1px solid rgba(37,99,235,.15);
  border-radius: 12px;
  padding: 16px 20px;
}
.lf-urgency span:first-child { font-size: 1.5rem; flex-shrink: 0; }
.lf-urgency strong { display: block; font-weight: 700; margin-bottom: 4px; }
.lf-urgency p { font-size: .875rem; color: var(--muted); }

.lf-right { position: sticky; top: 24px; }
.land-form {
  background: var(--surface);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 24px 64px rgba(37,99,235,.15);
  border: 1px solid rgba(37,99,235,.1);
}
.lform-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.lform-group label { font-size: .875rem; font-weight: 600; color: var(--text); }
.lform-group input,
.lform-group select {
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-size: .95rem;
  color: var(--text);
  background: var(--bg);
  transition: all .3s;
  outline: none;
  font-family: var(--font);
}
.lform-group input:focus,
.lform-group select:focus {
  border-color: var(--p);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}
.btn-land-submit {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, #F59E0B, #D97706);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
  transition: all .3s;
  box-shadow: 0 6px 24px rgba(245,158,11,.4);
  margin-bottom: 14px;
  letter-spacing: .02em;
  font-family: var(--font);
}
.btn-land-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(245,158,11,.55); }
.lf-privacy { font-size: .78rem; color: var(--muted); text-align: center; }

.land-success {
  background: var(--surface);
  border-radius: 24px;
  padding: 60px 40px;
  box-shadow: 0 24px 64px rgba(37,99,235,.15);
  text-align: center;
}
.ls-icon { font-size: 4rem; margin-bottom: 16px; }
.land-success h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 12px; }
.land-success p { color: var(--muted); line-height: 1.6; margin-bottom: 24px; }
.btn-wa-land {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  transition: all .3s;
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
}
.btn-wa-land:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.5); }

/* ---------- Final CTA ---------- */
.final-cta {
  background: linear-gradient(135deg, #0F1729, #1e3a6e);
  padding: 100px 24px;
  text-align: center;
}
.fc-inner { max-width: 700px; margin: 0 auto; }
.fc-title { font-size: clamp(1.75rem,4vw,3rem); font-weight: 900; color: #fff; margin-bottom: 16px; line-height: 1.1; }
.fc-title em { font-family: var(--display); font-style: italic; color: #7DD3FA; }
.fc-sub { color: rgba(255,255,255,.7); font-size: 1.1rem; margin-bottom: 36px; }
.btn-final-cta {
  display: inline-block;
  background: linear-gradient(135deg, #F59E0B, #D97706);
  color: #fff;
  padding: 20px 48px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 800;
  box-shadow: 0 8px 32px rgba(245,158,11,.5);
  transition: all .3s;
  margin-bottom: 32px;
  animation: pulseCta 2s ease-in-out infinite;
}
@keyframes pulseCta {
  0%,100%{box-shadow:0 8px 32px rgba(245,158,11,.5)}
  50%{box-shadow:0 12px 48px rgba(245,158,11,.8)}
}
.btn-final-cta:hover { transform: translateY(-3px) scale(1.02); }
.fc-trust { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; color: rgba(255,255,255,.7); font-size: .875rem; }

/* ---------- Landing Footer ---------- */
.land-footer { background: #0a0f1e; padding: 24px; text-align: center; color: rgba(255,255,255,.5); font-size: .85rem; }
.land-footer a { color: rgba(255,255,255,.75); transition: color .3s; }
.land-footer a:hover { color: #fff; }
.land-footer-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .75;
  margin: 0 auto 12px;
  display: block;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .vsl-title { font-size: 1.75rem; }
  .about-inner { grid-template-columns: 1fr; }
  .about-img { height: 300px; }
  .about-credentials { position: static; margin-top: 16px; }
  .lf-inner { grid-template-columns: 1fr; }
  .lf-right { position: static; }
  .lt-cards { grid-template-columns: 1fr; }
  .pain-grid { grid-template-columns: 1fr 1fr; }
  .fc-trust { gap: 12px; }
}
@media (max-width: 480px) {
  .pain-grid { grid-template-columns: 1fr; }
  .land-form { padding: 24px; }
}
