/* ============================================================
   LANDING PAGE — lp- prefix (modern redesign)
   ============================================================ */

/* ── Utilidades de sección ── */
.lp-section { padding: 6rem 0; }
.lp-section__label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #BB8683;
  margin-bottom: .75rem;
}
.lp-section__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 1rem;
}
.lp-section__title .lp-hl { color: #BB8683; }
.lp-section__subtitle {
  font-size: .97rem;
  color: #666;
  line-height: 1.75;
}

/* ── Botones ── */
.lp-btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .72rem 1.75rem;
  border-radius: 100px;
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .25s ease;
  border: 2px solid transparent;
}
.lp-btn--primary {
  background: linear-gradient(90deg, #BB8683, #a06a67);
  color: #fff;
  box-shadow: 0 4px 18px rgba(187,134,131,.38);
}
.lp-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(187,134,131,.5);
  color: #fff;
}
.lp-btn--outline {
  border-color: rgba(187,134,131,.5);
  color: rgba(255,255,255,.8);
}
.lp-btn--outline:hover {
  border-color: #BB8683;
  color: #BB8683;
  background: rgba(187,134,131,.08);
}
.lp-btn--white {
  background: #fff;
  color: #BB8683;
}
.lp-btn--white:hover {
  background: #f8efef;
  transform: translateY(-2px);
  color: #a06a67;
}

/* ============================================================
   HERO
   ============================================================ */
.lp-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #181010 0%, #2e1b1b 55%, #181010 100%);
  padding: 5rem 0 4rem;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

/* Shapes animadas */
.lp-hero__shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.lp-shape {
  position: absolute;
  border-radius: 50%;
}
.lp-shape--1 {
  width: 540px; height: 540px;
  top: -200px; left: -140px;
  background: radial-gradient(circle, rgba(187,134,131,.14) 0%, transparent 70%);
  animation: lp-float 9s ease-in-out infinite;
}
.lp-shape--2 {
  width: 360px; height: 360px;
  bottom: -100px; right: -80px;
  background: radial-gradient(circle, rgba(187,134,131,.10) 0%, transparent 70%);
  animation: lp-float 11s ease-in-out infinite reverse;
}
.lp-shape--3 {
  width: 200px; height: 200px;
  top: 42%; right: 46%;
  background: radial-gradient(circle, rgba(187,134,131,.07) 0%, transparent 70%);
  animation: lp-float 7s ease-in-out infinite 1.5s;
}
@keyframes lp-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-28px) scale(1.05); }
}

.lp-hero__inner { position: relative; z-index: 1; }
.lp-hero__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 3rem;
  align-items: center;
}

/* Gráfico de velas de fondo */
.lp-hero__chart {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.lp-trend-line {
  animation: lp-trend-pulse 4s ease-in-out infinite;
}
@keyframes lp-trend-pulse {
  0%, 100% { stroke-opacity: 0.25; }
  50%       { stroke-opacity: 0.55; }
}

.lp-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #BB8683;
  border: 1px solid rgba(187,134,131,.3);
  border-radius: 100px;
  padding: .35rem 1rem;
  margin-bottom: 1.5rem;
  background: rgba(187,134,131,.07);
}
.lp-hero__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1.25rem;
}
.lp-hero__title .lp-hl {
  background: linear-gradient(90deg, #BB8683 0%, #e8b4b0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lp-hero__sub {
  font-size: .93rem;
  color: rgba(255,255,255,.55);
  line-height: 1.75;
}
.lp-hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.lp-hero__video {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.55);
  border: 1px solid rgba(187,134,131,.18);
  position: relative;
}
.lp-hero__video::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(187,134,131,.3) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

/* ============================================================
   STATS
   ============================================================ */
