/* ═══════════════════════════════════════════════════════════════
   GLORIA CRUZ PSICÓLOGA — main.css
   Estilos globales compartidos por todas las páginas del sitio
   Dominio: https://psicologagloriacruz.facto.work/
   ═══════════════════════════════════════════════════════════════ */

/* ─── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── TOKENS DE MARCA ────────────────────────────────────────── */
:root {
  --sage:        #495D51;
  --sage-mid:    #5C7268;
  --sage-light:  #7A9186;
  --sage-pale:   #E8EEEA;
  --terra:       #B7856C;
  --terra-dark:  #9A6A53;
  --cream:       #FBF6F0;
  --cream-dark:  #EDE5DB;
  --stone:       #6B6860;
  --stone-dark:  #3D3C39;
  --white:       #FFFFFF;
  --text-main:   #2A2A27;
  --green-wa:    #25D366;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --r-sm:   8px;
  --r-md:   12px;
  --r-lg:   16px;
  --r-pill: 40px;

  --section-pad: 88px 48px;
  --max-w: 1100px;
}

/* ─── BASE ───────────────────────────────────────────────────── */
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-main);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

.site-wrapper {
  width: 100%;
  background: var(--white);
}

/* ─── TIPOGRAFÍA ─────────────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-mid);
  display: block;
  margin-bottom: 14px;
}

.heading-display {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 46px);
  font-weight: 500;
  line-height: 1.1;
  color: var(--text-main);
  margin-bottom: 22px;
}
.heading-display em { font-style: italic; color: var(--sage); }

.heading-hero {
  font-family: var(--font-display);
  font-size: clamp(46px, 6vw, 62px);
  font-weight: 500;
  line-height: 1.07;
  color: var(--white);
  margin-bottom: 26px;
  letter-spacing: -0.01em;
}
.heading-hero em { font-style: italic; color: #A8C4B4; }

.body-text {
  font-size: 15px;
  color: var(--stone);
  line-height: 1.9;
  margin-bottom: 24px;
}

/* ─── BOTONES ────────────────────────────────────────────────── */
.btn-terra {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--terra);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  padding: 13px 26px;
  border-radius: var(--r-pill);
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-terra:hover { background: var(--terra-dark); }
.btn-terra:focus-visible { outline: 2px solid var(--terra); outline-offset: 3px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  color: var(--sage);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  padding: 11px 22px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--sage);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--sage); color: var(--white); }
.btn-outline:focus-visible { outline: 2px solid var(--sage); outline-offset: 3px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.72);
  font-size: 13px;
  background: none;
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--white); }

/* ─── NAVEGACIÓN ─────────────────────────────────────────────── */
.nav-wrapper {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--cream-dark);
}

nav.main-nav {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img.logo-full { height: 46px; width: auto; }
.nav-logo img.logo-icon { height: 44px; width: auto; display: none; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-menu a {
  font-size: 14px;
  font-weight: 400;
  color: var(--stone-dark);
  letter-spacing: 0.025em;
  transition: color 0.15s;
}
.nav-menu a:hover { color: var(--sage); }
.nav-menu a[aria-current="page"] { color: var(--sage); font-weight: 500; }

.nav-lang {
  font-size: 11px;
  color: var(--stone);
  border: 1px solid var(--cream-dark);
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.06em;
  background: transparent;
  font-family: var(--font-body);
  transition: border-color 0.2s;
}
.nav-lang:hover { border-color: var(--sage); color: var(--sage); }

.nav-cta {
  background: var(--terra);
  color: var(--white) !important;
  font-size: 12px;
  font-weight: 500;
  padding: 9px 20px;
  border-radius: var(--r-pill);
  letter-spacing: 0.04em;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--terra-dark) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--stone-dark);
  border-radius: 2px;
  transition: all 0.25s;
}

/* ─── PAGE HERO (páginas interiores) ────────────────────────── */
.page-hero {
  background: var(--sage);
  padding: 56px 48px 64px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}
.breadcrumb a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
.breadcrumb a:hover { color: rgba(255,255,255,0.8); }

.page-hero-eyebrow {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.48);
  display: block;
  margin-bottom: 16px;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.08;
  max-width: 640px;
}
.page-hero h1 em { font-style: italic; color: #A8C4B4; }

.page-hero-sub {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  margin-top: 20px;
  max-width: 540px;
}

/* ─── WAVE DIVIDERS ─────────────────────────────────────────── */
.wave-to-white {
  display: block;
  background: var(--sage);
  line-height: 0;
  overflow: hidden;
}
.wave-to-white svg { display: block; width: 100%; }

.wave-to-cream {
  display: block;
  background: var(--sage);
  line-height: 0;
  overflow: hidden;
}
.wave-to-cream svg { display: block; width: 100%; }

/* ─── SECCIÓN GENÉRICA DE CONTENIDO ─────────────────────────── */
.content-section {
  padding: var(--section-pad);
}

.content-section--cream {
  padding: var(--section-pad);
  background: var(--cream);
}

.content-section--sage {
  padding: var(--section-pad);
  background: var(--sage);
}

/* Layout 2 columnas estándar */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.two-col--wide {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
}

/* ─── IMAGEN DE SECCIÓN ─────────────────────────────────────── */
.section-img {
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--cream-dark);
}
.section-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.section-img-placeholder {
  width: 100%;
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--stone);
}
.section-img-placeholder span { font-size: 10px; letter-spacing: 0.07em; }

/* ─── LISTA CON VIÑETAS TERRA ────────────────────────────────── */
.dot-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.dot-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--stone-dark);
  line-height: 1.6;
}
.dot { width: 6px; height: 6px; background: var(--terra); border-radius: 50%; margin-top: 6px; flex-shrink: 0; }

