/* ============================================================
   BELLEZA.CSS — NovaBelleza
   Identidad: Negro base + Gold + Marfil. Fraunces + Montserrat.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;1,9..144,300;1,9..144,400&family=Montserrat:wght@200;300;400;500;600&display=swap');

:root {
  /* Colores oficiales del manual */
  --gold-deep:      #A8863A;
  --gold-champagne: #C9A85E;
  --gold-light:     #E8C96A;
  --ivory:          #F3EFE7;
  --ivory-dark:     #E8E2D4;
  --black:          #000000;
  --black-soft:     #0A0A0A;
  --black-lighter:  #1A1A1A;
  --text-light:     #F3EFE7;
  --text-muted:     #B8B0A0;
  --text-dim:       #7A7468;

  /* Tipografía */
  --font-display:   'Fraunces', Georgia, 'Times New Roman', serif;
  --font-sans:      'Montserrat', system-ui, sans-serif;

  /* Espaciado */
  --section-y:      clamp(4rem, 9vw, 7rem);

  /* Animación */
  --ease:           cubic-bezier(0.65, 0, 0.35, 1);
}

/* ─── Reset suave ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--black);
  color: var(--text-light);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
ul { list-style: none; }

/* ─── Utilidades ─── */
.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

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

/* ─── Tipografía base ─── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-champagne);
  position: relative;
  padding-left: 28px;
  margin-bottom: 1.25rem;
}
.eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 1px;
  background: var(--gold-deep);
  transform: translateY(-50%);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: 1rem;
}
.section-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-champagne);
}

.section-intro {
  font-weight: 300;
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.75;
}

/* ─── Botones ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.78rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  border: 1px solid var(--gold-champagne);
  background: transparent;
  color: var(--gold-champagne);
  transition: all 0.4s var(--ease);
  cursor: pointer;
}
.btn:hover {
  background: var(--gold-champagne);
  color: var(--black);
}
.btn--primary {
  background: var(--gold-champagne);
  color: var(--black);
}
.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -16px rgba(201,168,94,0.6);
}
.btn--dark {
  border-color: var(--ivory);
  color: var(--ivory);
}
.btn--dark:hover {
  background: var(--ivory);
  color: var(--black);
}
.btn--ghost {
  border-color: transparent;
  padding-inline: 0;
}
.btn--ghost:hover {
  background: transparent;
  color: var(--gold-light);
  transform: translateX(6px);
}
.btn svg {
  width: 14px;
  height: 14px;
  transition: transform 0.4s var(--ease);
}
.btn:hover svg { transform: translateX(4px); }

/* ════════════════════════════════════════════
   HEADER — fijo transparente, se oscurece al scroll
   ════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.75rem 0;
  border-bottom-color: rgba(201,168,94,0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.header-logo img {
  height: 56px;
  width: auto;
  display: block;
}
.site-header.is-scrolled .header-logo img {
  height: 48px;
  transition: height 0.3s var(--ease);
}
.footer-brand .header-logo img {
  height: 72px;
}
.header-logo__mark {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 2rem;
  color: var(--gold-champagne);
  line-height: 1;
}
.header-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.header-logo__name {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  color: var(--gold-champagne);
}
.header-logo__name span { font-weight: 500; }
.header-logo__tagline {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.55rem;
  letter-spacing: 2.5px;
  color: var(--gold-deep);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  white-space: nowrap;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 72px;
  z-index: 99;
  pointer-events: auto;
}
@media (max-width: 768px) {
  .nav {
    display: none;
    position: static;
    height: auto;
    transform: none;
    left: auto;
  }
}
@media (max-width: 1200px) {
  .nav { gap: 1.4rem; }
  .nav a { font-size: 0.68rem; letter-spacing: 2px; }
}
@media (max-width: 1024px) {
  .nav { gap: 1.1rem; }
}
.nav a {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ivory);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s var(--ease);
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--gold-champagne);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s var(--ease);
}
.nav a:hover { color: var(--gold-champagne); }
.nav a:hover::after { transform: scaleX(1); }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border: 1px solid var(--gold-champagne);
  color: var(--gold-champagne);
  font-size: 0.7rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 300;
  transition: all 0.3s var(--ease);
}
.header-cta:hover {
  background: var(--gold-champagne);
  color: var(--black);
}
.header-cta svg { width: 14px; height: 14px; }

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--gold-champagne);
}
.menu-toggle svg { width: 24px; height: 24px; }

/* ════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════ */
.hero {
  position: relative;
  background: var(--black);
  overflow: hidden;
}