.lp-stats {
  padding: 3.5rem 0;
  background: #1c1414;
  border-top: 1px solid rgba(187,134,131,.12);
  border-bottom: 1px solid rgba(187,134,131,.12);
}
.lp-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.lp-stats__item {
  text-align: center;
  position: relative;
}
.lp-stats__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 10%; bottom: 10%;
  width: 1px;
  background: rgba(187,134,131,.18);
}
.lp-stats__number {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  background: linear-gradient(90deg, #BB8683, #e8b4b0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: .4rem;
}
.lp-stats__suffix {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #BB8683;
  vertical-align: middle;
}
.lp-stats__label {
  font-size: .72rem;
  color: rgba(255,255,255,.45);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ============================================================
   ABOUT
   ============================================================ */
.lp-about {
  padding: 6rem 0;
  background: #faf7f6;
}
.lp-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}
.lp-about__img-wrap {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 56px rgba(0,0,0,.13);
}
.lp-about__img-wrap img {
  width: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4/3;
}
.lp-about__float-card {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: .85rem 1.2rem;
  box-shadow: 0 8px 28px rgba(0,0,0,.18);
  display: flex;
  align-items: center;
  gap: .75rem;
}
.lp-about__float-icon {
  width: 44px; height: 44px;
  border-radius: 11px;
  background: linear-gradient(135deg, #BB8683, #a06a67);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.lp-about__float-text strong {
  display: block;
  font-size: .88rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
}
.lp-about__float-text span {
  font-size: .7rem;
  color: #999;
}
.lp-about__text { max-width: 520px; }
.lp-about__text p {
  font-size: .95rem;
  color: #555;
  line-height: 1.85;
  margin-bottom: 1rem;
}
.lp-about__text p span {
  color: #BB8683;
  font-weight: 600;
}

/* ============================================================
   METHOD / FEATURES
   ============================================================ */
.lp-method {
  padding: 6rem 0;
  background: #fff;
}
.lp-method__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.lp-method__card {
  background: #faf7f6;
  border-radius: 20px;
  padding: 2.25rem 1.85rem;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}
.lp-method__card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #BB8683, #e8b4b0);
}
.lp-method__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(187,134,131,.18);
  background: #fff;
}
.lp-method__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(187,134,131,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.55rem;
  color: #BB8683;
  margin-bottom: 1.25rem;
  transition: background .3s, color .3s;
}
.lp-method__card:hover .lp-method__icon {
  background: linear-gradient(135deg, #BB8683, #a06a67);
  color: #fff;
}
.lp-method__card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: .55rem;
}
.lp-method__card p {
  font-size: .85rem;
  color: #777;
  line-height: 1.75;
  margin: 0;
}

/* ============================================================
   CURSOS A LA VENTA
   ============================================================ */
.lp-courses {
  padding: 6rem 0;
  background: #faf7f6;
}
.lp-courses__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.lp-course-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
}
.lp-course-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(0,0,0,.12);
}
.lp-course-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.lp-course-card__img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #BB8683 0%, #8B5C5A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.35);
  font-size: 3.5rem;
}
.lp-course-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.lp-course-card__mentor {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: #BB8683;
  margin-bottom: .5rem;
  display: flex;
  align-items: center;
  gap: .3rem;
}
.lp-course-card__title {
  font-size: 1.08rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: .55rem;
  line-height: 1.35;
}
.lp-course-card__desc {
  font-size: .84rem;
  color: #888;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 0;
}
.lp-course-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding-top: 1.2rem;
  margin-top: 1.2rem;
  border-top: 1px solid #f0e8e8;
}
.lp-course-card__price {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1;
}
.lp-course-card__price .lp-currency {
  font-size: .7rem;
  font-weight: 500;
  color: #999;
  vertical-align: super;
  margin-right: 1px;
}
.lp-course-buy {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .58rem 1.2rem;
  border-radius: 100px;
  background: linear-gradient(90deg, #BB8683, #a06a67);
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .25s ease;
  box-shadow: 0 4px 14px rgba(187,134,131,.35);
  white-space: nowrap;
}
.lp-course-buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(187,134,131,.5);
  color: #fff;
}
.lp-courses__empty {
  text-align: center;
  padding: 4rem 2rem;
  color: #aaa;
}

/* ============================================================
   TESTIMONIOS
   ============================================================ */