/* ─── LISTA NUMERADA CON ESTILO ─────────────────────────────── */
.numbered-list { display: flex; flex-direction: column; gap: 24px; }
.num-item { display: flex; gap: 18px; align-items: flex-start; }
.num-badge {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--sage-pale);
  line-height: 1;
  min-width: 32px;
  flex-shrink: 0;
}
.num-body {}
.num-title { font-size: 14px; font-weight: 500; color: var(--text-main); margin-bottom: 5px; }
.num-desc  { font-size: 13px; color: var(--stone); line-height: 1.75; }

/* ─── CARDS ─────────────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}

.card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 26px;
  border: 1px solid var(--cream-dark);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.card:hover { border-color: var(--sage-light); box-shadow: 0 4px 20px rgba(73,93,81,0.08); }

.card-icon {
  width: 42px;
  height: 42px;
  background: var(--sage-pale);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  font-size: 20px;
  margin-bottom: 14px;
}

.card-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  color: var(--text-main);
  margin-bottom: 8px;
  line-height: 1.2;
}

.card-desc {
  font-size: 12px;
  color: var(--stone);
  line-height: 1.8;
}

/* ─── HIGHLIGHT BOX ─────────────────────────────────────────── */
.highlight-box {
  background: var(--sage-pale);
  border-left: 3px solid var(--sage);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 20px 24px;
  margin: 28px 0;
}
.highlight-box p {
  font-size: 14px;
  color: var(--sage);
  line-height: 1.75;
  font-style: italic;
}

/* ─── CTA INLINE ─────────────────────────────────────────────── */
.cta-inline {
  background: var(--sage);
  border-radius: var(--r-lg);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.cta-inline-text p:first-child {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--white);
  margin-bottom: 6px;
}
.cta-inline-text p:last-child { font-size: 13px; color: rgba(255,255,255,0.65); }

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 0; margin-top: 40px; }
.faq-item {
  border-bottom: 1px solid var(--cream-dark);
  padding: 22px 0;
}
.faq-item:first-child { border-top: 1px solid var(--cream-dark); }
.faq-q {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--text-main);
  margin-bottom: 10px;
  line-height: 1.3;
}
.faq-a { font-size: 13px; color: var(--stone); line-height: 1.85; }