.hero__bg {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 400px;
  max-height: 700px;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.hero__bg::after {
  display: none;
}

.hero::before { display: none; }
.hero::after { display: none; }

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 4rem 0 5rem;
  text-align: center;
}

.hero__content { max-width: 100%; }

.hero__actions {
  justify-content: center;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.72rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1.5rem;
}
.hero__eyebrow::before,
.hero__eyebrow::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold-deep);
}
.hero__eyebrow::after { flex: 1; max-width: 60px; }

.hero__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 1.75rem;
  color: var(--ivory);
}
.hero__title em {
  display: block;
  font-style: italic;
  font-weight: 300;
  color: var(--gold-champagne);
}

.hero__lead {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 100%;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Placeholder visual del hero — patrón geométrico dorado */
.hero__visual {
  position: relative;
  aspect-ratio: 3/2;
  max-width: 560px;
  width: 100%;
  margin-left: auto;
  border: 1px solid rgba(201,168,94,0.4);
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 30%, rgba(201,168,94,0.22), transparent 60%),
    radial-gradient(circle at 70% 80%, rgba(168,134,58,0.15), transparent 60%),
    linear-gradient(135deg, #0c0c0c, #1a1611);
}
.hero__visual-mark {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  color: var(--gold-champagne);
}
.hero__visual-mark svg {
  width: 140px;
  height: 140px;
  opacity: 0.7;
}
.hero__visual-label {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.68rem;
  letter-spacing: 4px;
  color: var(--gold-deep);
  text-transform: uppercase;
  opacity: 0.85;
  text-align: center;
  line-height: 1.7;
}
.hero__visual-corner {
  position: absolute;
  width: 60px;
  height: 60px;
  border: 1px solid var(--gold-champagne);
}
.hero__visual-corner--tl { top: 16px; left: 16px; border-right: 0; border-bottom: 0; }
.hero__visual-corner--br { bottom: 16px; right: 16px; border-left: 0; border-top: 0; }

/* ════════════════════════════════════════════
   SECCIONES BASE
   ════════════════════════════════════════════ */
.section {
  padding: var(--section-y) 0;
  position: relative;
}
.section--ivory {
  background: var(--ivory);
  color: var(--black);
}
.section--ivory .section-intro { color: #4A4438; }
.section--ivory .eyebrow { color: var(--gold-deep); }
.section--ivory .eyebrow::before { background: var(--gold-deep); }

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-header .eyebrow { padding-left: 28px; }
.section-header .section-intro {
  margin: 0 auto;
}

/* ════════════════════════════════════════════
   SOBRE NOVABELLEZA
   ════════════════════════════════════════════ */
.about {
  background: var(--black);
  border-top: 1px solid rgba(201,168,94,0.08);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.about__title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
  color: var(--ivory);
}
.about__title em { color: var(--gold-champagne); font-style: italic; }

.about__text {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.pillars {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.pillar {
  display: flex;
  gap: 1.25rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(201,168,94,0.12);
}
.pillar:last-child { border-bottom: 0; }
.pillar__num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 2rem;
  color: var(--gold-champagne);
  line-height: 1;
  min-width: 50px;
}
.pillar__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--ivory);
  margin-bottom: 0.4rem;
}
.pillar__desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* Misión y Visión */
.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201,168,94,0.12);
}
.mv-item__label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-champagne);
  margin-bottom: 0.75rem;
  font-weight: 300;
}
.mv-item p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 300;
  margin: 0;
}

/* Botón Cómo llegar */
.map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(201,168,94,0.3);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-champagne);
  transition: all 0.3s var(--ease);
  font-weight: 300;
}
.map-link svg { width: 14px; height: 14px; }
.map-link:hover {
  background: var(--gold-champagne);
  color: var(--black);
  border-color: var(--gold-champagne);
}

