/**
 * HIXCA Landing â€” estructura y diseÃ±o estilo Yogastic
 * Paleta: dorado #D8B667 (predominante) Â· taupe #A89275 Â· berenjena #3C2A3B
 */

/* ========== TIPOGRAFÃA DE TÃTULOS: COCOMAT PRO ==========
 * Coloca los archivos de la fuente en:  src/fonts/
 * Nombres esperados (ajusta si los tuyos difieren):
 *   CocomatPro-Light.woff2 / .ttf
 *   CocomatPro-Regular.woff2 / .ttf
 *   CocomatPro-Bold.woff2 / .ttf
 * Mientras no existan, se usa el fallback (Poppins) automÃ¡ticamente.
 */
@font-face {
  font-family: 'Cocomat Pro';
  src: url('../fonts/CocomatPro-Light.woff2') format('woff2'),
       url('../fonts/CocomatPro-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cocomat Pro';
  src: url('../fonts/CocomatPro-Regular.woff2') format('woff2'),
       url('../fonts/CocomatPro-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cocomat Pro';
  src: url('../fonts/CocomatPro-Bold.woff2') format('woff2'),
       url('../fonts/CocomatPro-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ld-gold: #D8B667;
  --ld-gold-dark: #C29C45;
  --ld-gold-light: #F4E7C7;
  --ld-taupe: #A89275;
  --ld-dark: #3C2A3B;
  --ld-dark-soft: #4E3A4D;
  --ld-cream: #FBF5E9;
  --ld-cream-alt: #F6ECD8;
  --ld-surface: #ffffff;
  --ld-text: #3C2A3B;
  --ld-muted: #7d7266;
  --ld-border: #EADFC7;
  --ld-radius: 14px;
  --ld-radius-lg: 26px;
  --ld-shadow: 0 10px 30px rgba(60, 42, 59, 0.08);
  --ld-shadow-lg: 0 24px 60px rgba(60, 42, 59, 0.14);
  --ld-font: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  --ld-display: 'Cocomat Pro', 'Poppins', 'Segoe UI', sans-serif;
  --ld-header-h: 84px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.landing-page {
  margin: 0;
  font-family: var(--ld-font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ld-text);
  background: var(--ld-cream);
  -webkit-font-smoothing: antialiased;
}

.landing-page img { max-width: 100%; display: block; }
.landing-page a { text-decoration: none; color: inherit; }

.ld-container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.ld-section-label {
  display: inline-block;
  font-family: var(--ld-display);
  font-size: 1.05rem;
  font-weight: 600;
  font-style: italic;
  color: var(--ld-gold-dark);
  margin-bottom: 0.6rem;
}

.ld-section-title {
  font-family: var(--ld-display);
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ld-dark);
  margin: 0 0 1.1rem;
}

.ld-section-desc {
  color: var(--ld-muted);
  max-width: 660px;
  margin: 0 auto 3rem;
}

/* ========== BUTTONS ========== */

.ld-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.7rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
}

.ld-btn--lg { padding: 1rem 2.2rem; font-size: 1rem; }

.ld-btn:hover { transform: translateY(-2px); }

.ld-btn--primary {
  background: var(--ld-dark);
  color: #fff;
  box-shadow: 0 10px 24px rgba(60, 42, 59, 0.28);
}

.ld-btn--primary:hover { background: var(--ld-dark-soft); }

.landing-page a.ld-btn--primary,
.landing-page button.ld-btn--primary {
  color: #fff;
}

.landing-page a.ld-btn--primary:hover,
.landing-page button.ld-btn--primary:hover {
  color: #fff;
}

.landing-page a.ld-specialty-card__btn,
.landing-page a.ld-specialty-card__btn:hover {
  color: #fff;
}

.ld-btn--light {
  background: var(--ld-gold);
  color: var(--ld-dark);
  box-shadow: 0 10px 24px rgba(216, 182, 103, 0.4);
}

.ld-btn--light:hover { background: var(--ld-gold-light); }

.ld-btn--outline {
  background: transparent;
  color: var(--ld-dark);
  border: 2px solid var(--ld-gold);
}

.ld-btn--outline:hover {
  background: var(--ld-gold);
  color: var(--ld-dark);
}

.ld-btn--ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.55);
}

.ld-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

/* ========== HEADER ========== */

.ld-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--ld-header-h);
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s, height 0.3s;
}

