/* =============================================
   VARIABLES & RESET
   ============================================= */
:root {
  /* ---- Colores base ---- */
  --bg: #ffffff;
  --bg-cream: #FAF6EF;
  --bg-light: #FDFAF5;
  --bg-dark: #111010;
  --bg-footer: #0c0b0b;
  --color-white: #ffffff;

  /* ---- Brand ---- */
  --primary: #C3934F;
  --primary-soft: rgba(195, 147, 79, 0.12);
  --primary-dark: #a87840;
  --primary-rgb: 195, 147, 79;
  --accent: #FAEFD6;

  /* ---- Texto ---- */
  --text-main: #1a1a1a;
  --text-muted: #6b6b72;
  --text-light: rgba(255,255,255,0.75);
  --text-faint: rgba(255,255,255,0.45);

  /* ---- Bordes ---- */
  --border: rgba(0,0,0,0.07);
  --border-strong: rgba(0,0,0,0.12);
  --border-light: rgba(255,255,255,0.15);

  /* ---- Radius ---- */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 999px;
  --radius-circle: 50%;

  /* ---- Shadows ---- */
  --shadow-soft: 0 20px 60px rgba(15,16,40,0.10);
  --shadow-card: 0 8px 28px rgba(15,16,40,0.07);
  --shadow-brand: 0 8px 24px rgba(195,147,79,0.35);
  --shadow-brand-hover: 0 14px 32px rgba(195,147,79,0.45);
  --shadow-hero: 0 24px 80px rgba(15,16,40,0.12), 0 4px 16px rgba(0,0,0,0.04);
  --shadow-deep: 0 30px 80px rgba(0,0,0,0.4);

  /* ---- Typography scale ---- */
  --font-xs: 0.72rem;
  --font-sm: 0.82rem;
  --font-base: 0.95rem;
  --font-md: 1.05rem;
  --font-lg: 1.15rem;
  --font-xl: clamp(1.8rem, 2.8vw, 2.6rem);
  --font-2xl: clamp(1.9rem, 3vw, 2.7rem);
  --font-hero: clamp(2.4rem, 4.5vw, 3.6rem);

  /* ---- Motion ---- */
  --transition: 0.3s cubic-bezier(0.23,1,0.32,1);
  --transition-slow: 0.6s cubic-bezier(0.23,1,0.32,1);
  --ease-smooth: cubic-bezier(0.23,1,0.32,1);

  /* ---- Layout ---- */
  --container: 1240px;
  --section-gap: 6rem;
  --header-height: 80px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-tap-highlight-color: transparent;
}

/* Selección de texto alineada con brand */
::selection {
  background: var(--primary-soft);
  color: var(--primary-dark);
}

/* Scrollbar sutil */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-cream); }
::-webkit-scrollbar-thumb {
  background: rgba(195,147,79,0.35);
  border-radius: var(--radius-full);
  border: 2px solid var(--bg-cream);
}
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

h1, h2, h3, h4 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: -0.4px;
  line-height: 1.15;
  text-wrap: balance;
}

p { text-wrap: pretty; }

h1 em, h2 em, h3 em { font-style: italic; color: var(--primary); font-weight: 500; }

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* =============================================
   ACCESIBILIDAD VISUAL
   ============================================= */
:focus { outline: none; }

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
  transition: outline-offset 0.15s ease;
}

.btn:focus-visible,
.nav__cta-btn:focus-visible,
.btn-to-top:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
}

.faq-item summary:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* Offset para anclas con header sticky */
section[id] { scroll-margin-top: calc(var(--header-height) + 12px); }

/* Skip link para usuarios de teclado/lectores */
.skip-link {
  position: fixed;
  top: 0;
  left: 1rem;
  transform: translateY(-110%);
  background: var(--primary);
  color: var(--color-white);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  font-size: var(--font-sm);
  font-weight: 600;
  z-index: 9999;
  transition: transform var(--transition);
}
.skip-link:focus { transform: translateY(0.5rem); }

/* Respeto por preferencias de movimiento */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .animate-in,
  .animate-in--left,
  .animate-in--right {
    opacity: 1 !important;
    transform: none !important;
  }
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

/* =============================================
   HEADER & NAV
   ============================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  height: 80px;
}

.nav__logo-img {
  width: 80px;
  height: auto;
}

.nav__center { display: flex; justify-content: center; }

.nav__links {
  display: flex;
  gap: 2.4rem;
  align-items: center;
}

.nav__links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  padding-bottom: 3px;
  transition: color var(--transition);
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--primary);
  transition: width var(--transition);
}

.nav__links a:hover { color: var(--text-main); }
.nav__links a:hover::after { width: 100%; }

/* Link de Promociones destacado */
.nav__promos-link {
  color: var(--primary-dark) !important;
  font-weight: 600 !important;
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
}

.nav__promos-link i {
  font-size: 0.75em;
  opacity: 0.85;
}

.nav__promos-link::after {
  background: var(--primary) !important;
}