/* ════════════════════════════════════════════
   CIRUGÍA ESTÉTICA — sección destacada
   ════════════════════════════════════════════ */
.surgery {
  background: linear-gradient(180deg, var(--black) 0%, var(--black-soft) 100%);
  position: relative;
}

.surgery::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-champagne), transparent);
  opacity: 0.4;
}

.surgery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.surgery-card {
  position: relative;
  padding: 2rem 1.5rem;
  background: rgba(201,168,94,0.03);
  border: 1px solid rgba(201,168,94,0.15);
  transition: all 0.5s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  cursor: pointer;
  overflow: hidden;
}
.surgery-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,94,0.08), transparent);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.surgery-card:hover {
  border-color: var(--gold-champagne);
  transform: translateY(-4px);
}
.surgery-card:hover::before { opacity: 1; }

.surgery-card__num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--gold-deep);
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
}
.surgery-card__name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.35rem;
  color: var(--ivory);
  line-height: 1.2;
  position: relative;
  z-index: 1;
}
.surgery-card__arrow {
  margin-top: auto;
  color: var(--gold-champagne);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  opacity: 0.7;
  transition: opacity 0.4s var(--ease), gap 0.4s var(--ease);
}
.surgery-card:hover .surgery-card__arrow {
  opacity: 1;
  gap: 0.85rem;
}

.surgery__footer {
  margin-top: 3rem;
  text-align: center;
  padding: 2rem;
  border: 1px solid rgba(201,168,94,0.2);
  background: rgba(201,168,94,0.025);
}
.surgery__footer p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-style: italic;
}

/* ════════════════════════════════════════════
   FACIALES — agrupados por categoría
   ════════════════════════════════════════════ */
.facials .section-header { text-align: left; align-items: flex-start; }

.facial-group {
  margin-bottom: 4rem;
}
.facial-group:last-child { margin-bottom: 0; }

.facial-group__head {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(201,168,94,0.18);
}
.facial-group__num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.4rem;
  color: var(--gold-deep);
  letter-spacing: 2px;
}
.facial-group__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--ivory);
}
.facial-group__title em { font-style: italic; color: var(--gold-champagne); }
.facial-group__count {
  margin-left: auto;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 3px;
  color: var(--text-dim);
  text-transform: uppercase;
}

.treatment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.treatment {
  padding: 1.5rem 1.25rem;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.015);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: all 0.4s var(--ease);
  cursor: pointer;
}
.treatment:hover {
  background: rgba(201,168,94,0.05);
  border-color: rgba(201,168,94,0.4);
  transform: translateY(-3px);
}
.treatment__name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--ivory);
}
.treatment__desc {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.facials__footer {
  margin-top: 3rem;
  text-align: center;
}

/* ════════════════════════════════════════════
   CORPORALES (fondo marfil para contraste)
   ════════════════════════════════════════════ */
.body-treatments {
  background: var(--ivory);
  color: var(--black);
}
.body-treatments .section-title,
.body-treatments .pillar__title {
  color: var(--black);
}
.body-treatments .section-intro {
  color: #4A4438;
}

.body-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.body-card {
  background: var(--black);
  color: var(--ivory);
  padding: 2.5rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease);
  cursor: pointer;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.body-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,94,0.12), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.body-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.4);
}
.body-card:hover::before { opacity: 1; }

.body-card__icon {
  width: 48px; height: 48px;
  color: var(--gold-champagne);
  position: relative;
  z-index: 1;
}
.body-card__body { position: relative; z-index: 1; }
.body-card__name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--ivory);
  margin-bottom: 0.6rem;
}
.body-card__desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ════════════════════════════════════════════
   MEDICINA FUNCIONAL INTEGRATIVA
   ════════════════════════════════════════════ */
.functional {
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.functional::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 100%; height: 80%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(201,168,94,0.06), transparent 60%);
  pointer-events: none;
}