.ld-header.is-scrolled {
  background: rgba(251, 245, 233, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 32px rgba(60, 42, 59, 0.1);
  height: 72px;
  border-bottom: 1px solid rgba(216, 182, 103, 0.2);
}

.ld-header:not(.is-scrolled) .ld-nav > a,
.ld-header:not(.is-scrolled) .ld-nav__drop > button {
  color: #fff;
}

.ld-header:not(.is-scrolled) .ld-nav__drop > button:hover,
.ld-header:not(.is-scrolled) .ld-nav > a:hover {
  color: var(--ld-gold-light);
}

.ld-header:not(.is-scrolled) .ld-btn--primary {
  background: var(--ld-gold);
  color: var(--ld-dark);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.ld-header:not(.is-scrolled) a.ld-btn--primary,
.ld-header:not(.is-scrolled) a.ld-btn--primary:hover {
  color: var(--ld-dark);
}

.ld-header:not(.is-scrolled) .ld-btn--primary:hover {
  background: var(--ld-gold-light);
}

.ld-header:not(.is-scrolled) .ld-btn--ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.ld-header:not(.is-scrolled) .ld-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.ld-header:not(.is-scrolled) .ld-menu-toggle {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.ld-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.ld-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--ld-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--ld-dark);
}

.ld-logo__mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ld-gold);
  color: var(--ld-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.ld-logo__img {
  height: 52px;
  width: auto;
  display: block;
}

.ld-logo__img--footer {
  height: 64px;
}

.ld-hero__brand {
  height: 88px;
  width: auto;
  display: block;
  margin: 0 0 1.25rem;
}

/* ========== HERO ========== */

.ld-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  padding: calc(var(--ld-header-h) + 2rem) clamp(1.25rem, 4vw, 2.5rem) 5rem;
}

.ld-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ld-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.ld-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 5, 12, 0.55) 0%, rgba(60, 42, 59, 0.5) 45%, rgba(8, 5, 12, 0.65) 100%),
    linear-gradient(90deg, rgba(8, 5, 12, 0.7) 0%, transparent 55%);
  pointer-events: none;
}

.ld-hero__inner {
  position: relative;
  z-index: 2;
}

.ld-hero__copy {
  max-width: 640px;
  padding-inline: 0.15rem;
}

.ld-hero__tag {
  display: inline-block;
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ld-gold);
}

.ld-hero h1 {
  font-family: var(--ld-display);
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
  padding-inline: 0.05em;
  color: #fff;
}

.ld-hero h1 span {
  color: var(--ld-gold-light);
}

.ld-hero__desc {
  margin: 0 0 2rem;
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  max-width: 520px;
}

.ld-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.ld-btn--gold {
  background: var(--ld-gold);
  color: var(--ld-dark) !important;
  border: none;
  font-weight: 600;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.ld-btn--gold:hover {
  background: var(--ld-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.ld-btn--gold i {
  transition: transform 0.2s ease;
}

.ld-btn--gold:hover i {
  transform: translateX(3px);
}

.ld-btn--glass {
  background: rgba(255, 255, 255, 0.1);
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-weight: 500;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.ld-btn--glass:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.ld-hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.25s ease;
  animation: ldScrollBounce 2.5s ease-in-out infinite;
}

.ld-hero__scroll:hover {
  color: rgba(255, 255, 255, 0.85);
}

.ld-hero__scroll i {
  font-size: 1.15rem;
}

.ld-hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 72px;
  background: var(--ld-cream);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  z-index: 1;
  pointer-events: none;
}

@keyframes ldScrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

.ld-hero .ld-section-label { color: var(--ld-gold); }

.ld-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.ld-nav > a,
.ld-nav__drop > button {
  padding: 0.5rem 0.9rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ld-dark);
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  font-family: inherit;
  transition: color 0.2s;
}

.ld-nav > a:hover,
.ld-nav__drop > button:hover,
.ld-nav__drop.is-open > button { color: var(--ld-gold-dark); }

.ld-nav__drop { position: relative; }

.ld-nav__drop button i { font-size: 0.85rem; }

.ld-nav__menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 190px;
  background: var(--ld-surface);
  border-radius: var(--ld-radius);
  box-shadow: var(--ld-shadow-lg);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
}

.ld-nav__drop.is-open .ld-nav__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.ld-nav__menu a {
  display: block;
  padding: 0.55rem 0.85rem;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--ld-muted);
}

.ld-nav__menu a:hover { background: var(--ld-cream); color: var(--ld-gold-dark); }

.ld-header__actions { display: flex; align-items: center; gap: 0.75rem; }

.ld-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: none;
  background: var(--ld-gold);
  color: var(--ld-dark);
  border-radius: 12px;
  font-size: 1.4rem;
  cursor: pointer;
}

/* ========== SECTIONS ========== */

.ld-section {
  padding: 5.5rem 0;
  position: relative;
  isolation: isolate;
}

.ld-section:not(.ld-hero):not(#inicio):not(.ld-section--nebula)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(88%, 680px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 182, 103, 0.4), transparent);
  pointer-events: none;
}

#nosotros::before {
  display: none;
}

.ld-section:not(.ld-section--purple)::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -60px;
  width: min(420px, 55vw);
  height: min(420px, 55vw);
  background: radial-gradient(circle, rgba(216, 182, 103, 0.1) 0%, transparent 68%);
  pointer-events: none;
  z-index: -1;
}

