/* ==========================================================
   DANIELA GUERRERO - DOULA DE NACIMIENTO
   Paleta Pastel:
   - Blush / Rosa Pastel: #F5EAE4, #F0E0DC, #F7EEEB
   - Dusty Rose / Mauve: #9C6B6B, #7A4A4A, #C49A9A
   - Fondo Cálido: #FDF8F5, #FFFAF8
   - Acentos: #E8D5C4 (arena cálida), #3D2020 (texto profundo)
   ========================================================== */

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

:root {
  --blush: #F0E0DC;
  --blush-light: #F8F1EE;
  --blush-soft: #F5EAE4;
  --blush-deep: #E8CFC8;
  --mauve: #9C6B6B;
  --mauve-dark: #7A4A4A;
  --mauve-deep: #5C3232;
  --mauve-light: #C49A9A;
  --cream: #FDF8F5;
  --cream-warm: #FFFAF8;
  --sand: #E8D5C4;
  --sand-soft: #F2E4D8;
  --text-dark: #3D2020;
  --text-mid: #684242;
  --text-light: #9B7373;
  --white: #FFFFFF;
  --whatsapp: #25D366;
  --whatsapp-dark: #128C7E;
  --instagram: #E1306C;
  --shadow-subtle: 0 4px 20px rgba(156, 107, 107, 0.08);
  --shadow-soft: 0 8px 30px rgba(156, 107, 107, 0.12);
  --shadow-med: 0 14px 45px rgba(156, 107, 107, 0.18);
  --shadow-strong: 0 20px 60px rgba(122, 74, 74, 0.28);
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 44px;
  --radius-full: 9999px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-elegant: 'Cormorant Garamond', Garamond, serif;
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ===== SCROLLBAR PERSONALIZADA ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--blush-light); }
::-webkit-scrollbar-thumb { background: var(--mauve-light); border-radius: var(--radius-full); }
::-webkit-scrollbar-thumb:hover { background: var(--mauve); }

/* ===== CONTENEDOR & SECCIONES ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 110px 0;
  position: relative;
}

/* ===== ICONOS DE UBICACIÓN & COLORIMETRÍA ===== */
.location-pin-icon {
  display: inline-block;
  vertical-align: -2px;
  color: var(--mauve);
  transition: var(--transition);
}

.hero-badge .location-pin-icon {
  color: var(--mauve);
  margin-right: 4px;
}

.nav-subtitle .location-pin-icon {
  color: var(--mauve);
  vertical-align: -1px;
}

.location-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.location-item .location-pin-icon {
  color: var(--mauve);
}

.location-tagline {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.location-tagline .location-pin-icon {
  color: var(--blush);
}

/* ===== CABECERAS DE SECCIÓN ===== */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mauve);
  background: var(--blush);
  padding: 8px 22px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
  border: 1px solid var(--blush-deep);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.5vw, 3.2rem);
  font-weight: 500;
  color: var(--mauve-dark);
  line-height: 1.22;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

.section-title em {
  font-style: italic;
  color: var(--mauve);
  font-family: var(--font-elegant);
  font-weight: 400;
  font-size: 1.08em;
}

.section-lead {
  font-size: 1.08rem;
  color: var(--text-mid);
  max-width: 660px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 400;
}

.section-lead.highlight-quote {
  font-family: var(--font-elegant);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--blush-light);
  letter-spacing: 0.02em;
}

/* Cabeceras sobre fondos oscuros (contraste perfecto) */
.section-header.light .section-tag {
  background: rgba(255, 255, 255, 0.18);
  color: var(--blush-light);
  border-color: rgba(255, 255, 255, 0.35);
}

.section-header.light .section-title {
  color: var(--white);
}

.section-header.light .section-title em {
  color: var(--blush-light);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.25);
  font-weight: 400;
}

.section-header.light .section-lead {
  color: rgba(255, 255, 255, 0.92);
}

