/* ================================================
   SERENITÀ SPA & WELLNESS
   Paleta: Rosa suave · Dorado · Crema · Oscuro
   Tipografía: Playfair Display + DM Sans
   ================================================ */

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

:root {
  /* Colors */
  --rose:         #c2637a;
  --rose-light:   #d4849a;
  --rose-pale:    #f5e0e6;
  --rose-deep:    #9e4b60;
  --gold:         #c9963a;
  --gold-light:   #e0b866;
  --gold-pale:    #f7edd8;
  --cream:        #faf5ee;
  --cream-dark:   #f0e8d8;
  --ivory:        #fffdf9;
  --deep:         #1c1815;
  --deep2:        #282320;
  --deep3:        #342d28;
  --text-dark:    #2a2220;
  --text-mid:     #6a5e58;
  --text-light:   rgba(255,255,255,0.88);
  --text-dim:     rgba(255,255,255,0.55);
  --border:       rgba(180,150,130,0.15);

  /* Fonts */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-italic:  'Cormorant Garamond', Georgia, serif;

  /* Misc */
  --radius:      14px;
  --radius-lg:   24px;
  --shadow:      0 8px 40px rgba(60,30,20,0.12);
  --shadow-deep: 0 20px 60px rgba(60,30,20,0.22);
  --shadow-rose: 0 16px 50px rgba(194,99,122,0.28);
  --ease:        cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition:  all 0.3s var(--ease);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; display: block; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ──────────── FADE IN ──────────── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

/* ──────────── TYPOGRAPHY ──────────── */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; }
.section-title { font-size: clamp(2rem, 4vw, 3rem); color: var(--deep); margin-bottom: 16px; }
.section-title span { color: var(--rose); }
.section-title.light { color: var(--ivory); }
.section-title.light span { color: var(--gold-light); }
.section-label {
  font-family: var(--font-body);
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px; display: block;
}
.section-label.light { color: var(--gold-light); }
.section-desc { color: var(--text-mid); font-size: 1.05rem; max-width: 540px; margin: 0 auto; }
.section-desc.light { color: var(--text-dim); }
.section-header { text-align: center; margin-bottom: 60px; }

