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

/* ═══════════════════════════════
   SCROLL HINT — componente global
   Usar dentro de una sección con position:relative
═══════════════════════════════ */
.scroll-hint {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  cursor: pointer; z-index: 2;
  animation: scrollHintFade 2s ease 1.8s both;
}
@keyframes scrollHintFade {
  from { opacity: 0; transform: translateX(-50%) translateY(10px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.scroll-hint:hover .scroll-hint-arrow { border-color: var(--gold); }
.scroll-hint-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.58rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(255,255,255,0.42);
}
.scroll-hint-arrow {
  width: 30px; height: 30px;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  animation: scrollHintBounce 2s ease-in-out infinite;
  transition: border-color 0.3s;
}
@keyframes scrollHintBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

:root {
  /* Spa / holistic palette — degradado light */
  --cream:         #fdfbf9;
  --sand:          #f7f2ea;
  --lavender-pale: #f5effd;
  --lavender-soft: #ede4f8;
  --lavender-mid:  #d4c5ef;

  --purple-soft:   #b09fd8;
  --purple:        #8a72be;
  --purple-deep:   #6a4faa;
  --purple-dark:   #432d80;
  --purple-night:  #1e1248;

  /* Dorado */
  --gold:       #c9a96e;
  --gold-light: #e8d5a3;
  --gold-warm:  #d4b87a;
  --gold-dark:  #9a7a4a;

  /* Texto — más suave */
  --text:       #2e2448;
  --text-mid:   #6b568a;
  --text-light: #a896c4;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* ══════════════════════════════
   NAV
══════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 48px;
  background: linear-gradient(135deg, rgba(176,159,216,0.97) 0%, rgba(106,79,170,0.97) 60%, rgba(67,45,128,0.97) 100%);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
  transition: padding 0.3s;
}
.nav-logo img {
  height: 70px;
  filter: brightness(1.08);
}
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #1a0f30 !important;
  padding: 10px 24px;
  border-radius: 40px;
  font-weight: 600 !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(201,169,110,0.4) !important;
}

/* ══════════════════════════════
   HERO  — foto de Jessica como fondo completo
══════════════════════════════ */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--purple-night);
}

/* Imagen de fondo — empieza bajo el nav para que la cabeza no toque el borde */
.hero-image {
  position: absolute;
  top: 72px;
  left: 0; right: 0; bottom: 0;
  z-index: 0;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 5% center;
  display: block;
}
/* Overlay: oscuro solo en el 50% izquierdo, transparente a partir del 55% */
.hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,
      rgba(16, 7, 40, 0.95) 0%,
      rgba(16, 7, 40, 0.88) 30%,
      rgba(16, 7, 40, 0.55) 46%,
      rgba(16, 7, 40, 0.10) 58%,
      transparent 68%),
    linear-gradient(to top,
      rgba(10, 5, 25, 0.4) 0%,
      transparent 25%);
  z-index: 1;
  pointer-events: none;
}

/* Panel de texto — confinado al 46% izquierdo */
.hero-text {
  padding: 140px 40px 90px 72px;
  position: relative;
  z-index: 2;
  max-width: 46%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Badge de perfil */
.hero-profile-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.hero-profile-badge img {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 30%;
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 4px rgba(201,169,110,0.15);
}
.hero-profile-badge-text {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mid);
  line-height: 1.7;
}

/* Textos del hero — ahora sobre fondo claro */
.hero-eyebrow {
  font-size: 0.63rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 4.5vw, 4.8rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.07;
  margin-bottom: 10px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.hero-title span {
  display: block;
  color: var(--gold-light);
  font-style: italic;
  font-weight: 400;
}
.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 28px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}
.hero-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-style: italic;
  color: rgba(255,255,255,0.88);
  line-height: 1.75;
  margin-bottom: 36px;
  padding-left: 18px;
  border-left: 2px solid var(--gold);
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}
.hero-years {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
  padding: 12px 24px;
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 60px;
  background: rgba(201,169,110,0.08);
}
.hero-years strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
}
.hero-years span {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.65);
  line-height: 1.45;
}
.hero-profile-badge-text {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ══════════════════════════════
   BOTONES
══════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #1a0f30;
  text-decoration: none;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 15px 34px;
  border-radius: 60px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(201,169,110,0.4);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--text-mid);
  text-decoration: none;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 15px 34px;
  border-radius: 60px;
  border: 1px solid rgba(115,96,170,0.4);
  transition: transform 0.25s, background 0.25s, color 0.25s;
}
.btn-secondary:hover {
  transform: translateY(-3px);
  background: rgba(115,96,170,0.08);
  color: var(--purple);
}
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.10);
  border: 1.5px solid #25D366;
  color: #fff;
  text-decoration: none;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 15px 34px;
  border-radius: 60px;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}