/* ===== BOTONES ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 34px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--mauve) 0%, var(--mauve-dark) 100%);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(122, 74, 74, 0.32);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(122, 74, 74, 0.44);
  background: linear-gradient(135deg, var(--mauve-dark) 0%, var(--mauve-deep) 100%);
}

.btn-ig-outline {
  background: rgba(255, 255, 255, 0.8);
  color: var(--mauve-dark);
  border: 2px solid var(--blush-deep);
  backdrop-filter: blur(8px);
}

.btn-ig-outline:hover {
  background: var(--white);
  border-color: var(--mauve);
  color: var(--instagram);
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.btn-instagram {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc2a8d 100%);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(188, 42, 141, 0.35);
}

.btn-instagram:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 34px rgba(188, 42, 141, 0.48);
}

/* ===== BOTONES FLOTANTES REDES ===== */
.floating-social {
  position: fixed;
  bottom: 30px;
  right: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
}

.social-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 26px rgba(0, 0, 0, 0.24);
  transition: var(--transition);
  position: relative;
}

.social-btn:hover {
  transform: scale(1.12) translateY(-4px);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.32);
}

.whatsapp-btn {
  background: var(--whatsapp);
}

.instagram-btn {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc2a8d 100%);
}

.social-tooltip {
  position: absolute;
  right: 68px;
  background: rgba(61, 32, 32, 0.9);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition: var(--transition);
}

.social-btn:hover .social-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ===== BARRA DE NAVEGACIÓN ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
  background: rgba(253, 248, 245, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232, 207, 200, 0.4);
}

.navbar.scrolled {
  background: rgba(253, 248, 245, 0.98);
  padding: 10px 0;
  box-shadow: var(--shadow-soft);
  border-bottom-color: var(--blush-deep);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.nav-logo-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--blush-deep);
  transition: var(--transition);
}

.nav-logo:hover .nav-logo-img {
  border-color: var(--mauve);
  transform: rotate(5deg) scale(1.05);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--mauve-dark);
  line-height: 1.2;
}

.nav-subtitle {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mauve);
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--mauve-dark);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.nav-link:hover {
  background: var(--blush);
  color: var(--mauve-dark);
}

.nav-cta {
  background: linear-gradient(135deg, var(--mauve) 0%, var(--mauve-dark) 100%);
  color: var(--white) !important;
  padding: 10px 22px;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(122, 74, 74, 0.25);
  margin-left: 8px;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(122, 74, 74, 0.35);
  background: var(--mauve-dark) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-xs);
}

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

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== HERO / BANNER REESTRUCTURADO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #FBF4F1 0%, #F5EAE4 50%, #F0DFD8 100%);
  padding: 130px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg-texture {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 10% 20%, rgba(240, 224, 220, 0.6) 0%, transparent 40%),
                    radial-gradient(circle at 90% 80%, rgba(196, 154, 154, 0.25) 0%, transparent 40%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-visual {
  position: relative;
}

.hero-banner-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--blush-soft);
  box-shadow: var(--shadow-med);
  border: 3px solid rgba(255, 255, 255, 0.8);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-banner-frame:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}

.hero-banner-source {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.hero-banner-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid var(--blush-deep);
  border-radius: var(--radius-full);
  padding: 8px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--mauve-dark);
  box-shadow: var(--shadow-soft);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--mauve-dark);
  border: 1px solid var(--blush-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  box-shadow: var(--shadow-subtle);
}

.hero-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.hero-title-top {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 5.2rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--mauve-dark);
  line-height: 0.95;
}

.hero-title-sub {
  font-family: var(--font-elegant);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-style: italic;
  color: var(--mauve);
  line-height: 1.2;
  margin-top: 4px;
}

.hero-title-name {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mauve-deep);
  margin-top: 10px;
}

.hero-tagline {
  font-family: var(--font-elegant);
  font-size: 1.25rem;
  color: var(--mauve-dark);
  margin-bottom: 16px;
  line-height: 1.5;
}

.hero-description {
  font-size: 1rem;
  color: var(--text-mid);
  margin-bottom: 34px;
  max-width: 480px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid var(--mauve);
  border-radius: var(--radius-full);
  position: relative;
}

.scroll-dot {
  width: 4px;
  height: 8px;
  background: var(--mauve-dark);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: mouseScroll 1.8s infinite;
}

@keyframes mouseScroll {
  0% { transform: translate(-50%, 0); opacity: 1; }
  100% { transform: translate(-50%, 14px); opacity: 0; }
}

