/* ════════════════════════════════════════════════════════════
   CLAUDIA ARREOLA FOTOGRAFÍA — DESIGN SYSTEM
   Newborn Photography · Guadalajara, Jalisco
   ════════════════════════════════════════════════════════════ */

/* ═══ DESIGN TOKENS ═══ */
:root {
  /* Colors */
  --cream:        #FFF8F2;
  --cream-muted:  #B8A99A;
  --beige:        #F5E6D3;
  --beige-dark:   #E8D0B8;
  --gold:         #C9A96E;
  --gold-light:   #DFC08A;
  --gold-dark:    #A8855A;
  --brown-dark:   #2C1810;
  --brown-mid:    #5C3D2E;
  --brown-light:  #8B6355;
  --rose:         #D4A5A0;
  --rose-light:   #F2E0DC;
  --sage:         #8BA888;
  --white:        #FFFFFF;
  --black:        #0A0A0A;
  
  /* Text */
  --text-primary:   #2C1810;
  --text-secondary: #5C3D2E;
  --text-light:     #8B6355;
  --text-muted:     #B8A99A;
  
  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(44,24,16,0.08);
  --shadow-md:  0 8px 32px rgba(44,24,16,0.12);
  --shadow-lg:  0 20px 60px rgba(44,24,16,0.16);
  --shadow-xl:  0 30px 80px rgba(44,24,16,0.22);
  --shadow-gold: 0 8px 32px rgba(201,169,110,0.35);
  
  /* Typography */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-script:  'Great Vibes', cursive;
  --font-body:    'Lato', system-ui, sans-serif;
  
  /* Spacing */
  --section-py: clamp(5rem, 10vw, 8rem);
  --container:  1280px;
  --gap:        clamp(1.5rem, 3vw, 2.5rem);
  
  /* Transitions */
  --ease-out:   cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in:    cubic-bezier(0.64, 0, 0.78, 0);
  --transition: all 0.3s var(--ease-out);
  
  /* Border radius */
  --radius-sm:  0.5rem;
  --radius-md:  1rem;
  --radius-lg:  1.5rem;
  --radius-xl:  2rem;
  --radius-full: 9999px;

  /* Z-index */
  --z-nav:       100;
  --z-float:     200;
  --z-lightbox:  1000;
}

/* ═══ RESET & BASE ═══ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

::selection {
  background: var(--gold);
  color: var(--white);
}

/* ═══ SCROLL PROGRESS ═══ */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--rose));
  width: 0%;
  z-index: calc(var(--z-nav) + 10);
  transition: width 0.1s linear;
}

/* ═══ TYPOGRAPHY ═══ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.15;
  font-weight: 400;
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-weight: 500;
}

.section-title em {
  font-style: italic;
  color: var(--gold-dark);
}

.section-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

/* ═══ LAYOUT ═══ */
.section-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(201,169,110,0.5);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.25);
  border-color: var(--white);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: var(--brown-mid);
  border-color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  width: 100%;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.btn-whatsapp:hover {
  background: #1DA851;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
}

.btn-instagram {
  background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737);
  color: var(--white);
  width: 100%;
  justify-content: center;
}

.btn-instagram:hover {
  opacity: 0.9;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(131,58,180,0.4);
}

/* ═══ SCROLL REVEAL ═══ */
.reveal-up, .reveal-left, .reveal-right, .reveal-fade {
  opacity: 0;
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-up    { transform: translateY(50px); }
.reveal-left  { transform: translateX(-60px); }
.reveal-right { transform: translateX(60px); }
.reveal-fade  { }

.reveal-up.visible, .reveal-left.visible, .reveal-right.visible, .reveal-fade.visible {
  opacity: 1;
  transform: translate(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.30s; }
.delay-3 { transition-delay: 0.45s; }

/* ════════════════════════════════════════
   NAVBAR
════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-nav);
  padding: 0.75rem 0;
  transition: all 0.4s var(--ease-out);
}

#navbar.scrolled {
  background: rgba(255,248,242,0.97);
  backdrop-filter: blur(20px);
  padding: 0.375rem 0;
  box-shadow: 0 1px 30px rgba(44,24,16,0.08);
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.nav-logo:hover { opacity: 0.85; }

.nav-logo-img {
  height: 110px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
  transition: filter 0.4s, transform 0.3s;
}

.nav-logo:hover .nav-logo-img {
  transform: scale(1.03);
}

#navbar.scrolled .nav-logo-img {
  /* Invert white to dark brown on cream navbar */
  filter: invert(1) sepia(1) saturate(0.5) hue-rotate(340deg) brightness(0.3);
}

/* Legacy text logo (fallback) */
.logo-script {
  font-family: var(--font-script);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--white);
  transition: color 0.4s;
  line-height: 1;
}