.ld-section--alt {
  background: linear-gradient(180deg, var(--ld-cream-alt) 0%, #f9f0de 50%, var(--ld-cream-alt) 100%);
}

.ld-section--alt::after {
  left: -60px;
  right: auto;
  background: radial-gradient(circle, rgba(60, 42, 59, 0.06) 0%, transparent 68%);
}

.ld-section--purple {
  background: linear-gradient(145deg, #2f2130 0%, var(--ld-dark) 38%, var(--ld-dark-soft) 100%);
  color: #fff;
  overflow: hidden;
}

.ld-section--nebula.ld-section--purple {
  background: #140c18;
}

.ld-section--nebula::before,
.ld-section--nebula::after {
  display: none;
}

.ld-section--nebula .ld-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #140c18;
  pointer-events: none;
}

.ld-section--nebula .ld-section__bg img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 115%;
  height: 115%;
  min-width: 100%;
  min-height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transform: translate(-50%, -50%) scale(1.05);
  opacity: 0.48;
  filter: blur(8px) saturate(1.05) brightness(0.92);
}

.ld-section--nebula .ld-section__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(196, 138, 240, 0.88) 0%,
    rgba(168, 102, 220, 0.84) 18%,
    rgba(138, 79, 192, 0.8) 38%,
    rgba(107, 58, 150, 0.82) 58%,
    rgba(78, 45, 92, 0.86) 78%,
    rgba(60, 42, 59, 0.9) 90%,
    rgba(20, 12, 24, 0.94) 100%
  );
  pointer-events: none;
}

.ld-section--purple::before {
  background: linear-gradient(90deg, transparent, rgba(216, 182, 103, 0.25), transparent);
}

.ld-section--purple::after {
  content: '';
  position: absolute;
  width: min(520px, 70vw);
  height: min(520px, 70vw);
  top: -25%;
  right: -12%;
  background: radial-gradient(circle, rgba(216, 182, 103, 0.14) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.ld-section--purple > .ld-container {
  position: relative;
  z-index: 1;
}

.ld-section--nebula.ld-section--purple > .ld-container {
  z-index: 2;
}

.ld-section--purple .ld-section-label { color: var(--ld-gold); }

.ld-section--purple .ld-section-title { color: #fff; }

.ld-section--purple .ld-section-desc { color: rgba(255, 255, 255, 0.78); }

.ld-section--center { text-align: center; }

.ld-section--center .ld-section-desc { margin-left: auto; margin-right: auto; }

/* ========== SERVICES ========== */

.ld-services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.ld-service-card {
  background: var(--ld-surface);
  border-radius: var(--ld-radius-lg);
  padding: 2.5rem 1.5rem;
  text-align: center;
  box-shadow: var(--ld-shadow);
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
}

.ld-service-card:hover,
.ld-service-card--featured {
  transform: translateY(-8px);
  background: var(--ld-dark);
  box-shadow: var(--ld-shadow-lg);
}

.ld-service-card__icon {
  width: 84px;
  height: 84px;
  margin: 0 auto 1.4rem;
  border-radius: 50%;
  background: var(--ld-gold-light);
  color: var(--ld-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: background 0.25s, color 0.25s;
}

.ld-service-card:hover .ld-service-card__icon,
.ld-service-card--featured .ld-service-card__icon {
  background: var(--ld-gold);
  color: var(--ld-dark);
}

.ld-service-card h3 {
  font-size: 1.2rem;
  margin: 0 0 0.7rem;
  color: var(--ld-dark);
  transition: color 0.25s;
}

.ld-service-card p {
  margin: 0;
  font-size: 0.93rem;
  color: var(--ld-muted);
  transition: color 0.25s;
}

.ld-service-card:hover h3,
.ld-service-card--featured h3 { color: #fff; }

.ld-service-card:hover p,
.ld-service-card--featured p { color: rgba(255, 255, 255, 0.8); }

/* ========== ABOUT ========== */

.ld-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.ld-about__media { position: relative; }

.ld-about__shape {
  position: absolute;
  inset: -18px -18px auto auto;
  width: 70%;
  height: 100%;
  background: var(--ld-gold);
  border-radius: var(--ld-radius-lg);
  z-index: 1;
}

.ld-about__img {
  position: relative;
  z-index: 2;
  border-radius: var(--ld-radius-lg);
  overflow: hidden;
  box-shadow: var(--ld-shadow-lg);
}

.ld-about__img img {
  width: 100%;
  aspect-ratio: 1/0.9;
  object-fit: cover;
  display: block;
}

.ld-about__img--video {
  background: #1a1020;
}

.ld-about__video {
  width: 100%;
  aspect-ratio: 1/0.9;
  object-fit: cover;
  object-position: center;
  display: block;
  vertical-align: top;
}

.ld-about__img--full {
  background: linear-gradient(165deg, #1a1020 0%, #0c0710 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}

.ld-about__img--full img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: clamp(420px, 55vh, 580px);
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
}

.ld-about__lead {
  color: var(--ld-muted);
  margin-bottom: 1.25rem;
  line-height: 1.65;
  text-align: justify;
  text-justify: inter-word;
  text-align-last: left;
  hyphens: auto;
}

.ld-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ld-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.4rem 0;
  color: var(--ld-text);
  font-weight: 500;
}

.ld-check-list i {
  color: var(--ld-gold-dark);
  font-size: 1.25rem;
  line-height: 1.5;
}

.ld-about__sub {
  font-family: var(--ld-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ld-dark);
  margin: 0 0 2rem;
  line-height: 1.5;
}

/* ========== SPECIALTIES (estilo tarjeta con imagen hoja) ========== */

.ld-specialties__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem 1.75rem;
  text-align: left;
}

.ld-specialty-card {
  display: flex;
  flex-direction: column;
  background: transparent;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.ld-specialty-card:hover {
  transform: translateY(-10px);
}

.ld-specialty-card__img {
  --leaf-radius: clamp(52px, 8vw, 78px);
  border-radius: var(--leaf-radius) 0 var(--leaf-radius) 0;
  overflow: hidden;
  margin-bottom: 1.35rem;
  box-shadow: 0 14px 36px rgba(60, 42, 59, 0.12);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.ld-specialty-card:hover .ld-specialty-card__img {
  box-shadow:
    0 22px 50px rgba(60, 42, 59, 0.18),
    0 0 0 1px rgba(216, 182, 103, 0.35),
    0 0 32px rgba(216, 182, 103, 0.15);
}

.ld-specialty-card__img img {
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.ld-specialty-card:hover .ld-specialty-card__img img {
  transform: scale(1.04);
}

.ld-specialty-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}

.ld-specialty-card h4 {
  font-family: var(--ld-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ld-dark);
  margin: 0 0 0.65rem;
  line-height: 1.25;
}

.ld-specialty-card p {
  margin: 0 0 1.35rem;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--ld-muted);
  flex: 1;
}

a.ld-specialty-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.62rem 1.4rem;
  border-radius: 999px;
  background: var(--ld-dark);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: auto;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(60, 42, 59, 0.28);
}

a.ld-specialty-card__btn:hover {
  background: var(--ld-dark-soft);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(60, 42, 59, 0.32);
}

/* ========== OFFER (SERVICIOS) ========== */

.ld-offer__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.35rem;
  text-align: left;
  align-items: stretch;
}

.ld-offer-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 100%;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 22px;
  padding: 1.65rem 1.55rem 1.5rem;
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}

.ld-offer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ld-gold), var(--ld-gold-light), var(--ld-gold));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ld-offer-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.22),
    0 0 32px rgba(216, 182, 103, 0.1);
}