/* ===== ¿QUÉ ES UNA DOULA? ===== */
.what-is-doula {
  background: var(--cream-warm);
  position: relative;
}

/* Editorial Intro con Imagen 4.webp */
.doula-intro {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 54px;
  align-items: center;
  margin-bottom: 68px;
}

.doula-intro__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.doula-intro__content .section-tag {
  margin-bottom: 16px;
}

.doula-intro__content .section-title {
  text-align: left;
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 2.9rem);
}

.doula-intro__content .section-lead {
  text-align: left;
  margin: 0;
  max-width: 100%;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Marco visual refinado para 4.webp */
.doula-intro__visual {
  position: relative;
}

.doula-intro__frame {
  position: relative;
  display: block;
}

.doula-intro__backdrop {
  position: absolute;
  inset: 14px -14px -14px 14px;
  background: linear-gradient(135deg, var(--blush-deep) 0%, var(--sand) 100%);
  border-radius: var(--radius-xl);
  opacity: 0.6;
  filter: blur(2px);
  z-index: 1;
  transition: var(--transition);
}

.doula-intro__frame:hover .doula-intro__backdrop {
  transform: translate(4px, 4px);
  opacity: 0.85;
}

.doula-intro__img-container {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-med);
  background: var(--blush-soft);
  z-index: 2;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}

.doula-intro__img-container:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}

.doula-intro__img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: saturate(1.05) contrast(1.02);
}

.doula-intro__img-container:hover .doula-intro__img {
  transform: scale(1.04);
}

.doula-intro__badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(232, 207, 200, 0.85);
  border-radius: var(--radius-full);
  padding: 8px 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(122, 74, 74, 0.16);
  z-index: 3;
  pointer-events: none;
}

.doula-intro__badge-pulse {
  width: 8px;
  height: 8px;
  background: var(--mauve);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(156, 107, 107, 0.7);
  animation: pulseMauve 2s infinite;
}

@keyframes pulseMauve {
  0% { box-shadow: 0 0 0 0 rgba(156, 107, 107, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(156, 107, 107, 0); }
  100% { box-shadow: 0 0 0 0 rgba(156, 107, 107, 0); }
}

.doula-intro__badge-text {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--mauve-dark);
  letter-spacing: 0.02em;
}

.doula-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 64px;
}

.doula-card {
  background: var(--white);
  border: 1px solid var(--blush-deep);
  border-radius: var(--radius-lg);
  padding: 44px 32px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
}

.doula-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-med);
  border-color: var(--mauve-light);
}

.doula-card--featured {
  border-color: var(--mauve);
  background: linear-gradient(180deg, #FFFFFF 0%, #FCF6F3 100%);
  box-shadow: var(--shadow-soft);
}

.card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--blush);
  color: var(--mauve-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.card-icon-wrap {
  width: 76px;
  height: 76px;
  background: var(--blush-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  border: 1px solid var(--blush-deep);
}

.card-icon {
  font-size: 2.2rem;
}

.doula-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--mauve-dark);
  margin-bottom: 14px;
}

.doula-card p {
  color: var(--text-mid);
  font-size: 0.94rem;
  line-height: 1.8;
}

.quote-block {
  background: linear-gradient(135deg, var(--blush) 0%, var(--blush-light) 100%);
  border-radius: var(--radius-lg);
  padding: 56px 64px;
  text-align: center;
  position: relative;
  border-left: 5px solid var(--mauve);
  box-shadow: var(--shadow-soft);
}

.quote-icon {
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--mauve-light);
  line-height: 1;
  opacity: 0.45;
  margin-bottom: -20px;
}

.quote-block p {
  font-family: var(--font-elegant);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--mauve-deep);
  line-height: 1.8;
  margin-bottom: 20px;
}

.quote-block cite {
  font-size: 0.92rem;
  color: var(--mauve-dark);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.06em;
}