#navbar.scrolled .logo-script { color: var(--brown-dark); }

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color 0.4s;
  margin-top: -2px;
}

#navbar.scrolled .logo-sub { color: var(--text-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

#navbar.scrolled .nav-link { color: var(--text-secondary); }

.nav-link:hover {
  color: var(--gold) !important;
  background: rgba(201,169,110,0.1);
}

/* ── Nav dropdown: "Sesiones" ── */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  cursor: default;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-dropdown-toggle::after {
  content: '▾';
  font-size: 0.7em;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 8px);
  min-width: 200px;
  background: var(--cream);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: var(--z-nav);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 4px);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.6rem 0.9rem;
  border-radius: var(--radius-sm);
  color: var(--text-secondary) !important;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  background: var(--beige);
  color: var(--gold-dark) !important;
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: var(--radius-full) !important;
  box-shadow: var(--shadow-gold);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,169,110,0.5);
  background: linear-gradient(135deg, var(--gold-light), var(--gold)) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

#navbar.scrolled .hamburger span { background: var(--brown-dark); }

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding-left: clamp(2rem, 8vw, 7rem);
  padding-right: 2rem;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  transform: scale(1.05);
  transition: opacity 1.5s ease, transform 8s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(44,24,16,0.78) 0%,
    rgba(44,24,16,0.5) 30%,
    rgba(44,24,16,0.08) 60%,
    rgba(44,24,16,0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  color: var(--white);
  padding: 8rem 0 2rem;
  max-width: 620px;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.85rem;
}



.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.75rem;
  font-weight: 300;
  line-height: 1.6;
}

.hero-subtitle-es {
  font-size: 0.85em;
  color: var(--gold-light);
  font-weight: 400;
  letter-spacing: 0.05em;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.hero-dots {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}

.hero-dot {
  width: 8px; height: 8px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.4);
  transition: var(--transition);
  padding: 0;
}

.hero-dot.active {
  background: var(--gold-light);
  width: 24px;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 2;
}

.hero-scroll span {
  display: block;
  width: 1.5px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.7), transparent);
  margin: 0 auto;
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  50.01%{ transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ════════════════════════════════════════
   STATS BAR
════════════════════════════════════════ */
.stats-bar {
  background: linear-gradient(135deg, var(--brown-dark), var(--brown-mid));
  padding: clamp(2rem, 4vw, 3rem) 0;
}

.stats-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  color: var(--white);
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 300;
  line-height: 1;
  color: var(--gold-light);
}

.stat-number span { font-size: 0.6em; }

.stat-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 0.5rem;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* ════════════════════════════════════════
   ABOUT
════════════════════════════════════════ */
.about {
  padding: var(--section-py) 0;
  background: var(--cream);
}

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

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/5;
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s var(--ease-out);
}

.about-img-main:hover img { transform: scale(1.03); }

.about-img-accent {
  display: none;
}

.about-badge {
  position: absolute;
  top: 2rem;
  right: -1.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  z-index: 3;
  text-align: center;
  line-height: 1.2;
}

.about-badge-script {
  font-family: var(--font-script);
  font-size: 1.2rem;
}

.about-badge-text {
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.about-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.about-text em {
  font-style: italic;
  color: var(--gold-dark);
  font-family: var(--font-heading);
  font-size: 1.15em;
}

.about-quote {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--gold-dark);
  border-left: 3px solid var(--gold);
  padding: 0.75rem 0 0.75rem 1.25rem;
  margin: 1.5rem 0;
  line-height: 1.6;
}

