/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:        #FAF8F4;
  --bg-2:      #F2F6F5;
  --bg-card:   #FFFFFF;
  --bg-dark:   #0F2E33;
  --bg-dark2:  #163E45;

  --text:      #16282A;
  --text-soft: #44595B;
  --text-mute: #7C8E90;
  --text-light:#F7FAF9;

  --navy:      #0F2E33;
  --navy-2:    #163E45;
  --gold:      #C68A3D;
  --gold-dark: #A66F2C;
  --gold-light:#E3B273;
  --gold-faint: rgba(198,138,61,0.10);

  --line:       rgba(15,46,51,0.10);
  --line-dark:  rgba(247,250,249,0.12);
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --shadow-sm:  0 2px 10px rgba(15,46,51,0.07);
  --shadow-md:  0 8px 32px rgba(15,46,51,0.11);
  --shadow-lg:  0 20px 64px rgba(15,46,51,0.15);

  --section-pad: clamp(4.5rem, 9vw, 7.5rem);
  --container:   1200px;
  --gap:         clamp(1rem, 2.5vw, 1.75rem);

  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans:  'Manrope', system-ui, -apple-system, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { -webkit-text-size-adjust: 100%; tab-size: 2; scroll-behavior: smooth; overflow-x: clip; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { font-family: var(--serif); text-wrap: balance; line-height: 1.08; letter-spacing: -0.01em; font-weight: 500; }
::selection { background: var(--gold); color: var(--text-light); }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1rem; background: var(--text-light); color: var(--bg-dark);
  z-index: 9999; border-radius: 8px; font-weight: 600;
}
.skip-link:focus { top: 1rem; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* =============================================================
   3. Utilities
   ============================================================= */
.container { max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }
.section-header { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-header h2 { font-family: var(--serif); font-size: clamp(1.75rem, 4vw, 2.8rem); font-weight: 700; line-height: 1.18; text-wrap: balance; }
.section-header p { color: var(--text-soft); font-size: 1.05rem; margin-top: 1rem; max-width: 56ch; margin-inline: auto; line-height: 1.7; }
.section-kicker {
  display: inline-block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold-dark); margin-bottom: 0.85rem;
}
section { padding-block: var(--section-pad); }
#booking { padding-bottom: 0; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }

.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 1.05rem 1.9rem; border-radius: 999px; font-weight: 600; font-size: 1rem;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background .35s var(--ease-out);
}
.btn-primary { background: var(--gold); color: var(--text-light); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: rgba(247,250,249,0.1); color: var(--text-light); border: 1px solid rgba(247,250,249,0.4); }
.btn-ghost:hover { background: rgba(247,250,249,0.18); transform: translateY(-2px); }
.btn-ghost-dark { background: transparent; color: var(--navy); border: 1px solid var(--line); }
.btn-ghost-dark:hover { background: var(--bg-2); border-color: var(--navy); }
.btn-full { width: 100%; justify-content: center; }

/* =============================================================
   4. NAV
   ============================================================= */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 500; padding-block: 1.1rem; transition: background .4s var(--ease-out), box-shadow .4s var(--ease-out), padding .4s var(--ease-out); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.nav__logo { display: flex; align-items: center; gap: 0.6rem; line-height: 1.2; }