/* ──────────── BUTTONS ──────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px; border: none;
  cursor: pointer; font-family: var(--font-body);
  font-size: 0.9rem; font-weight: 600; letter-spacing: 0.5px;
  transition: var(--transition); text-align: center;
}
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-rose { background: var(--rose); color: #fff; }
.btn-rose:hover { background: var(--rose-deep); transform: translateY(-2px); box-shadow: var(--shadow-rose); }

.btn-outline {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); transform: translateY(-2px); }

.btn-outline-rose {
  background: transparent; color: var(--rose-deep);
  border: 2px solid var(--rose);
}
.btn-outline-rose:hover { background: var(--rose); color: #fff; transform: translateY(-2px); }

/* ──────────── NAVBAR ──────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0; transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(250,245,238,0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(60,30,20,0.08);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.nav-brand { display: flex; align-items: center; gap: 10px; }
.brand-icon { font-size: 1.8rem; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: #fff; transition: color 0.3s; }
.brand-sub { font-size: 0.65rem; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.7); transition: color 0.3s; }
#navbar.scrolled .brand-name { color: var(--deep); }
#navbar.scrolled .brand-sub { color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-weight: 500; font-size: 0.9rem; color: rgba(255,255,255,0.9); transition: color 0.2s; }
#navbar.scrolled .nav-links a { color: var(--text-dark); }
.nav-links a:hover { color: var(--gold-light); }
#navbar.scrolled .nav-links a:hover { color: var(--rose); }
.btn-nav {
  background: var(--rose); color: #fff !important;
  padding: 10px 22px; border-radius: 50px; font-weight: 600;
  font-size: 0.85rem; transition: var(--transition);
}
.btn-nav:hover { background: var(--rose-deep) !important; transform: translateY(-2px); }

.nav-phone { color: rgba(255,255,255,0.85); font-size: 0.85rem; font-weight: 500; white-space: nowrap; }
#navbar.scrolled .nav-phone { color: var(--text-mid); }

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 40px; height: 40px; flex-direction: column; justify-content: center; gap: 5px; align-items: center;
}
.nav-toggle span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: 0.3s; display: block; }
#navbar.scrolled .nav-toggle span { background: var(--deep); }

/* Mobile drawer */
.mobile-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 200; opacity: 0; transition: opacity 0.3s;
}
.mobile-overlay.active { display: block; opacity: 1; }
.mobile-drawer {
  position: fixed; top: 0; right: -320px; width: 300px; height: 100vh;
  background: var(--ivory); z-index: 201; transition: right 0.3s var(--ease);
  padding: 28px 28px 40px; display: flex; flex-direction: column; gap: 4px;
  overflow-y: auto; box-shadow: -8px 0 40px rgba(0,0,0,0.15);
}
.mobile-drawer.open { right: 0; }
.drawer-close { background: none; border: none; font-size: 1.3rem; cursor: pointer; align-self: flex-end; color: var(--text-mid); margin-bottom: 16px; }
.drawer-logo { font-family: var(--font-display); font-size: 1.2rem; color: var(--rose); margin-bottom: 24px; font-weight: 700; }
.drawer-link { padding: 12px 0; font-weight: 500; color: var(--text-dark); border-bottom: 1px solid var(--border); transition: color 0.2s; }
.drawer-link:hover { color: var(--rose); }
.drawer-cta { background: var(--rose); color: #fff !important; border-radius: 50px; padding: 13px 24px; text-align: center; margin-top: 16px; border: none; }
.drawer-info { margin-top: 24px; font-size: 0.85rem; color: var(--text-mid); line-height: 2; }

/* ──────────── HERO ──────────── */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  overflow: hidden; padding: 120px 0 80px;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 60px;
  padding: 120px 60px 80px;
  max-width: 1280px; margin: 0 auto;
}
.hero::before {
  content: ''; position: fixed; inset: 0; z-index: -2;
  background: linear-gradient(145deg, #1c1815 0%, #342520 40%, #2a1a20 100%);
}
.hero-bg {
  position: fixed; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 500px 400px at 15% 40%, rgba(194,99,122,0.25) 0%, transparent 70%),
    radial-gradient(ellipse 400px 350px at 85% 70%, rgba(201,150,58,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-overlay { display: none; }
.hero-deco {
  position: fixed; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 700px; height: 700px; z-index: -1; pointer-events: none;
  animation: rotateSlow 60s linear infinite;
}
@keyframes rotateSlow { to { transform: translate(-50%,-50%) rotate(360deg); } }

.hero-content { position: relative; z-index: 2; }
.hero-badge {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold-light);
  margin-bottom: 20px; display: block;
}
.hero-title {
  font-family: var(--font-display); font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  line-height: 1.1; color: #fff; margin-bottom: 28px;
}
.hero-title em { display: block; font-style: italic; font-size: 0.7em; color: rgba(255,255,255,0.7); font-weight: 400; }
.hero-highlight { color: var(--gold-light); display: block; }
.hero-desc { font-size: 1.05rem; color: rgba(255,255,255,0.78); margin-bottom: 36px; max-width: 500px; line-height: 1.75; }
.hero-stats { display: flex; align-items: center; gap: 20px; margin-bottom: 40px; flex-wrap: wrap; }
.hero-stat { display: flex; flex-direction: column; }
.hero-stat strong { font-family: var(--font-display); font-size: 1.9rem; color: var(--gold-light); }
.hero-stat span { font-size: 0.78rem; color: rgba(255,255,255,0.6); }
.hero-stat-sep { color: rgba(255,255,255,0.3); font-size: 1.5rem; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-image-wrap {
  position: relative; z-index: 2;
}
.hero-img-real {
  width: 100%; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-deep);
  object-fit: cover; aspect-ratio: 4/5;
}
.hero-float-card {
  position: absolute; background: rgba(255,255,255,0.95);
  border-radius: 16px; padding: 14px 18px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
  display: flex; flex-direction: column; animation: floatCard 5s ease-in-out infinite;
}
.hero-float-card span { font-size: 0.75rem; color: var(--text-mid); }
.hero-float-card strong { font-family: var(--font-display); font-size: 1.3rem; color: var(--deep); }
.card-a { top: 30px; right: -24px; animation-delay: 0s; }
.card-b { bottom: 40px; left: -24px; animation-delay: 1.8s; }
.card-b strong { color: var(--rose); }
@keyframes floatCard { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

.hero-scroll-cue {
  grid-column: 1/-1; display: flex; align-items: center; gap: 16px;
  color: rgba(255,255,255,0.5); font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase;
  margin-top: -20px;
}
.scroll-line { flex: 1; max-width: 80px; height: 1px; background: rgba(255,255,255,0.2); }

/* ──────────── TICKER ──────────── */
.ticker-wrap {
  background: var(--rose); padding: 16px 0; overflow: hidden;
}
.ticker {
  display: flex; gap: 0;
  animation: ticker 30s linear infinite;
  width: max-content;
}
.tick-item {
  display: flex; align-items: center; gap: 10px;
  padding: 0 40px; font-size: 0.85rem; font-weight: 500;
  color: rgba(255,255,255,0.92); white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,0.2);
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ──────────── SECTIONS ──────────── */
.section { padding: 100px 0; }
.section-dark { background: linear-gradient(165deg, var(--deep) 0%, var(--deep3) 100%); }
.section-about { background: var(--ivory); }
.section-rituales { background: var(--cream-dark); }
.section-pricing { background: var(--ivory); }
.section-equipo { background: var(--cream); }
.section-testimonios { background: linear-gradient(160deg, var(--deep2) 0%, var(--deep3) 100%); }
.section-eventos { background: var(--cream-dark); }
.section-contacto {
  background: linear-gradient(160deg, var(--ivory) 0%, #f5e8ee 100%);
  position: relative; overflow: hidden;
}
.section-contacto::before {
  content: ''; position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: var(--gold-pale); filter: blur(120px); opacity: 0.6; top: -200px; right: -100px;
}

/* ──────────── ABOUT ──────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-main {
  width: 100%; border-radius: var(--radius-lg);
  object-fit: cover; aspect-ratio: 3/4;
  box-shadow: var(--shadow-deep);
}
.about-img-float {
  position: absolute; bottom: -40px; right: -40px; width: 55%; border-radius: var(--radius);
  box-shadow: var(--shadow-deep); border: 6px solid var(--ivory);
  aspect-ratio: 5/4; object-fit: cover;
}
.about-badge-years {
  position: absolute; top: 40px; left: -20px;
  background: var(--rose); color: #fff;
  border-radius: 16px; padding: 16px 20px;
  text-align: center; box-shadow: var(--shadow-rose);
}
.about-badge-years strong { font-family: var(--font-display); font-size: 2rem; display: block; }
.about-badge-years span { font-size: 0.75rem; opacity: 0.9; }
.about-text { padding-right: 20px; }
.about-text h2 { margin-bottom: 20px; }
.about-text p { color: var(--text-mid); margin-bottom: 18px; line-height: 1.8; }
.about-values { margin: 28px 0 36px; display: flex; flex-direction: column; gap: 16px; }
.value-item { display: flex; align-items: flex-start; gap: 14px; }
.value-icon { font-size: 1.4rem; width: 44px; height: 44px; background: var(--rose-pale); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.value-item strong { display: block; font-weight: 600; color: var(--deep); margin-bottom: 2px; }
.value-item span { font-size: 0.88rem; color: var(--text-mid); }

/* ──────────── SERVICES ──────────── */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.service-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.service-card-featured {
  background: linear-gradient(145deg, rgba(201,150,58,0.15), rgba(194,99,122,0.15));
  border-color: rgba(201,150,58,0.3);
}
.service-img-wrap { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.service-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.service-card:hover .service-img-wrap img { transform: scale(1.08); }
.service-tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--rose); color: #fff;
  padding: 5px 14px; border-radius: 50px; font-size: 0.72rem; font-weight: 700; letter-spacing: 1px;
}
.tag-gold { background: var(--gold); }
.service-body { padding: 24px; }
.service-body h3 { font-family: var(--font-display); font-size: 1.3rem; color: #fff; margin-bottom: 10px; }
.service-body p { color: rgba(255,255,255,0.7); font-size: 0.9rem; line-height: 1.7; margin-bottom: 14px; }
.service-meta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; }
.service-meta span { font-size: 0.8rem; color: rgba(255,255,255,0.55); }
.btn-service {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--gold-light); font-weight: 600; font-size: 0.88rem;
  transition: var(--transition);
}
.btn-service:hover { color: var(--gold); letter-spacing: 0.5px; }
.btn-service-gold { color: var(--gold-light); }

/* ──────────── RITUALES ──────────── */
.rituales-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.ritual-card {
  background: var(--ivory); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  position: relative;
}
.ritual-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-deep); }
.ritual-card-featured { border: 2px solid var(--gold); }
.ritual-badge-pop {
  position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--deep);
  padding: 6px 18px; border-radius: 50px; font-size: 0.72rem; font-weight: 800; letter-spacing: 1px;
  z-index: 2; white-space: nowrap;
}
.ritual-top { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.ritual-top img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.ritual-card:hover .ritual-top img { transform: scale(1.06); }
.ritual-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(28,24,21,0.5));
  display: flex; align-items: flex-end; padding: 16px;
}
.ritual-duration {
  background: rgba(255,255,255,0.9); color: var(--deep);
  padding: 5px 12px; border-radius: 50px; font-size: 0.78rem; font-weight: 700;
}
.ritual-body { padding: 24px 26px; }
.ritual-icon { font-size: 1.6rem; margin-bottom: 10px; }
.ritual-body h3 { font-family: var(--font-display); font-size: 1.4rem; color: var(--deep); margin-bottom: 10px; }
.ritual-body p { color: var(--text-mid); font-size: 0.9rem; line-height: 1.7; margin-bottom: 16px; }
.ritual-includes { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.ritual-includes span { font-size: 0.78rem; color: var(--rose-deep); background: var(--rose-pale); padding: 4px 10px; border-radius: 50px; font-weight: 500; }
.ritual-price-row { display: flex; align-items: center; justify-content: space-between; }
.ritual-price { font-family: var(--font-display); font-size: 1.8rem; color: var(--rose); }
.ritual-price-featured { color: var(--gold); }

/* ──────────── GALLERY STRIP ──────────── */
.section-gallery { overflow: hidden; height: 240px; background: var(--deep2); }
.gallery-strip { height: 100%; }
.gallery-track {
  display: flex; gap: 12px; height: 100%;
  animation: galleryScroll 35s linear infinite;
  width: max-content;
}
.gallery-track img { height: 100%; width: auto; object-fit: cover; border-radius: 0; flex-shrink: 0; }
@keyframes galleryScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ──────────── PRICING ──────────── */
.pricing-toggle-wrap { display: flex; align-items: center; gap: 14px; justify-content: center; margin-bottom: 48px; }
.tog-label { font-weight: 600; color: var(--text-mid); }
.active-label { color: var(--deep); }
.tog-switch { position: relative; width: 48px; height: 26px; }
.tog-switch input { opacity: 0; width: 0; height: 0; }
.tog-slider {
  position: absolute; inset: 0; background: var(--cream-dark); border-radius: 50px;
  cursor: pointer; transition: 0.3s;
}
.tog-slider::before {
  content: ''; position: absolute; width: 20px; height: 20px; background: var(--rose);
  border-radius: 50%; left: 3px; top: 3px; transition: 0.3s;
}
.tog-switch input:checked + .tog-slider { background: var(--rose-pale); }
.tog-switch input:checked + .tog-slider::before { transform: translateX(22px); }
.discount-chip { background: var(--gold); color: var(--deep); font-style: normal; padding: 2px 8px; border-radius: 50px; font-size: 0.72rem; font-weight: 800; margin-left: 4px; }

.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 60px; }
.price-card {
  background: var(--ivory); border-radius: var(--radius-lg);
  padding: 36px 30px; border: 1px solid var(--border);
  box-shadow: var(--shadow); transition: transform 0.3s var(--ease);
  display: flex; flex-direction: column; position: relative;
}
.price-card:hover { transform: translateY(-6px); }
.price-card-featured {
  background: linear-gradient(145deg, var(--deep2), var(--deep3));
  border-color: var(--gold); box-shadow: 0 20px 60px rgba(28,24,21,0.3);
  transform: scale(1.04);
}
.price-card-featured:hover { transform: scale(1.04) translateY(-6px); }
.price-pop {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--deep); padding: 5px 18px;
  border-radius: 50px; font-size: 0.7rem; font-weight: 800; letter-spacing: 1px; white-space: nowrap;
}
.price-icon { font-size: 2rem; margin-bottom: 12px; }
.price-card h3 { font-family: var(--font-display); font-size: 1.6rem; color: var(--deep); margin-bottom: 6px; }
.price-card-featured h3 { color: var(--ivory); }
.price-desc { color: var(--text-mid); font-size: 0.88rem; margin-bottom: 20px; }
.price-card-featured .price-desc { color: rgba(255,255,255,0.6); }
.price-amount { display: flex; align-items: baseline; gap: 4px; margin-bottom: 24px; }
.price-eur { font-size: 1.2rem; color: var(--rose); font-weight: 700; }
.price-num { font-family: var(--font-display); font-size: 3.2rem; color: var(--rose); line-height: 1; }
.price-card-featured .price-eur, .price-card-featured .price-num { color: var(--gold-light); }
.price-per { font-size: 0.9rem; color: var(--text-mid); }
.price-card-featured .price-per { color: rgba(255,255,255,0.5); }
.price-list { flex: 1; margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.price-list li { font-size: 0.9rem; color: var(--text-dark); display: flex; gap: 8px; }
.price-card-featured .price-list li { color: rgba(255,255,255,0.85); }
.feat-off { color: var(--text-mid) !important; opacity: 0.5; }
.price-card-featured .feat-off { color: rgba(255,255,255,0.3) !important; }

.pricing-extras { max-width: 800px; margin: 0 auto; }
.pricing-extras h3 { font-family: var(--font-display); font-size: 1.6rem; text-align: center; margin-bottom: 28px; color: var(--deep); }
.extras-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }
.extra-item {
  display: flex; align-items: center; gap: 14px;
  background: var(--cream); border-radius: var(--radius);
  padding: 18px 20px; border: 1px solid var(--border);
}
.extra-icon { font-size: 1.5rem; }
.extra-text { flex: 1; }
.extra-text strong { display: block; font-weight: 600; color: var(--deep); margin-bottom: 2px; }
.extra-text span { font-size: 0.82rem; color: var(--text-mid); }
.extra-price { font-family: var(--font-display); font-size: 1.3rem; color: var(--rose); font-weight: 700; white-space: nowrap; }
.extras-note { text-align: center; font-size: 0.85rem; color: var(--text-mid); font-style: italic; }