.btn-white:hover {
  background: rgba(37,211,102,0.15);
  box-shadow: 0 6px 20px rgba(37,211,102,0.3);
  transform: translateY(-3px);
}

/* WhatsApp border en hero (btn-secondary reutilizado para WA) */
.hero-buttons .btn-primary:last-child,
.btn-wa {
  border: 1.5px solid #25D366;
}

/* ══════════════════════════════
   SECTION BASE
══════════════════════════════ */
section { padding: 96px 80px; }
.section-eyebrow {
  font-size: 0.6rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--purple-soft);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 300;
  line-height: 1.22;
  color: var(--text);
  margin-bottom: 18px;
}
.section-title em {
  font-style: italic;
  color: var(--purple);
}
.section-divider {
  width: 52px;
  height: 2px;
  background: linear-gradient(to right, var(--gold-dark), var(--gold-light));
  margin-bottom: 40px;
}

/* ══════════════════════════════
   LO QUE DICEN (testimonios)
══════════════════════════════ */
.testimonials {
  background: var(--cream);
  overflow: hidden;
}
.testimonials .section-title  { text-align: center; }
.testimonials .section-eyebrow { justify-content: center; }
.testimonials .section-eyebrow::before { display: none; }
.testimonials .section-divider { margin: 0 auto 56px; }

.testi-track-wrap {
  overflow: hidden;
  margin: 0 -80px;
  padding: 20px 80px;
}
.testi-track {
  display: flex;
  gap: 24px;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
}
.testi-card {
  flex: 0 0 320px;
  background: #fff;
  border-radius: 12px;
  padding: 32px 28px;
  position: relative;
  box-shadow: 0 4px 28px rgba(50,30,90,0.07);
  border: 1px solid rgba(180,150,220,0.15);
}
.testi-card::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 5.5rem;
  color: var(--lavender-mid);
  position: absolute;
  top: -8px; left: 18px;
  line-height: 1;
  opacity: 0.5;
}
.testi-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.78;
  color: var(--text);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--lavender-mid);
}
.testi-name {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}
.testi-stars { color: var(--gold); font-size: 0.68rem; margin-top: 2px; }

.testi-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 44px;
}
.testi-btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(115,96,170,0.3);
  background: transparent;
  color: var(--purple);
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
  display: flex; align-items: center; justify-content: center;
}
.testi-btn:hover { background: var(--purple); color: #fff; }
.testi-dots {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 0 14px;
}
.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--lavender-mid);
  opacity: 0.5;
  transition: opacity 0.3s, width 0.3s;
  cursor: pointer;
}
.dot.active { opacity: 1; width: 20px; border-radius: 4px; background: var(--gold); }

/* ══════════════════════════════
   MICRO CTA STRIP
══════════════════════════════ */
.micro-cta {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-warm), var(--gold));
  padding: 18px 40px;
  text-align: center;
  border-top: 1px solid rgba(201,169,110,0.4);
  border-bottom: 1px solid rgba(201,169,110,0.4);
}
.micro-cta-text {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #3a2800;
}
.micro-cta-link {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: #3a2800;
  text-decoration: none;
  border-bottom: 1px solid rgba(58,40,0,0.4);
  padding-bottom: 2px;
  margin-left: 16px;
  transition: opacity 0.2s;
}
.micro-cta-link:hover { opacity: 0.75; }

@media (max-width: 768px) {
  .micro-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 28px;
  }
  .micro-cta-link { margin-left: 0; }
}