.nav__logo-icon { width: 145px; height: 42px; object-fit: contain; flex-shrink: 0; }
.nav__logo-text { display: flex; flex-direction: column; }
.nav__logo-name { font-family: var(--serif); font-size: 1.15rem; color: var(--text-light); font-weight: 600; transition: color .4s; }
.nav__logo-sub { font-size: 0.68rem; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(247,250,249,0.75); transition: color .4s; }
.nav__links { display: none; gap: 2rem; list-style: none; }
.nav__links a { font-size: 0.92rem; font-weight: 500; color: var(--text-light); transition: color .3s; }
.nav__links a:hover { color: var(--gold-light); }
.nav__actions { display: flex; align-items: center; gap: 1rem; }
.nav__cta { display: none; padding: 0.65rem 1.3rem; border-radius: 999px; background: var(--gold); color: var(--text-light); font-weight: 600; font-size: 0.88rem; transition: background .3s; }
.nav__cta:hover { background: var(--gold-dark); }
.nav__hamburger { width: 40px; height: 40px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.nav__hamburger span { width: 22px; height: 2px; background: var(--text-light); transition: transform .3s, opacity .3s; }
.nav.is-solid { background: rgba(250,248,244,0.96); backdrop-filter: blur(12px); box-shadow: var(--shadow-sm); padding-block: 0.7rem; }
.nav.is-solid .nav__logo-name, .nav.is-solid .nav__links a { color: var(--text); }
.nav.is-solid .nav__logo-sub { color: var(--text-mute); }
.nav.is-solid .nav__hamburger span { background: var(--text); }

@media (min-width: 960px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav__hamburger { display: none; }
}

.nav__mobile-menu { position: fixed; inset: 0; top: 0; background: var(--navy); z-index: 499; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.75rem; transform: translateY(-100%); transition: transform .45s var(--ease-out); }
.nav__mobile-menu.is-open { transform: translateY(0); }
.nav__mobile-menu a { font-family: var(--serif); font-size: 1.6rem; color: var(--text-light); }
.nav__mobile-menu .nav__cta { display: inline-flex; }

/* =============================================================
   5. HERO
   ============================================================= */
.hero { position: relative; min-height: 100vh; min-height: 100svh; display: flex; align-items: center; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(15,46,51,0.78) 0%, rgba(15,46,51,0.62) 45%, rgba(15,46,51,0.9) 100%); }
.hero__glow { position: absolute; z-index: 1; inset: -20% -10% -40% -10%; background: radial-gradient(45% 35% at 70% 30%, rgba(198,138,61,0.28), transparent 70%); filter: blur(60px); pointer-events: none; }
.hero .container { position: relative; z-index: 3; }
.hero__layout { display: flex; flex-direction: column; align-items: flex-start; gap: 3rem; padding-block: 2rem 0; }
.hero__content { max-width: 680px; flex: 1 1 560px; min-width: 0; }
.hero__portrait { display: none; flex-shrink: 0; width: min(40vw, 480px); }
.hero__portrait img { height: min(68vh, 620px); width: 100%; object-fit: cover; border-radius: 20px; box-shadow: var(--shadow-lg); }
.hero__eyebrow { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.75rem; }
.hero__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.hero__eyebrow-text { font-size: 0.9rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold-light); }
.hero__title { font-size: clamp(2.8rem, 5.6vw, 5rem); color: var(--text-light); margin-bottom: 1rem; overflow-wrap: break-word; }
.hero__title em { font-style: italic; color: var(--gold-light); }
.hero__sub { font-size: 1.2rem; color: rgba(247,250,249,0.88); max-width: 50ch; margin-bottom: 1.5rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1.1rem; }
.hero__scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.hero__scroll-line { width: 1px; height: 36px; background: linear-gradient(180deg, var(--gold-light), transparent); animation: scrollPulse 2.2s ease-in-out infinite; }
.hero__scroll span { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(247,250,249,0.7); }
@keyframes scrollPulse { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }

@media (min-width: 960px) {
  .hero__layout { flex-direction: row; align-items: center; justify-content: space-between; }
  .hero__portrait { display: block; }
}

/* =============================================================
   6. TRUST STRIP
   ============================================================= */
.trust-strip { background: var(--bg-dark); padding-block: clamp(2.5rem, 5vw, 3.5rem); }
.trust-strip__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem 1.25rem; }
.trust-strip__item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.5rem; padding-inline: 0.5rem; position: relative; }
.trust-strip__item:not(:last-child)::after { content: ""; }
.trust-strip__num { font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--gold-light); font-weight: 600; }
.trust-strip__icon { font-size: 1.8rem; }
.trust-strip__label { font-size: 0.85rem; color: rgba(247,250,249,0.78); max-width: 22ch; }