/* ──────────── EQUIPO ──────────── */
.equipo-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.terapeuta-card {
  background: var(--ivory); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.terapeuta-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-deep); }
.terapeuta-avatar { aspect-ratio: 1/1; overflow: hidden; }
.terapeuta-avatar img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.terapeuta-card:hover .terapeuta-avatar img { transform: scale(1.06); }
.terapeuta-info { padding: 20px 22px 24px; }
.terapeuta-info h3 { font-family: var(--font-display); font-size: 1.15rem; color: var(--deep); margin-bottom: 4px; }
.terapeuta-esp { font-size: 0.8rem; color: var(--rose); font-weight: 600; letter-spacing: 0.5px; margin-bottom: 10px; }
.terapeuta-info p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.65; margin-bottom: 12px; }
.terapeuta-certs { display: flex; flex-wrap: wrap; gap: 6px; }
.terapeuta-certs span { font-size: 0.72rem; background: var(--rose-pale); color: var(--rose-deep); padding: 3px 10px; border-radius: 50px; font-weight: 600; }

/* ──────────── TESTIMONIOS ──────────── */
.testimonios-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.testi-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 32px 28px;
  transition: var(--transition);
}
.testi-card:hover { background: rgba(255,255,255,0.09); transform: translateY(-4px); }
.testi-stars { color: var(--gold-light); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testi-card p { color: rgba(255,255,255,0.8); font-family: var(--font-italic); font-style: italic; font-size: 0.97rem; line-height: 1.8; margin-bottom: 24px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%; background: var(--rose);
  color: #fff; font-family: var(--font-display); font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.testi-author strong { display: block; color: #fff; font-weight: 600; font-size: 0.9rem; }
.testi-author span { color: rgba(255,255,255,0.5); font-size: 0.78rem; }

/* ──────────── EVENTOS ──────────── */
.eventos-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.eventos-text p { color: var(--text-mid); margin-bottom: 28px; }
.eventos-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.evento-item {
  display: flex; align-items: center; gap: 20px;
  background: var(--ivory); border-radius: var(--radius);
  padding: 18px 20px; border: 1px solid var(--border); box-shadow: var(--shadow);
}
.evento-fecha {
  display: flex; flex-direction: column; align-items: center;
  min-width: 54px; background: var(--rose); color: #fff;
  border-radius: 12px; padding: 10px 8px; text-align: center;
}
.evento-fecha strong { font-family: var(--font-display); font-size: 1.6rem; line-height: 1; }
.evento-fecha span { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.9; }
.evento-info { flex: 1; }
.evento-info h4 { font-family: var(--font-display); font-size: 1rem; color: var(--deep); margin-bottom: 4px; }
.evento-info span { font-size: 0.82rem; color: var(--text-mid); }
.evento-precio { font-family: var(--font-display); font-size: 1.3rem; color: var(--gold); font-weight: 700; }
.eventos-visual img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-deep); aspect-ratio: 4/3; object-fit: cover; }