.nav__right { display: flex; align-items: center; gap: 1rem; }

.nav__instagram-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color: #fff;
  font-size: 1.15rem;
  flex-shrink: 0;
  transition: transform var(--transition), opacity var(--transition);
}

.nav__instagram-btn:hover {
  transform: translateY(-1px);
  opacity: 0.85;
}

.nav__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--primary);
  color: var(--color-white);
  font-size: var(--font-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-full);
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}

.nav__cta-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.nav__toggle {
  display: none;
  width: 36px; height: 28px;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 5px 7px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  width: 100%; height: 1.5px;
  background: var(--text-main);
  border-radius: 2px;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: url('assets/bg-hero.svg') center/cover no-repeat;
}

.hero__bg {
  position: absolute;
  top: 0; right: 0;
  width: 55%; height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.22;
  z-index: 0;
  mask-image: linear-gradient(to left, rgba(0,0,0,0.6) 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.6) 0%, transparent 100%);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(255,249,240,0.92) 38%, rgba(255,249,240,0.4) 60%, rgba(255,249,240,0.1) 85%, transparent 100%),
    radial-gradient(ellipse 55% 70% at 78% 55%, rgba(250, 239, 214, 0.45) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 5rem 2rem 7rem;
}

.hero__card {
  max-width: 580px;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: var(--radius-xl);
  padding: 3rem 3.5rem;
  box-shadow: var(--shadow-hero);
}

.hero__eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.2rem;
}

.hero__text h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  margin-bottom: 1.2rem;
  color: var(--text-main);
}

.hero__text p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 2.5rem;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.hero__stat {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  align-items: flex-start;
}

.hero__stat-icon {
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 0.45rem;
  opacity: 0.9;
}

.hero__stat strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
}

.hero__stat span {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 400;
}

.hero__stat-divider {
  width: 1px;
  height: 28px;
  background: rgba(0,0,0,0.12);
  flex-shrink: 0;
}

.hero__photo {
  position: absolute;
  top: 0; right: 0;
  height: 100%;
  width: 58vw;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  z-index: 1;
  pointer-events: none;
  padding-top: 2.5rem;
  padding-bottom: 4rem;
  box-sizing: border-box;
}

/* =============================================
   BACKDROP EDITORIAL DETRÁS DE LA FOTO
   ============================================= */

/* Capa 1: Aura cálida multicapa (glow principal) */
.hero__photo::before {
  content: "";
  position: absolute;
  inset: 4% -6% -10% 2%;
  background:
    radial-gradient(ellipse 55% 50% at 55% 48%,
      rgba(195, 147, 79, 0.28) 0%,
      rgba(250, 239, 214, 0.38) 30%,
      rgba(250, 239, 214, 0.12) 55%,
      transparent 82%),
    radial-gradient(circle 220px at 72% 18%,
      rgba(195, 147, 79, 0.14) 0%,
      transparent 70%);
  filter: blur(18px);
  z-index: 0;
  pointer-events: none;
  animation: hero-aura 12s ease-in-out infinite;
}

/* Capa 2: Anillo decorativo grande */
.hero__photo::after {
  content: "";
  position: absolute;
  top: 10%;
  right: 22%;
  width: clamp(280px, 32vw, 440px);
  height: clamp(280px, 32vw, 440px);
  border: 1.5px solid rgba(195, 147, 79, 0.28);
  border-radius: var(--radius-circle);
  box-shadow:
    inset 0 0 60px rgba(195, 147, 79, 0.06),
    0 0 40px rgba(195, 147, 79, 0.08);
  z-index: 0;
  pointer-events: none;
  animation: hero-ring 14s ease-in-out infinite;
}

@keyframes hero-aura {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 1; }
  50%      { transform: translate(-8px, -6px) scale(1.04); opacity: 0.92; }
}

@keyframes hero-ring {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50%      { transform: translate(6px, -4px) rotate(4deg); }
}

.hero__photo-frame {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

/* Capa 3: Punto decorativo pequeño (accent dot) en la esquina superior izquierda */
.hero__photo-frame::before {
  content: "";
  position: absolute;
  top: 18%;
  left: 8%;
  width: clamp(60px, 7vw, 96px);
  height: clamp(60px, 7vw, 96px);
  background: radial-gradient(circle at 35% 35%,
    rgba(195, 147, 79, 0.55) 0%,
    rgba(195, 147, 79, 0.35) 45%,
    rgba(195, 147, 79, 0.08) 80%,
    transparent 100%);
  border-radius: var(--radius-circle);
  filter: blur(6px);
  z-index: 0;
  pointer-events: none;
  animation: hero-dot 9s ease-in-out infinite;
}

/* Capa 4: Punto sólido secundario — toque editorial */
.hero__photo-frame::after {
  content: "";
  position: absolute;
  bottom: 22%;
  right: 6%;
  width: clamp(8px, 1vw, 14px);
  height: clamp(8px, 1vw, 14px);
  background: var(--primary);
  border-radius: var(--radius-circle);
  box-shadow: 0 0 0 6px rgba(195, 147, 79, 0.12);
  z-index: 2;
  pointer-events: none;
  opacity: 0.85;
}

@keyframes hero-dot {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.9; }
  50%      { transform: translate(10px, 6px) scale(1.08); opacity: 1; }
}