@media (min-width: 720px) {
  .trust-strip__grid { grid-template-columns: repeat(4, 1fr); }
  .trust-strip__item:not(:last-child) { border-right: 1px solid var(--line-dark); }
}

/* =============================================================
   7. TESTIMONIOS
   ============================================================= */
.reviews__grid { display: grid; grid-template-columns: 1fr; gap: var(--gap); }
.review-card { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 1.6rem; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out); }
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review-card__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.9rem; gap: 0.75rem; }
.review-card__left { display: flex; align-items: center; gap: 0.75rem; }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--text-light); font-weight: 700; font-family: var(--serif); flex-shrink: 0; }
.review-card__name { display: block; font-weight: 600; font-size: 0.92rem; }
.review-card__date { display: block; font-size: 0.76rem; color: var(--text-mute); }
.doctoralia-badge { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.03em; color: var(--navy); background: var(--gold-faint); padding: 0.3rem 0.6rem; border-radius: 999px; white-space: nowrap; }
.review-card__stars { color: var(--gold); letter-spacing: 0.15em; margin-bottom: 0.65rem; font-size: 0.95rem; }
.review-card__text { font-style: italic; color: var(--text-soft); font-size: 0.95rem; }

@media (min-width: 720px) { .reviews__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .reviews__grid { grid-template-columns: repeat(3, 1fr); } }

/* =============================================================
   8. ANTES / DESPUÉS (simulación de visión)
   ============================================================= */
.ba-section { background: var(--bg-dark); padding: 2.25rem 0 2.75rem; color: var(--text-light); }
.ba-section .container { max-width: min(1480px, 96vw); }
.ba-section .section-header h2 { color: var(--text-light); }
.ba-section .section-header p { color: rgba(247,250,249,0.75); }
.ba-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.ba-slider { position: relative; aspect-ratio: 4/3; border-radius: var(--radius-md); overflow: hidden; cursor: ew-resize; touch-action: none; }
.ba-slider__before, .ba-slider__after { position: absolute; inset: 0; }
.ba-slider__before img, .ba-slider__after img { width: 100%; height: 100%; object-fit: cover; }
.ba-slider__after { clip-path: inset(0 0 0 50%); }
.ba-slider--vision .ba-slider__before img { filter: blur(7px) saturate(0.8) brightness(0.88); }
.ba-slider__handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: rgba(247,250,249,0.9); transform: translateX(-50%); }
.ba-slider__btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 42px; height: 42px; border-radius: 50%; background: var(--text-light); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md); }
.ba-slider__arrow { font-size: 0.95rem; color: var(--navy); font-weight: 700; }
.ba-slider__tag { position: absolute; bottom: 0.75rem; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; padding: 0.3rem 0.6rem; border-radius: 999px; background: rgba(15,46,51,0.55); color: var(--text-light); backdrop-filter: blur(4px); }
.ba-slider__tag--before { left: 0.75rem; }
.ba-slider__tag--after { right: 0.75rem; }
.ba-card__label { margin-top: 0.75rem; font-weight: 600; font-size: 0.92rem; text-align: center; color: rgba(247,250,249,0.9); }
.ba-note { text-align: center; font-size: 0.78rem; font-style: italic; margin-top: 1.5rem; }

@media (min-width: 720px) { .ba-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1280px) { .ba-grid { grid-template-columns: repeat(4, 1fr); } }

/* =============================================================
   9. BOOKING
   ============================================================= */