.functional-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  position: relative;
  z-index: 1;
}
.functional-item {
  padding: 2rem 1.5rem;
  border: 1px solid rgba(201,168,94,0.18);
  background: rgba(0,0,0,0.4);
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.functional-item:hover {
  background: rgba(201,168,94,0.05);
  border-color: var(--gold-champagne);
}
.functional-item__icon {
  width: 32px; height: 32px;
  color: var(--gold-champagne);
}
.functional-item__name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--ivory);
}
.functional-item__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ════════════════════════════════════════════
   NUTRICIÓN & FISIOTERAPIA
   ════════════════════════════════════════════ */
.wellness {
  background: var(--black-soft);
  border-top: 1px solid rgba(201,168,94,0.08);
  border-bottom: 1px solid rgba(201,168,94,0.08);
}
.wellness-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.wellness-card {
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid rgba(201,168,94,0.18);
  background: rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: all 0.5s var(--ease);
}
.wellness-card:hover {
  border-color: var(--gold-champagne);
  background: rgba(201,168,94,0.04);
}
.wellness-card__head {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.wellness-card__icon {
  width: 56px; height: 56px;
  color: var(--gold-champagne);
  padding: 0.8rem;
  border: 1px solid var(--gold-deep);
}
.wellness-card__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.75rem;
  color: var(--ivory);
}
.wellness-card__desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ════════════════════════════════════════════
   CTA AGENDA
   ════════════════════════════════════════════ */
.cta-agenda {
  background: url('../img/belleza/Sillon.png') center / cover no-repeat;
  color: var(--black);
  padding: clamp(6rem, 15vw, 12rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 100vw;
  max-height: 1200px;
  display: flex;
  align-items: center;
}
.cta-agenda::before {
  display: none;
}
.cta-agenda__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  margin-top: 30%;
}
.cta-agenda__title {
  font-size: clamp(2.7rem, 6vw, 4.5rem);
  margin-bottom: 1.5rem;
  color: #000000;
  text-shadow: 0 2px 12px rgba(255,255,255,0.6);
}
.cta-agenda__title em {
  font-style: italic;
  color: #000000;
  text-shadow: 0 2px 12px rgba(255,255,255,0.6);
}
.cta-agenda__text {
  font-size: 1.26rem;
  color: #000000;
  margin-bottom: 2.5rem;
  line-height: 1.75;
  font-weight: 500;
  text-shadow: 0 1px 8px rgba(255,255,255,0.5);
}
@media (max-width: 768px) {
  .cta-agenda {
    background-size: contain;
    background-position: top center;
    background-color: #f0ebe4;
    min-height: auto;
  }
  .cta-agenda__inner {
    margin-top: 85vw;
    padding: 0 1.5rem;
  }
  .cta-agenda__title {
    font-size: clamp(2.4rem, 9vw, 3.2rem);
    margin-bottom: 0.75rem;
    color: var(--black);
    text-shadow: none;
  }
  .cta-agenda__title em {
    color: var(--gold-deep);
    text-shadow: none;
  }
  .cta-agenda__text {
    font-size: 1.15rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    color: #4A4438;
    font-weight: 400;
    text-shadow: none;
  }
  .cta-agenda__note {
    color: var(--gold-deep);
  }
}
.cta-agenda__note {
  display: block;
  margin-top: 1.5rem;
  font-size: 0.78rem;
  letter-spacing: 2px;
  color: var(--gold-deep);
  text-transform: uppercase;
  font-style: italic;
}

/* ════════════════════════════════════════════
   CONTACTO
   ════════════════════════════════════════════ */
.contact {
  background: var(--black);
  border-top: 1px solid rgba(201,168,94,0.08);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: flex-start;
}
.contact-grid--solo {
  grid-template-columns: 1fr;
  max-width: 680px;
  margin: 0 auto;
}