.about-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem 1.25rem;
  background: var(--beige);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.about-feature:hover {
  background: var(--beige-dark);
  transform: translateX(4px);
}

.feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.about-feature strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.about-feature span {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ════════════════════════════════════════
   SESSIONS (Newborn focused)
════════════════════════════════════════ */
.sessions {
  padding: var(--section-py) 0;
  background: linear-gradient(180deg, var(--beige) 0%, var(--cream) 100%);
}

.sessions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  margin-bottom: 3rem;
}

.session-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  position: relative;
  border: 2px solid transparent;
}

.session-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.session-card.featured {
  border-color: var(--gold);
}

.session-card-ribbon {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 3;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.875rem;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 10px rgba(201,169,110,0.4);
}

.session-card-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.session-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.session-card:hover .session-card-img img { transform: scale(1.06); }

.session-card-tag {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1.25rem 0.875rem;
  background: linear-gradient(to top, rgba(44,24,16,0.8), transparent);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--white);
}

.session-card-body {
  padding: 1.5rem;
}

.session-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.session-price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: 1.25rem;
  line-height: 1;
}

.session-price span {
  font-size: 0.75rem;
  font-family: var(--font-body);
  color: var(--text-muted);
  font-weight: 400;
  margin-left: 0.25rem;
}

.session-includes {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.session-includes li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.check {
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

.session-btn {
  width: 100%;
  justify-content: center;
}

.sessions-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem 2rem;
  background: var(--beige);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--gold);
  flex-wrap: wrap;
}

.sessions-note p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
  min-width: 200px;
}

/* Keep old .services for backward compat */
.services {
  padding: var(--section-py) 0;
  background: linear-gradient(180deg, var(--beige) 0%, var(--cream) 100%);
}

/* ════════════════════════════════════════
   SERVICES (old grid — kept for reference)
════════════════════════════════════════ */
.old-services {
  padding: var(--section-py) 0;
  background: linear-gradient(180deg, var(--beige) 0%, var(--cream) 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.service-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.service-card:hover .service-card-img img { transform: scale(1.08); }

.service-card-body {
  padding: 1.5rem;
}

.service-icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.625rem;
}

.service-desc {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.service-tags {
  margin-bottom: 1rem;
}

.service-tags li {
  font-size: 0.75rem;
  color: var(--gold-dark);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.service-link {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  transition: var(--transition);
}

.service-link:hover { color: var(--gold-dark); letter-spacing: 0.12em; }

/* ════════════════════════════════════════
   GALLERY
════════════════════════════════════════ */
.gallery {
  padding: var(--section-py) 0;
  background: var(--brown-dark);
}

.gallery .section-eyebrow { color: var(--gold-light); }
.gallery .section-title { color: var(--white); }
.gallery .section-subtitle { color: rgba(255,255,255,0.6); }

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

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/5;
  border: none;
  padding: 0;
  background: var(--brown-mid);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s var(--ease-out);
}

.gallery-item:hover img { transform: scale(1.06); }

/* Familias: fotos verticales 2:3 se muestran completas (rostros arriba y abajo, sin recorte ni barras) */
.familias-page .gallery-item { aspect-ratio: 2 / 3; }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44,24,16,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.6);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
}

/* ════════════════════════════════════════
   GALLERY CTA
════════════════════════════════════════ */
.gallery-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.gallery-cta p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

/* ════════════════════════════════════════
   PRICING
════════════════════════════════════════ */
.pricing {
  padding: var(--section-py) 0;
  background: var(--cream);
}

.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.pricing-tab {
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-light);
  background: var(--beige);
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
}

.pricing-tab:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(201,169,110,0.08);
}

.pricing-tab.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.pricing-panel { display: none; }
.pricing-panel.active { display: block; }

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  align-items: start;
  margin-bottom: 3rem;
}

/* Pricing notes 3-col grid */
.pricing-notes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  margin-top: 0;
}

.pricing-note-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--beige);
  border-radius: var(--radius-md);
  border-top: 3px solid var(--gold);
}