/* ─── SERVICIOS RELACIONADOS ─────────────────────────────────── */
.related-services {
  padding: var(--section-pad);
  background: var(--cream);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
}
.related-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 20px;
  border: 1px solid var(--cream-dark);
  transition: border-color 0.2s;
}
.related-card:hover { border-color: var(--sage-light); }
.related-icon {
  width: 36px;
  height: 36px;
  background: var(--sage-pale);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  font-size: 18px;
  margin-bottom: 12px;
}
.related-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-main);
  margin-bottom: 6px;
  line-height: 1.2;
}
.related-link {
  font-size: 11px;
  color: var(--sage);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-top: 8px;
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer-main {
  background: var(--stone-dark);
  padding: 52px 48px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
}

.ft-logo { height: 42px; width: auto; filter: brightness(0) invert(1); opacity: 0.82; margin-bottom: 16px; }

.ft-tagline {
  font-size: 12px;
  color: rgba(255,255,255,0.42);
  line-height: 1.75;
  max-width: 230px;
}

.ft-col-title {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
  margin-bottom: 16px;
  font-weight: 400;
}

.ft-link {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
  line-height: 1.4;
  transition: color 0.2s;
}
.ft-link:hover { color: var(--white); }

.footer-bottom {
  background: #242421;
  padding: 18px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.ft-copy { font-size: 10px; color: rgba(255,255,255,0.28); }

/* ─── WHATSAPP FLOTANTE ──────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 54px;
  height: 54px;
  background: var(--green-wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 300;
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.wa-float:focus-visible { outline: 2px solid var(--white); outline-offset: 3px; }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  :root { --section-pad: 64px 32px; }

  nav.main-nav { padding: 0 32px; }
  .nav-menu { display: none; }
  .nav-toggle { display: flex; }
  .nav-logo img.logo-full { display: none; }
  .nav-logo img.logo-icon { display: block; }

  .nav-menu.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--cream-dark);
    padding: 16px 32px 24px;
    z-index: 199;
  }
  .nav-menu.open a { padding: 10px 0; width: 100%; border-bottom: 1px solid var(--cream-dark); }
  .nav-menu.open .nav-lang,
  .nav-menu.open .nav-cta { margin-top: 12px; }

  .page-hero { padding: 48px 32px 52px; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col--wide { grid-template-columns: 1fr; gap: 40px; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .cta-inline { flex-direction: column; align-items: flex-start; }
  .footer-main { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
  :root { --section-pad: 52px 20px; }
  nav.main-nav { padding: 0 20px; }
  .page-hero { padding: 40px 20px 48px; }
  .cards-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .footer-main { padding: 40px 20px; }
  .footer-bottom { padding: 16px 20px; }
  .wa-float { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; }
  html { scroll-behavior: auto; }
}


/* ═══════════════════════════════════════════════════════════════
   ESTILOS ESPECÍFICOS DE PÁGINA — INICIO (index.html)
   Trasladados desde el <style> embebido al consolidar en main.css
   ═══════════════════════════════════════════════════════════════ */
    /* ─── RESET ─────────────────────────────────────────────── */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    img { display: block; max-width: 100%; height: auto; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }

    /* ─── TOKENS DE MARCA ────────────────────────────────────── */
    :root {
      --sage:        #495D51;
      --sage-mid:    #5C7268;
      --sage-light:  #7A9186;
      --sage-pale:   #E8EEEA;
      --terra:       #B7856C;
      --terra-dark:  #9A6A53;
      --cream:       #FBF6F0;
      --cream-dark:  #EDE5DB;
      --stone:       #6B6860;
      --stone-dark:  #3D3C39;
      --white:       #FFFFFF;
      --text-main:   #2A2A27;
      --text-muted:  #6B6860;
      --green-wa:    #25D366;

      --font-display: 'Cormorant Garamond', Georgia, serif;
      --font-body:    'Inter', system-ui, sans-serif;

      --r-sm:   8px;
      --r-md:   12px;
      --r-lg:   16px;
      --r-pill: 40px;

      --section-pad: 88px 48px;
      --max-w: 1100px;
    }

    /* ─── BASE ───────────────────────────────────────────────── */
    body {
      font-family: var(--font-body);
      font-size: 17px;
      line-height: 1.65;
      color: var(--text-main);
      background: var(--white);
      -webkit-font-smoothing: antialiased;
    }

    .site-wrapper {
      width: 100%;
      background: var(--white);
    }

    /* ─── TIPOGRAFÍA ─────────────────────────────────────────── */
    .eyebrow {
      font-family: var(--font-body);
      font-size: 10px;
      font-weight: 400;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--sage-mid);
      display: block;
      margin-bottom: 14px;
    }

    .heading-display {
      font-family: var(--font-display);
      font-size: clamp(34px, 5vw, 42px);
      font-weight: 500;
      line-height: 1.1;
      color: var(--text-main);
      margin-bottom: 22px;
    }
    .heading-display em { font-style: italic; color: var(--sage); }

    .heading-hero {
      font-family: var(--font-display);
      font-size: clamp(42px, 6vw, 58px);
      font-weight: 500;
      line-height: 1.07;
      color: var(--white);
      margin-bottom: 26px;
      letter-spacing: -0.01em;
    }
    .heading-hero em { font-style: italic; color: #A8C4B4; }

    .body-text {
      font-size: 14px;
      color: var(--stone);
      line-height: 1.9;
      margin-bottom: 28px;
    }

    /* ─── BOTONES ────────────────────────────────────────────── */
    .btn-terra {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--terra);
      color: var(--white);
      font-family: var(--font-body);
      font-size: 13px;
      font-weight: 500;
      padding: 13px 26px;
      border-radius: var(--r-pill);
      letter-spacing: 0.04em;
      border: none;
      cursor: pointer;
      transition: background 0.2s;
    }
    .btn-terra:hover { background: var(--terra-dark); }
    .btn-terra:focus-visible { outline: 2px solid var(--terra); outline-offset: 3px; }

    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: transparent;
      color: var(--sage);
      font-family: var(--font-body);
      font-size: 13px;
      font-weight: 500;
      padding: 11px 22px;
      border-radius: var(--r-pill);
      border: 1.5px solid var(--sage);
      cursor: pointer;
      transition: background 0.2s, color 0.2s;
    }
    .btn-outline:hover { background: var(--sage); color: var(--white); }
    .btn-outline:focus-visible { outline: 2px solid var(--sage); outline-offset: 3px; }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: rgba(255,255,255,0.72);
      font-size: 13px;
      background: none;
      border: none;
      cursor: pointer;
      letter-spacing: 0.02em;
      transition: color 0.2s;
    }
    .btn-ghost:hover { color: var(--white); }

    /* ─── NAVEGACIÓN ─────────────────────────────────────────── */
    .nav-wrapper {
      position: sticky;
      top: 0;
      z-index: 200;
      background: var(--white);
      border-bottom: 1px solid var(--cream-dark);
    }

    nav {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 48px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 76px;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      flex-shrink: 0;
    }
    .nav-logo img.logo-full  { height: 46px; width: auto; }
    .nav-logo img.logo-icon  { height: 44px; width: auto; display: none; }

    .nav-menu {
      display: flex;
      align-items: center;
      gap: 28px;
    }

    .nav-menu a {
      font-size: 13px;
      font-weight: 400;
      color: var(--stone-dark);
      letter-spacing: 0.025em;
      transition: color 0.15s;
    }
    .nav-menu a:hover { color: var(--sage); }

    .nav-lang {
      font-size: 11px;
      color: var(--stone);
      border: 1px solid var(--cream-dark);
      padding: 5px 12px;
      border-radius: 20px;
      letter-spacing: 0.06em;
      cursor: pointer;
      background: transparent;
      font-family: var(--font-body);
      transition: border-color 0.2s;
    }
    .nav-lang:hover { border-color: var(--sage); color: var(--sage); }

    .nav-cta {
      background: var(--terra);
      color: var(--white) !important;
      font-size: 12px;
      font-weight: 500;
      padding: 9px 20px;
      border-radius: var(--r-pill);
      letter-spacing: 0.04em;
      transition: background 0.2s;
    }
    .nav-cta:hover { background: var(--terra-dark) !important; }

    /* Hamburger */
    .nav-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
    }
    .nav-toggle span {
      display: block;
      width: 22px;
      height: 1.5px;
      background: var(--stone-dark);
      border-radius: 2px;
      transition: all 0.25s;
    }

    /* ─── HERO ───────────────────────────────────────────────── */
    .hero {
      background: var(--sage);
      padding: 72px 48px 0;
      display: grid;
      grid-template-columns: 1fr 400px;
      gap: 56px;
      align-items: end;
      min-height: 540px;
    }

    .hero-text { padding-bottom: 80px; }

    .hero-eyebrow {
      font-size: 10px;
      font-weight: 400;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.52);
      display: block;
      margin-bottom: 20px;
    }

    .hero-sub {
      font-size: 14px;
      font-weight: 300;
      color: rgba(255,255,255,0.75);
      line-height: 1.85;
      margin-bottom: 40px;
      max-width: 380px;
    }

    .hero-actions {
      display: flex;
      gap: 20px;
      align-items: center;
      flex-wrap: wrap;
    }

    .hero-img-col { align-self: end; }

    .hero-img-wrap {
      position: relative;
      width: 100%;
    }

    .hero-img-wrap img,
    .hero-img-placeholder {
      width: 100%;
      height: 440px;
      object-fit: cover;
      object-position: top center;
      border-radius: var(--r-md) var(--r-md) 0 0;
      display: block;
    }

    .hero-img-placeholder {
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.1);
      border-bottom: none;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }
    .hero-img-placeholder span {
      font-size: 10px;
      color: rgba(255,255,255,0.28);
      letter-spacing: 0.07em;
    }

    .hero-badge {
      position: absolute;
      bottom: 24px;
      left: -20px;
      background: var(--white);
      border-radius: 10px;
      padding: 10px 14px;
      display: flex;
      align-items: center;
      gap: 10px;
      box-shadow: 0 8px 28px rgba(0,0,0,0.2);
    }
    .badge-dot {
      width: 7px;
      height: 7px;
      background: var(--green-wa);
      border-radius: 50%;
      flex-shrink: 0;
    }
    .badge-txt {
      font-size: 11px;
      color: var(--stone-dark);
      font-weight: 500;
      line-height: 1.3;
    }
    .badge-txt span {
      display: block;
      font-weight: 300;
      color: var(--stone);
      font-size: 10px;
    }

    /* ─── WAVE DIVIDER ───────────────────────────────────────── */
    .wave-section {
      display: block;
      background: var(--sage);
      line-height: 0;
      overflow: hidden;
    }
    .wave-section svg { display: block; width: 100%; }

    /* ─── TRUST BAR ──────────────────────────────────────────── */
    .trust-bar {
      background: var(--cream);
      padding: 28px 48px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      border-bottom: 1px solid var(--cream-dark);
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 10px;
      flex: 1;
    }

    .trust-icon {
      width: 36px;
      height: 36px;
      background: var(--sage-pale);
      border-radius: var(--r-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--sage);
      font-size: 18px;
      flex-shrink: 0;
    }

    .trust-label {
      font-size: 12px;
      color: var(--stone-dark);
      font-weight: 500;
      line-height: 1.3;
    }
    .trust-label span {
      display: block;
      font-weight: 300;
      color: var(--stone);
      font-size: 10px;
    }

    .trust-sep {
      width: 1px;
      height: 36px;
      background: var(--cream-dark);
      flex-shrink: 0;
    }

    /* ─── SOBRE MÍ ───────────────────────────────────────────── */
    .sobre-mi {
      padding: var(--section-pad);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }

    .sm-img-wrap {
      position: relative;
      border-radius: var(--r-md);
      overflow: hidden;
      background: var(--cream);
      border: 1px solid var(--cream-dark);
    }

    .sm-img-wrap img {
      width: 100%;
      height: auto;
      aspect-ratio: 3 / 4;
      object-fit: cover;
      object-position: center 30%;
      display: block;
    }

    .sm-img-placeholder {
      width: 100%;
      height: 400px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      color: var(--stone);
    }
    .sm-img-placeholder span {
      font-size: 10px;
      letter-spacing: 0.07em;
      color: var(--stone);
    }

    .sm-tag {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: var(--sage);
      color: var(--white);
      padding: 14px 18px;
      font-size: 11px;
      line-height: 1.55;
    }
    .sm-tag strong {
      display: block;
      font-size: 12px;
      font-weight: 500;
      margin-bottom: 2px;
    }

    .creds-list {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 28px;
    }
    .cred-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 12px;
      color: var(--stone-dark);
      line-height: 1.5;
    }
    .cred-dot {
      width: 5px;
      height: 5px;
      background: var(--terra);
      border-radius: 50%;
      margin-top: 5px;
      flex-shrink: 0;
    }

    /* ─── SERVICIOS ──────────────────────────────────────────── */
    .servicios {
      background: var(--cream);
      padding: var(--section-pad);
    }

    .servicios-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-top: 44px;
    }

    .sc-card {
      background: var(--white);
      border-radius: var(--r-md);
      padding: 26px;
      border: 1px solid var(--cream-dark);
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .sc-card:hover {
      border-color: var(--sage-light);
      box-shadow: 0 4px 20px rgba(73,93,81,0.08);
    }

    .sc-card--dark {
      background: var(--sage);
      border-color: var(--sage);
    }
    .sc-card--dark:hover {
      border-color: var(--sage-mid);
      box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    }

    .sc-icon {
      width: 42px;
      height: 42px;
      background: var(--sage-pale);
      border-radius: var(--r-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--sage);
      font-size: 20px;
      margin-bottom: 14px;
      flex-shrink: 0;
    }
    .sc-card--dark .sc-icon { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.85); }

    .sc-title {
      font-family: var(--font-display);
      font-size: 19px;
      font-weight: 500;
      color: var(--text-main);
      margin-bottom: 8px;
      line-height: 1.2;
    }
    .sc-card--dark .sc-title { color: var(--white); }

    .sc-desc {
      font-size: 12px;
      color: var(--stone);
      line-height: 1.8;
      margin-bottom: 16px;
    }
    .sc-card--dark .sc-desc { color: rgba(255,255,255,0.68); }

    .sc-link {
      font-size: 12px;
      color: var(--sage);
      font-weight: 500;
      display: inline-flex;
      align-items: center;
      gap: 4px;
      transition: gap 0.2s;
    }
    .sc-link:hover { gap: 8px; }
    .sc-card--dark .sc-link { color: #A8C4B4; }

    /* ─── ESPECIALIDADES ─────────────────────────────────────── */
    .especialidades { padding: var(--section-pad); }

    .esp-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 32px;
      gap: 16px;
    }

    .esp-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 9px;
    }

    .esp-chip {
      background: var(--cream);
      border: 1px solid var(--cream-dark);
      border-radius: var(--r-pill);
      padding: 9px 18px;
      font-size: 13px;
      color: var(--stone-dark);
      transition: all 0.2s;
    }
    .esp-chip:hover {
      background: var(--sage);
      border-color: var(--sage);
      color: var(--white);
    }

    /* ─── CTA FAMILIAS ───────────────────────────────────────── */
    .cta-familias {
      background: var(--sage);
      padding: var(--section-pad);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: center;
    }

    .cta-familias .eyebrow { color: rgba(255,255,255,0.42); }
    .cta-familias .heading-display { color: var(--white); }
    .cta-familias .heading-display em { color: #A8C4B4; }
    .cta-familias .body-text { color: rgba(255,255,255,0.72); }

    .contact-card {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.13);
      border-radius: var(--r-lg);
      padding: 36px;
    }

    .contact-card-title {
      font-family: var(--font-display);
      font-size: 22px;
      font-weight: 500;
      color: var(--white);
      line-height: 1.35;
      margin-bottom: 24px;
    }

    .contact-method {
      display: flex;
      align-items: center;
      gap: 13px;
      padding: 14px 0;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .contact-method:last-child { border-bottom: none; padding-bottom: 0; }

    .cm-icon {
      width: 40px;
      height: 40px;
      border-radius: var(--r-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      flex-shrink: 0;
    }
    .cm-wa  { background: var(--green-wa); color: var(--white); }
    .cm-sms { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); }

    .cm-label {
      font-size: 11px;
      color: rgba(255,255,255,0.52);
      line-height: 1.4;
    }
    .cm-label strong {
      display: block;
      color: var(--white);
      font-size: 14px;
      font-weight: 500;
      margin-bottom: 1px;
    }

    /* ─── FAQ ────────────────────────────────────────────────── */
    .faq { padding: var(--section-pad); background: var(--white); }

    .faq-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      margin-top: 44px;
    }

    .faq-item {
      border-left: 2px solid var(--sage-pale);
      padding-left: 18px;
    }

    .faq-q {
      font-family: var(--font-display);
      font-size: 18px;
      font-weight: 500;
      color: var(--text-main);
      margin-bottom: 8px;
      line-height: 1.3;
    }

    .faq-a {
      font-size: 13px;
      color: var(--stone);
      line-height: 1.85;
    }

    /* ─── FOOTER ─────────────────────────────────────────────── */
    .footer-main {
      background: var(--stone-dark);
      padding: 52px 48px;
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr;
      gap: 48px;
    }

    .ft-logo { height: 42px; width: auto; filter: brightness(0) invert(1); opacity: 0.82; margin-bottom: 16px; }

    .ft-tagline {
      font-size: 12px;
      color: rgba(255,255,255,0.42);
      line-height: 1.75;
      max-width: 230px;
    }

    .ft-col-title {
      font-size: 10px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.32);
      margin-bottom: 16px;
      font-weight: 400;
    }

    .ft-link {
      display: block;
      font-size: 13px;
      color: rgba(255,255,255,0.55);
      margin-bottom: 10px;
      line-height: 1.4;
      transition: color 0.2s;
    }
    .ft-link:hover { color: var(--white); }

    .footer-bottom {
      background: #242421;
      padding: 18px 48px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
    }

    .ft-copy {
      font-size: 10px;
      color: rgba(255,255,255,0.28);
    }

    /* ─── WHATSAPP FLOTANTE ──────────────────────────────────── */
    .wa-float {
      position: fixed;
      bottom: 28px;
      right: 28px;
      width: 54px;
      height: 54px;
      background: var(--green-wa);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-size: 28px;
      box-shadow: 0 4px 20px rgba(37,211,102,0.4);
      z-index: 300;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .wa-float:hover {
      transform: scale(1.08);
      box-shadow: 0 6px 28px rgba(37,211,102,0.5);
    }
    .wa-float:focus-visible { outline: 2px solid var(--white); outline-offset: 3px; }

    /* ─── RESPONSIVE ─────────────────────────────────────────── */
    @media (max-width: 900px) {
      :root { --section-pad: 64px 32px; }

      nav { padding: 0 32px; }
      .nav-menu { display: none; }
      .nav-toggle { display: flex; }
      .nav-logo img.logo-full { display: none; }
      .nav-logo img.logo-icon { display: block; }

      .nav-menu.open {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        background: var(--white);
        border-bottom: 1px solid var(--cream-dark);
        padding: 16px 32px 24px;
        z-index: 199;
      }
      .nav-menu.open a { padding: 10px 0; width: 100%; border-bottom: 1px solid var(--cream-dark); }
      .nav-menu.open .nav-lang,
      .nav-menu.open .nav-cta { margin-top: 12px; }

      .hero {
        grid-template-columns: 1fr;
        padding: 56px 32px 0;
        min-height: auto;
      }
      .hero-text { padding-bottom: 40px; }
      .hero-img-col { display: none; }

      .trust-bar {
        flex-wrap: wrap;
        gap: 20px;
        padding: 24px 32px;
      }
      .trust-sep { display: none; }
      .trust-item { flex: 0 0 calc(50% - 10px); }

      .sobre-mi { grid-template-columns: 1fr; gap: 40px; }
      .sm-img-placeholder { height: 300px; }

      .servicios-grid { grid-template-columns: 1fr 1fr; }
      .cta-familias { grid-template-columns: 1fr; gap: 40px; }
      .faq-grid { grid-template-columns: 1fr; gap: 32px; }
      .footer-main { grid-template-columns: 1fr; gap: 36px; }
      .footer-bottom { flex-direction: column; text-align: center; }
    }

    @media (max-width: 600px) {
      :root { --section-pad: 52px 20px; }
      nav { padding: 0 20px; }
      .trust-bar { padding: 20px; }
      .trust-item { flex: 0 0 100%; }
      .servicios-grid { grid-template-columns: 1fr; }
      .esp-header { flex-direction: column; align-items: flex-start; }
      .footer-main { padding: 40px 20px; }
      .footer-bottom { padding: 16px 20px; }
      .wa-float { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 24px; }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { transition: none !important; }
      html { scroll-behavior: auto; }
    }


/* ═══════════════════════════════════════════════════════════════
   ESTILOS ESPECÍFICOS DE PÁGINA — SOBRE MÍ (sobre-mi.html)
   ═══════════════════════════════════════════════════════════════ */
    /* ─── RESET ─────────────────────────────────────────────── */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    img { display: block; max-width: 100%; height: auto; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }

    /* ─── TOKENS ─────────────────────────────────────────────── */
    :root {
      --sage:        #495D51;
      --sage-mid:    #5C7268;
      --sage-light:  #7A9186;
      --sage-pale:   #E8EEEA;
      --terra:       #B7856C;
      --terra-dark:  #9A6A53;
      --cream:       #FBF6F0;
      --cream-dark:  #EDE5DB;
      --stone:       #6B6860;
      --stone-dark:  #3D3C39;
      --white:       #FFFFFF;
      --text-main:   #2A2A27;
      --green-wa:    #25D366;

      --font-display: 'Cormorant Garamond', Georgia, serif;
      --font-body:    'Inter', system-ui, sans-serif;

      --r-sm:   8px;
      --r-md:   12px;
      --r-lg:   16px;
      --r-pill: 40px;

      --section-pad: 88px 48px;
      --max-w: 1100px;
    }

    /* ─── BASE ───────────────────────────────────────────────── */
    body {
      font-family: var(--font-body);
      font-size: 17px;
      line-height: 1.65;
      color: var(--text-main);
      background: var(--white);
      -webkit-font-smoothing: antialiased;
    }

    .site-wrapper {
      width: 100%;
      background: var(--white);
    }

    /* ─── TIPOGRAFÍA ─────────────────────────────────────────── */
    .eyebrow {
      font-family: var(--font-body);
      font-size: 10px;
      font-weight: 400;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--sage-mid);
      display: block;
      margin-bottom: 14px;
    }

    .heading-display {
      font-family: var(--font-display);
      font-size: clamp(32px, 4.5vw, 42px);
      font-weight: 500;
      line-height: 1.1;
      color: var(--text-main);
      margin-bottom: 22px;
    }
    .heading-display em { font-style: italic; color: var(--sage); }

    .body-text {
      font-size: 14px;
      color: var(--stone);
      line-height: 1.9;
      margin-bottom: 24px;
    }

    /* ─── BOTONES ────────────────────────────────────────────── */
    .btn-terra {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--terra);
      color: var(--white);
      font-family: var(--font-body);
      font-size: 13px;
      font-weight: 500;
      padding: 13px 26px;
      border-radius: var(--r-pill);
      letter-spacing: 0.04em;
      transition: background 0.2s;
    }
    .btn-terra:hover { background: var(--terra-dark); }
    .btn-terra:focus-visible { outline: 2px solid var(--terra); outline-offset: 3px; }

    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: transparent;
      color: var(--sage);
      font-family: var(--font-body);
      font-size: 13px;
      font-weight: 500;
      padding: 11px 22px;
      border-radius: var(--r-pill);
      border: 1.5px solid var(--sage);
      transition: background 0.2s, color 0.2s;
    }
    .btn-outline:hover { background: var(--sage); color: var(--white); }
    .btn-outline:focus-visible { outline: 2px solid var(--sage); outline-offset: 3px; }

    /* ─── NAV ────────────────────────────────────────────────── */
    .nav-wrapper {
      position: sticky;
      top: 0;
      z-index: 200;
      background: var(--white);
      border-bottom: 1px solid var(--cream-dark);
    }

    nav {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 48px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 76px;
    }

    .nav-logo { display: flex; align-items: center; flex-shrink: 0; }
    .nav-logo img.logo-full { height: 46px; width: auto; }
    .nav-logo img.logo-icon { height: 44px; width: auto; display: none; }

    .nav-menu {
      display: flex;
      align-items: center;
      gap: 28px;
    }

    .nav-menu a {
      font-size: 13px;
      font-weight: 400;
      color: var(--stone-dark);
      letter-spacing: 0.025em;
      transition: color 0.15s;
    }
    .nav-menu a:hover { color: var(--sage); }
    .nav-menu a[aria-current="page"] { color: var(--sage); font-weight: 500; }

    .nav-lang {
      font-size: 11px;
      color: var(--stone);
      border: 1px solid var(--cream-dark);
      padding: 5px 12px;
      border-radius: 20px;
      letter-spacing: 0.06em;
      cursor: pointer;
      background: transparent;
      font-family: var(--font-body);
      transition: border-color 0.2s;
    }
    .nav-lang:hover { border-color: var(--sage); color: var(--sage); }

    .nav-cta {
      background: var(--terra);
      color: var(--white) !important;
      font-size: 12px;
      font-weight: 500;
      padding: 9px 20px;
      border-radius: var(--r-pill);
      letter-spacing: 0.04em;
      transition: background 0.2s;
    }
    .nav-cta:hover { background: var(--terra-dark) !important; }

    .nav-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
    }
    .nav-toggle span {
      display: block;
      width: 22px;
      height: 1.5px;
      background: var(--stone-dark);
      border-radius: 2px;
      transition: all 0.25s;
    }

    /* ─── PAGE HERO (interior) ───────────────────────────────── */
    .page-hero {
      background: var(--sage);
      padding: 56px 48px 64px;
      position: relative;
      overflow: hidden;
    }

    .page-hero::after {
      content: '';
      position: absolute;
      top: -60px;
      right: -60px;
      width: 320px;
      height: 320px;
      border-radius: 50%;
      background: rgba(255,255,255,0.04);
      pointer-events: none;
    }

    .breadcrumb {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 11px;
      color: rgba(255,255,255,0.45);
      margin-bottom: 24px;
      letter-spacing: 0.03em;
    }
    .breadcrumb a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
    .breadcrumb a:hover { color: rgba(255,255,255,0.8); }
    .breadcrumb i { font-size: 12px; }

    .page-hero-eyebrow {
      font-size: 10px;
      font-weight: 400;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.48);
      display: block;
      margin-bottom: 16px;
    }

    .page-hero h1 {
      font-family: var(--font-display);
      font-size: clamp(38px, 5vw, 52px);
      font-weight: 500;
      color: var(--white);
      line-height: 1.08;
      max-width: 600px;
    }
    .page-hero h1 em { font-style: italic; color: #A8C4B4; }

    .page-hero-sub {
      font-size: 14px;
      font-weight: 300;
      color: rgba(255,255,255,0.72);
      line-height: 1.8;
      margin-top: 20px;
      max-width: 520px;
    }

    /* WAVE interior */
    .wave-sm {
      display: block;
      background: var(--sage);
      line-height: 0;
      overflow: hidden;
    }
    .wave-sm svg { display: block; width: 100%; }

    /* ─── SECCIÓN PERFIL PRINCIPAL ───────────────────────────── */
    .perfil-principal {
      padding: var(--section-pad);
      display: grid;
      grid-template-columns: 400px 1fr;
      gap: 72px;
      align-items: start;
    }

    .perfil-img-col { position: sticky; top: 96px; }

    .perfil-img-wrap {
      border-radius: var(--r-md);
      overflow: hidden;
      background: var(--cream);
      border: 1px solid var(--cream-dark);
      margin-bottom: 20px;
    }

    .perfil-img-wrap img {
      width: 100%;
      height: 480px;
      object-fit: cover;
      object-position: top center;
    }

    .perfil-img-placeholder {
      width: 100%;
      height: 480px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
      color: var(--stone);
      background: var(--cream);
    }
    .perfil-img-placeholder span {
      font-size: 10px;
      letter-spacing: 0.07em;
      color: var(--stone);
    }

    .perfil-contact-card {
      background: var(--sage);
      border-radius: var(--r-md);
      padding: 24px;
    }

    .perfil-contact-card p {
      font-family: var(--font-display);
      font-size: 18px;
      color: var(--white);
      margin-bottom: 18px;
      line-height: 1.35;
    }

    .contact-btn-group {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .cta-wa {
      display: flex;
      align-items: center;
      gap: 10px;
      background: var(--green-wa);
      color: var(--white);
      font-size: 13px;
      font-weight: 500;
      padding: 12px 18px;
      border-radius: var(--r-pill);
      transition: opacity 0.2s;
    }
    .cta-wa:hover { opacity: 0.88; }

    .cta-sms {
      display: flex;
      align-items: center;
      gap: 10px;
      background: rgba(255,255,255,0.1);
      color: var(--white);
      font-size: 13px;
      padding: 12px 18px;
      border-radius: var(--r-pill);
      border: 1px solid rgba(255,255,255,0.2);
      transition: background 0.2s;
    }
    .cta-sms:hover { background: rgba(255,255,255,0.18); }

    /* ─── CONTENIDO DEL PERFIL ───────────────────────────────── */
    .perfil-content { padding-top: 4px; }

    .perfil-content .body-text:last-of-type { margin-bottom: 40px; }

    /* ─── FORMACIÓN ──────────────────────────────────────────── */
    .formacion-section {
      background: var(--cream);
      padding: var(--section-pad);
    }

    .formacion-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-top: 44px;
    }

    .formacion-card {
      background: var(--white);
      border-radius: var(--r-md);
      padding: 28px;
      border: 1px solid var(--cream-dark);
      display: flex;
      gap: 18px;
      align-items: flex-start;
      transition: border-color 0.2s;
    }
    .formacion-card:hover { border-color: var(--sage-light); }

    .fc-icon {
      width: 44px;
      height: 44px;
      background: var(--sage-pale);
      border-radius: var(--r-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--sage);
      font-size: 22px;
      flex-shrink: 0;
    }

    .fc-body { flex: 1; min-width: 0; }

    .fc-degree {
      font-family: var(--font-display);
      font-size: 18px;
      font-weight: 500;
      color: var(--text-main);
      line-height: 1.25;
      margin-bottom: 6px;
    }

    .fc-inst {
      font-size: 12px;
      color: var(--sage-mid);
      font-weight: 500;
      margin-bottom: 4px;
      letter-spacing: 0.02em;
    }

    .fc-detail {
      font-size: 12px;
      color: var(--stone);
      line-height: 1.65;
    }

    .fc-tag {
      display: inline-block;
      background: var(--sage-pale);
      color: var(--sage);
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.06em;
      padding: 3px 10px;
      border-radius: 20px;
      margin-top: 10px;
    }

    /* ─── ENFOQUE TERAPÉUTICO ────────────────────────────────── */
    .enfoque-section {
      padding: var(--section-pad);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: center;
    }

    .enfoque-img-wrap {
      border-radius: var(--r-md);
      overflow: hidden;
      background: var(--cream);
      border: 1px solid var(--cream-dark);
    }

    .enfoque-img-wrap img {
      width: 100%;
      height: 360px;
      object-fit: cover;
      object-position: center;
    }

    .enfoque-img-placeholder {
      width: 100%;
      height: 360px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
      color: var(--stone);
    }
    .enfoque-img-placeholder span { font-size: 10px; letter-spacing: 0.07em; }

    .pilares-list {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-top: 28px;
    }

    .pilar-item {
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }

    .pilar-num {
      font-family: var(--font-display);
      font-size: 28px;
      font-weight: 400;
      color: var(--sage-pale);
      line-height: 1;
      min-width: 32px;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .pilar-body {}

    .pilar-title {
      font-size: 14px;
      font-weight: 500;
      color: var(--text-main);
      margin-bottom: 4px;
    }

    .pilar-desc {
      font-size: 13px;
      color: var(--stone);
      line-height: 1.75;
    }

    /* ─── EXPERIENCIA COMUNITARIA ────────────────────────────── */
    .comunidad-section {
      background: var(--sage);
      padding: var(--section-pad);
    }

    .comunidad-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }

    .comunidad-section .eyebrow { color: rgba(255,255,255,0.42); }
    .comunidad-section .heading-display { color: var(--white); }
    .comunidad-section .heading-display em { color: #A8C4B4; }

    .comunidad-text p {
      font-size: 14px;
      color: rgba(255,255,255,0.72);
      line-height: 1.9;
      margin-bottom: 24px;
    }

    .valores-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .valor-card {
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: var(--r-md);
      padding: 20px;
    }

    .valor-icon {
      font-size: 24px;
      color: #A8C4B4;
      margin-bottom: 10px;
    }

    .valor-title {
      font-size: 13px;
      font-weight: 500;
      color: var(--white);
      margin-bottom: 5px;
    }

    .valor-desc {
      font-size: 11px;
      color: rgba(255,255,255,0.55);
      line-height: 1.65;
    }

    /* ─── CTA FINAL ──────────────────────────────────────────── */
    .cta-final {
      padding: var(--section-pad);
      text-align: center;
      background: var(--white);
    }

    .cta-final .heading-display { margin-bottom: 16px; }

    .cta-final .body-text {
      max-width: 520px;
      margin: 0 auto 36px;
    }

    .cta-final-actions {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* ─── FOOTER ─────────────────────────────────────────────── */
    .footer-main {
      background: var(--stone-dark);
      padding: 52px 48px;
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr;
      gap: 48px;
    }

    .ft-logo { height: 42px; width: auto; filter: brightness(0) invert(1); opacity: 0.82; margin-bottom: 16px; }

    .ft-tagline {
      font-size: 12px;
      color: rgba(255,255,255,0.42);
      line-height: 1.75;
      max-width: 230px;
    }

    .ft-col-title {
      font-size: 10px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.32);
      margin-bottom: 16px;
      font-weight: 400;
    }

    .ft-link {
      display: block;
      font-size: 13px;
      color: rgba(255,255,255,0.55);
      margin-bottom: 10px;
      line-height: 1.4;
      transition: color 0.2s;
    }
    .ft-link:hover { color: var(--white); }

    .footer-bottom {
      background: #242421;
      padding: 18px 48px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
    }

    .ft-copy { font-size: 10px; color: rgba(255,255,255,0.28); }

    /* ─── WA FLOAT ───────────────────────────────────────────── */
    .wa-float {
      position: fixed;
      bottom: 28px;
      right: 28px;
      width: 54px;
      height: 54px;
      background: var(--green-wa);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-size: 28px;
      box-shadow: 0 4px 20px rgba(37,211,102,0.4);
      z-index: 300;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .wa-float:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
    .wa-float:focus-visible { outline: 2px solid var(--white); outline-offset: 3px; }

    /* ─── RESPONSIVE ─────────────────────────────────────────── */
    @media (max-width: 900px) {
      :root { --section-pad: 64px 32px; }

      nav { padding: 0 32px; }
      .nav-menu { display: none; }
      .nav-toggle { display: flex; }
      .nav-logo img.logo-full { display: none; }
      .nav-logo img.logo-icon { display: block; }

      .nav-menu.open {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        background: var(--white);
        border-bottom: 1px solid var(--cream-dark);
        padding: 16px 32px 24px;
        z-index: 199;
      }
      .nav-menu.open a { padding: 10px 0; width: 100%; border-bottom: 1px solid var(--cream-dark); }
      .nav-menu.open .nav-lang,
      .nav-menu.open .nav-cta { margin-top: 12px; }

      .page-hero { padding: 48px 32px 52px; }

      .perfil-principal {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      .perfil-img-col { position: static; }
      .perfil-img-wrap img,
      .perfil-img-placeholder { height: 360px; }

      .formacion-grid { grid-template-columns: 1fr; }
      .enfoque-section { grid-template-columns: 1fr; gap: 40px; }
      .comunidad-inner { grid-template-columns: 1fr; gap: 40px; }
      .valores-grid { grid-template-columns: 1fr 1fr; }
      .footer-main { grid-template-columns: 1fr; gap: 36px; }
      .footer-bottom { flex-direction: column; text-align: center; }
    }

    @media (max-width: 600px) {
      :root { --section-pad: 52px 20px; }
      nav { padding: 0 20px; }
      .page-hero { padding: 40px 20px 48px; }
      .valores-grid { grid-template-columns: 1fr; }
      .cta-final-actions { flex-direction: column; align-items: center; }
      .footer-main { padding: 40px 20px; }
      .footer-bottom { padding: 16px 20px; }
      .wa-float { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 24px; }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { transition: none !important; }
      html { scroll-behavior: auto; }
    }


/* ═══════════════════════════════════════════════════════════════
   CORRECCIÓN — BREADCRUMB EN HERO DE PÁGINAS INTERIORES
   Fuerza el breadcrumb a alinearse a la izquierda y no estirarse,
   evitando que "Sobre mí" flote hacia la derecha del hero.
   ═══════════════════════════════════════════════════════════════ */
.page-hero .breadcrumb {
  display: inline-flex !important;
  width: auto !important;
  max-width: max-content !important;
  justify-content: flex-start !important;
  flex-wrap: wrap;
}
.page-hero .breadcrumb a,
.page-hero .breadcrumb span,
.page-hero .breadcrumb i {
  flex: 0 0 auto;
}