.hero__photo-frame img {
  width: 100%;
  height: 100%;
  /* contain = no recorte, imagen completa sin pixelar */
  object-fit: contain;
  object-position: right top;

  /* Máscara: fade solo hacia la izquierda */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 22%, #000 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 22%, #000 100%);

  /* Sombra sutil para dar profundidad y ajuste tonal cálido */
  filter:
    drop-shadow(0 18px 32px rgba(15, 16, 40, 0.12))
    saturate(1.03)
    contrast(1.02);
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
  animation: float 2.8s ease-in-out infinite;
}

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

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
  white-space: nowrap;
  letter-spacing: 0.02em;
  font-family: inherit;
  user-select: none;
}

/* Tamaños */
.btn--sm { padding: 0.55rem 1.2rem; font-size: var(--font-xs); }
.btn--lg { padding: 1.05rem 2.2rem; font-size: var(--font-base); }

/* Variantes */
.btn--primary {
  background: var(--primary);
  color: var(--color-white);
  box-shadow: var(--shadow-brand);
}

.btn--primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-brand-hover);
}

.btn--outline {
  background: var(--color-white);
  color: var(--text-main);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-card);
}

.btn--outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn--ghost {
  background: rgba(255,255,255,0.6);
  color: var(--text-main);
  border: 1.5px solid rgba(0,0,0,0.1);
}

.btn--ghost:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-2px);
}

.btn--ghost-light {
  background: rgba(255,255,255,0.1);
  color: var(--color-white);
  border: 1.5px solid rgba(255,255,255,0.25);
}

.btn--ghost-light:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-2px);
}

/* Active/pressed */
.btn:active {
  transform: translateY(0);
  transition-duration: 0.08s;
}

/* Disabled */
.btn[disabled],
.btn--disabled,
.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
}

/* Loading */
.btn--loading {
  pointer-events: none;
  color: transparent !important;
  position: relative;
}
.btn--loading::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 1em; height: 1em;
  margin: -0.5em 0 0 -0.5em;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: var(--radius-circle);
  color: var(--color-white);
  animation: btn-spin 0.7s linear infinite;
}
.btn--primary.btn--loading::before { color: var(--color-white); }
.btn--outline.btn--loading::before { color: var(--primary); }
@keyframes btn-spin {
  to { transform: rotate(360deg); }
}

/* =============================================
   SECTIONS BASE
   ============================================= */
.section { padding: var(--section-gap) 0; }
.section--white { background: var(--bg); }
.section--cream { background-color: var(--bg-cream); background-image: url('../assets/bg-section.svg'); background-size: cover; background-position: center; }
.section--light { background: var(--bg-light); }

.section--dark {
  background-color: var(--bg-dark);
  background-image: url('../assets/bg-dark.svg');
  background-size: cover;
  background-position: center;
  color: var(--color-white);
}

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

.section__header h2 {
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  margin: 0.6rem 0 1rem;
}

.section__header p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.section__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
}

.section__eyebrow--light { color: rgba(195,147,79,0.85); }

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

/* =============================================
   PILLARS (Sobre mí)
   ============================================= */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}

.pillar {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.pillar:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.pillar__icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1.4rem;
}

.pillar__icon img {
  width: 80px;
  height: auto;
}

.pillar h3 {
  font-size: 1.05rem;
  margin-bottom: 0.7rem;
  color: var(--text-main);
}

.pillar p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =============================================
   ABOUT / DRA.
   ============================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 5rem;
  align-items: center;
}

.about-photo {
  position: relative;
}

.about-photo__frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 3/4;
}

.about-photo__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.about-badge {
  position: absolute;
  bottom: -1.2rem;
  right: -1.2rem;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-main);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
}

.about-badge i { color: var(--primary); font-size: 1.1rem; }

.about-content h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  margin: 0.8rem 0 1.4rem;
}