.pni-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
}

.pricing-note-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.pricing-note-item p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.65;
}

.pricing-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
  border: 2px solid transparent;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, #FFFDF9, #FFF5E6);
  box-shadow: var(--shadow-gold);
}

.pricing-card.featured:hover {
  box-shadow: 0 24px 60px rgba(201,169,110,0.4);
}

.pricing-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.pricing-card-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--beige-dark);
}

.pricing-card-header h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--gold-dark);
  line-height: 1;
}

.pricing-card-header p {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

.pricing-features {
  margin-bottom: 1.75rem;
}

.pricing-features li {
  font-size: 0.875rem;
  color: var(--text-secondary);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--beige);
  line-height: 1.5;
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-card .btn {
  width: 100%;
  justify-content: center;
  padding: 0.875rem 1rem;
}

.pricing-note {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--beige);
  border-radius: var(--radius-md);
  margin-top: 2rem;
  border-left: 3px solid var(--gold);
}

.pricing-note p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ════════════════════════════════════════
   PROCESS
════════════════════════════════════════ */
.process {
  padding: var(--section-py) 0;
  background: linear-gradient(135deg, var(--beige) 0%, var(--rose-light) 100%);
}

.process-timeline {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.process-step {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}

.process-connector {
  flex-shrink: 0;
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin-top: 3rem;
  opacity: 0.4;
  align-self: flex-start;
}

.process-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.5rem;
  opacity: 0.6;
}

.process-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.process-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.process-desc {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.7;
}

.process-note {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background: rgba(44,24,16,0.06);
  border-radius: var(--radius-md);
  max-width: 700px;
  margin: 0 auto;
  border: 1px solid var(--beige-dark);
}

.process-note-icon { font-size: 1.5rem; flex-shrink: 0; }

.process-note div {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ════════════════════════════════════════
   FAQ
════════════════════════════════════════ */
.faq {
  padding: var(--section-py) 0;
  background: var(--cream);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.faq-sidebar .section-title { text-align: left; }
.faq-sidebar .section-eyebrow { display: block; }

.faq-sidebar-text {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.7;
}

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

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  transition: color 0.3s;
  gap: 1rem;
}

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

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out);
}

details[open] .faq-question::after { transform: rotate(45deg); }
details[open] .faq-question { color: var(--gold-dark); }

.faq-answer {
  padding-bottom: 1.25rem;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ════════════════════════════════════════
   CONTACT
════════════════════════════════════════ */
.contact {
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--brown-dark) 0%, #3D1E10 50%, var(--brown-mid) 100%);
  z-index: -1;
}

.contact-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("imagenes bebes/8E4A7218.jpg") center/cover no-repeat;
  opacity: 0.07;
}

/* Contact CTA card logo */
.cta-card-logo {
  margin-bottom: 1.25rem;
  display: flex;
  justify-content: center;
}

.cta-card-logo img {
  height: 110px;
  width: auto;
  object-fit: contain;
  filter: invert(1) sepia(1) saturate(0.4) hue-rotate(340deg) brightness(0.25);
}

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

.contact-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}

.contact-item:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--gold);
  transform: translateX(4px);
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: rgba(201,169,110,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  flex-shrink: 0;
  font-size: 1.25rem;
}

.contact-item-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.2rem;
}

.contact-item-value {
  display: block;
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 700;
}

.contact-social {
  display: flex;
  gap: 1rem;
}

.social-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.cta-card-body {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 3rem);
  text-align: center;
  box-shadow: var(--shadow-xl);
}

.cta-card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.cta-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.cta-card-body p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 1.75rem;
  line-height: 1.7;
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.footer {
  background: var(--black);
  color: var(--white);
}

.footer-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 5vw, 3rem);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.footer-brand .logo-script { color: var(--gold-light); font-size: 2rem; display: block; }
.footer-brand .logo-sub { color: rgba(255,255,255,0.5); display: block; margin-bottom: 1rem; }

.footer-logo-img {
  height: 110px;
  width: auto;
  object-fit: contain;
  filter: opacity(0.85);
  margin-bottom: 1rem;
  display: block;
}

