/*
Theme Name: Laboratorio de Talento
Author: Graphica Digital Projects
Description: Tema para Laboratorio de Talento
Version: 1.0.0
*/

/* ── FONT: BR Omny ── */
@font-face { font-family: 'BROmny'; src: url('img/fuente/BROmny-Thin-BF65557eb87d202.otf') format('opentype'); font-weight: 100; font-style: normal; font-display: swap; }
@font-face { font-family: 'BROmny'; src: url('img/fuente/BROmny-ThinItalic-BF65557eb8898f8.otf') format('opentype'); font-weight: 100; font-style: italic; font-display: swap; }
@font-face { font-family: 'BROmny'; src: url('img/fuente/BROmny-Light-BF65557eb87f5b9.otf') format('opentype'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'BROmny'; src: url('img/fuente/BROmny-LightItalic-BF65557eb83985f.otf') format('opentype'); font-weight: 300; font-style: italic; font-display: swap; }
@font-face { font-family: 'BROmny'; src: url('img/fuente/BROmny-Regular-BF65557eb88143f.otf') format('opentype'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'BROmny'; src: url('img/fuente/BROmny-RegularItalic-BF65557eb88d058.otf') format('opentype'); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: 'BROmny'; src: url('img/fuente/BROmny-Medium-BF65557eb8745de.otf') format('opentype'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'BROmny'; src: url('img/fuente/BROmny-MediumItalic-BF65557eb87a104.otf') format('opentype'); font-weight: 500; font-style: italic; font-display: swap; }
@font-face { font-family: 'BROmny'; src: url('img/fuente/BROmny-SemiBold-BF65557eb890e9a.otf') format('opentype'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'BROmny'; src: url('img/fuente/BROmny-SemiBoldItalic-BF65557eb87ac46.otf') format('opentype'); font-weight: 600; font-style: italic; font-display: swap; }
@font-face { font-family: 'BROmny'; src: url('img/fuente/BROmny-Bold-BF65557eb88a83f.otf') format('opentype'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'BROmny'; src: url('img/fuente/BROmny-BoldItalic-BF65557eb89deb2.otf') format('opentype'); font-weight: 700; font-style: italic; font-display: swap; }
@font-face { font-family: 'BROmny'; src: url('img/fuente/BROmny-Black-BF65557eb8858b2.otf') format('opentype'); font-weight: 900; font-style: normal; font-display: swap; }
@font-face { font-family: 'BROmny'; src: url('img/fuente/BROmny-BlackItalic-BF65557eb86b2a6.otf') format('opentype'); font-weight: 900; font-style: italic; font-display: swap; }

/* ── TOKENS ── */
:root {
  --ldt-primario:    #112265;
  --ldt-secundario:  #F4C057;
  --ldt-gris-claro:  #E6ECF3;
  --ldt-jade:        #258EA6;
  --ldt-rosa:        #B98092;
  --ldt-gris-jade:   #e9f3ff;

  --ldt-texto:       #1A2349;

  --ldt-ink:         var(--ldt-texto);
  --ldt-ink-2:       #160646A6;
  --ldt-white:       #FFFFFF;
  --ldt-radius:      10px;
  --ldt-radius-lg:   16px;
  --ldt-ff:          "BROmny", -apple-system, "Segoe UI", "Helvetica Neue", sans-serif;
  --ldt-shadow:      0 1px 3px rgba(17,34,101,.06), 0 6px 24px rgba(17,34,101,.06);
  --ldt-shadow-lg:   0 4px 40px rgba(17,34,101,.08);
}

/* ── SCROLL OFFSET ── */
:target { scroll-margin-top: 90px; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: var(--ldt-gris-jade); }
::-webkit-scrollbar-thumb { background: var(--ldt-primario); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--ldt-jade); }
html { scrollbar-width: thin; scrollbar-color: var(--ldt-primario) var(--ldt-gris-jade); }

/* ── BASE ── */
.ldt-landing { font-family: var(--ldt-ff); color: var(--ldt-ink); background: #fff; font-size: 15px; line-height: 1.6; }

/* ── LAYOUT ── */
.ldt-container { max-width: 1240px; margin: 0 auto; padding: 0; width: 100%; }
.ldt-section { padding: 80px 0; }
.ldt-section + .ldt-section { border-top: none; }

/* ── HERO ── */
.ldt-hero {
  background: linear-gradient(to bottom, var(--ldt-gris-jade), #fff);
  padding: 100px 32px 88px;
  position: relative;
  overflow: hidden;
  text-align: center;
  isolation: isolate;
}
.ldt-neural {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  opacity: 0.3;
}
.ldt-hero__center {
  max-width: 800px; margin: 0 auto;
  position: relative; z-index: 1;
}
.ldt-hero__tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(17,34,101,.08);
  color: var(--ldt-primario); font-size: 14px; font-weight: 600;
  line-height: 10px; letter-spacing: .8px;
  text-transform: uppercase;
  padding: 9px 14px 6px 14px; border-radius: 20px;
  border: 1px solid rgba(17,34,101,.15);
  margin-bottom: 24px;
}
.ldt-hero__note {
  color: var(--ldt-ink-2); font-size: 14px; margin-bottom: 32px;
}
.ldt-hero h1 {
  font-size: 60px; font-weight: 600; line-height: 1;
  color: var(--ldt-ink); letter-spacing: -2px;
  margin-bottom: 44px;
}
.ldt-hero h1 em {
  font-style: normal;
  background: linear-gradient(rgba(0,0,0,0) 69%, var(--ldt-secundario) 0%);
  background-size: 0% 100%;
  background-repeat: no-repeat;
  padding-bottom: 2px;
  transition: background-size .6s ease;
}
.ldt-hero h1 em.is-visible {
  background-size: 100% 100%;
}
.ldt-hero__desc {
  margin-bottom: 36px; max-width: 600px; margin-left: auto; margin-right: auto;
}
.ldt-hero__actions {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; flex-wrap: wrap; margin-bottom: 10px;
}
.ldt-btn-primary {
  background: var(--ldt-primario); color: #fff;
  font-size: 16px; font-weight: 600; padding: 17px 28px;
  border-radius: var(--ldt-radius); border: none; cursor: pointer;
  text-decoration: none; display: inline-block;
  transition: all .2s ease;
  box-shadow: 0 4px 20px rgba(17,34,101,.2);
}
.ldt-btn-primary:hover { opacity: .9; transform: translateY(-1px); box-shadow: 0 6px 28px rgba(17,34,101,.3); }
.ldt-btn-secondary {
  background: var(--ldt-primario); color: #fff;
  font-size: 16px; font-weight: 600; padding: 17px 28px;
  border-radius: var(--ldt-radius); border: none; cursor: pointer;
  text-decoration: none; display: inline-block;
  transition: all .2s ease;
}
.ldt-btn-secondary:hover { opacity: .9; transform: translateY(-1px); }
.ldt-hero__trust {
  display: flex; justify-content: center; gap: 28px; flex-wrap: wrap;
}
.ldt-hero__trust span {
  font-size: 14px; color: var(--ldt-ink-2); display: flex; align-items: center; gap: 6px;
}
.ldt-hero__trust span::before {
  content: '';
  width: 18px; height: 18px; flex-shrink: 0;
  background: var(--ldt-secundario); border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 10px;
}


/* ── HERO FORM CARD ── */
.ldt-hero__card {
  background: #fff; border-radius: var(--ldt-radius-lg);
  padding: 32px; border: none;
  box-shadow: var(--ldt-shadow-lg);
  position: sticky; top: 100px;
}
.ldt-hero__card h3 { font-size: 23px; font-weight: 500; color: var(--ldt-primario); margin-bottom: 20px; text-align: center; }
.ldt-hero__card .sub { font-size: 14px; color: var(--ldt-ink-2); margin-bottom: 24px; }
.ldt-mini-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ldt-mini-form .ldt-field { margin-bottom: 14px; }
.ldt-mini-form label { display: block; font-size: 14px; font-weight: 600; color: var(--ldt-ink); margin-bottom: 6px; }
.ldt-mini-form input, .ldt-mini-form select {
  width: 100%; padding: 12px 14px; border: 1px solid var(--ldt-gris-claro);
  border-radius: var(--ldt-radius); font-size: 14px; font-family: var(--ldt-ff);
  color: var(--ldt-ink); background: #FAFAFA;
  transition: border-color .2s, box-shadow .2s;
}
.ldt-mini-form input:focus, .ldt-mini-form select:focus {
  outline: none; border-color: var(--ldt-secundario); background: #fff;
  box-shadow: 0 0 0 3px rgba(244,192,87,.2);
}
.ldt-btn-submit {
  width: 100%; background: var(--ldt-primario); color: #fff;
  font-size: 19px; font-weight: 500; font-family: var(--ldt-ff); padding: 14px;
  border-radius: var(--ldt-radius); border: none; cursor: pointer;
  transition: all .2s; margin-top: 6px;
}
.ldt-btn-submit:hover { opacity: .9; }
.ldt-mini-trust { display: flex; justify-content: center; gap: 5px; margin-top: 14px; flex-wrap: wrap; }
.ldt-mini-trust span { font-size: 15px; color: var(--ldt-ink-2); display: flex; align-items: center; gap: 4px; font-weight: 300; }
.ldt-mini-trust span::before { content: "·"; margin-right: 2px; }
.ldt-mini-trust span:first-child::before { display: none; }

/* ── SECTION LABELS ── */
.ldt-eyebrow {
  font-size: 14px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; color: var(--ldt-secundario);
  margin-bottom: 12px;
}
.ldt-section-title em {
  font-style: normal;
  background: linear-gradient(rgba(0,0,0,0) 69%, var(--ldt-secundario) 0%);
  background-size: 0% 100%;
  background-repeat: no-repeat;
  padding-bottom: 2px;
  transition: background-size .6s ease;
}
.ldt-section-title em.is-visible {
  background-size: 100% 100%;
}
.ldt-section-title {
  font-size: 40px; font-weight: 600; color: var(--ldt-ink);
  letter-spacing: -1px; line-height: 1; margin-bottom: 24px;
}
.ldt-section-lead { max-width: 600px; margin-bottom: 60px; }

.ldt-tracks .ldt-eyebrow,
.ldt-tracks .ldt-section-title,
.ldt-tracks .ldt-section-lead,
.ldt-fases .ldt-eyebrow,
.ldt-fases .ldt-section-title,
.ldt-fases .ldt-section-lead,
.ldt-entregables .ldt-eyebrow,
.ldt-entregables .ldt-section-title,
.ldt-entregables .ldt-section-lead,
.ldt-equipo .ldt-eyebrow,
.ldt-equipo .ldt-section-title,
.ldt-equipo .ldt-section-lead,
.ldt-objeciones .ldt-eyebrow,
.ldt-objeciones .ldt-section-title,
.ldt-objeciones .ldt-section-lead,
.ldt-faq .ldt-eyebrow,
.ldt-faq .ldt-section-title,
.ldt-faq .ldt-section-lead {
  text-align: center;
}
.ldt-tracks .ldt-section-lead,
.ldt-fases .ldt-section-lead,
.ldt-entregables .ldt-section-lead,
.ldt-equipo .ldt-section-lead,
.ldt-objeciones .ldt-section-lead,
.ldt-faq .ldt-section-lead {
  margin-left: auto; margin-right: auto;
}

/* ── PAIN ── */
/* ── PAIN ROW (2 cols: cards + form) ── */
.ldt-pain-row { }
.ldt-pain-row__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  align-items: start;
  max-width: 1140px; margin: 0 auto;
}
.ldt-pain-col { display: flex; flex-direction: column; min-width: 0; overflow: hidden; }
.ldt-pain-col .ldt-section-title { font-size: 36px; }
.ldt-pain-col .ldt-section-lead { margin-bottom: 54px; }
/* ── PAIN SLIDER ── */
.ldt-pain-slider { position: relative; overflow: hidden; width: 80%; }
.ldt-pain-slider__track {
  display: flex;
  transition: transform .4s ease;
}
.ldt-pain-card {
  background: #fff;
  border: none;
  border-radius: var(--ldt-radius-lg);
  padding: 28px;
  width: 100%;
  min-width: 100%;
  flex-shrink: 0;
  box-sizing: border-box;
}
.ldt-pain-card p { font-size: 20px; color: var(--ldt-primario); line-height: 1.45; font-style: italic; font-weight: 300; margin: 0; letter-spacing: -.2px; }
.ldt-pain-slider__bullets {
  display: flex; justify-content: flex-start; gap: 8px;
  margin-top: 14px; padding-left: 28px;
}
.ldt-bullet {
  width: 10px; height: 10px; border-radius: 50%;
  border: none; cursor: pointer; padding: 0;
  background: var(--ldt-gris-claro);
  transition: background .2s;
}
.ldt-bullet.is-active { background: var(--ldt-primario); }

/* ── PROMISE ── */
.ldt-promise {
  background: transparent;
  border: none;
  border-radius: 20px;
  padding: 0px 32px;
  text-align: center;
  margin-top: 120px;
}
.ldt-promise blockquote {
  font-size: 36px; font-weight: 600; color: var(--ldt-ink); line-height: 1.2;
  font-style: normal; max-width: 700px; margin: 0 auto 20px;
  letter-spacing: -.5px;
}
.ldt-promise cite { font-size: 15px; color: var(--ldt-ink-2); font-style: normal; font-weight: 400; }

/* ── STATS ── */
.ldt-stats .ldt-section-title { margin-bottom: 50px; }
.ldt-stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 92px; margin-top: 44px; }
.ldt-stat-box {
  padding: 0px 24px 0px 24px; text-align: left;
  border-left: 3px solid #c5e6ed;
}
.ldt-stat-n { font-size: 40px; font-weight: 700; color: var(--ldt-primario); letter-spacing: -1px; margin-bottom: 6px; }
.ldt-stat-l { font-size: 15px; color: var(--ldt-ink-2); line-height: 1.4; font-weight: 400; }

/* ── TRACKS ── */
.ldt-track-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.ldt-track-card {
  background: var(--ldt-gris-jade);
  border-radius: var(--ldt-radius-lg); padding: 36px 28px;
  border: none;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.ldt-track-badge { display: none; }
.ldt-track-card h3 { font-size: 22px; font-weight: 600; color: var(--ldt-primario); margin-bottom: 14px; }
.ldt-track-card p { font-size: 16px; line-height: 1.55; color: var(--ldt-ink-2); margin-bottom: 20px; }
.ldt-track-dur { font-size: 14px; color: var(--ldt-primario); font-weight: 600; margin-top: 2px; }

/* ── FASES ── */
.ldt-phases-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 40px; position: relative; }
.ldt-phases-row::before {
  content: ''; position: absolute; top: 30px; left: 10%; right: 10%;
  height: 2px; background: var(--ldt-gris-claro); z-index: 0;
}
.ldt-phases-row::after {
  content: ''; position: absolute; top: 30px; left: 10%; right: 10%;
  height: 2px; z-index: 0;
  background: linear-gradient(90deg, var(--ldt-jade), var(--ldt-secundario));
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1.5s ease;
}
.ldt-phases-row.is-animated::after { transform: scaleX(1); }
.ldt-phase-step { text-align: center; padding: 0 10px; position: relative; z-index: 1; }
.ldt-phase-circle {
  width: 60px; height: 60px; background: var(--ldt-gris-claro); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; color: var(--ldt-primario); font-size: 20px; font-weight: 700;
  border: 3px solid var(--ldt-gris-claro);
  transition: background .4s ease, color .4s ease, border-color .4s ease, box-shadow .4s ease;
}
.ldt-phase-step.is-reached .ldt-phase-circle {
  background: var(--ldt-primario); color: #fff;
  border-color: var(--ldt-primario);
  box-shadow: 0 4px 16px rgba(17,34,101,.2);
}
.ldt-phase-step h4, .ldt-phase-step p {
  opacity: 0; transform: translateY(10px);
  transition: opacity .4s ease, transform .4s ease;
}
.ldt-phase-step.is-reached h4, .ldt-phase-step.is-reached p {
  opacity: 1; transform: translateY(0);
}
.ldt-phase-step h4 { font-size: 24px; font-weight: 500; color: var(--ldt-ink); margin-bottom: 6px; }
.ldt-phase-step p  { font-size: 16px; color: var(--ldt-ink-2); line-height: 1.55; font-weight: 300; }

/* ── ENTREGABLES ── */
.ldt-entregables-wrap {
  max-width: 1140px;
  margin: 0 auto;
}
.ldt-deliv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.ldt-deliv-card {
  background: var(--ldt-white); border: none;
  border-radius: var(--ldt-radius-lg); padding: 32px 28px;
  transition: transform .2s, box-shadow .2s;
}
.ldt-deliv-icon {
  width: 52px; height: 52px; background: var(--ldt-gris-jade);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
@keyframes ldt-icon-draw {
  0% { stroke-dashoffset: 100; }
  100% { stroke-dashoffset: 0; }
}
.ldt-deliv-icon svg {
  width: 26px; height: 26px; stroke: var(--ldt-jade); fill: none;
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 100; stroke-dashoffset: 100;
}
.ldt-deliv-card.is-drawn .ldt-deliv-icon svg {
  animation: ldt-icon-draw 1.5s ease forwards;
}
.ldt-deliv-card:nth-child(2).is-drawn .ldt-deliv-icon svg { animation-delay: .15s; }
.ldt-deliv-card:nth-child(3).is-drawn .ldt-deliv-icon svg { animation-delay: .3s; }
.ldt-deliv-card:nth-child(4).is-drawn .ldt-deliv-icon svg { animation-delay: .45s; }
.ldt-deliv-card:nth-child(5).is-drawn .ldt-deliv-icon svg { animation-delay: .6s; }
.ldt-deliv-card:nth-child(6).is-drawn .ldt-deliv-icon svg { animation-delay: .75s; }
.ldt-deliv-card h4 { font-size: 20px; font-weight: 600; color: var(--ldt-ink); margin-bottom: 10px; }
.ldt-deliv-card p  { font-size: 16px; color: var(--ldt-ink-2); line-height: 1.55; font-weight: 300; }

/* ── EQUIPO ── */
.ldt-team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; margin-top: 40px; max-width: 800px; margin-left: auto; margin-right: auto; }
.ldt-team-card {
  background: var(--ldt-gris-jade);
  border: none; border-radius: var(--ldt-radius-lg);
  display: flex; flex-direction: column; gap: 20px;
  padding: 28px;
}
.ldt-team-bio  { font-size: 18px; color: var(--ldt-ink); line-height: 1.5; font-weight: 500; font-style: normal; }
.ldt-team-author { display: flex; align-items: center; gap: 14px; }
.ldt-team-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.ldt-team-av-1 { background: var(--ldt-primario); }
.ldt-team-av-2 { background: var(--ldt-jade); }
.ldt-team-avatar--img { background: none; overflow: hidden; }
.ldt-team-avatar--img img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; }
.ldt-team-info { display: flex; flex-direction: column; }
.ldt-team-name { font-size: 16px; font-weight: 600; color: var(--ldt-ink); }
.ldt-team-role { font-size: 14px; color: var(--ldt-ink-2); font-weight: 400; }
.ldt-team-tags { display: none; }

/* ── CAPSULA ── */
.capsula {
  max-width: 1240px;
  margin: 0 auto;
  padding: 50px 50px;
  width: 100%;
  background: linear-gradient(135deg, var(--ldt-gris-jade), #f0f7ff, var(--ldt-gris-jade));
  border-radius: var(--ldt-radius-lg);
}

/* ── FAQ ── */
.ldt-faq-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: start;
}
.ldt-faq-header { }
.ldt-faq-header .ldt-eyebrow,
.ldt-faq-header .ldt-section-title,
.ldt-faq-header .ldt-section-lead { text-align: left; }
.ldt-faq .ldt-section-title { max-width: 390px; }
.ldt-faq .ldt-section-lead { max-width: 390px; margin: 0 auto 50px 0 !important; }
.ldt-faq-list { border: none; border-radius: 0; overflow: visible; background: transparent; }
.ldt-faq-item { border-bottom: 1px solid var(--ldt-gris-claro); padding: 20px 0; }
.ldt-faq-item:first-child { padding-top: 0; }
.ldt-faq-item:last-child { border-bottom: none; }
.ldt-faq-q {
  font-size: 18px; font-weight: 600; color: var(--ldt-ink);
  background: none; border: none; cursor: pointer;
  width: 100%; text-align: left; padding: 0;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--ldt-ff); gap: 12px;
}
.ldt-faq-arrow { color: var(--ldt-jade); font-size: 18px; flex-shrink: 0; }
.ldt-faq-a {
  font-size: 20px; color: var(--ldt-ink-2); line-height: 1.6; font-weight: 300;
  max-height: 0; overflow: hidden; transition: max-height .3s ease, margin .3s ease;
  margin-top: 0;
}
.ldt-faq-a.is-open { max-height: 300px; margin-top: 12px; }

/* ── CTA BAND ── */
.ldt-cta-band {
  background: transparent;
  padding: 0 0; text-align: center;
  max-width: 1060px; margin: 0 auto;
}
.ldt-cta-band h2 { font-size: 36px; font-weight: 600; color: var(--ldt-ink); letter-spacing: -1px; margin-bottom: 14px; line-height: 1; }
.ldt-cta-band p  { color: var(--ldt-ink-2); font-size: 17px; margin-bottom: 32px; margin-left: auto; margin-right: auto; max-width: 500px; }

/* ── FULL FORM ── */
.ldt-form-wrap {
  max-width: 900px; margin: 0 auto;
  background: var(--ldt-white);
  border: none;
  border-radius: var(--ldt-radius-lg); padding: 44px;
  box-shadow: var(--ldt-shadow-lg);
}
.ldt-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.ldt-form-full { grid-column: 1 / -1; }
.ldt-form-step { display: none; }
.ldt-form-step.is-active { display: block; }
.ldt-form-step-header {
  display: flex; align-items: center; gap: 14px; margin-bottom: 28px;
}
.ldt-form-step-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--ldt-primario); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 600; flex-shrink: 0;
}
.ldt-form-step-header h3 { font-size: 22px; font-weight: 600; color: var(--ldt-ink); margin: 0; }
.ldt-form-step-header { border-bottom: 1px solid var(--ldt-gris-claro); padding-bottom: 20px; }
.ldt-btn-next {
  width: 100%; background: var(--ldt-primario); color: #fff;
  font-size: 19px; font-weight: 500; font-family: var(--ldt-ff); padding: 14px;
  border-radius: var(--ldt-radius); border: none; cursor: pointer;
  margin-top: 20px; transition: opacity .2s;
}
.ldt-btn-next:hover { opacity: .9; }
.ldt-form-actions { display: flex; gap: 14px; margin-top: 20px; }
.ldt-btn-back {
  background: transparent; color: var(--ldt-ink-2);
  font-size: 16px; font-weight: 500; font-family: var(--ldt-ff); padding: 14px 28px;
  border-radius: var(--ldt-radius); border: 1px solid var(--ldt-gris-claro);
  cursor: pointer; transition: background .2s;
}
.ldt-btn-back:hover { background: var(--ldt-gris-jade); }
.ldt-form-actions .ldt-btn-submit-full { flex: 1; margin-top: 0; }
.ldt-field label { display: flex; font-size: 16px; font-weight: 300; color: var(--ldt-ink); margin-bottom: 7px; letter-spacing: .2px; }
.ldt-field input, .ldt-field select, .ldt-field textarea {
  width: 100%; padding: 12px;
  border: 1px solid var(--ldt-gris-claro);
  border-radius: 0;
  font-size: 15px; font-family: var(--ldt-ff); color: var(--ldt-ink);
  background: #ffffff; transition: border-color .2s, box-shadow .2s;
}
.ldt-field input:focus, .ldt-field select:focus, .ldt-field textarea:focus {
  outline: none; border-color: var(--ldt-secundario); background: #fff;
  box-shadow: 0 0 0 3px rgba(244,192,87,.2);
}
.ldt-field textarea { height: 100px; resize: vertical; }
.ldt-radio-group { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.ldt-radio-opt {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 16px; border: 1px solid var(--ldt-gris-claro);
  border-radius: 24px; font-size: 14px; color: var(--ldt-ink-2);
  cursor: pointer; background: var(--ldt-gris-claro); transition: all .2s;
}
.ldt-radio-opt input { margin: 0; width: 10px; }
.ldt-radio-opt:hover { border-color: var(--ldt-secundario); color: var(--ldt-ink); background: var(--ldt-gris-claro); }
.ldt-btn-submit-full {
  width: 100%; background: var(--ldt-primario); color: #fff;
  font-size: 16px; font-weight: 600; padding: 17px;
  border-radius: var(--ldt-radius); border: none; cursor: pointer;
  margin-top: 8px; transition: all .2s;
  letter-spacing: .2px;
}
.ldt-btn-submit-full:hover { opacity: .9; }
.ldt-form-trust { display: flex; justify-content: center; gap: 28px; margin-top: 18px; flex-wrap: wrap; }
.ldt-trust-item { font-size: 14px; color: var(--ldt-ink-2); display: flex; align-items: center; gap: 6px; }
.ldt-trust-dot { width: 7px; height: 7px; background: var(--ldt-secundario); border-radius: 50%; flex-shrink: 0; }

/* ── RECLAMO SECTIONS ── */
#ldt-reclamo-form, #ldt-reclamo-form * { text-align: left; }
#ldt-reclamo-form .ldt-btn-submit-full { text-align: center; }
.ldt-reclamo-section { margin-bottom: 40px; }
.ldt-reclamo-section:last-of-type { margin-bottom: 24px; }

/* ── RECLAMO PROGRESS ── */
.ldt-reclamo-progress { margin-top: 24px; }
.ldt-reclamo-step-indicator {
  display: flex; align-items: center; justify-content: center; gap: 0;
}
.ldt-reclamo-dot {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--ldt-gris-claro); color: var(--ldt-ink-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600; flex-shrink: 0;
  transition: background .3s, color .3s;
}
.ldt-reclamo-dot.is-active { background: var(--ldt-primario); color: #fff; }
.ldt-reclamo-line { width: 40px; height: 2px; background: var(--ldt-gris-claro); }

/* ── FOOTER ── */
/* WhatsApp flotante */
.ldt-whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  transition: transform .2s ease, box-shadow .2s ease;
  text-decoration: none;
}
.ldt-whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(0,0,0,.3);
}