/* ===== SERVICIOS ===== */
.services {
  background: linear-gradient(160deg, var(--mauve-dark) 0%, #603434 50%, var(--text-dark) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(240, 224, 220, 0.09) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 34px 28px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(240, 224, 220, 0.12);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.service-item:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(240, 224, 220, 0.3);
  transform: translateY(-4px);
}

.service-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--blush);
  opacity: 0.7;
  line-height: 1;
  flex-shrink: 0;
  min-width: 48px;
}

.service-content h3 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--blush-light);
  margin-bottom: 8px;
  line-height: 1.3;
}

.service-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  line-height: 1.7;
}

.services-cta {
  text-align: center;
  position: relative;
  z-index: 1;
}

/* ===== CIFRAS Y EVIDENCIA CIENTÍFICA ===== */
.stats {
  background: linear-gradient(160deg, var(--mauve) 0%, #AF7575 50%, var(--mauve-dark) 100%);
  position: relative;
  overflow: hidden;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}

.stat-card {
  text-align: center;
  padding: 38px 22px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3.6rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 12px;
  text-shadow: 0 2px 14px rgba(0,0,0,0.15);
}

.stat-label {
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 10px;
}

.stat-desc {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
}

.benefits-list {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 48px 52px;
  position: relative;
  z-index: 1;
}

.benefits-list h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--blush-light);
  margin-bottom: 28px;
  text-align: center;
}

.benefits-list ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 36px;
  margin-bottom: 24px;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.93rem;
  line-height: 1.6;
}

.benefit-icon {
  color: var(--blush);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.stats-source {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 18px;
}

/* ===== GALERÍA: CARRUSEL INTERACTIVO ===== */
.gallery {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.gallery-carousel-wrap {
  position: relative;
  margin: 0 auto;
  padding: 10px 0;
}

.gallery-carousel-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 12px 6px 24px;
}

.gallery-carousel-track::-webkit-scrollbar {
  display: none;
}

.gallery-slide {
  flex: 0 0 calc(33.333% - 15px);
  min-width: 300px;
  scroll-snap-align: start;
  scroll-snap-stop: normal;
}

.gallery-item {
  position: relative;
  height: 440px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--blush-soft);
  border: 2px solid var(--blush-deep);
  box-shadow: var(--shadow-subtle);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
  border-color: var(--mauve);
}

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

/* Overlay con gradiente refinado */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(44, 16, 16, 0.96) 0%,
    rgba(44, 16, 16, 0.55) 38%,
    rgba(44, 16, 16, 0.1) 65%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0;
  opacity: 0;
  transition: opacity 0.38s ease;
}

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

/* Ícono de zoom mejorado */
.gallery-zoom-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
  transition: transform 0.3s ease, background 0.3s ease;
}

.gallery-item:hover .gallery-zoom-icon {
  transform: scale(1.12);
  background: rgba(156, 107, 107, 0.5);
}

/* Caption con mejor jerarquía tipográfica */
.gallery-caption-wrap {
  padding: 20px 22px 24px;
  transform: translateY(10px);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-caption-wrap {
  transform: translateY(0);
}

.gallery-caption {
  color: var(--white);
  font-family: var(--font-elegant);
  font-size: 1.08rem;
  font-style: italic;
  line-height: 1.45;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  display: block;
}

.gallery-caption-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blush-light);
  opacity: 0.85;
  margin-bottom: 5px;
}