/* ──────────── CONTACTO ──────────── */
.contacto-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: start; position: relative; }
.contacto-info h2 { margin-bottom: 16px; }
.contacto-info > p { color: var(--text-mid); margin-bottom: 32px; font-size: 1.05rem; }
.contacto-datos { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contacto-item { display: flex; gap: 14px; align-items: flex-start; }
.contacto-icono { font-size: 1.2rem; width: 44px; height: 44px; background: var(--rose-pale); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contacto-item strong { display: block; color: var(--deep); font-weight: 600; margin-bottom: 2px; }
.contacto-item span { font-size: 0.88rem; color: var(--text-mid); }
.contacto-social { display: flex; gap: 12px; flex-wrap: wrap; }
.social-link { background: var(--cream); color: var(--text-dark); padding: 8px 16px; border-radius: 50px; font-size: 0.82rem; font-weight: 600; border: 1px solid var(--border); transition: var(--transition); }
.social-link:hover { background: var(--rose); color: #fff; border-color: var(--rose); }

.contacto-form-wrap { min-width: 0; overflow: hidden; }
.contacto-form {
  background: var(--ivory); border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow-deep);
  display: flex; flex-direction: column; gap: 18px;
  box-sizing: border-box; width: 100%;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.form-group label { font-weight: 600; font-size: 0.88rem; color: var(--text-dark); }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 16px; border-radius: 12px;
  border: 1.5px solid var(--border); background: var(--cream);
  font-family: var(--font-body); font-size: 0.92rem; color: var(--text-dark);
  transition: border-color 0.2s; outline: none;
  width: 100%; box-sizing: border-box; min-width: 0;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--rose); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-check { display: flex; align-items: center; gap: 10px; }
.form-check input { width: 18px; height: 18px; accent-color: var(--rose); flex-shrink: 0; }
.form-check label { font-size: 0.85rem; color: var(--text-mid); }
.form-check a { color: var(--rose); text-decoration: underline; }
.form-nota { text-align: center; font-size: 0.82rem; color: var(--text-mid); }

.success-msg {
  background: var(--ivory); border-radius: var(--radius-lg); padding: 48px 40px;
  text-align: center; border: 2px solid var(--rose-pale);
}
.success-icon { font-size: 3rem; margin-bottom: 16px; }
.success-msg h3 { font-family: var(--font-display); font-size: 1.8rem; color: var(--deep); margin-bottom: 12px; }
.success-msg p { color: var(--text-mid); line-height: 1.8; margin-bottom: 10px; }
.success-quote { font-family: var(--font-italic); font-style: italic; color: var(--rose); }

/* ──────────── FOOTER ──────────── */
.footer { background: var(--deep); padding: 70px 0 0; position: relative; overflow: hidden; }
.footer-deco { position: absolute; top: 20px; right: 60px; font-size: 6rem; opacity: 0.04; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; }
.footer-logo { font-family: var(--font-display); font-size: 1.3rem; color: var(--gold-light); margin-bottom: 12px; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.88rem; line-height: 1.75; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { font-size: 1.3rem; opacity: 0.6; transition: opacity 0.2s; }
.footer-social a:hover { opacity: 1; }
.footer-col h4 { font-family: var(--font-display); font-size: 1rem; color: rgba(255,255,255,0.85); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li, .footer-col a { color: rgba(255,255,255,0.5); font-size: 0.87rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.82rem; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: rgba(255,255,255,0.35); font-size: 0.82rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }

/* ──────────── FLOATING BUTTONS ──────────── */
.float-wa {
  position: fixed; bottom: 24px; left: 24px; z-index: 90;
  width: 44px; height: 44px; background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 28px rgba(37,211,102,0.4);
  transition: var(--transition);
}
.float-wa:hover { transform: scale(1.1); box-shadow: 0 10px 36px rgba(37,211,102,0.5); }

.scroll-top-btn {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 44px; height: 44px; background: var(--rose); color: #fff;
  border-radius: 50%; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-rose); opacity: 0; pointer-events: none;
  transition: var(--transition);
}
.scroll-top-btn.visible { opacity: 1; pointer-events: auto; }
.scroll-top-btn:hover { background: var(--rose-deep); transform: translateY(-3px); }

/* ──────────── RESPONSIVE ──────────── */
@media (max-width: 1100px) {
  .rituales-grid { grid-template-columns: 1fr 1fr; }
  .equipo-grid { grid-template-columns: repeat(2,1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .price-card-featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  /* Navbar compacto en tablet/móvil — logo grande, altura contenida */
  #navbar { padding: 8px 0; }
  #navbar.scrolled { padding: 6px 0; }
  /* Logo e icono más grandes, sin crecer en altura gracias a overflow:hidden + line-height ajustado */
  .brand-icon { font-size: 2.2rem; line-height: 1; }
  .brand-name { font-size: 1.45rem; line-height: 1.1; }
  .brand-sub  { font-size: 0.72rem; letter-spacing: 2.5px; line-height: 1.2; }
  /* El brand se encoge sólo verticalmente si fuera necesario */
  .nav-brand  { transform-origin: left center; transform: scale(1); }
  .nav-toggle { width: 36px; height: 36px; }

  .hero { grid-template-columns: 1fr; padding: 100px 24px 60px; }
  .hero-image-wrap { display: none; }
  .hero-scroll-cue { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-float { display: none; }
  .eventos-inner { grid-template-columns: 1fr; }
  .eventos-visual { display: none; }
  .contacto-grid { grid-template-columns: 1fr; }
  .contacto-form-wrap { width: 100%; max-width: 560px; margin: 0 auto; }
  .contacto-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .testimonios-grid { grid-template-columns: 1fr; }
  .rituales-grid { grid-template-columns: 1fr; }
  .extras-grid { grid-template-columns: 1fr; }
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: flex; }
}
@media (max-width: 600px) {
  /* Móvil pequeño — logo grande, navbar fino */
  #navbar { padding: 6px 0; }
  .brand-icon { font-size: 2rem; line-height: 1; }
  .brand-name { font-size: 1.3rem; line-height: 1.1; }
  .brand-sub  { font-size: 0.68rem; letter-spacing: 2px; line-height: 1.2; }

  .services-grid { grid-template-columns: 1fr; }
  .equipo-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-stats { gap: 16px; }
  .hero-stat-sep { display: none; }
  .contacto-form { padding: 20px 14px; }
  .section-contacto .container { padding: 0 12px; }
}