.about-content p {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-credentials {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 1.8rem 0 2rem;
  padding: 1.5rem;
  background: var(--bg-cream);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.credential {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.credential i { color: var(--primary); width: 16px; }
.credential a { color: var(--primary); font-weight: 500; }
.credential a:hover { text-decoration: underline; }

/* =============================================
   TREATMENTS
   ============================================= */
.treatments {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.treatment-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.treatment-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}

.treatment-card__icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: var(--radius-circle);
  font-size: 1.35rem;
  margin-bottom: 1.4rem;
  transition: transform var(--transition), background var(--transition);
}

.treatment-card:hover .treatment-card__icon {
  transform: translateY(-3px) scale(1.06);
  background: rgba(195, 147, 79, 0.2);
}

.treatment-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.9rem;
  color: var(--text-main);
}

.treatment-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* Variante oscura — debe ir DESPUÉS de las reglas base para ganar la cascada */
.treatment-card--accent {
  background: var(--text-main);
  color: var(--color-white);
  border-color: transparent;
}

.treatment-card--accent h3 { color: var(--color-white); }
.treatment-card--accent p { color: rgba(255,255,255,0.82); }
.treatment-card--accent .treatment-list li { color: rgba(255,255,255,0.78); }
.treatment-card--accent .treatment-list li::before { background: var(--primary); }
.treatment-card--accent .treatment-note { color: rgba(255,255,255,0.6); }

.treatment-card--accent .treatment-card__icon {
  background: rgba(195, 147, 79, 0.2);
  color: var(--primary);
}
.treatment-card--accent:hover .treatment-card__icon {
  background: rgba(195, 147, 79, 0.3);
}

.treatment-list {
  margin: 0 0 1rem;
}

.treatment-list li {
  font-size: 0.86rem;
  color: var(--text-muted);
  padding: 0.3rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.treatment-list li::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: var(--radius-circle);
  background: var(--primary);
  flex-shrink: 0;
}

.treatment-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 0.9rem;
  margin-top: 0.4rem;
}

/* =============================================
   PRODUCTS
   ============================================= */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}

.product-card__img {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
  display: block;
  width: 100%;
  padding: 1.4rem;
  border: none;
  background:
    radial-gradient(ellipse 80% 70% at 50% 45%, rgba(255,255,255,0.85) 0%, transparent 75%),
    linear-gradient(160deg, var(--bg-cream) 0%, var(--accent) 100%);
  cursor: zoom-in;
  font-family: inherit;
  transition: background var(--transition);
}

.product-card__img img {
  width: 100%; height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
  filter: drop-shadow(0 12px 24px rgba(15,16,40,0.12));
}

.product-card:hover .product-card__img img { transform: scale(1.04); }

/* Indicador de zoom (lupa) */
.product-card__zoom {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.9);
  color: var(--primary);
  border-radius: var(--radius-circle);
  font-size: 0.85rem;
  box-shadow: var(--shadow-card);
  opacity: 0;
  transform: translateY(-4px) scale(0.9);
  transition: opacity var(--transition), transform var(--transition);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.product-card:hover .product-card__zoom,
.product-card__img:focus-visible .product-card__zoom {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.product-card__body { padding: 1.6rem 1.6rem 2rem; }

.product-card__body h3 {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
  color: var(--text-main);
}

.product-card__body p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =============================================
   CASES
   ============================================= */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.case-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition);
}

.case-card:hover { transform: translateY(-4px); }

.case-card__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.case-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  /* Reset de botón */
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  font: inherit;
  color: inherit;
  cursor: zoom-in;
  text-align: left;
}

.case-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.case-card:hover .case-img img { transform: scale(1.03); }

/* Indicador de zoom (lupa) para casos */
.case-img__zoom {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.9);
  color: var(--primary);
  border-radius: var(--radius-circle);
  font-size: 0.8rem;
  box-shadow: var(--shadow-card);
  opacity: 0;
  transform: translateY(-4px) scale(0.9);
  transition: opacity var(--transition), transform var(--transition);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  pointer-events: none;
}

.case-card:hover .case-img__zoom,
.case-img:focus-visible .case-img__zoom {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.case-label {
  position: absolute;
  bottom: 8px; left: 8px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(0,0,0,0.55);
  color: var(--color-white);
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-full);
  backdrop-filter: blur(4px);
}

.case-label--after {
  background: rgba(195,147,79,0.8);
}

.case-card__body {
  padding: 1.4rem 1.5rem 1.8rem;
  position: relative;
}

.case-card__quote {
  font-size: 1.4rem;
  color: var(--primary);
  opacity: 0.35;
  margin-bottom: 0.4rem;
  display: inline-block;
  line-height: 1;
}

.case-card__body h3 {
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
  color: var(--text-main);
}

.case-card__body blockquote {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
  border-left: 2px solid var(--primary);
  padding-left: 0.9rem;
  margin: 0;
}

/* =============================================
   FAQ
   ============================================= */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}

.faq-header h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  margin: 0.8rem 0 1rem;
}

.faq-header p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-item summary {
  padding: 1.3rem 0.25rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-main);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color var(--transition), padding-left var(--transition);
}

.faq-item summary:hover { color: var(--primary); padding-left: 0.5rem; }

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item[open] summary { color: var(--primary); }
.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item p {
  padding-bottom: 1.3rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* =============================================
   AGENDA (dark)
   ============================================= */
.agenda-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.agenda-content h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  margin: 0.8rem 0 1.2rem;
  color: var(--color-white);
}

.agenda-content h2 em { color: var(--primary); }

.agenda-content > p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.steps li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