.booking-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--bg-dark); box-shadow: var(--shadow-md); }
.booking-card__inner { padding: clamp(2rem, 4vw, 2.75rem); }
.booking-card__cta .section-kicker { color: var(--gold); }
.booking-card__cta h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); color: var(--text-light); margin: 0.4rem 0 0.6rem; }
.booking-card__sub { color: rgba(247,250,249,0.65); font-size: 0.92rem; margin-bottom: 1.5rem; max-width: 38ch; }
.booking-card__actions { display: flex; flex-direction: column; gap: 0.75rem; }
.booking-wa-btn, .booking-phone-btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.65rem; padding: 0.85rem 1.75rem; border-radius: 12px; font-weight: 600; font-size: 0.95rem; transition: background .25s, transform .2s; }
.booking-wa-btn { background: #25D366; color: #06210f; }
.booking-wa-btn:hover { background: #1fb858; transform: translateY(-2px); }
.booking-phone-btn { background: rgba(247,250,249,0.08); border: 1px solid rgba(247,250,249,0.3); color: var(--text-light); }
.booking-phone-btn:hover { background: rgba(247,250,249,0.16); transform: translateY(-2px); }
.booking-card__divider { height: 1px; background: rgba(247,250,249,0.1); margin: 2rem 0; }
.booking-card__details { display: flex; flex-direction: column; gap: 1.1rem; }
.booking-detail { display: flex; align-items: flex-start; gap: 0.75rem; color: var(--text-light); }
.booking-detail svg { flex-shrink: 0; margin-top: 0.15rem; stroke: var(--gold); }
.booking-detail strong { display: block; font-size: 0.88rem; font-weight: 600; margin-bottom: 0.15rem; }
.booking-detail span { font-size: 0.84rem; color: rgba(247,250,249,0.55); }
.booking-chips { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-top: 0.25rem; }
.chip { font-size: 0.72rem; padding: 0.22rem 0.65rem; border-radius: 4px; background: var(--gold); color: var(--bg-dark) !important; font-weight: 600; display: inline-block; }

@media (min-width: 480px) {
  .booking-card__actions { flex-direction: row; }
}

@media (min-width: 800px) {
  .booking-card__inner { display: grid; grid-template-columns: 1fr auto 1fr; gap: 0; align-items: center; }
  .booking-card__cta { padding-right: 2.5rem; }
  .booking-card__divider { width: 1px; height: 100%; margin: 0; background: rgba(247,250,249,0.1); }
  .booking-card__details { padding-left: 2.5rem; }
}

/* =============================================================
   10. SERVICIOS
   ============================================================= */
.services-grid { display: grid; grid-template-columns: 1fr; gap: var(--gap); }
.service-card { background: var(--bg-card); border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out); }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.service-card--featured { border: 1px solid var(--gold); }
.service-card__img { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.service-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
.service-card:hover .service-card__img img { transform: scale(1.06); }
.service-card__badges { position: absolute; top: 0.75rem; left: 0.75rem; }
.badge { font-size: 0.7rem; font-weight: 700; padding: 0.35rem 0.7rem; border-radius: 999px; }
.badge-laser { background: var(--gold); color: var(--text-light); }
.service-card__body { padding: 1.25rem 1.35rem; }
.service-card__title { font-size: 1.15rem; margin: 0.2rem 0 0.5rem; }
.service-card__desc { color: var(--text-soft); font-size: 0.9rem; margin-bottom: 0; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; overflow: hidden; }

.service-card--note { display: flex; flex-direction: column; justify-content: center; background: var(--bg-alt, #f7f5f1); border-style: dashed; box-shadow: none; }
.service-card--note:hover { transform: none; box-shadow: none; }
.service-card--note .service-card__body { display: flex; flex-direction: column; justify-content: center; height: 100%; }
.service-card--note .service-card__title { color: var(--text-mute); font-size: 1rem; }
.service-card--note .service-card__desc { -webkit-line-clamp: 5; }
.service-card__cta-btn { display: inline-block; margin-top: 0.85rem; padding: 0.5rem 1rem; border-radius: 8px; background: #55676A; color: var(--text-light); font-size: 0.8rem; font-weight: 600; align-self: flex-start; transition: background .2s; }
.service-card__cta-btn:hover { background: #46565A; }

@media (min-width: 720px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

/* =============================================================
   11. ENFOQUE FUNCIONAL
   ============================================================= */
.functional { background: var(--bg-2); }
.functional__grid { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 4vw, 3rem); align-items: center; }
.functional__bio { font-family: var(--serif); font-size: 1.25rem; font-style: italic; color: var(--text); line-height: 1.5; margin: 1.25rem 0 1.5rem; }
.functional__sub { color: var(--text-soft); }
.functional__sub em { color: var(--gold-dark); font-style: italic; }
.functional__pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.pillar { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 1.5rem; }
.pillar__icon { font-size: 1.8rem; display: block; margin-bottom: 0.75rem; }
.pillar h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.pillar p { font-size: 0.85rem; color: var(--text-mute); }

@media (min-width: 960px) { .functional__grid { grid-template-columns: 1fr 1fr; } }

/* =============================================================
   12. ASEGURADORAS
   ============================================================= */
.insurers { padding-block: clamp(2.5rem, 5vw, 3.5rem); }
.insurers__inner { text-align: center; }
.insurers__title { font-size: 1.4rem; margin-bottom: 1.5rem; }
.insurers__chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; margin-bottom: 1rem; }
.insurer-chip { padding: 0.6rem 1.4rem; border-radius: 999px; border: 1px solid var(--line); font-weight: 700; font-size: 0.85rem; color: var(--navy); background: var(--bg-card); }
.insurers__note { font-size: 0.8rem; color: var(--text-mute); }

/* =============================================================
   13. LA DOCTORA
   ============================================================= */
.about-grid { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 4vw, 3rem); align-items: stretch; }
.about__img-wrap { border-radius: var(--radius-lg); overflow: hidden; min-height: 320px; }
.about__img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.about__content { display: flex; flex-direction: column; justify-content: center; }
.about__name { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin: 0.4rem 0 0.5rem; }
.about__title { color: var(--gold-dark); font-weight: 600; font-size: 0.95rem; margin-bottom: 1.25rem; }
.about__bio { color: var(--text-soft); margin-bottom: 1.1rem; }
.about__bio em { color: var(--text); }

@media (min-width: 960px) { .about-grid { grid-template-columns: 1fr 1fr; } }

/* =============================================================
   14. FAQ
   ============================================================= */
#faq { padding-block: clamp(2.5rem, 5vw, 4rem); }
#ubicacion { padding-top: clamp(2.5rem, 5vw, 4rem); }
.faq-item { border-bottom: 1px solid var(--line); padding-block: 1.25rem; }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; cursor: pointer; font-weight: 600; font-size: 1.02rem; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item__icon { font-size: 1.3rem; color: var(--gold-dark); transition: transform .3s var(--ease-out); flex-shrink: 0; margin-left: 1rem; }
.faq-item[open] .faq-item__icon { transform: rotate(45deg); }
.faq-item__body { color: var(--text-soft); margin-top: 0.9rem; font-size: 0.95rem; max-width: 70ch; }
.faq-cta { text-align: center; margin-top: 2.5rem; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.faq-cta p { color: var(--text-soft); }

/* =============================================================
   15. UBICACIÓN
   ============================================================= */
.locations-grid { display: grid; grid-template-columns: 1fr; gap: var(--gap); }
.location-info h3 { font-size: 1.3rem; margin-bottom: 1.25rem; }
.location-detail { display: flex; gap: 0.85rem; margin-bottom: 1.1rem; }
.location-detail__icon { font-size: 1.1rem; flex-shrink: 0; }
.location-detail strong { display: block; font-size: 0.85rem; margin-bottom: 0.15rem; }
.location-detail div div, .location-detail div { color: var(--text-soft); font-size: 0.92rem; }
.location-extra { margin-top: 1.5rem; font-size: 0.82rem; color: var(--text-mute); max-width: 48ch; }
.map-wrap { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow-sm); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

@media (min-width: 960px) { .locations-grid { grid-template-columns: 1fr 1fr; } }

/* =============================================================
   16. FOOTER
   ============================================================= */
.footer { background: var(--bg-dark); color: rgba(247,250,249,0.85); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 2.25rem; margin-bottom: 2.5rem; }
.footer__logo { display: block; font-family: var(--serif); font-size: 1.3rem; color: var(--text-light); font-weight: 600; }
.footer__logo-sub { display: block; font-size: 0.75rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--gold-light); margin: 0.3rem 0 0.9rem; }
.footer__brand p { font-size: 0.85rem; color: rgba(247,250,249,0.65); }
.footer__brand p + p { margin-top: 0.3rem; }
.footer__col-title { display: block; font-weight: 700; font-size: 0.85rem; color: var(--text-light); margin-bottom: 0.9rem; }
.footer__col-links { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; padding: 0; margin: 0; }
.footer__col-links a { font-size: 0.86rem; color: rgba(247,250,249,0.7); transition: color .25s; }
.footer__col-links a:hover { color: var(--gold-light); }
.footer__bottom { border-top: 1px solid var(--line-dark); padding-top: 1.5rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; }
.footer__copy { font-size: 0.8rem; color: rgba(247,250,249,0.6); }
.footer__credits a { font-size: 0.8rem; color: rgba(247,250,249,0.6); }
.footer__credits a:hover { color: var(--gold-light); }
.footer__socials { display: flex; gap: 0.75rem; }
.footer__socials--col { flex-wrap: wrap; }
.footer__social { width: 34px; height: 34px; border-radius: 50%; background: rgba(247,250,249,0.08); display: flex; align-items: center; justify-content: center; color: var(--text-light); transition: background .25s, transform .25s; }
.footer__social:hover { background: var(--gold); transform: translateY(-2px); }
.footer__social-icon--mono { filter: brightness(0) invert(1); }

@media (min-width: 720px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; align-items: start; } }
.footer__grid > div { text-align: left; }

/* =============================================================
   17. WHATSAPP FLOAT
   ============================================================= */
.wa-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 600;
  display: flex; align-items: center; gap: 0.6rem;
  background: #25D366; color: #06210f; border-radius: 999px;
  padding: 0.85rem; box-shadow: var(--shadow-lg);
  opacity: 0; transform: translateY(20px) scale(0.9); pointer-events: none;
  transition: opacity .4s var(--ease-out), transform .4s var(--ease-out), background .25s;
}
.wa-float.is-visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.wa-float:hover { background: #1fb858; }
.wa-float__text { display: none; font-weight: 700; font-size: 0.88rem; padding-right: 0.35rem; }
.wa-float.is-pulsing { animation: waPulse 0.6s var(--ease-out) 3; }
@keyframes waPulse { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(0) scale(1.08); } }

@media (min-width: 720px) { .wa-float__text { display: inline-block; } }

/* =============================================================
   18. BLOG
   ============================================================= */
.blog-hero { background: var(--bg-dark); padding-block: clamp(6.5rem, 12vw, 9.5rem) clamp(3rem, 6vw, 4rem); position: relative; overflow: hidden; }
.blog-hero::after { content: ""; position: absolute; inset: -20% -10% -60% -10%; background: radial-gradient(45% 40% at 75% 20%, rgba(198,138,61,0.22), transparent 70%); filter: blur(60px); pointer-events: none; }
.blog-hero .container { position: relative; z-index: 1; text-align: center; }
.blog-hero__kicker { color: var(--gold-light); }
.blog-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); color: var(--text-light); margin: 0.5rem 0 0.9rem; }
.blog-hero p { color: rgba(247,250,249,0.75); font-size: 1.05rem; max-width: 56ch; line-height: 1.7; margin-inline: auto; }