.ld-offer-card:hover::before {
  opacity: 1;
}

.ld-offer-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--ld-gold) 0%, var(--ld-gold-dark) 100%);
  color: var(--ld-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 4px 12px rgba(216, 182, 103, 0.32);
  margin-bottom: 1rem;
}

.ld-offer-card h3 {
  font-family: var(--ld-display);
  font-size: 1.18rem;
  font-weight: 700;
  margin: 0 0 0.55rem;
  color: var(--ld-dark);
  line-height: 1.25;
}

.ld-offer-card__desc {
  margin: 0 0 1rem;
  color: var(--ld-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.ld-offer-card__points {
  list-style: none;
  padding: 0;
  margin: auto 0 0;
  width: 100%;
  display: grid;
  gap: 0.45rem;
  border-top: 1px solid rgba(234, 223, 199, 0.9);
  padding-top: 1rem;
}

.ld-offer-card__points li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--ld-dark-soft);
  line-height: 1.35;
}

.ld-offer-card__points i {
  flex-shrink: 0;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background: rgba(216, 182, 103, 0.22);
  color: var(--ld-gold-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
}

/* ========== STEPS (Â¿CÃ“MO FUNCIONA?) ========== */

.ld-steps__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  counter-reset: step;
}

.ld-step {
  background: var(--ld-surface);
  border-radius: var(--ld-radius-lg);
  padding: 2.5rem 1.5rem 2rem;
  box-shadow: var(--ld-shadow);
  position: relative;
  transition: transform 0.25s;
}

.ld-step:hover { transform: translateY(-6px); }

.ld-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--ld-gold);
  color: var(--ld-dark);
  font-family: var(--ld-display);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 1.1rem;
}

.ld-step h4 { margin: 0 0 0.5rem; font-size: 1.15rem; color: var(--ld-dark); }
.ld-step p { margin: 0; font-size: 0.92rem; color: var(--ld-muted); }

/* ========== FEATURES (Â¿POR QUÃ‰ ELEGIR?) ========== */

.ld-features__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.ld-feature {
  background: var(--ld-surface);
  border-radius: var(--ld-radius-lg);
  padding: 2rem 1.25rem;
  box-shadow: var(--ld-shadow);
  transition: transform 0.25s;
}

.ld-feature:hover { transform: translateY(-6px); }

.ld-feature__icon {
  width: 66px;
  height: 66px;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  background: var(--ld-gold-light);
  color: var(--ld-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
}

.ld-feature h4 { margin: 0 0 0.5rem; font-size: 1.02rem; color: var(--ld-dark); }
.ld-feature p { margin: 0; font-size: 0.88rem; color: var(--ld-muted); }

/* ========== CHIPS (PARA TERAPEUTAS) ========== */

.ld-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.ld-chips span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--ld-surface);
  color: var(--ld-dark);
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: var(--ld-shadow);
}

.ld-chips span i { color: var(--ld-gold-dark); }