.step-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--primary);
  background: rgba(195,147,79,0.15);
  border: 1px solid rgba(195,147,79,0.3);
  border-radius: var(--radius-full);
  padding: 0.25rem 0.65rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.step-icon {
  font-size: 1rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
  width: 22px;
  text-align: center;
  opacity: 0.9;
}

.agenda-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}

.agenda-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.agenda-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  aspect-ratio: 4/5;
}

.agenda-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background-color: var(--bg-footer);
  background-image: url('../assets/bg-dark.svg');
  background-size: cover;
  background-position: center;
  color: rgba(255,255,255,0.65);
  padding: 3rem 0 2rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 1.5rem;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer__logo {
  width: 50px;
  opacity: 0.85;
  filter: brightness(0) invert(1);
}

.footer__title {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-white);
}

.footer__subtitle {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

.footer__links {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.footer__links a {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}

.footer__links a:hover { color: var(--primary); }

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: right;
}

.footer__contact a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: flex-end;
  transition: color var(--transition);
}

.footer__contact a i { color: var(--primary); }
.footer__contact a:hover { color: var(--primary); }

.footer__small {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer__privacy {
  color: rgba(255,255,255,0.45);
  font-size: 0.72rem;
  transition: color var(--transition);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer__privacy:hover { color: var(--primary); }

/* =============================================
   LIGHTBOX MODAL
   ============================================= */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(12, 11, 11, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.lightbox--open {
  display: flex;
  opacity: 1;
  animation: lightbox-fade-in 0.3s var(--ease-smooth);
}

@keyframes lightbox-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lightbox__figure {
  max-width: min(900px, 92vw);
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin: 0;
  animation: lightbox-zoom-in 0.35s var(--ease-smooth);
}

@keyframes lightbox-zoom-in {
  from { opacity: 0; transform: scale(0.92) translateY(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.lightbox__img {
  max-width: 100%;
  max-height: calc(88vh - 3rem);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-deep);
  background: var(--color-white);
}

.lightbox__caption {
  color: var(--color-white);
  font-size: var(--font-sm);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  opacity: 0.9;
}

.lightbox__close {
  position: fixed; /* fixed para que quede visible aunque haya scroll en mobile */
  top: 1.2rem;
  right: 1.2rem;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: var(--radius-circle);
  background: rgba(255,255,255,0.12);
  color: var(--color-white);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lightbox__close:hover {
  background: rgba(255,255,255,0.22);
  transform: rotate(90deg);
}

.lightbox__close:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

/* Evitar scroll del body cuando lightbox está abierto */
body.lightbox-open {
  overflow: hidden;
}

/* ── Flechas de navegación en lightbox (promos) ── */
.lightbox__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s, opacity 0.2s;
  z-index: 10;
  /* Oculto por defecto — se muestra solo en modo promo */
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

/* Visible solo cuando el lightbox está en modo promo */
.lightbox--promo .lightbox__arrow {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.lightbox__arrow--prev { left: 1.5rem; }
.lightbox__arrow--next { right: 1.5rem; }

.lightbox__arrow:hover {
  background: rgba(195,147,79,0.35);
  border-color: rgba(195,147,79,0.7);
  transform: translateY(-50%) scale(1.1);
}

.lightbox__arrow:disabled {
  opacity: 0.2;
  cursor: default;
  transform: translateY(-50%) scale(1);
}

@media (max-width: 600px) {
  .lightbox__arrow { width: 40px; height: 40px; font-size: 0.9rem; }
  .lightbox__arrow--prev { left: 0.5rem; }
  .lightbox__arrow--next { right: 0.5rem; }
}

/* ── CTA agendar en lightbox (promos) ── */
.lightbox__promo-cta {
  display: none; /* oculto por defecto */
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  box-shadow: var(--shadow-brand);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  margin-top: 0.25rem;
}

/* Visible solo en modo promo */
.lightbox--promo .lightbox__promo-cta {
  display: inline-flex;
}

.lightbox__promo-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-brand-hover);
}

.lightbox__promo-cta i { font-size: 1.1rem; }

/* ── Info panel y descripción en lightbox ── */
.lightbox__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}

.lightbox__desc {
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
  line-height: 1.65;
  text-align: center;
  max-width: 400px;
  margin: 0;
}

/* Layout horizontal cuando hay descripción */
.lightbox__figure--with-desc {
  flex-direction: row;
  align-items: center;
  max-width: min(1000px, 95vw);
  gap: 2.5rem;
}

.lightbox__figure--with-desc .lightbox__img {
  max-width: 55%;
  max-height: 78vh;
  flex-shrink: 0;
}

.lightbox__figure--with-desc .lightbox__info {
  align-items: flex-start;
  width: auto;
  min-width: 180px;
  max-width: 320px;
  flex-shrink: 0;
}

.lightbox__figure--with-desc .lightbox__caption {
  text-align: left;
}

.lightbox__figure--with-desc .lightbox__desc {
  text-align: left;
  max-width: none;
}

@media (max-width: 640px) {
  /* En mobile el lightbox scrollea verticalmente para mostrar imagen + texto completo */
  .lightbox {
    align-items: flex-start;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 3.5rem 1rem 2rem; /* espacio arriba para el botón cerrar */
  }
  .lightbox__figure {
    max-height: none; /* quitar límite — el scroll del contenedor lo maneja */
  }
  .lightbox__img {
    max-height: 55vh; /* imagen más pequeña para que el texto quepa visible */
  }
  .lightbox__figure--with-desc {
    flex-direction: column;
    max-width: min(900px, 92vw);
    gap: 1rem;
  }
  .lightbox__figure--with-desc .lightbox__img {
    max-width: 100%;
    max-height: 52vh;
  }
  .lightbox__figure--with-desc .lightbox__info {
    align-items: center;
    max-width: 100%;
  }
  .lightbox__figure--with-desc .lightbox__caption,
  .lightbox__figure--with-desc .lightbox__desc {
    text-align: center;
  }
}

/* =============================================
   BACK TO TOP
   ============================================= */
.btn-to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 44px; height: 44px;
  border-radius: var(--radius-circle);
  border: none;
  background: var(--primary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-brand);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  z-index: 200;
}

.btn-to-top--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.btn-to-top:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* =============================================
   ANIMATIONS
   ============================================= */
.animate-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s cubic-bezier(0.23,1,0.32,1), transform 0.6s cubic-bezier(0.23,1,0.32,1);
}

.animate-in--visible { opacity: 1; transform: translateY(0); }

/* Variantes de dirección */
.animate-in--left {
  transform: translateX(-30px);
}
.animate-in--left.animate-in--visible {
  transform: translateX(0);
}
.animate-in--right {
  transform: translateX(30px);
}
.animate-in--right.animate-in--visible {
  transform: translateX(0);
}

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }

/* --- Shimmer en botón primario --- */
.btn--primary {
  position: relative;
  overflow: hidden;
}
.btn--primary::after {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.28) 50%, transparent 100%);
  animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer {
  0%   { left: -100%; }
  45%  { left: 130%; }
  100% { left: 130%; }
}