.blog-list { padding-block: clamp(3.5rem, 7vw, 5.5rem); }
.blog-grid { display: flex; flex-direction: column; }
.blog-card { display: flex; flex-direction: column; gap: 1.25rem; padding-block: clamp(2rem, 4vw, 2.75rem); border-bottom: 1px solid var(--line); }
.blog-grid .blog-card:first-child { padding-top: 0; }
.blog-grid .blog-card:last-child { border-bottom: 0; padding-bottom: 0; }
.blog-card__img { position: relative; overflow: hidden; border-radius: var(--radius-md); flex-shrink: 0; aspect-ratio: 16/10; }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
.blog-card:hover .blog-card__img img { transform: scale(1.05); }
.blog-card__body { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.blog-card__date { font-size: 0.76rem; color: var(--text-mute); font-weight: 600; letter-spacing: 0.03em; text-transform: uppercase; margin-bottom: 0.6rem; }
.blog-card__title { font-size: 1.4rem; margin-bottom: 0.6rem; }
.blog-card__title a { transition: color .25s; }
.blog-card__title a:hover { color: var(--gold-dark); }
.blog-card__excerpt { color: var(--text-soft); font-size: 0.96rem; line-height: 1.7; margin-bottom: 1.1rem; }
.blog-card__link { display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 700; font-size: 0.88rem; color: var(--gold-dark); margin-top: auto; }
.blog-card__link svg { transition: transform .25s var(--ease-out); }
.blog-card:hover .blog-card__link svg { transform: translateX(4px); }

@media (min-width: 720px) {
  .blog-card { flex-direction: row; align-items: center; gap: 2.25rem; }
  .blog-card__img { width: 42%; max-width: 340px; }
  .blog-card__title { font-size: 1.55rem; }
}

/* ---- single article ---- */
.article-hero { background: var(--bg-dark); padding-block: clamp(6.5rem, 12vw, 9.5rem) clamp(2.5rem, 5vw, 3.5rem); }
.article-hero .container { max-width: 780px; }
.article-hero__back { display: flex; width: fit-content; align-items: center; gap: 0.4rem; font-size: 0.85rem; font-weight: 600; color: rgba(247,250,249,0.7); margin-bottom: 1.5rem; transition: color .25s; }
.article-hero__back:hover { color: var(--gold-light); }
.article-hero__tag { color: var(--gold-light); }
.article-hero h1 { font-size: clamp(2rem, 4.5vw, 2.9rem); color: var(--text-light); margin: 0.6rem 0 1rem; }
.article-hero__meta { display: flex; flex-wrap: wrap; gap: 0.5rem 1rem; font-size: 0.85rem; color: rgba(247,250,249,0.6); }

.article-body { padding-block: clamp(3rem, 6vw, 4.5rem); }
.article-body .container { max-width: 780px; }
.article-body__img { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 2.5rem; box-shadow: var(--shadow-md); aspect-ratio: 16/9; }
.article-body__img img { width: 100%; height: 100%; object-fit: cover; }
.article-content { font-size: 1.08rem; line-height: 1.85; color: var(--text-soft); }
.article-content p { margin-bottom: 1.4rem; }
.article-content h2 { font-size: 1.5rem; color: var(--text); margin: 2.25rem 0 1rem; }
.article-content strong { color: var(--text); }
.article-content em { color: var(--gold-dark); font-style: italic; }
.article-content ul { margin: 0 0 1.4rem 1.25rem; }
.article-content li { margin-bottom: 0.5rem; }

.article-more { padding-block: 0 clamp(3.5rem, 7vw, 5.5rem); }
.article-more .section-header { margin-bottom: clamp(2rem, 4vw, 2.75rem); }

/* =============================================================
   19. Credits page
   ============================================================= */
.page-credits { background: var(--bg); min-height: 100vh; }
.page-credits .masthead { padding: 1.5rem clamp(1.25rem, 4vw, 2.5rem); }
.page-credits .masthead a { font-weight: 600; color: var(--gold-dark); }
.page-credits main { max-width: 720px; margin-inline: auto; padding: 1rem clamp(1.25rem, 4vw, 2.5rem) 4rem; }
.page-credits h1 { font-size: 2rem; margin-bottom: 1rem; }
.page-credits p { color: var(--text-soft); margin-bottom: 1.5rem; }
.credits-list { list-style: none; display: flex; flex-direction: column; gap: 0.9rem; }
.credits-list li { font-size: 0.9rem; color: var(--text-soft); border-bottom: 1px solid var(--line); padding-bottom: 0.9rem; }
.credits-list a { color: var(--gold-dark); }