/* Botones de navegación del carrusel */
.carousel-nav-btn {
  position: absolute;
  top: calc(50% - 10px);
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1.5px solid var(--blush-deep);
  color: var(--mauve-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.carousel-nav-btn:hover {
  background: var(--mauve);
  color: var(--white);
  border-color: var(--mauve);
  transform: translateY(-50%) scale(1.12);
  box-shadow: var(--shadow-med);
}

.carousel-nav-prev {
  left: -26px;
}

.carousel-nav-next {
  right: -26px;
}

/* Paginación / Dots */
.gallery-carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: var(--blush-deep);
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
}

.carousel-dot:hover {
  background: var(--mauve-light);
  transform: scale(1.2);
}

.carousel-dot.active {
  width: 28px;
  border-radius: 6px;
  background: var(--mauve);
}

/* ===== LIGHTBOX MODAL MEJORADO ===== */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s ease;
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 4, 4, 0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.lightbox-content {
  position: relative;
  z-index: 2;
  max-width: min(92vw, 1100px);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  animation: lightboxEnter 0.32s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes lightboxEnter {
  from { opacity: 0; transform: scale(0.88) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.lightbox-img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 76vh;
}

.lightbox-img {
  max-width: 100%;
  max-height: 74vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 32px 80px rgba(0,0,0,0.65);
  display: block;
  transition: opacity 0.2s ease;
}

/* Botones prev/next dentro del lightbox */
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,0.25);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  z-index: 10;
}

.lightbox-nav:hover {
  background: var(--mauve);
  border-color: var(--mauve);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-nav-prev { left: -64px; }
.lightbox-nav-next { right: -64px; }

/* Caption del lightbox */
.lightbox-footer {
  width: 100%;
  padding: 16px 20px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.lightbox-counter {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.lightbox-caption {
  color: var(--blush-light);
  font-family: var(--font-elegant);
  font-size: 1.2rem;
  font-style: italic;
  text-align: center;
  line-height: 1.5;
  max-width: 680px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

/* Botón de cierre */
.lightbox-close {
  position: absolute;
  top: -54px;
  right: 0;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,0.22);
  border-radius: var(--radius-full);
  color: var(--white);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.lightbox-close:hover {
  background: rgba(156, 107, 107, 0.6);
  border-color: var(--mauve-light);
  transform: scale(1.12) rotate(90deg);
}

/* ===== CARDS CLICKEABLES ===== */
.doula-card--clickable {
  appearance: none;
  -webkit-appearance: none;
  background: var(--white);
  border: 1px solid var(--blush-deep);
  border-radius: var(--radius-lg);
  padding: 44px 32px 36px;
  text-align: center;
  width: 100%;
  font-family: var(--font-body);
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.doula-card--clickable:hover,
.doula-card--clickable:focus-visible {
  transform: translateY(-10px);
  box-shadow: var(--shadow-strong);
  border-color: var(--mauve);
  outline: none;
}

.doula-card--featured.doula-card--clickable {
  border-color: var(--mauve);
  background: linear-gradient(180deg, #FFFFFF 0%, #FCF6F3 100%);
  box-shadow: var(--shadow-soft);
}

.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mauve);
  border: 1px solid var(--mauve-light);
  border-radius: var(--radius-full);
  padding: 7px 18px;
  background: var(--blush-soft);
  transition: var(--transition);
}

.doula-card--clickable:hover .card-cta {
  background: var(--mauve);
  color: var(--white);
  border-color: var(--mauve);
}

.card-cta-arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}

.doula-card--clickable:hover .card-cta-arrow {
  transform: translateX(5px);
}

/* ===== DOULA MODAL ===== */
.doula-modal {
  border: none;
  border-radius: var(--radius-lg);
  padding: 0;
  max-width: 820px;
  width: min(92vw, 820px);
  background: var(--cream-warm);
  box-shadow: 0 24px 70px rgba(61, 32, 32, 0.38);
  overflow: hidden;
  margin: auto;
  position: fixed;
  inset: 0;
  max-height: min(88vh, 660px);
}

.doula-modal::backdrop {
  background: rgba(40, 20, 20, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.doula-modal[open] {
  animation: modalFadeIn 0.28s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: scale(0.96) translateY(12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* Two-column layout: image | text */
.doula-modal__layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  min-height: 380px;
  max-height: min(88vh, 660px);
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* Left column — image wrapper */
.doula-modal__img-wrap {
  position: relative;
  height: 100%;
  background: var(--blush-soft);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.doula-modal__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Right column — content */
.doula-modal__inner {
  padding: 38px 36px 36px;
  text-align: left;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.doula-modal__inner::-webkit-scrollbar {
  width: 6px;
}

.doula-modal__inner::-webkit-scrollbar-track {
  background: var(--blush-light);
}

.doula-modal__inner::-webkit-scrollbar-thumb {
  background: var(--mauve-light);
  border-radius: var(--radius-full);
}

.doula-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--blush-deep);
  border-radius: var(--radius-full);
  width: 38px;
  height: 38px;
  font-size: 1.35rem;
  line-height: 1;
  color: var(--mauve-dark);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  box-shadow: 0 4px 16px rgba(61, 32, 32, 0.22);
  flex-shrink: 0;
}

.doula-modal__close:hover {
  background: var(--mauve);
  color: var(--white);
  border-color: var(--mauve);
  transform: scale(1.08) rotate(90deg);
}

.doula-modal__icon {
  font-size: 2rem;
  margin-bottom: 8px;
  line-height: 1;
}

.doula-modal__title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  font-weight: 500;
  color: var(--mauve-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.doula-modal__body {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.75;
  text-align: left;
  margin-bottom: 14px;
}

.doula-modal__body:last-child { margin-bottom: 0; }

.doula-modal__body strong { color: var(--mauve-dark); font-weight: 600; }

/* Mobile & Tablet: la imagen se muestra 100% completa (altura natural) y el modal tiene scroll interno */
@media (max-width: 768px) {
  .doula-modal {
    width: min(92vw, 480px);
    max-height: 88vh;
    border-radius: var(--radius-lg);
  }

  .doula-modal__layout {
    display: flex;
    flex-direction: column;
    height: 100%;
    max-height: 88vh;
    min-height: unset;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  .doula-modal__layout::-webkit-scrollbar {
    width: 6px;
  }

  .doula-modal__layout::-webkit-scrollbar-track {
    background: var(--blush-light);
  }

  .doula-modal__layout::-webkit-scrollbar-thumb {
    background: var(--mauve-light);
    border-radius: var(--radius-full);
  }

  .doula-modal__img-wrap {
    width: 100%;
    height: auto;
    flex-shrink: 0;
    background: var(--blush-soft);
    display: block;
    line-height: 0;
  }

  .doula-modal__img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: center;
  }

  .doula-modal__inner {
    padding: 24px 22px 36px;
    overflow-y: visible;
    flex: none;
  }

  .doula-modal__close {
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    font-size: 1.3rem;
  }

  .doula-modal__icon {
    font-size: 1.6rem;
    margin-bottom: 6px;
  }

  .doula-modal__title {
    font-size: 1.35rem;
    margin-bottom: 12px;
  }

  .doula-modal__body {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 12px;
  }
}

@media (max-width: 480px) {
  .doula-modal {
    width: 93vw;
    max-height: 90vh;
  }

  .doula-modal__inner {
    padding: 20px 18px 30px;
  }

  .doula-modal__body {
    font-size: 0.88rem;
    line-height: 1.65;
  }
}




/* ===== SECCIÓN DE VIDEO ===== */

.video-section {
  background: var(--cream-warm);
}

.instagram-embed-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 36px;
}

.instagram-embed-container .instagram-media {
  flex: 1 1 320px;
  max-width: 480px !important;
  margin: 0 auto !important;
}

.video-actions {
  text-align: center;
}

/* ===== POSPARTO & CIERRE DE CUARENTENA ===== */
.posparto-section {
  background: var(--blush-light);
}

.posparto-content {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
}

.posparto-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  font-weight: 500;
  color: var(--mauve-dark);
  line-height: 1.22;
  margin-bottom: 24px;
}

.posparto-text h2 em {
  font-style: italic;
  color: var(--mauve);
  font-family: var(--font-elegant);
}

.posparto-text p {
  color: var(--text-mid);
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 18px;
}

.posparto-highlight {
  background: var(--white);
  border-left: 4px solid var(--mauve);
  padding: 18px 24px;
  border-radius: var(--radius-sm);
  margin: 24px 0 32px;
  box-shadow: var(--shadow-subtle);
}

.posparto-highlight p {
  font-family: var(--font-elegant);
  font-size: 1.2rem !important;
  color: var(--mauve-deep) !important;
  margin-bottom: 0 !important;
}

.posparto-visual {
  position: relative;
}

.posparto-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-med);
  border: 4px solid var(--white);
}

.posparto-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.posparto-img-wrap:hover img {
  transform: scale(1.04);
}

.posparto-overlay-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--mauve-dark);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ===== PREGUNTAS FRECUENTES (FAQ) ===== */
.faq-section {
  background: var(--cream);
}

.faq-container {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--blush-deep);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-subtle);
}

.faq-item:hover {
  border-color: var(--mauve-light);
}

.faq-item.active {
  border-color: var(--mauve);
  box-shadow: var(--shadow-soft);
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  background: none;
  border: none;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--mauve-dark);
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 16px;
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--mauve);
  font-weight: 400;
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 28px 24px;
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ===== CONTACTO ===== */
.contact {
  background: linear-gradient(160deg, var(--mauve-dark) 0%, #5C3232 100%);
  color: var(--white);
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 26px;
  align-items: stretch;
}

.contact-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 44px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-6px);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.24);
}