.ldt-footer { font-family: var(--ldt-ff); }
.ldt-footer__inner { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
.ldt-footer__upper { padding: 64px 0; }
.ldt-footer__upper .ldt-footer__inner {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px;
}
.ldt-footer__brand { }
.ldt-footer__logo { height: 42px; width: auto; margin-bottom: 16px; }
.ldt-footer__brand p { font-size: 15px; color: var(--ldt-ink-2); line-height: 1.6; max-width: 280px; }
.ldt-footer__col h4 { font-size: 16px; font-weight: 600; color: var(--ldt-ink); margin-bottom: 16px; }
.ldt-footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.ldt-footer__col ul li a { font-size: 15px; color: var(--ldt-ink-2); text-decoration: none; transition: color .2s; }
.ldt-footer__col ul li a:hover { color: var(--ldt-jade); }
.ldt-footer__metodos { margin-top: 30px; }
.ldt-footer__metodos li { font-size: 15px; }
.ldt-footer__social { display: flex; gap: 10px; margin-top: 16px; }
.ldt-footer__social a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--ldt-gris-claro);
  display: flex; align-items: center; justify-content: center;
  color: var(--ldt-ink); transition: all .2s;
}
.ldt-footer__social a:hover { border-color: var(--ldt-jade); color: var(--ldt-jade); }
.ldt-footer__bottom {
  border-top: 1px solid var(--ldt-gris-claro); padding: 24px 0;
}
.ldt-footer__bottom .ldt-footer__inner {
  display: flex; justify-content: space-between; align-items: center;
}
.ldt-footer__bottom p { font-size: 14px; color: var(--ldt-ink-2); }
.ldt-footer__legal { display: flex; gap: 24px; }
.ldt-footer__legal a { font-size: 14px; color: var(--ldt-ink-2); text-decoration: none; transition: color .2s; }
.ldt-footer__legal a:hover { color: var(--ldt-jade); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .ldt-stats-row { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .ldt-mini-form__row { grid-template-columns: 1fr; }
  .ldt-pain-slider { width: 100%; }
}
@media (max-width: 768px) {
  .ldt-hero { padding: 64px 20px 56px; }
  .ldt-hero h1 { font-size: 36px; letter-spacing: -1px; }
  .ldt-hero__desc { }
  .ldt-hero__trust { gap: 16px; }
  .ldt-hero__trust span { font-size: 14px; }
  .ldt-section { padding: 56px 0; }
  .ldt-section-title { font-size: 28px; }
  .ldt-track-grid, .ldt-deliv-grid { grid-template-columns: 1fr; }
  .ldt-team-grid { grid-template-columns: 1fr; gap: 20px; }
  .ldt-phases-row { grid-template-columns: 1fr; gap: 24px; }
  .ldt-phases-row::before { display: none; }
  .ldt-stats-row { grid-template-columns: 1fr 1fr; gap: 16px; }
  .ldt-stat-box { text-align: center; border-left: none; padding: 10px 0; }
  .ldt-stat-n { font-size: 28px; }
  .ldt-stat-l { font-size: 14px; }
  .ldt-pain-row { }
  .ldt-pain-row__inner { grid-template-columns: 1fr; gap: 30px; }
  .ldt-hero__card { position: static; }
  .ldt-faq-layout { grid-template-columns: 1fr; gap: 30px; }
  .ldt-faq-header { position: static; text-align: center; display: flex; flex-direction: column; align-items: center; }
  .ldt-faq .ldt-section-title { max-width: none; }
  .ldt-faq .ldt-section-lead { max-width: none; }
  .ldt-form-grid { grid-template-columns: 1fr; }
  .ldt-cta-band { margin: 0 16px; padding: 40px 24px; }
  .capsula { padding: 30px 20px; margin-left: 0; margin-right: 0; width: 100%; }
  .ldt-mini-trust { gap: 0; }
  .ldt-section-title, .ldt-eyebrow { text-align: center !important; }
  .ldt-section-lead, .bajada { text-align: center !important; margin-left: auto !important; margin-right: auto !important; }
  .ldt-promise blockquote { font-size: 25px; }
  .ldt-promise { margin-top: 80px; }
  section { padding: 30px 20px !important; }
  .ldt-form-section .capsula { padding: 30px 15px; }
  .ldt-form-actions { flex-direction: column; }
  .ldt-form-actions .ldt-btn-back { width: 100%; }
  .ldt-form-trust { gap: 3px; }
  .ldt-form-wrap { padding: 28px 20px; }
  .ldt-footer__upper .ldt-footer__inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .ldt-footer__brand { display: flex; flex-direction: column; align-items: center; }
  .ldt-footer__brand p { max-width: 100%; }
  .ldt-footer__col { display: flex; flex-direction: column; align-items: center; }
  .ldt-footer__col ul { align-items: center; }
  .ldt-footer__social { justify-content: center; }
  .ldt-footer__bottom .ldt-footer__inner { flex-direction: column; gap: 16px; text-align: center; }
  .ldt-footer__legal { justify-content: center; }
}