/* ========== FAQ ========== */

.ld-faq__list {
  max-width: 780px;
  margin: 0 auto;
  text-align: left;
}

.ld-faq__item {
  background: var(--ld-surface);
  border-radius: var(--ld-radius);
  margin-bottom: 0.85rem;
  box-shadow: var(--ld-shadow);
  overflow: hidden;
}

.ld-faq__question {
  width: 100%;
  padding: 1.2rem 1.4rem;
  background: none;
  border: none;
  text-align: left;
  font-family: inherit;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ld-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.ld-faq__question i { color: var(--ld-gold-dark); transition: transform 0.25s; }

.ld-faq__answer {
  display: none;
  padding: 0 1.4rem 1.25rem;
  color: var(--ld-muted);
}

.ld-faq__item.is-open .ld-faq__answer { display: block; }
.ld-faq__item.is-open .ld-faq__question i { transform: rotate(180deg); }

/* ========== STARS ========== */

.ld-stars {
  color: var(--ld-gold-dark);
  font-size: 1.15rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

/* ========== CTA BANNER ========== */

.ld-cta-banner {
  position: relative;
  padding: 5rem 0;
  background: var(--ld-dark);
  overflow: hidden;
}

.ld-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1545205597-3d9d02c29597?w=1600&q=80') center/cover;
  opacity: 0.15;
}

.ld-cta-banner__inner { position: relative; text-align: center; color: #fff; }
.ld-cta-banner .ld-section-label { color: var(--ld-gold); }
.ld-cta-banner .ld-section-title { color: #fff; margin-bottom: 1rem; }

.ld-cta-banner__text {
  color: rgba(255, 255, 255, 0.82);
  max-width: 620px;
  margin: 0 auto 1.9rem;
}

.ld-cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

/* ========== PRICING ========== */

.ld-pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  align-items: stretch;
}

.ld-price-card {
  background: var(--ld-surface);
  border-radius: var(--ld-radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--ld-shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}

.ld-price-card:hover { transform: translateY(-6px); box-shadow: var(--ld-shadow-lg); }

.ld-price-card--featured {
  background: var(--ld-gold);
  transform: scale(1.04);
}

.ld-price-card--featured:hover { transform: scale(1.04) translateY(-6px); }

.ld-price-card h3 {
  font-family: var(--ld-display);
  margin: 0 0 1.25rem;
  font-size: 1.5rem;
  color: var(--ld-dark);
}

.ld-price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  text-align: left;
  display: inline-block;
}

.ld-price-card li {
  padding: 0.4rem 0;
  font-size: 0.95rem;
  color: var(--ld-muted);
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.ld-price-card--featured li { color: var(--ld-dark); }
.ld-price-card li i { color: var(--ld-gold-dark); }
.ld-price-card--featured li i { color: var(--ld-dark); }

.ld-price-card__amount {
  font-family: var(--ld-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--ld-dark);
  line-height: 1;
  margin-bottom: 1.75rem;
}

.ld-price-card__amount small { font-size: 0.95rem; font-weight: 500; color: var(--ld-muted); }
.ld-price-card--featured .ld-price-card__amount small { color: var(--ld-dark); }

/* ========== TESTIMONIALS ========== */

.ld-testimonials.ld-section--nebula {
  background: #140c18;
}

.ld-testimonials__intro {
  margin-bottom: 2.5rem;
}

.ld-testimonial-slider {
  max-width: 760px;
  margin: 0 auto;
}

.ld-testimonial-slider__stage {
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 1.75rem;
}

.ld-testimonial-slide {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px) scale(0.98);
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.55s;
  pointer-events: none;
}

.ld-testimonial-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  z-index: 1;
}

.ld-testimonial-card {
  position: relative;
  text-align: left;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(234, 223, 199, 0.9);
  border-radius: 28px;
  padding: 2rem 2rem 1.75rem;
  box-shadow:
    0 24px 60px rgba(60, 42, 59, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  overflow: hidden;
}

.ld-testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--ld-gold), var(--ld-gold-light), var(--ld-gold));
}

.ld-testimonial-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.15rem;
}

.ld-testimonial-card__top .ld-stars {
  margin-bottom: 0;
}

.ld-testimonial-card__mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(216, 182, 103, 0.16);
  color: var(--ld-gold-dark);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.ld-testimonial-slider__quote {
  font-family: var(--ld-display);
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1.55;
  color: var(--ld-dark);
  margin: 0 0 1.75rem;
}

.ld-testimonial-slider__quote::before {
  content: none;
}

.ld-testimonial-slider__author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(234, 223, 199, 0.85);
}

.ld-testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--ld-dark) 0%, var(--ld-dark-soft) 100%);
  color: var(--ld-gold-light);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(60, 42, 59, 0.18);
}

.ld-testimonial-slider__author div { text-align: left; }
.ld-testimonial-slider__author strong {
  display: block;
  color: var(--ld-dark);
  font-size: 1rem;
  margin-bottom: 0.15rem;
}
.ld-testimonial-slider__author span { font-size: 0.86rem; color: var(--ld-muted); }