/* ══════════════════════════════
   SERVICIOS  (ahora fondo suave lavanda)
══════════════════════════════ */
.services {
  background: linear-gradient(150deg, var(--lavender-soft) 0%, var(--lavender-pale) 55%, var(--lavender-soft) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.services::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(180,150,230,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.services .section-eyebrow { justify-content: center; color: var(--purple-deep); }
.services .section-eyebrow::before { display: none; }
.services .section-title { color: var(--purple-dark); }
.services .section-title em { color: var(--purple-deep); }
.services .section-divider { margin: 0 auto 50px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
  position: relative;
  z-index: 2;
}
.service-card {
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(180,150,220,0.2);
  border-radius: 12px;
  padding: 44px 32px;
  text-align: left;
  backdrop-filter: blur(6px);
  transition: background 0.35s, border-color 0.35s, transform 0.35s, box-shadow 0.35s;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  background: rgba(255,255,255,0.9);
  border-color: rgba(180,150,220,0.45);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(70,40,120,0.12);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  font-size: 1.7rem;
  margin-bottom: 18px;
  display: block;
}
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--purple-deep);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.78rem;
  line-height: 1.85;
  color: var(--text-mid);
}

/* ══════════════════════════════
   ABOUT
══════════════════════════════ */
.about {
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.about-image img {
  width: 100%;
  display: block;
  border-radius: 8px;
  filter: sepia(8%) brightness(0.97) saturate(1.05);
}
.about-image::after {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(201,169,110,0.35);
  border-radius: 8px;
  pointer-events: none;
}
.about-body p {
  font-size: 0.88rem;
  line-height: 1.95;
  color: var(--text-mid);
  margin-bottom: 18px;
}
.about-body strong { color: var(--text); font-weight: 600; }
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 24px 0;
}
.tag {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple);
  border: 1px solid rgba(115,96,170,0.3);
  padding: 6px 15px;
  border-radius: 40px;
  background: rgba(115,96,170,0.06);
}

/* ══════════════════════════════
   PHOTO SLIDER
══════════════════════════════ */
.photo-slider-section {
  background: var(--sand);
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}
.photo-slider-section .section-eyebrow { color: var(--purple-soft); padding: 0 80px; }
.photo-slider-section .section-title   { color: var(--text); padding: 0 80px; }
.photo-slider-section .section-title em { color: var(--purple); }
.photo-slider-wrap {
  position: relative;
  overflow: hidden;
  max-width: 960px;
  margin: 0 auto;
  border-radius: 14px;
  box-shadow: 0 20px 56px rgba(40,20,80,0.13);
}
.photo-slider {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
}
.photo-slide {
  flex: 0 0 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
}
.photo-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}
.ps-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
  font-size: 0.75rem;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background 0.3s, border-color 0.3s, transform 0.25s;
  display: flex; align-items: center; justify-content: center;
  z-index: 10;
}
.ps-btn:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(201,169,110,0.7);
  color: var(--gold-light);
  transform: translateY(-50%) scale(1.08);
}
.ps-prev { left: 18px; }
.ps-next { right: 18px; }
.ps-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
  padding: 0 80px;
}
.ps-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(115,96,170,0.25);
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
}
.ps-dot.active {
  background: var(--gold);
  width: 22px;
  border-radius: 4px;
}