/* --- Pulse en badge "Cirujano Dentista" --- */
.about-badge {
  animation: badge-pulse 3.5s ease-in-out infinite;
}
@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 8px 28px rgba(195,147,79,0.12); }
  50%       { box-shadow: 0 12px 36px rgba(195,147,79,0.30); }
}

/* --- Float en hero scroll indicator --- */
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-8px); }
}

/* --- Aparición escalonada de los pilares --- */
.pillar:nth-child(1) { transition-delay: 0.05s; }
.pillar:nth-child(2) { transition-delay: 0.18s; }
.pillar:nth-child(3) { transition-delay: 0.31s; }

/* --- Aparición escalonada treatment cards --- */
.treatment-card:nth-child(1) { transition-delay: 0.05s; }
.treatment-card:nth-child(2) { transition-delay: 0.20s; }
.treatment-card:nth-child(3) { transition-delay: 0.35s; }

/* --- Aparición escalonada product cards --- */
.product-card:nth-child(1) { transition-delay: 0.05s; }
.product-card:nth-child(2) { transition-delay: 0.18s; }
.product-card:nth-child(3) { transition-delay: 0.31s; }

/* --- Aparición escalonada case cards --- */
.case-card:nth-child(1) { transition-delay: 0.05s; }
.case-card:nth-child(2) { transition-delay: 0.18s; }
.case-card:nth-child(3) { transition-delay: 0.31s; }

/* --- Línea decorativa animada bajo eyebrow --- */
.section__eyebrow {
  position: relative;
}
.section__eyebrow::after {
  content: "";
  display: block;
  width: 0;
  height: 1.5px;
  background: var(--primary);
  margin-top: 5px;
  transition: width 0.7s cubic-bezier(0.23,1,0.32,1) 0.3s;
}
.animate-in--visible .section__eyebrow::after,
.section__header.animate-in--visible .section__eyebrow::after,
.faq-header.animate-in--visible .section__eyebrow::after,
.agenda-content .section__eyebrow::after {
  width: 32px;
}

/* --- Hover lift en stats del hero --- */
.hero__stat {
  transition: transform var(--transition);
}
.hero__stat:hover { transform: translateY(-3px); }