.ld-testimonial-slider__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.ld-testimonial-slider__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
}

.ld-testimonial-slider__dot {
  width: 9px;
  height: 9px;
  border: none;
  border-radius: 999px;
  padding: 0;
  background: rgba(60, 42, 59, 0.18);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.ld-testimonial-slider__dot.is-active {
  width: 28px;
  background: linear-gradient(90deg, var(--ld-gold-dark), var(--ld-gold));
}

.ld-testimonial-slider__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: #fff;
  color: var(--ld-dark);
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.ld-testimonial-slider__btn--icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(234, 223, 199, 0.95);
  box-shadow: 0 8px 20px rgba(60, 42, 59, 0.08);
  font-size: 1.15rem;
}

.ld-testimonial-slider__btn--icon:hover {
  background: var(--ld-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(60, 42, 59, 0.16);
}

/* ========== BLOG ========== */

.ld-blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.ld-blog__grid--two { grid-template-columns: repeat(2, 1fr); max-width: 900px; margin: 0 auto; }

.ld-blog-card {
  background: var(--ld-surface);
  border-radius: var(--ld-radius-lg);
  overflow: hidden;
  box-shadow: var(--ld-shadow);
  transition: transform 0.25s, box-shadow 0.25s;
  text-align: left;
}

.ld-blog-card:hover { transform: translateY(-6px); box-shadow: var(--ld-shadow-lg); }

.ld-blog-card__img img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }

.ld-blog-card__body { padding: 1.5rem 1.6rem 1.75rem; }

.ld-blog-card__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--ld-gold-dark);
  margin-bottom: 0.65rem;
}

.ld-blog-card h3 { margin: 0; font-size: 1.15rem; line-height: 1.45; color: var(--ld-dark); }
.ld-blog-card h3 a:hover { color: var(--ld-gold-dark); }

.ld-blog__footer { margin-top: 3rem; }

/* ========== NEWSLETTER ========== */

.ld-newsletter { background: var(--ld-gold); padding: 4.5rem 0; }

.ld-newsletter__inner { text-align: center; max-width: 620px; margin: 0 auto; }

.ld-newsletter .ld-section-label { color: var(--ld-dark); }
.ld-newsletter .ld-section-title { color: var(--ld-dark); margin-bottom: 1.9rem; }

.ld-newsletter__form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.ld-newsletter__form input {
  flex: 1;
  min-width: 240px;
  max-width: 360px;
  padding: 0.95rem 1.25rem;
  border: none;
  border-radius: 999px;
  font-size: 0.95rem;
  font-family: inherit;
}

.ld-newsletter__form input:focus { outline: 2px solid var(--ld-dark); }

/* ========== FOOTER ========== */

.ld-footer { background: var(--ld-dark); color: rgba(255, 255, 255, 0.72); padding: 4.5rem 0 0; }

.ld-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.ld-logo--footer { color: #fff; margin-bottom: 1.25rem; }

.ld-footer h4 { color: #fff; margin: 0 0 1.2rem; font-size: 1.1rem; }
.ld-footer p { margin: 0 0 1.25rem; font-size: 0.93rem; line-height: 1.75; }
.ld-footer ul { list-style: none; padding: 0; margin: 0; }
.ld-footer li { margin-bottom: 0.6rem; }
.ld-footer a { color: rgba(255, 255, 255, 0.7); font-size: 0.93rem; transition: color 0.2s; }
.ld-footer a:hover { color: var(--ld-gold); }

.ld-footer__contact li { display: flex; align-items: flex-start; gap: 0.65rem; }
.ld-footer__contact i { color: var(--ld-gold); margin-top: 4px; }

.ld-footer__social { display: flex; gap: 0.6rem; }

.ld-footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.ld-footer__social a:hover { background: var(--ld-gold); color: var(--ld-dark); }

.ld-footer__bottom {
  padding: 1.35rem 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ========== MOBILE NAV ========== */

.ld-mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(60, 42, 59, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}

.ld-mobile-nav.is-open { opacity: 1; visibility: visible; }

.ld-mobile-nav__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100%;
  background: var(--ld-cream);
  padding: 1.5rem;
  transform: translateX(100%);
  transition: transform 0.3s;
  overflow-y: auto;
}

.ld-mobile-nav.is-open .ld-mobile-nav__panel { transform: translateX(0); }

.ld-mobile-nav__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.ld-mobile-nav__close {
  width: 42px;
  height: 42px;
  border: none;
  background: var(--ld-gold);
  border-radius: 10px;
  font-size: 1.25rem;
  cursor: pointer;
}

.ld-mobile-nav a,
.ld-mobile-nav details summary {
  display: block;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--ld-border);
  font-weight: 600;
  color: var(--ld-dark);
  cursor: pointer;
}

.ld-mobile-nav details a { padding-left: 1rem; font-weight: 400; font-size: 0.92rem; }

.ld-header.is-scrolled .ld-btn--register {
  color: var(--ld-dark);
  border-color: var(--ld-dark);
}

.ld-header.is-scrolled .ld-btn--register:hover {
  background: var(--ld-dark);
  color: #fff;
  border-color: var(--ld-dark);
}

.ld-header.is-scrolled a.ld-btn--register:hover {
  color: #fff;
}

.ld-btn--register-mobile {
  border-color: var(--ld-dark);
  color: var(--ld-dark);
}

.ld-btn--register-mobile:hover {
  background: var(--ld-dark);
  color: #fff;
}

/* ========== MODAL REGISTRO ========== */

.ld-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.ld-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.ld-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(60, 42, 59, 0.55);
  backdrop-filter: blur(4px);
}