.footer-tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  max-width: 260px;
}

.footer-links h4, .footer-contact h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

.footer-links ul { display: flex; flex-direction: column; gap: 0.5rem; }

.footer-links a, .footer-contact a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}

.footer-links a:hover, .footer-contact a:hover { color: var(--gold-light); }

.footer-contact p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.35rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem clamp(1.25rem, 5vw, 3rem);
  max-width: var(--container);
  margin: 0 auto;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  margin-bottom: 0.25rem;
}

.footer-seo-text {
  font-size: 0.65rem !important;
  color: rgba(255,255,255,0.15) !important;
}

/* ════════════════════════════════════════
   FLOATING WHATSAPP
════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: var(--z-float);
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  animation: waFloat 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.6);
  animation: none;
}

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

.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 0.75rem);
  background: var(--black);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.4rem 0.875rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ════════════════════════════════════════
   LIGHTBOX
════════════════════════════════════════ */
.lightbox-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.96);
  z-index: calc(var(--z-lightbox) - 1);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

.lightbox-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-lightbox);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

.lightbox:not([hidden]) {
  opacity: 1;
  visibility: visible;
}

.lightbox-img-container {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
}

#lightbox-img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: var(--radius-md);
  object-fit: contain;
  box-shadow: var(--shadow-xl);
}

.lightbox-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 1;
}

.lightbox-close:hover { background: rgba(255,255,255,0.2); }

.lightbox-prev, .lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 1;
}

.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.25); }

.lightbox-counter {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

/* ════════════════════════════════════════
   RESPONSIVE — TABLET (1024px)
════════════════════════════════════════ */
@media (max-width: 1024px) {
  .sessions-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid  { grid-template-columns: repeat(3, 1fr); }
  .pricing-cards { grid-template-columns: repeat(2, 1fr); }
  .pricing-notes-grid { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .about-grid { grid-template-columns: 1fr; }
  .about-images { max-width: 480px; margin: 0 auto; }
  .faq-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════
   RESPONSIVE — NAV COLLAPSE (1024px)
   Nav has more items now ("Tipo de Sesión"),
   collapse to hamburger earlier than the rest
   of the layout so it never overflows/crowds
   the logo on laptop-width screens.
════════════════════════════════════════ */
@media (max-width: 1024px) and (min-width: 769px) {
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    inset: 0;
    top: 0;
    background: rgba(255,248,242,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
    z-index: calc(var(--z-nav) - 1);
  }

  .nav-links.open { transform: translateX(0); }
  .nav-link { color: var(--text-primary) !important; font-size: 1.1rem; }
  .nav-cta { font-size: 1rem !important; }

  .nav-dropdown { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
  .nav-dropdown-toggle { font-size: 0.85rem; color: var(--text-muted) !important; }
  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
  }
  .nav-dropdown-menu a { font-size: 1rem; padding: 0.35rem 0.9rem; }
}

/* ════════════════════════════════════════
   RESPONSIVE — MOBILE (768px)
════════════════════════════════════════ */
@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    inset: 0;
    top: 0;
    background: rgba(255,248,242,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
    z-index: calc(var(--z-nav) - 1);
  }

  .nav-links.open { transform: translateX(0); }
  .nav-link { color: var(--text-primary) !important; font-size: 1.1rem; }
  .nav-cta { font-size: 1rem !important; }

  .nav-dropdown { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
  .nav-dropdown-toggle { font-size: 0.85rem; color: var(--text-muted) !important; }
  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
  }
  .nav-dropdown-menu a { font-size: 1rem; padding: 0.35rem 0.9rem; }

  .hero-title { font-size: clamp(2.5rem, 10vw, 4rem); }

  .hero { justify-content: center; padding-left: 1.25rem; padding-right: 1.25rem; }
  .hero-content { text-align: center; max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(44,24,16,0.5) 0%,
      rgba(44,24,16,0.32) 45%,
      rgba(44,24,16,0.65) 100%
    );
  }

  .stat-divider { display: none; }
  .stats-container { gap: 2rem; }

  .sessions-grid { grid-template-columns: 1fr; }
  .gallery-grid  { grid-template-columns: repeat(2, 1fr); }
  .sessions-note { flex-direction: column; text-align: center; }
  

  .pricing-cards { grid-template-columns: 1fr; }
  .pricing-tabs { gap: 0.375rem; }
  .pricing-tab { padding: 0.5rem 0.875rem; font-size: 0.75rem; }

  .process-timeline { flex-direction: column; align-items: center; }
  .process-connector { width: 2px; height: 40px; margin: 0; }
  
  .contact-grid { grid-template-columns: 1fr; }
  
  .footer-container { grid-template-columns: 1fr; gap: 2rem; }
  
  .about-img-accent { right: 0.5rem; bottom: -1rem; }
  .about-badge { right: 0; }

  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
}

/* ════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (480px)
════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; max-width: 300px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
  .whatsapp-float { bottom: 1.25rem; right: 1.25rem; width: 52px; height: 52px; }
}

/* ════════════════════════════════════════
   ACCESSIBILITY
════════════════════════════════════════ */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero-slide { transform: none !important; }
}