.contact-info__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}
.contact-info__title em { font-style: italic; color: var(--gold-champagne); }
.contact-info__text {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.contact-list { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-list__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-list__icon {
  width: 42px; height: 42px;
  border: 1px solid var(--gold-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-champagne);
}
.contact-list__icon svg { width: 18px; height: 18px; }
.contact-list__label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 3px;
  color: var(--gold-deep);
  text-transform: uppercase;
  font-weight: 300;
  margin-bottom: 4px;
}
.contact-list__value {
  font-size: 1rem;
  color: var(--ivory);
  line-height: 1.5;
}
.contact-list__value a:hover { color: var(--gold-champagne); }
.contact-list__value.pending {
  font-style: italic;
  color: var(--gold-deep);
  opacity: 0.7;
}

/* Form */
.contact-form {
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid rgba(201,168,94,0.2);
  background: rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-form__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--ivory);
  margin-bottom: 0.5rem;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.field label {
  font-size: 0.7rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-champagne);
  font-weight: 300;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: transparent;
  border: 1px solid rgba(201,168,94,0.25);
  color: var(--ivory);
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.95rem;
  transition: border-color 0.3s var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold-champagne);
}
.field textarea { min-height: 120px; resize: vertical; }
.field select { cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9A85E' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 14px;
  padding-right: 2.5rem;
}
.field select option { background: var(--black); color: var(--ivory); }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-submit {
  margin-top: 0.5rem;
  width: 100%;
  justify-content: center;
}
.form-note {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-align: center;
  margin-top: 0.25rem;
}

/* Mensaje de éxito/error en formulario */
.form-message {
  display: none;
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  border: 1px solid;
}
.form-message.is-visible { display: block; }
.form-message--success {
  border-color: var(--gold-champagne);
  background: rgba(201,168,94,0.08);
  color: var(--gold-light);
}
.form-message--error {
  border-color: #ef4444;
  background: rgba(239,68,68,0.08);
  color: #fca5a5;
}

/* ════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════ */
.site-footer {
  background: var(--black);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(201,168,94,0.12);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 1.25rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 3px;
  color: var(--gold-champagne);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.footer-col ul li {
  margin-bottom: 0.75rem;
}
.footer-col a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.3s var(--ease);
}
.footer-col a:hover { color: var(--gold-champagne); }

.socials {
  display: flex;
  gap: 0.75rem;
}
.socials a {
  width: 40px; height: 40px;
  border: 1px solid var(--gold-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-champagne);
  transition: all 0.3s var(--ease);
}
.socials a:hover {
  background: var(--gold-champagne);
  color: var(--black);
}
.socials svg { width: 18px; height: 18px; }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(201,168,94,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--text-dim);
}
.footer-bottom a:hover { color: var(--gold-champagne); }

/* ════════════════════════════════════════════
   WHATSAPP FLOTANTE
   ════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 99;
  width: 58px; height: 58px;
  background: linear-gradient(135deg, #c9a85e 0%, #e8c97a 40%, #a87c3a 70%, #d4a843 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 6px 24px -6px rgba(201,168,94,0.7), 0 2px 8px rgba(201,168,94,0.4), inset 0 1px 1px rgba(255,255,255,0.4);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  animation: float 3s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 32px -6px rgba(201,168,94,0.9), 0 2px 8px rgba(201,168,94,0.5);
}
.whatsapp-float svg { width: 28px; height: 28px; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ════════════════════════════════════════════
   ANIMACIONES SCROLL (reveal)
   ════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .whatsapp-float { animation: none; }
}

@keyframes fadeInMenu {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .surgery-grid,
  .functional-grid,
  .treatment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .body-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }
  .nav.is-open {
    display: flex;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #000000;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    z-index: 9999;
    animation: fadeInMenu 0.3s var(--ease);
  }
  .site-header:has(.nav.is-open) {
    z-index: 10000;
  }
  .nav.is-open a { font-size: 1.1rem; letter-spacing: 4px; }
  .menu-toggle {
    display: flex;
    position: relative;
    z-index: 101;
  }
  /* Cuando el menú está abierto, el botón flota sobre él y se ve dorado */
  .nav.is-open ~ .menu-toggle,
  .site-header:has(.nav.is-open) .menu-toggle {
    color: var(--gold-champagne);
  }
  /* Transformación hamburguesa → X mediante atributo aria-expanded */
  .menu-toggle[aria-expanded="true"] svg line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
    transform-origin: center;
  }
  .menu-toggle[aria-expanded="true"] svg line:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle[aria-expanded="true"] svg line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
    transform-origin: center;
  }
  .menu-toggle svg line {
    transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
  }
  .header-cta { display: none; }

  .hero {
    min-height: auto;
  }
  .hero__bg {
    height: 55vw;
    min-height: 260px;
    max-height: 480px;
  }
  .hero__inner {
    padding: 2.5rem 0 3.5rem;
  }

  .about__grid,
  .contact-grid,
  .wellness-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .mission-vision { grid-template-columns: 1fr; gap: 1.5rem; }

  .surgery-grid,
  .functional-grid,
  .treatment-grid,
  .body-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .facial-group__head {
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  .facial-group__count {
    margin-left: 0;
    width: 100%;
  }

  .field-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-logo img {
    height: 52px !important;
  }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .whatsapp-float {
    width: 52px; height: 52px;
    bottom: 1rem; right: 1rem;
  }
}