.ld-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  max-height: min(92vh, 760px);
  overflow-y: auto;
  background: #fff;
  border-radius: var(--ld-radius-lg);
  padding: 2rem 1.75rem 1.75rem;
  box-shadow: 0 24px 64px rgba(60, 42, 59, 0.28);
}

.ld-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 50%;
  background: var(--ld-cream);
  color: var(--ld-dark);
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.ld-modal__close:hover {
  background: var(--ld-dark);
  color: #fff;
}

.ld-modal__head {
  margin-bottom: 1.35rem;
  padding-right: 2rem;
}

.ld-modal__title {
  margin: 0.35rem 0 0.5rem;
  font-family: var(--ld-font-display);
  font-size: 1.75rem;
  color: var(--ld-dark);
}

.ld-modal__subtitle {
  margin: 0;
  color: var(--ld-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.ld-register-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.ld-field {
  margin-bottom: 0.85rem;
}

.ld-field label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ld-dark);
}

.ld-field input {
  width: 100%;
  padding: 0.78rem 1rem;
  border: 1px solid var(--ld-border);
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ld-text);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.ld-field select {
  width: 100%;
  padding: 0.78rem 1rem;
  border: 1px solid var(--ld-border);
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ld-text);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%233C2A3B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.ld-field input:focus,
.ld-field select:focus {
  outline: none;
  border-color: var(--ld-dark);
  box-shadow: 0 0 0 3px rgba(60, 42, 59, 0.12);
}

.ld-field__wrap--password {
  position: relative;
}

.ld-field__wrap--password input {
  padding-right: 2.75rem;
}

.ld-field__toggle-pwd {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--ld-muted);
  cursor: pointer;
  padding: 0.35rem;
  font-size: 1.15rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ld-field__toggle-pwd:hover {
  color: var(--ld-gold-dark);
}

.ld-register-form__error {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.75rem 0.9rem;
  margin-bottom: 0.85rem;
  border-radius: 12px;
  background: #fdecec;
  color: #b42318;
  font-size: 0.9rem;
  line-height: 1.45;
}

.ld-register-form__error i {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.ld-register-form__submit {
  width: 100%;
  margin-top: 0.35rem;
}

.ld-register-form__footer {
  margin: 1rem 0 0;
  text-align: center;
  font-size: 0.92rem;
  color: var(--ld-muted);
}

.ld-register-form__footer a {
  color: var(--ld-dark);
  font-weight: 700;
}

.ld-register-form__footer a:hover {
  color: var(--ld-gold-dark);
}

/* ========== PÃGINA ESPECIALIDAD / PROFESIONALES ========== */

.ld-esp-page .ld-header {
  background: var(--ld-dark);
}

.ld-esp-page .ld-header .ld-logo__img,
.ld-esp-page .ld-header .ld-nav a {
  filter: none;
}

.ld-esp-page .ld-nav--esp a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}

.ld-esp-page .ld-nav--esp a:hover {
  color: var(--ld-gold);
}

.ld-esp-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--ld-header-h) + 2.5rem) 0 3rem;
  background: var(--ld-dark);
  color: #fff;
  text-align: center;
  isolation: isolate;
}

.ld-esp-hero__bg {
  position: absolute;
  inset: -12px;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(5px);
  transform: scale(1.03);
  pointer-events: none;
}

.ld-esp-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(60, 42, 59, 0.48) 0%,
      rgba(60, 42, 59, 0.62) 55%,
      rgba(60, 42, 59, 0.72) 100%
    );
  pointer-events: none;
}

.ld-esp-hero__content {
  position: relative;
  z-index: 2;
}

.ld-esp-hero__title {
  font-family: var(--ld-font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  margin: 0.5rem 0 0.75rem;
  color: #fff;
}

.ld-esp-hero__desc {
  max-width: 42rem;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
}

.ld-section-label--light {
  color: var(--ld-gold);
}

.ld-esp-list {
  padding-top: 2.5rem;
  padding-bottom: 4rem;
}

.ld-esp-toolbar {
  margin-bottom: 1.5rem;
}

.ld-esp-count {
  margin: 0;
  font-weight: 600;
  color: var(--ld-muted);
}

.ld-esp-loading,
.ld-esp-error {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 3rem 1rem;
  text-align: center;
  color: var(--ld-muted);
}

.ld-esp-loading i,
.ld-esp-error i {
  font-size: 2rem;
  color: var(--ld-dark);
}

.ld-esp-loading i {
  animation: ld-spin 0.9s linear infinite;
}

@keyframes ld-spin {
  to { transform: rotate(360deg); }
}

.ld-esp-error p {
  margin: 0;
  max-width: 28rem;
}

.ld-esp-empty {
  text-align: center;
  padding: 3rem 1rem 2rem;
}

.ld-esp-empty__icon {
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--ld-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--ld-dark);
}