/* --- Glow suave en nav CTA --- */
.nav__cta-btn {
  animation: nav-glow 4s ease-in-out infinite;
}
@keyframes nav-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(195,147,79,0); }
  50%       { box-shadow: 0 0 16px 3px rgba(195,147,79,0.35); }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  :root { --section-gap: 5rem; }

  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-photo__frame { max-width: 420px; margin: 0 auto; }
  .about-badge { right: 0; }

  .faq-layout { grid-template-columns: 1fr; gap: 3rem; }
  .agenda-layout { grid-template-columns: 1fr; gap: 3rem; }
  .agenda-image { max-width: 480px; margin: 0 auto; width: 100%; }

  /* Hero: foto se ajusta pero se mantiene visible */
  .hero__photo { width: 56vw; }
  .hero__card { max-width: 500px; padding: 2.6rem 2.8rem; }
  .hero__photo-frame img {
    -webkit-mask-image: radial-gradient(
      ellipse 100% 110% at 72% 40%,
      #000 48%,
      rgba(0,0,0,0.85) 66%,
      rgba(0,0,0,0.4) 84%,
      transparent 100%
    );
    mask-image: radial-gradient(
      ellipse 100% 110% at 72% 40%,
      #000 48%,
      rgba(0,0,0,0.85) 66%,
      rgba(0,0,0,0.4) 84%,
      transparent 100%
    );
  }
}

@media (max-width: 860px) {
  .pillars { grid-template-columns: 1fr; gap: 1.4rem; }
  .treatments { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .cases-grid { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .footer__brand { justify-content: center; }
  .footer__links { flex-wrap: wrap; gap: 1.2rem; }
  .footer__contact { align-items: center; text-align: center; }
  .footer__contact a { justify-content: center; }
}

@media (max-width: 768px) {
  .container { padding: 0 1.25rem; }
  :root { --section-gap: 4rem; }

  .nav { grid-template-columns: auto 1fr auto; height: 66px; gap: 1rem; }
.nav__toggle { display: flex; }

  .nav__links {
    display: none;
    position: fixed;
    top: 66px; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 1.5rem 1.5rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    border-bottom: 1px solid var(--border);
  }

  .nav__links.nav__links--open { display: flex; }
  .nav__links a { padding: 0.85rem 0; border-bottom: 1px solid var(--border); }
  .nav__links li:last-child a { border-bottom: none; }

  .hero__content { padding: 3.5rem 1.25rem 5rem; }
  .hero__card {
    padding: 2rem 1.8rem;
    background: rgba(255,255,255,0.78);
    max-width: 100%;
  }

  /* Foto: en mobile pasa a ser fondo decorativo detrás del card */
  .hero__photo {
    display: flex;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    z-index: 0;
    align-items: flex-start;
    justify-content: flex-end;
  }
  .hero__photo::before {
    inset: -10% -10% 20% 20%;
    opacity: 0.55;
  }
  /* En mobile ocultamos los ornamentos para no saturar */
  .hero__photo::after,
  .hero__photo-frame::before,
  .hero__photo-frame::after {
    display: none;
  }
  .hero__photo-frame {
    width: 90%;
    height: 90%;
  }
  .hero__photo-frame img {
    object-position: 70% top;
    -webkit-mask-image: radial-gradient(
      ellipse 110% 100% at 82% 22%,
      #000 8%,
      rgba(0,0,0,0.7) 32%,
      rgba(0,0,0,0.3) 58%,
      transparent 82%
    );
    mask-image: radial-gradient(
      ellipse 110% 100% at 82% 22%,
      #000 8%,
      rgba(0,0,0,0.7) 32%,
      rgba(0,0,0,0.3) 58%,
      transparent 82%
    );
    filter: saturate(0.95) brightness(1.03);
  }

  .hero__stats { flex-wrap: wrap; gap: 1rem; }

  .products-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero__text h1 { font-size: 2rem; }
  .hero__cta { flex-direction: column; }
  .agenda-cta { flex-direction: column; }
  .nav__cta-btn span { display: none; }

  /* En pantallas muy pequeñas: foto más sutil aún como backdrop */
  .hero__card { background: rgba(255,255,255,0.86); }
  .hero__photo-frame img {
    -webkit-mask-image: radial-gradient(
      ellipse 120% 95% at 88% 18%,
      #000 5%,
      rgba(0,0,0,0.55) 28%,
      rgba(0,0,0,0.2) 55%,
      transparent 78%
    );
    mask-image: radial-gradient(
      ellipse 120% 95% at 88% 18%,
      #000 5%,
      rgba(0,0,0,0.55) 28%,
      rgba(0,0,0,0.2) 55%,
      transparent 78%
    );
  }
}


/* =============================================




/* =============================================
   PROMOCIONES ACTIVAS — BENTO EDITORIAL
   ============================================= */

.promos-section {
  position: relative;
  background: linear-gradient(160deg, #f7f0e5 0%, #efe5d2 50%, #f4ece0 100%);
  padding: 5.5rem 0 5rem;
  overflow: hidden;
}

.promos-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 8%  50%, rgba(195,147,79,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 55% 70% at 92% 40%, rgba(195,147,79,0.09) 0%, transparent 60%);
  pointer-events: none;
}

/* ── Header ── */
.promos-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.promos-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(195,147,79,0.13);
  border: 1px solid rgba(195,147,79,0.35);
  color: var(--primary-dark);
  font-size: var(--font-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.2rem;
}

.promos-badge__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e03535;
  box-shadow: 0 0 0 0 rgba(224,53,53,0.6);
  animation: promos-pulse 3s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes promos-pulse {
  0%   { box-shadow: 0 0 0 0   rgba(224,53,53,0.65); }
  60%  { box-shadow: 0 0 0 7px rgba(224,53,53,0);    }
  100% { box-shadow: 0 0 0 0   rgba(224,53,53,0);    }
}

.promos-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.15;
  margin: 0 0 0.6rem;
}

.promos-title em { color: var(--primary); font-style: italic; }

.promos-subtitle {
  color: var(--text-muted);
  font-size: var(--font-sm);
  letter-spacing: 0.04em;
  margin: 0;
}

/* ── Bento grid: 3 columnas ── */
/* ── Carrusel horizontal ── */
.promos-grid {
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding: 0.5rem 0 1.25rem;
}
.promos-swiper {
  padding: 0.5rem 2.5rem 1.5rem !important;
}
.promos-swiper .swiper-wrapper {
  will-change: transform;
}
.promos-swiper .swiper-slide {
  width: auto;
  height: auto;
}
.promos-swiper .promo-card__img-wrap img {
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: none;
}

/* ── Tarjeta base ── */
.promo-card {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.35s var(--ease-smooth);
}

.promo-card:hover { transform: translateY(-5px); }

/* ── Wrapper imagen ── */
.promo-card__img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow:
    0 6px 24px rgba(100,65,10,0.14),
    0 2px 6px  rgba(100,65,10,0.08);
  transition: box-shadow 0.35s var(--ease-smooth);
  line-height: 0;
}