.contact-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.22);
}

.whatsapp-icon { background: var(--whatsapp); }
.instagram-icon { background: linear-gradient(135deg, #f09433 0%, #bc2a8d 100%); }

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--blush-light);
  margin-bottom: 12px;
}

.contact-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.contact-link {
  color: var(--blush);
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  border-bottom: 2px solid rgba(240, 224, 220, 0.4);
  padding-bottom: 4px;
  transition: var(--transition);
}

.contact-link:hover {
  color: var(--white);
  border-bottom-color: var(--white);
}

.contact-card--center {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(240, 224, 220, 0.28);
  padding: 48px 32px;
}

.contact-logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(240, 224, 220, 0.5);
  margin-bottom: 18px;
}

.contact-role {
  font-size: 0.88rem !important;
  color: var(--blush) !important;
  font-weight: 600;
  margin-bottom: 6px !important;
}

.contact-location {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  font-size: 0.9rem !important;
  color: var(--blush-light) !important;
  font-weight: 600 !important;
  margin-bottom: 14px !important;
}

.contact-location .location-pin-icon {
  color: var(--blush);
}

.contact-slogan {
  font-family: var(--font-elegant);
  font-size: 1.05rem !important;
  color: var(--blush-light) !important;
  margin-bottom: 24px !important;
}