/* ─── Info Contacto — barra ancho completo ─── */
.info-contacto {
  background: rgba(201,168,94,0.06);
  border-top: 1px solid rgba(201,168,94,0.15);
  border-bottom: 1px solid rgba(201,168,94,0.15);
  padding: 3rem 0;
}
.info-contacto__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  gap: 2rem;
}
.info-contacto__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.info-contacto__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201,168,94,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-champagne);
}
.info-contacto__icon svg { width: 18px; height: 18px; }
.info-contacto__label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.4rem;
}
.info-contacto__value {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.info-contacto__value a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}
.info-contacto__value a:hover { color: var(--gold-champagne); }

@media (max-width: 1024px) {
  .info-contacto__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .info-contacto__grid { grid-template-columns: 1fr; }
}

/* ─── Foto debajo de "Sobre nosotros" ─── */
.about-photo {
  width: 100%;
  background: var(--black);
  padding: 0;
  overflow: hidden;
}
.about-photo__img {
  width: 100%;
  height: auto;
  display: block;
}

/* ─── Página Procedimientos ─── */
.proc-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 2rem;
  align-items: flex-start;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(201,168,94,0.15);
  scroll-margin-top: 100px;
}
.proc-item:last-of-type {
  border-bottom: none;
}
.proc-item:target .proc-item__num {
  color: var(--gold-champagne);
  transform: scale(1.05);
}
.proc-item:target .proc-item__title {
  color: var(--gold-champagne);
}
.proc-item__num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-style: italic;
  font-weight: 300;
  color: var(--gold-deep);
  line-height: 1;
  transition: color 0.4s var(--ease), transform 0.4s var(--ease);
}
.proc-item__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 400;
  color: var(--ivory);
  margin: 0 0 1rem;
  transition: color 0.4s var(--ease);
}
.proc-item__body p {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin: 0;
}
.proc-disclaimer {
  margin-top: 3rem;
  padding: 1.5rem 2rem;
  background: rgba(201,168,94,0.08);
  border-left: 3px solid var(--gold-champagne);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.proc-disclaimer strong {
  color: var(--gold-champagne);
  font-weight: 500;
}

@media (max-width: 768px) {
  .proc-item {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 2rem 0;
  }
  .proc-item__num {
    font-size: 2rem;
  }
  .proc-disclaimer {
    padding: 1.25rem 1.25rem;
  }
}

/* Cards de cirugía como links — quitar subrayado y heredar color */
a.surgery-card {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

/* ─── Faciales summary cards (vista reducida en index) ─── */
.facials-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.facial-summary-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 2rem 1.75rem;
  border: 1px solid rgba(201,168,94,0.18);
  background: rgba(201,168,94,0.03);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease), transform 0.4s var(--ease);
  scroll-margin-top: 100px;
}
.facial-summary-card:hover {
  border-color: var(--gold-champagne);
  background: rgba(201,168,94,0.08);
  transform: translateY(-3px);
}
.facial-summary-card__num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--gold-deep);
}
.facial-summary-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 400;
  color: var(--ivory);
  margin: 0;
}
.facial-summary-card__title em {
  font-style: italic;
  color: var(--gold-champagne);
}
.facial-summary-card__count {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-dim);
}
.facial-summary-card__arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-champagne);
  margin-top: 0.5rem;
  transition: gap 0.3s var(--ease);
}
.facial-summary-card:hover .facial-summary-card__arrow {
  gap: 0.85rem;
}

@media (max-width: 600px) {
  .facials-summary { grid-template-columns: 1fr; }
}