/* ════════════════════════════════════════
   LEGAL CONTENT (privacidad / términos)
════════════════════════════════════════ */
.legal-page {
  padding: clamp(7rem, 12vw, 10rem) 0 clamp(4rem, 8vw, 6rem);
}

.legal-content {
  max-width: 760px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--text-primary);
  margin: 2.5rem 0 1rem;
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin: 1.75rem 0 0.5rem;
}

.legal-content p,
.legal-content li {
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 0.85rem;
}

.legal-content ul {
  padding-left: 1.25rem;
}

.legal-content .legal-updated {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 3rem;
  font-style: italic;
}

/* ════════════════════════════════════════
   CROSS-SELL EMBARAZO (banner en home newborn)
   Captura a las embarazadas que llegan buscando
   newborn pero aún no pueden agendar.
════════════════════════════════════════ */
.cross-sell {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
  background: var(--beige);
}

.cross-sell-card {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  display: grid;
  grid-template-columns: 200px 1fr auto;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.cross-sell-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}

.cross-sell-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  display: block;
}

.cross-sell-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.6rem;
}

.cross-sell-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}

.cross-sell-title em {
  font-style: italic;
  color: var(--gold-dark);
}

.cross-sell-text {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 46ch;
  margin: 0;
}

.cross-sell-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .cross-sell-card {
    grid-template-columns: 150px minmax(0, 1fr);
    grid-template-areas:
      "img content"
      "actions actions";
    gap: 1.5rem;
  }
  .cross-sell-img     { grid-area: img; }
  .cross-sell-content { grid-area: content; }
  .cross-sell-actions { grid-area: actions; flex-direction: row; flex-wrap: wrap; }
}

@media (max-width: 560px) {
  .cross-sell-card {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "img"
      "content"
      "actions";
    text-align: center;
    justify-items: center;
  }
  .cross-sell-img { width: 190px; }
  .cross-sell-text { margin-inline: auto; }
  .cross-sell-actions {
    flex-direction: column;
    width: 100%;
    white-space: normal;
  }
  .cross-sell-actions .btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
  }
}

/* ════════════════════════════════════════
   PROMO REGALO EMBARAZO (cupo limitado)
   Gancho de urgencia bajo la tabla de precios.
════════════════════════════════════════ */
.promo-banner {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
}

.promo-banner-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  text-align: center;
}

.promo-banner-badge {
  display: inline-block;
  background: var(--white);
  color: var(--gold-dark);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.promo-banner-title {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 500;
  line-height: 1.25;
  color: var(--white);
  margin-bottom: 0.9rem;
}

.promo-banner-title em {
  font-style: italic;
}

.promo-banner-text {
  color: var(--white);
  opacity: 0.92;
  font-size: 1rem;
  max-width: 52ch;
  margin: 0 auto 1.5rem;
}

.promo-banner .btn-primary {
  background: var(--white);
  color: var(--gold-dark);
  border-color: var(--white);
}

.promo-banner .btn-primary:hover {
  background: var(--text-primary);
  color: var(--white);
  border-color: var(--text-primary);
}