.contact-center-btn {
  width: 100%;
}

/* ===== PIE DE PÁGINA (FOOTER) ===== */
.footer {
  background: #251212;
  color: var(--white);
  padding: 70px 0 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 50px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
  border-bottom: 1px solid rgba(240, 224, 220, 0.1);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(240, 224, 220, 0.3);
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--blush-light);
  margin-bottom: 4px;
}

.footer-tagline {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--blush);
  transform: translateX(4px);
}

.footer-social-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-social-title {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blush);
}

.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social-btn.whatsapp {
  background: rgba(37, 211, 102, 0.15);
  color: var(--whatsapp);
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.footer-social-btn.whatsapp:hover {
  background: var(--whatsapp);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-social-btn.instagram {
  background: rgba(225, 48, 108, 0.15);
  color: #e1306c;
  border: 1px solid rgba(225, 48, 108, 0.3);
}

.footer-social-btn.instagram:hover {
  background: linear-gradient(135deg, #f09433, #bc2a8d);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-dev-link {
  color: var(--blush);
  text-decoration: none;
  font-weight: 700;
  transition: var(--transition);
}

.footer-dev-link:hover {
  color: var(--mauve-light);
  text-decoration: underline;
}

/* ===== ANIMACIONES DE SCROLL ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-content {
    align-items: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .doula-intro {
    grid-template-columns: 1fr;
    gap: 44px;
    margin-bottom: 54px;
  }

  .doula-intro__content {
    align-items: center;
    text-align: center;
  }

  .doula-intro__content .section-title {
    text-align: center;
  }

  .doula-intro__content .section-lead {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .doula-intro__img {
    height: 350px;
  }

  .doula-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-cards {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .gallery-slide {
    flex: 0 0 calc(50% - 11px);
    min-width: 260px;
  }

  .gallery-item {
    height: 390px;
  }

  .carousel-nav-prev { left: -10px; }
  .carousel-nav-next { right: -10px; }

  .lightbox-nav-prev { left: -44px; }
  .lightbox-nav-next { right: -44px; }

  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section { padding: 75px 0; }

  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80vw;
    max-width: 320px;
    height: 100vh;
    background: var(--cream-warm);
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 28px 40px;
    gap: 8px;
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-link {
    font-size: 1rem;
    width: 100%;
    padding: 12px 16px;
  }

  .nav-cta {
    margin-top: 12px;
    width: 100%;
    text-align: center;
    margin-left: 0;
  }

  .doula-intro {
    gap: 32px;
    margin-bottom: 44px;
  }

  .doula-intro__img {
    height: 290px;
  }

  .doula-intro__backdrop {
    inset: 10px -10px -10px 10px;
  }

  .doula-cards {
    grid-template-columns: 1fr;
  }

  .quote-block {
    padding: 38px 24px;
  }

  .quote-block p {
    font-size: 1.18rem;
  }

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

  .benefits-list {
    padding: 36px 24px;
  }

  .benefits-list ul {
    grid-template-columns: 1fr;
  }

  .gallery-slide {
    flex: 0 0 82%;
    min-width: 240px;
  }

  .gallery-item {
    height: 360px;
  }

  .carousel-nav-btn {
    display: none;
  }

  /* En móvil el overlay siempre visible */
  .gallery-overlay {
    opacity: 1;
    background: linear-gradient(
      to top,
      rgba(44, 16, 16, 0.95) 0%,
      rgba(44, 16, 16, 0.45) 42%,
      transparent 70%
    );
  }

  .gallery-caption-wrap {
    transform: translateY(0);
    padding: 16px 18px 20px;
  }

  .gallery-caption {
    font-size: 0.97rem;
  }

  .gallery-caption-label {
    font-size: 0.63rem;
  }

  /* Lightbox en móvil */
  .lightbox-nav {
    display: none;
  }

  .lightbox-close {
    top: -48px;
    right: 0;
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
  }

  .lightbox-caption {
    font-size: 1.05rem;
  }

  .lightbox-content {
    max-width: 95vw;
  }

  .lightbox-img {
    max-height: 64vh;
    border-radius: var(--radius-sm);
  }

  .posparto-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .posparto-visual {
    order: -1;
  }

  .posparto-img-wrap img {
    height: 340px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title-top { font-size: 3rem; }
  .hero-title-sub { font-size: 1.5rem; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-number { font-size: 3rem; }
  .doula-intro__img { height: 230px; }
  .doula-intro__badge {
    bottom: 12px;
    left: 12px;
    padding: 6px 14px;
  }
  .doula-intro__badge-text { font-size: 0.72rem; }
  .gallery-slide { flex: 0 0 88%; }
  .gallery-item { height: 320px; }
  .gallery-caption { font-size: 0.92rem; }
  .gallery-caption-label { display: none; }
  .lightbox-img { max-height: 58vh; }
}

/* ===== MODALES DE TARJETAS (DOULA MODALS) ===== */
.doula-modal-wrap {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.doula-modal-wrap:not([hidden]) {
  display: flex;
}

.doula-modal-wrap.active {
  opacity: 1;
  pointer-events: auto;
}

.doula-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 10, 10, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.doula-modal {
  position: relative;
  z-index: 2;
  background: var(--cream);
  border-radius: var(--radius-lg);
  max-width: 820px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  border: 1px solid var(--blush-deep);
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.doula-modal-wrap.active .doula-modal {
  transform: translateY(0) scale(1);
}

.doula-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream-soft);
  border: 1px solid var(--blush-deep);
  color: var(--mauve-dark);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.25s ease;
}

.doula-modal__close:hover {
  background: var(--mauve);
  color: var(--white);
}

.doula-modal__layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  align-items: stretch;
}

.doula-modal__img-wrap {
  position: relative;
  height: 100%;
  min-height: 250px;
}

.doula-modal__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doula-modal__inner {
  padding: 36px 32px;
}

.doula-modal__icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.doula-modal__title {
  font-family: var(--font-heading);
  color: var(--mauve-dark);
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.doula-modal__body {
  font-family: var(--font-body);
  color: var(--text-dark);
  font-size: 0.98rem;
  line-height: 1.65;
  margin-bottom: 14px;
}

@media (max-width: 680px) {
  .doula-modal__layout {
    grid-template-columns: 1fr;
  }
  .doula-modal__img-wrap {
    height: 200px;
  }
  .doula-modal__inner {
    padding: 24px 20px;
  }
}