.lp-testimonials {
  padding: 6rem 0;
  background: #1c1414;
}
.lp-test-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(187,134,131,.14);
  border-radius: 20px;
  padding: 2rem 1.75rem;
  height: 100%;
}
.lp-test-stars {
  display: flex;
  gap: .18rem;
  color: #BB8683;
  font-size: .95rem;
  margin-bottom: 1rem;
}
.lp-test-quote {
  font-family: Georgia, serif;
  font-size: 2.5rem;
  color: rgba(187,134,131,.35);
  line-height: 1;
  margin-bottom: .25rem;
}
.lp-test-text {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.lp-test-author {
  font-size: .78rem;
  font-weight: 700;
  color: #BB8683;
  letter-spacing: .06em;
  text-transform: uppercase;
}
/* Pagination dots override */
.lp-testimonials .swiper-pagination-bullet {
  background: rgba(187,134,131,.35);
  opacity: 1;
}
.lp-testimonials .swiper-pagination-bullet-active {
  background: #BB8683;
}
.lp-testimonials .swiper { padding-bottom: 2.75rem !important; }

/* ============================================================
   CTA FINAL
   ============================================================ */
.lp-cta {
  padding: 5.5rem 0;
  background: linear-gradient(135deg, #BB8683 0%, #8B5C5A 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.lp-cta::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  top: -300px; right: -150px;
  pointer-events: none;
}
.lp-cta::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  bottom: -150px; left: -80px;
  pointer-events: none;
}
.lp-cta__inner { position: relative; z-index: 1; }
.lp-cta__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: .85rem;
  line-height: 1.2;
}
.lp-cta__sub {
  font-size: .97rem;
  color: rgba(255,255,255,.78);
  margin-bottom: 2.25rem;
}
.lp-btn--wsp {
  border-color: rgba(255,255,255,.5);
  color: #fff;
}
.lp-btn--wsp:hover {
  border-color: #fff;
  background: rgba(255,255,255,.12);
  color: #fff;
}

/* ============================================================
   INTERIOR PAGES — hero banner + componentes reutilizables
   ============================================================ */

/* ── Hero de páginas interiores ── */
.lp-page-hero {
  background: linear-gradient(145deg, #181010 0%, #2e1b1b 55%, #181010 100%);
  padding: 4.5rem 0 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.lp-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 120%, rgba(187,134,131,.18) 0%, transparent 70%);
  pointer-events: none;
}
.lp-page-hero__inner { position: relative; z-index: 1; }
.lp-page-hero__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: .75rem;
  line-height: 1.15;
}
.lp-page-hero__title .lp-hl {
  background: linear-gradient(90deg, #BB8683, #e8b4b0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lp-page-hero__sub {
  font-size: 1rem;
  color: rgba(255,255,255,.55);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Layout 2 columnas ── */
.lp-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.lp-2col--text { max-width: 520px; }
.lp-2col--text p {
  font-size: .95rem;
  color: #555;
  line-height: 1.85;
  margin-bottom: 1rem;
}
.lp-2col--text p span { color: #BB8683; font-weight: 600; }
.lp-2col--text p:last-child { margin-bottom: 0; }
.lp-2col__img {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,.12);
}
.lp-2col__img img { width: 100%; display: block; object-fit: cover; }

/* ── Tarjetas de nivel (mentorías) ── */
.lp-level-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.lp-level-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem 1.75rem;
  border-top: 3px solid #BB8683;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
  transition: transform .3s, box-shadow .3s;
  position: relative;
  text-align: center;
}
.lp-level-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(187,134,131,.18);
}
.lp-level-card__num {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: rgba(187,134,131,.15);
  line-height: 1;
  margin-bottom: .5rem;
}
.lp-level-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: .6rem;
}
.lp-level-card p {
  font-size: .85rem;
  color: #777;
  line-height: 1.75;
  margin: 0;
}

/* ── Tarjeta de precio ── */
.lp-price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
  align-items: start;
}
.lp-price-card {
  background: #1c1414;
  border-radius: 24px;
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid rgba(187,134,131,.2);
}
.lp-price-card__icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #BB8683, #a06a67);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.8rem;
  color: #fff;
}
.lp-price-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .25rem;
}
.lp-price-card__tag {
  font-size: .78rem;
  color: #BB8683;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1.5rem;
}
.lp-price-card__features {
  list-style: none;
  padding: 0; margin: 0 0 2rem;
  text-align: left;
}
.lp-price-card__features li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .88rem;
  color: rgba(255,255,255,.7);
  padding: .55rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.lp-price-card__features li:last-child { border-bottom: none; }