.promo-card:hover .promo-card__img-wrap {
  box-shadow:
    0 18px 48px rgba(100,65,10,0.22),
    0 0 0 2px rgba(195,147,79,0.45);
}

.promo-card__img-wrap img {
  height: 540px;
  width: auto;
  display: block;
  cursor: zoom-in;
  transition: transform 0.5s var(--ease-smooth);
}

.promo-card:hover .promo-card__img-wrap img {
  transform: scale(1.03);
}

/* ── Lupa ── */
.promo-card__zoom {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.6);
  background: rgba(0,0,0,0.52);
  color: #fff;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: scale(0.82);
  transition: opacity 0.25s, transform 0.25s, background 0.2s;
}

.promo-card:hover .promo-card__zoom,
.promo-card:focus-within .promo-card__zoom {
  opacity: 1;
  transform: scale(1);
}

.promo-card__zoom:hover {
  background: rgba(0,0,0,0.55);
  border-color: #fff;
}

/* ── Botón WhatsApp — siempre visible ── */
.promo-card__wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background: var(--primary);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-top: 0.65rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  white-space: nowrap;
  box-shadow: var(--shadow-brand);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  width: 100%;
  flex-shrink: 0;
}

.promo-card__wa:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-brand-hover);
}

.promo-card__wa i { font-size: 1rem; flex-shrink: 0; }

/* ── Flechas navegación Swiper promos ── */
.promos-nav {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  z-index: 10;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--primary);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(100,65,10,0.28);
  transition: background var(--transition), transform var(--transition), opacity var(--transition);
  color: #fff;
  font-size: 0.85rem;
}
.promos-nav--prev { left: 0.5rem; }
.promos-nav--next { right: 0.5rem; }
.promos-nav:hover { background: var(--primary-dark); transform: translateY(-50%) scale(1.1); }
.promos-nav--disabled { opacity: 0.3; pointer-events: none; }
@@media (max-width: 640px) {
  .promos-nav { width: 2rem; height: 2rem; font-size: 0.75rem; }
}

/* ── Info block (nombre + desc) — oculto en desktop, visible en mobile ── */
.promo-card__info {
  display: none;
}
.promo-card__info-nombre {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.3;
}
.promo-card__info-desc {
  font-size: .88rem;
  color: var(--text-muted);
  margin-top: .25rem;
  line-height: 1.4;
}

/* ── Mobile: columna vertical (sin swiper) ── */
@media (max-width: 640px) {
  .promos-section { padding: 3.5rem 0 3.5rem; }
  .promos-header  { margin-bottom: 2rem; }

  /* Desactivar Swiper: columna, sin transform, sin overflow clip */
  .promos-grid.promos-swiper { overflow: visible !important; padding: 0 1.25rem !important; }
  .promos-swiper .swiper-wrapper {
    flex-direction: column !important;
    transform: none !important;
    gap: 2rem;
    cursor: default;
  }
  .promos-swiper .swiper-slide {
    width: 100% !important;
    margin: 0 !important;
  }

  /* Imagen: ocupa todo el ancho, altura natural */
  .promo-card__img-wrap img {
    width: 100% !important;
    height: auto !important;
  }

  /* Ocultar flechas de navegación */
  .promos-nav { display: none !important; }

  /* Botón full-width */
  .promo-card__wa { display: flex; width: 100%; box-sizing: border-box; }
}