/* ══════════════════════════════
   CTA  (degradado de morados — más suave)
══════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--purple-soft) 0%, var(--purple-deep) 60%, var(--purple-dark) 100%);
  text-align: center;
  padding: 100px 80px;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 65% 65% at 50% 50%, rgba(160,120,220,0.16) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section .section-eyebrow { justify-content: center; color: var(--lavender-mid); }
.cta-section .section-eyebrow::before { display: none; }
.cta-section .section-title { color: #fff; }
.cta-section .section-title em { color: var(--gold-light); }
.cta-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(255,255,255,0.68);
  max-width: 540px;
  margin: 0 auto 48px;
  line-height: 1.78;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
footer {
  background: linear-gradient(135deg, var(--purple-soft) 0%, var(--purple-deep) 60%, var(--purple-dark) 100%);
  padding: 60px 80px 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: start;
  border-top: 1px solid rgba(180,150,230,0.15);
}
.footer-logo img { height: 60px; filter: brightness(1.05); }
.footer-center { text-align: center; }
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.84rem;
  font-style: italic;
  color: rgba(255,255,255,0.38);
  margin-top: 12px;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  justify-content: center;
}
.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(180,150,230,0.3);
  color: var(--gold-light);
  text-decoration: none;
  font-size: 0.82rem;
  transition: background 0.25s, transform 0.25s;
}
.social-btn:hover {
  background: rgba(180,150,230,0.15);
  transform: translateY(-2px);
}
.footer-copy {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.22);
  text-align: right;
  padding-top: 8px;
}
.footer-links {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.footer-links a {
  color: rgba(255,255,255,0.38);
  text-decoration: none;
  font-size: 0.63rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.25s;
}
.footer-links a:hover { color: var(--gold); }

/* ══════════════════════════════
   WHATSAPP FLOTANTE
══════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 26px rgba(37,211,102,0.42);
  z-index: 999;
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s;
  animation: pulse-wa 2.5s infinite;
}
.wa-float:hover {
  transform: scale(1.11);
  box-shadow: 0 12px 34px rgba(37,211,102,0.58);
  animation: none;
}
.wa-float svg { width: 28px; height: 28px; fill: #fff; }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 8px 26px rgba(37,211,102,0.42); }
  50%       { box-shadow: 0 8px 42px rgba(37,211,102,0.65); }
}

/* ══════════════════════════════
   FADE UP
══════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ══════════════════════════════
   ABOUT BIO
══════════════════════════════ */
.about-bio {
  background: var(--cream);
  padding: 96px 72px;
}
.about-bio-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 72px;
  align-items: center;
}
.about-bio-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(78, 56, 144, 0.18);
}
.about-bio-image::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 1.5px solid rgba(201, 169, 110, 0.35);
  z-index: 1;
  pointer-events: none;
}
.about-bio-image img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.about-bio-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--purple-dark);
  line-height: 1.2;
  margin-bottom: 20px;
}
.about-bio-title em {
  font-style: italic;
  color: var(--purple);
}
.about-bio-text .section-eyebrow {
  color: var(--gold);
  margin-bottom: 12px;
}
.about-bio-text p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 18px;
}
.about-bio-text p:last-child { margin-bottom: 0; }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 960px) {
  nav { padding: 14px 24px; }
  .nav-links { display: none; }
  section { padding: 64px 28px; }
  .about { grid-template-columns: 1fr; gap: 36px; }
  .about-bio { padding: 64px 28px; }
  .about-bio-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-bio-image { max-width: 320px; margin: 0 auto; }
  .about-bio-title { font-size: 2rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  footer { grid-template-columns: 1fr; text-align: center; }
  .footer-copy, .footer-links { text-align: center; justify-content: center; }
  .photo-slider-section .section-eyebrow,
  .photo-slider-section .section-title { padding: 0 28px; }
  .ps-dots { padding: 0 28px; }
  .testi-track-wrap { margin: 0; padding: 20px 0; overflow: hidden; }
  .testi-track { gap: 0; }
  .testi-card { flex: 0 0 100%; padding: 28px 24px; box-sizing: border-box; }
}

/* ══ HERO MOBILE — imagen completa de fondo, texto en zona baja oscura ══ */
@media (max-width: 768px) {
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  /* Centrar la imagen: Jessica aparece en la mitad superior del frame */
  .hero-image img {
    object-position: 50% center;
  }

  /* Gradiente fuerte desde abajo: cara de Jessica libre arriba,
     texto legible en la zona oscura inferior */
  .hero-image::before {
    background:
      linear-gradient(to top,
        rgba(14, 6, 36, 1.00)  0%,
        rgba(14, 6, 36, 0.96) 25%,
        rgba(14, 6, 36, 0.70) 45%,
        rgba(14, 6, 36, 0.10) 62%,
        transparent 78%);
  }

  /* Texto en la zona baja, sobre el gradiente oscuro */
  .hero-text {
    position: relative;
    z-index: 2;
    max-width: 100%;
    padding: 0 28px 48px;
    justify-content: flex-end;
  }

  /* Ocultar elementos secundarios */
  .hero-profile-badge { display: none; }
  .hero-eyebrow       { display: none; }
  .hero-years         { display: none; }

  .hero-title {
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 4px;
    text-shadow: 0 2px 16px rgba(0,0,0,0.8);
  }
  .hero-title span { font-weight: 700; }
  .hero-subtitle {
    font-weight: 600;
    letter-spacing: 0.10em;
    margin-bottom: 14px;
    color: rgba(255,255,255,0.95);
    text-shadow: 0 1px 8px rgba(0,0,0,0.7);
  }
  .hero-quote {
    font-size: 0.93rem;
    font-weight: 500;
    color: rgba(255,255,255,0.90);
    margin-bottom: 24px;
    text-shadow: 0 1px 8px rgba(0,0,0,0.7);
  }
  .hero-buttons { flex-direction: column; gap: 12px; }
  .hero-buttons a { text-align: center; justify-content: center; font-weight: 700; }
}

@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .cta-section { padding: 72px 28px; }
}