.lp-price-card__features iconify-icon { color: #BB8683; font-size: 1rem; flex-shrink: 0; }
.lp-oneone-card {
  background: #faf7f6;
  border-radius: 24px;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(187,134,131,.15);
}
.lp-oneone-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: .75rem;
}
.lp-oneone-card p {
  font-size: .88rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.lp-oneone-card span { color: #BB8683; font-weight: 600; }

/* ── Métodos de pago ── */
.lp-payment { padding: 4rem 0; background: #1c1414; }
.lp-payment__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}
.lp-payment__logos img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .55;
  transition: opacity .25s;
}
.lp-payment__logos img:hover { opacity: .9; }

/* ── Quote destacado ── */
.lp-quote-section { padding: 5rem 0; background: #faf7f6; }
.lp-quote-card {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  text-align: center;
  position: relative;
}
.lp-quote-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 8rem;
  color: rgba(187,134,131,.1);
  line-height: 1;
  position: absolute;
  top: 1rem; left: 2rem;
  pointer-events: none;
}
.lp-quote-card__text {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.lp-quote-card__author {
  font-size: .82rem;
  font-weight: 700;
  color: #BB8683;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ── Stats (fondo oscuro) ── */
.lp-stats-section { padding: 5rem 0; background: #1c1414; }
.lp-stats-section .lp-section__title { color: #fff; }

/* ── Pasos (Steps) ── */
.lp-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.lp-step-card {
  background: #fff;
  border-radius: 20px;
  padding: 2.25rem 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
  transition: transform .3s, box-shadow .3s;
  position: relative;
}
.lp-step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(187,134,131,.16);
}
.lp-step-card__num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #BB8683, #a06a67);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 6px 18px rgba(187,134,131,.38);
}
.lp-step-card__img { width: 160px; max-width: 100%; margin: 1.25rem auto .5rem; display: block; opacity: .85; }
.lp-step-card p { font-size: .88rem; color: #666; line-height: 1.7; margin: 0; }

/* ── Videos gratuitos ── */
.lp-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.lp-video-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
.lp-video-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(187,134,131,.14);
  border-radius: 20px;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.lp-video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.3);
}
.lp-video-card__embed { aspect-ratio: 16/9; }
.lp-video-card__embed iframe { width: 100%; height: 100%; display: block; border: none; }
.lp-video-card__label {
  padding: 1rem 1.25rem;
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  line-height: 1.5;
}

/* ── Libros ── */
.lp-books-section { padding: 6rem 0; background: #faf7f6; }
.lp-book-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.lp-book-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  transition: transform .3s, box-shadow .3s;
  display: block;
}
.lp-book-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 16px 36px rgba(0,0,0,.2);
}
.lp-book-card img { width: 100%; display: block; }

/* ── Forex / Índices info section ── */
.lp-info-section { padding: 6rem 0; }
.lp-info-section--alt { background: #faf7f6; }
.lp-info-section--white { background: #fff; }
.lp-info-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #BB8683;
  margin-bottom: .75rem;
}
.lp-info-content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.lp-info-content p {
  font-size: .92rem;
  color: #666;
  line-height: 1.85;
  margin-bottom: .85rem;
}
.lp-info-content p:last-child { margin-bottom: 0; }

/* ── Login page — tarjeta centrada sobre fondo oscuro ── */
.lp-login-page {
  min-height: calc(100vh - 80px);
  background: linear-gradient(145deg, #181010 0%, #2e1b1b 55%, #181010 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 2.5rem 1rem;
}
.lp-login-page__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Tarjeta central */
.lp-login-card {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 28px;
  padding: 3.25rem 3rem 2.5rem;
  width: 100%;
  max-width: 520px;
  box-shadow: 0 24px 64px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.06);
}
.lp-login-card__head {
  text-align: center;
  margin-bottom: 1.75rem;
}
.lp-login-card__logo {
  height: 52px;
  width: auto;
  margin: 0 auto 1.25rem;
  display: block;
}
.lp-login-card__title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: .3rem;
  line-height: 1.2;
}
.lp-login-card__sub {
  font-size: .85rem;
  color: #aaa;
  margin: 0;
  line-height: 1.5;
}
.lp-login-card__footer {
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid #f5eeee;
}
.lp-login-card__footer p {
  font-size: .8rem;
  color: #bbb;
  margin-bottom: .4rem;
}
.lp-login-card__footer a {
  color: #BB8683;
  font-weight: 600;
  text-decoration: none;
  font-size: .8rem;
}
.lp-login-card__footer a:hover { text-decoration: underline; }
.lp-login-card__back {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .78rem !important;
  color: #ccc !important;
  font-weight: 400 !important;
  margin-top: .3rem;
}
.lp-login-card__back:hover { color: #BB8683 !important; }

/* Stats flotantes debajo de la tarjeta */
.lp-login-stats {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 2.5rem;
  z-index: 2;
}
.lp-login-stat {
  text-align: center;
}
.lp-login-stat strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: #BB8683;
  line-height: 1;
  margin-bottom: .2rem;
}
.lp-login-stat span {
  font-size: .65rem;
  color: rgba(255,255,255,.35);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* Mantener clases antiguas por compatibilidad con iniciarSesion.html */
.lp-login__pills {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-bottom: 2.5rem;
}
.lp-login__pill {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  border: 1px solid rgba(187,134,131,.22);
  border-radius: 100px;
  padding: .3rem .85rem;
  background: rgba(187,134,131,.07);
}

/* Form fields */
.lp-form-group { margin-bottom: 1.25rem; }
.lp-form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: #555;
  margin-bottom: .5rem;
}
.lp-form-group--icon { position: relative; }
.lp-form-group--icon .lp-fi {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #BB8683;
  font-size: 1.2rem;
  width: 1.2rem;
  height: 1.2rem;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.lp-form-group--icon input { padding-left: 3.25rem !important; }
.lp-form-group--pass { position: relative; }
.lp-form-group--pass input { padding-right: 3.25rem !important; }
.lp-form-toggle {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #bbb;
  cursor: pointer;
  font-size: 1.2rem;
  width: 1.2rem;
  height: 1.2rem;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: color .2s;
}
.lp-form-toggle:hover { color: #BB8683; }
.lp-form-group input {
  width: 100%;
  padding: .92rem 1.1rem;
  border: 1.5px solid #ece4e4;
  border-radius: 12px;
  font-size: .95rem;
  color: #333;
  background: #faf7f6;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
  position: relative;
}
.lp-form-group input:focus {
  border-color: #BB8683;
  box-shadow: 0 0 0 3px rgba(187,134,131,.15);
  background: #fff;
}
.lp-form-check {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: #777;
  margin-bottom: 1.5rem;
  cursor: pointer;
  user-select: none;
}
.lp-form-check input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: #BB8683;
  cursor: pointer;
  flex-shrink: 0;
}
.lp-form-error {
  background: #fff5f5;
  border: 1px solid #ffcdd2;
  border-radius: 10px;
  padding: .7rem 1rem;
  font-size: .82rem;
  color: #e53935;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.lp-login__submit {
  width: 100%;
  padding: .88rem;
  background: linear-gradient(90deg, #BB8683, #a06a67);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: .92rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity .25s, transform .2s, box-shadow .25s;
  box-shadow: 0 4px 18px rgba(187,134,131,.38);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: 'Poppins', sans-serif;
}
.lp-login__submit:hover {
  opacity: .92;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(187,134,131,.48);
}
.lp-login__footer {
  text-align: center;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid #f5eeee;
}
.lp-login__footer p {
  font-size: .8rem;
  color: #bbb;
  margin-bottom: .4rem;
}
.lp-login__footer a {
  color: #BB8683;
  font-weight: 600;
  text-decoration: none;
  font-size: .8rem;
}
.lp-login__footer a:hover { text-decoration: underline; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .lp-method__grid { grid-template-columns: repeat(2, 1fr); }
  .lp-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .lp-stats__item:nth-child(2)::after { display: none; }
  .lp-level-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-price-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .lp-steps-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-book-grid { grid-template-columns: repeat(3, 1fr); }
  .lp-login-stats { display: none; }
  .lp-login-card { padding: 2rem 1.5rem 1.75rem; }
}

@media (max-width: 767px) {
  .lp-hero { padding: 3.5rem 0 3rem; min-height: auto; }
  .lp-hero__grid { grid-template-columns: 1fr; gap: 2rem; }
  .lp-hero__content { order: 2; }
  .lp-hero__video { order: 1; }
  .lp-about { padding: 4rem 0; }
  .lp-about__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .lp-method__grid { grid-template-columns: 1fr; }
  .lp-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .lp-stats__item::after { display: none !important; }
  .lp-section { padding: 4rem 0; }
  .lp-method, .lp-courses, .lp-testimonials { padding: 4rem 0; }
  .lp-cta { padding: 4rem 0; }
  .lp-2col { grid-template-columns: 1fr; gap: 2rem; }
  .lp-steps-grid { grid-template-columns: 1fr; }
  .lp-video-grid,
  .lp-video-grid--2 { grid-template-columns: 1fr; }
  .lp-book-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-info-section { padding: 4rem 0; }
  .lp-books-section { padding: 4rem 0; }
}

@media (max-width: 479px) {
  .lp-hero__cta { flex-direction: column; }
  .lp-btn { width: 100%; justify-content: center; }
  .lp-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .lp-book-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-payment__logos img { height: 30px; }
}