.ld-esp-empty h3 {
  margin: 0 0 0.5rem;
  color: var(--ld-dark);
}

.ld-esp-empty p {
  max-width: 30rem;
  margin: 0 auto 1.25rem;
  color: var(--ld-muted);
}

.ld-pro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.ld-pro-card {
  background: #fff;
  border: 1px solid var(--ld-border);
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.ld-pro-card:hover {
  box-shadow: 0 12px 32px rgba(60, 42, 59, 0.12);
  transform: translateY(-2px);
}

.ld-pro-card__photo {
  aspect-ratio: 4 / 3;
  background: var(--ld-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ld-pro-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ld-pro-card__avatar-placeholder {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: var(--ld-dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
}

.ld-pro-card__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.ld-pro-card__name {
  margin: 0 0 0.25rem;
  font-size: 1.15rem;
  color: var(--ld-dark);
}

.ld-pro-card__title {
  margin: 0 0 0.65rem;
  font-weight: 600;
  color: var(--ld-dark-soft);
  font-size: 0.92rem;
}

.ld-pro-card__meta {
  margin: 0 0 0.35rem;
  font-size: 0.88rem;
  color: var(--ld-muted);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.ld-pro-card__bio {
  margin: 0.75rem 0 1rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ld-text);
  flex: 1;
}

.ld-pro-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
}

.ld-pro-card__price {
  font-weight: 700;
  color: var(--ld-dark);
  font-size: 0.92rem;
}

.ld-pro-card__cta {
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
  white-space: nowrap;
}

.ld-esp-page a.ld-pro-card__cta {
  color: #fff;
}

.ld-footer--compact {
  padding-top: 0;
}

.ld-footer--compact .ld-footer__bottom {
  border-top: 1px solid var(--ld-border);
}

[hidden] {
  display: none !important;
}

/* ========== ANIMACIONES Y PROFUNDIDAD ========== */

@keyframes ldKenBurns {
  0% { transform: scale(1.08) translate(0, 0); }
  100% { transform: scale(1.18) translate(-2%, -1.5%); }
}

@keyframes ldOrbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(18px, -22px) scale(1.06); }
}

@keyframes ldFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ldFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes ldPulseGlow {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.05); }
}

@keyframes ldShimmer {
  0%, 75%, 100% { left: -120%; }
  40% { left: 140%; }
}

@keyframes ldSpinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.ld-reveal {
  opacity: 0;
  transform: translateY(42px) scale(0.98);
  filter: blur(6px);
  transition:
    opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0s);
  will-change: transform, opacity;
}

.ld-reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.ld-step,
.ld-feature {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.ld-step:hover,
.ld-feature:hover {
  transform: translateY(-6px);
}

.ld-feature {
  box-shadow: 0 8px 28px rgba(60, 42, 59, 0.08);
  border-radius: var(--ld-radius-lg);
}

.ld-feature:hover {
  box-shadow: 0 16px 40px rgba(60, 42, 59, 0.12), 0 0 24px rgba(216, 182, 103, 0.1);
}


@media (prefers-reduced-motion: reduce) {
  .ld-hero__scroll { animation: none; }
  .ld-reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

@media (max-width: 1024px) {
  .ld-services__grid,
  .ld-specialties__grid { grid-template-columns: repeat(2, 1fr); }
  .ld-offer__grid { grid-template-columns: repeat(2, 1fr); }
  .ld-steps__grid { grid-template-columns: repeat(2, 1fr); }
  .ld-features__grid { grid-template-columns: repeat(3, 1fr); }
  .ld-footer__grid { grid-template-columns: 1fr 1fr; }
  .ld-pro-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  .ld-nav { display: none; }
  .ld-menu-toggle { display: flex; align-items: center; justify-content: center; }
  .ld-mobile-nav { display: block; }

  .ld-hero {
    min-height: auto;
    padding: calc(var(--ld-header-h) + 1.5rem) clamp(1rem, 5vw, 1.5rem) 5.5rem;
  }

  .ld-hero__copy {
    text-align: center;
    margin: 0 auto;
  }

  .ld-hero__brand {
    margin-left: auto;
    margin-right: auto;
  }

  .ld-hero__desc {
    margin-left: auto;
    margin-right: auto;
  }

  .ld-hero__cta {
    justify-content: center;
  }

  .ld-about__grid { grid-template-columns: 1fr; }

  .ld-about__media { order: -1; }

  .ld-services__grid,
  .ld-specialties__grid,
  .ld-offer__grid,
  .ld-steps__grid,
  .ld-features__grid,
  .ld-pro-grid { grid-template-columns: 1fr; }

  .ld-footer__grid { grid-template-columns: 1fr; }

  .ld-section { padding: 3.5rem 0; }

  .ld-register-form__grid { grid-template-columns: 1fr; }
}
