/* ══════════════════════════════════════════════
   CLARAMENTE VF — style.css v2.0 PREMIUM
   Dra. Valeria Holguín · Psicóloga Clínica
══════════════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
  --brown:        #4A3F36;
  --brown-light:  #6B5A4E;
  --brown-deep:   #2E2620;
  --terra:        #D4A574;
  --terra-light:  #E8C9A0;
  --terra-muted:  #C9956A;
  --gold:         #C4984A;
  --gold-light:   #E2BC7A;
  --teal:         #5B8B7D;
  --teal-light:   #7AABA0;
  --teal-dark:    #3E6B60;
  --cream:        #F5F0E8;
  --cream-dark:   #EDE6D6;
  --cream-deep:   #E0D6C4;
  --white:        #FDFBF7;
  --text:         #2C2318;
  --text-muted:   #7A6A5E;
  --text-light:   #A8978C;
  --border:       rgba(74,63,54,0.12);
  --border-gold:  rgba(196,152,74,0.25);
  --shadow-xs:    0 1px 4px rgba(74,63,54,0.06);
  --shadow-sm:    0 2px 12px rgba(74,63,54,0.08);
  --shadow-md:    0 8px 40px rgba(74,63,54,0.12);
  --shadow-lg:    0 20px 80px rgba(74,63,54,0.18);
  --shadow-xl:    0 40px 120px rgba(74,63,54,0.22);
  --radius-xs:    6px;
  --radius-sm:    10px;
  --radius:       16px;
  --radius-lg:    24px;
  --radius-xl:    36px;
  --ease:         cubic-bezier(0.25,0.46,0.45,0.94);
  --ease-spring:  cubic-bezier(0.34,1.56,0.64,1);
  --transition:   0.4s var(--ease);
  --font-serif:   'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-display: 'Cormorant Garamond', 'Playfair Display', serif;
  --font-cinzel:  'Cinzel', 'Playfair Display', serif;
  --font-sans:    'Inter', 'Montserrat', sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── MICRO-TEXTURA GLOBAL ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ══════════════════════════════════════════════
   CURSOR TERAPÉUTICO
══════════════════════════════════════════════ */
.cursor-dot {
  width: 7px; height: 7px;
  background: var(--terra);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%,-50%);
  transition: width 0.18s var(--ease), height 0.18s var(--ease), background 0.2s;
  mix-blend-mode: normal;
}
.cursor-ring {
  width: 34px; height: 34px;
  border: 1.5px solid rgba(212,165,116,0.45);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width 0.25s var(--ease), height 0.25s var(--ease), border-color 0.25s;
}
body:has(a:hover) .cursor-dot,
body:has(button:hover) .cursor-dot {
  width: 12px; height: 12px;
  background: var(--gold);
}
body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring {
  width: 50px; height: 50px;
  border-color: rgba(196,152,74,0.7);
}
@media (hover: none) { .cursor-dot, .cursor-ring { display: none; } }

/* ══════════════════════════════════════════════
   LOADER SOFISTICADO
══════════════════════════════════════════════ */
.loader {
  position: fixed;
  inset: 0;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9998;
  transition: opacity 1s var(--ease), visibility 1s;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.loader-logo-wrap {
  position: relative;
}
.loader-logo {
  width: clamp(260px, 38vw, 380px);
  height: auto;
  margin: 0 auto;
  animation: loaderPulse 2s var(--ease) infinite alternate;
  filter: drop-shadow(0 8px 32px rgba(212,165,116,0.3));
}
@keyframes loaderPulse {
  from { opacity: 0.65; transform: scale(0.97); }
  to   { opacity: 1;    transform: scale(1); }
}
.loader-tagline {
  font-family: var(--font-cinzel);
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.loader-line {
  width: 180px; height: 1px;
  background: var(--border);
  border-radius: 1px;
  overflow: hidden;
}
.loader-line span {
  display: block;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, var(--terra), var(--gold), var(--terra), transparent);
  animation: loaderSlide 1.6s var(--ease) infinite;
}
@keyframes loaderSlide {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(300%); }
}
.loader-counter {
  font-family: var(--font-cinzel);
  font-size: 0.72rem;
  color: var(--terra);
  letter-spacing: 0.15em;
}

/* ══════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.1rem 0;
  transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(253,251,247,0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(74,63,54,0.06);
  padding: 0.65rem 0;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav-logo img {
  height: 46px;
  width: auto;
  filter: brightness(10) drop-shadow(0 2px 12px rgba(255,255,255,0.3));
  transition: all var(--transition);
}
.navbar.scrolled .nav-logo img {
  height: 36px;
  filter: none drop-shadow(0 2px 8px rgba(74,63,54,0.15));
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.nav-link {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  padding: 0.5rem 0.7rem;
  border-radius: var(--radius-sm);
  transition: color 0.25s, background 0.25s;
  white-space: nowrap;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 16px; height: 1px;
  background: var(--terra);
  transition: transform 0.3s var(--ease);
}
.nav-link:hover::after,
.nav-link.active::after { transform: translateX(-50%) scaleX(1); }
.navbar.scrolled .nav-link { color: var(--text); }
.nav-link:hover { color: var(--terra); }
.nav-cta {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--brown);
  background: var(--terra);
  padding: 0.58rem 1.1rem;
  border-radius: 100px;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(212,165,116,0.4);
}
.nav-cta:hover {
  background: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(196,152,74,0.45);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: rgba(255,255,255,0.9);
  border-radius: 2px;
  transition: all 0.35s var(--ease);
}
.navbar.scrolled .hamburger span { background: var(--brown); }
.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(20,14,10,0.75) 0%,
    rgba(46,38,32,0.62) 45%,
    rgba(91,139,125,0.28) 100%
  );
}

/* Elementos decorativos dorados */
.hero-deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  animation: heroDeco 8s ease-in-out infinite alternate;
}
.hero-deco--1 {
  width: 600px; height: 600px;
  top: -200px; right: -150px;
  background: radial-gradient(circle, rgba(196,152,74,0.07) 0%, transparent 70%);
}
.hero-deco--2 {
  width: 400px; height: 400px;
  bottom: -100px; left: -100px;
  background: radial-gradient(circle, rgba(91,139,125,0.08) 0%, transparent 70%);
  animation-delay: -4s;
}
@keyframes heroDeco {
  from { transform: scale(1) rotate(0deg); }
  to   { transform: scale(1.15) rotate(8deg); }
}

/* Badge esquina — DISPONIBLE 24H */
.hero-badge-corner {
  position: absolute;
  top: 6rem; left: 2rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(226,188,122,0.85);
  border: 1px solid rgba(196,152,74,0.25);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  backdrop-filter: blur(12px);
  background: rgba(0,0,0,0.12);
}
.badge-pulse {
  width: 6px; height: 6px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  50%       { opacity: 0.85; transform: scale(1.2); box-shadow: 0 0 0 5px rgba(34,197,94,0); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 8rem 2rem 6rem;
  max-width: 960px;
  margin: 0 auto;
}

/* LOGO PRINCIPAL — GRANDE y prominente */
.hero-logo-main {
  margin-bottom: 2.5rem;
}
.hero-logo-main img {
  width: clamp(340px, 58vw, 680px);
  height: auto;
  margin: 0 auto;
  display: block;
  filter:
    brightness(1.8)
    saturate(1.1)
    drop-shadow(0 0 60px rgba(212,165,116,0.55))
    drop-shadow(0 4px 32px rgba(255,255,255,0.12))
    drop-shadow(0 -2px 20px rgba(196,152,74,0.2));
  transition: filter 0.6s var(--ease);
}
.hero-logo-main img:hover {
  filter:
    brightness(2)
    drop-shadow(0 0 80px rgba(212,165,116,0.7))
    drop-shadow(0 4px 40px rgba(255,255,255,0.2));
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.8vw, 1.12rem);
  font-weight: 300;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  letter-spacing: 0.01em;
}
.br-desktop { display: block; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 4rem;
}
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--brown-deep);
  background: linear-gradient(135deg, var(--terra-light), var(--gold-light));
  padding: 1rem 2.2rem;
  border-radius: 100px;
  transition: all 0.35s var(--ease);
  box-shadow: 0 8px 36px rgba(212,165,116,0.5), 0 0 0 1px rgba(196,152,74,0.2);
  animation: ctaPulseHero 4s ease-in-out infinite;
}
@keyframes ctaPulseHero {
  0%, 80%, 100% { box-shadow: 0 8px 36px rgba(212,165,116,0.5); }
  90%           { box-shadow: 0 8px 54px rgba(212,165,116,0.75), 0 0 0 10px rgba(212,165,116,0.08); }
}
.btn-hero-primary:hover {
  background: var(--white);
  transform: translateY(-2px);
  animation: none;
  box-shadow: 0 16px 52px rgba(212,165,116,0.55);
}
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 1rem 2rem;
  border-radius: 100px;
  transition: all 0.3s var(--ease);
}
.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.55);
  color: var(--white);
  transform: translateY(-1px);
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  display: inline;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--terra-light);
  line-height: 1;
}
.stat-plus {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold-light);
  vertical-align: super;
}
.stat-text {
  display: block;
}
.stat-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 0.4rem;
}
.stat-divider {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.18), transparent);
}

/* Botón de sonido */
.hero-sound-btn {
  position: absolute;
  bottom: 5.5rem; right: 2rem;
  z-index: 3;
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  transition: all 0.3s var(--ease);
}
.hero-sound-btn:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
  transform: scale(1.05);
}
.hero-sound-btn svg { width: 16px; height: 16px; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.45), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { transform: scaleY(1); opacity: 0.45; }
  50%      { transform: scaleY(1.4); opacity: 0.85; }
}

/* ══════════════════════════════════════════════
   BOTONES GLOBALES
══════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--white);
  background: var(--brown);
  padding: 0.9rem 2rem;
  border-radius: 100px;
  transition: all 0.35s var(--ease);
  box-shadow: 0 4px 20px rgba(74,63,54,0.22);
  border: 1px solid transparent;
}
.btn-primary:hover {
  background: var(--terra-muted);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(201,149,106,0.4);
  border-color: rgba(212,165,116,0.3);
}
.btn-full { width: 100%; justify-content: center; }

/* ══════════════════════════════════════════════
   SECTION HEADERS
══════════════════════════════════════════════ */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-label {
  display: inline-block;
  font-family: var(--font-cinzel);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--terra-muted);
  margin-bottom: 1rem;
  position: relative;
}
.section-label::before,
.section-label::after {
  content: '✦';
  font-size: 0.5rem;
  margin: 0 0.5rem;
  opacity: 0.5;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--brown);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.section-subtitle {
  font-family: var(--font-sans);
  font-size: 1.02rem;
  font-weight: 300;
  color: var(--text-muted);
  margin-top: 1rem;
  line-height: 1.75;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* ══════════════════════════════════════════════
   SOBRE MÍ
══════════════════════════════════════════════ */
.about {
  padding: 7rem 0;
  background: var(--white);
  position: relative;
  z-index: 1;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 5rem;
  align-items: center;
}
.about-image-wrap { position: relative; }
.about-img-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
  aspect-ratio: 4/5;
}
.about-img-frame::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--terra), transparent 60%, var(--teal));
  z-index: -1;
}
.about-img-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.9s var(--ease);
}
.about-img-frame:hover img { transform: scale(1.04); }

/* Deco dorado detrás de la foto */
.about-img-deco {
  position: absolute;
  inset: -1.5rem;
  border-radius: calc(var(--radius-xl) + 1.5rem);
  border: 1px solid var(--border-gold);
  pointer-events: none;
  z-index: -1;
}

.about-badge-float {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--brown);
  line-height: 1.5;
  border: 1px solid var(--border);
}
.badge-icon { font-size: 1.1rem; color: var(--gold); }

.about-content .section-label { text-align: left; }
.about-content .section-label::before { display: none; }
.about-content .section-title { text-align: left; margin-bottom: 1.5rem; }
.about-lead {
  font-size: 1.08rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.about-text {
  font-size: 0.93rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 2.25rem;
}
.credentials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-bottom: 2.5rem;
}
.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  background: var(--cream);
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--brown-light);
  line-height: 1.45;
  border: 1px solid transparent;
  transition: all 0.28s var(--ease);
}
.credential-item:hover {
  background: var(--cream-dark);
  border-color: var(--border-gold);
  transform: translateY(-1px);
  box-shadow: var(--shadow-xs);
}
.credential-icon { color: var(--teal); flex-shrink: 0; margin-top: 1px; }
.credential-icon svg { width: 15px; height: 15px; }

/* ══════════════════════════════════════════════
   SERVICIOS
══════════════════════════════════════════════ */
.services {
  padding: 7rem 0;
  background: var(--cream);
  position: relative;
  z-index: 1;
}
.services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--terra-light), var(--gold-light), var(--terra-light), transparent);
}
.modalities-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
  margin-bottom: 5rem;
}
.modality-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  transition: all 0.45s var(--ease);
  position: relative;
  overflow: hidden;
}
.modality-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--terra), var(--gold), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.modality-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-gold);
}
.modality-card:hover::after { transform: scaleX(1); }
.modality-card--featured {
  background: var(--brown);
  border-color: var(--brown);
  color: var(--white);
}
.modality-card--featured h3 { color: var(--white); }
.modality-card--featured p { color: rgba(255,255,255,0.82); }
.modality-card--featured .modality-detail { color: rgba(255,255,255,0.6); }
.modality-card--featured::after { background: linear-gradient(90deg, var(--terra-light), var(--gold-light), var(--teal-light)); }
.modality-badge {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  font-family: var(--font-cinzel);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown);
  background: var(--terra-light);
  padding: 0.28rem 0.75rem;
  border-radius: 100px;
}
.modality-icon-wrap {
  width: 54px; height: 54px;
  background: var(--cream);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--teal);
  transition: all 0.35s var(--ease-spring);
}
.modality-card--featured .modality-icon-wrap {
  background: rgba(255,255,255,0.1);
  color: var(--terra-light);
}
.modality-card:hover .modality-icon-wrap {
  background: linear-gradient(135deg, var(--terra-light), var(--gold-light));
  color: var(--brown);
  transform: scale(1.12) rotate(-3deg);
}
.modality-icon-wrap svg { width: 24px; height: 24px; }
.modality-card h3 {
  font-family: var(--font-serif);
  font-size: 1.38rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.modality-card p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.modality-detail {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.75rem;
  color: var(--text-muted);
}
.modality-detail span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.76rem;
  font-weight: 500;
}
.modality-detail svg { width: 13px; height: 13px; color: var(--teal); }
.modality-btn {
  display: inline-flex;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--terra-muted);
  letter-spacing: 0.04em;
  transition: letter-spacing 0.3s var(--ease), color 0.25s;
}
.modality-card--featured .modality-btn { color: var(--terra-light); }
.modality-btn:hover { letter-spacing: 0.08em; color: var(--gold); }

/* Especialidades */
.specialties { margin-top: 1rem; }
.specialties-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.specialty-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 1.5rem 2rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.32s var(--ease-spring);
  min-width: 110px;
}
.specialty-item:hover {
  border-color: var(--border-gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
}
.specialty-icon {
  color: var(--teal);
  width: 38px; height: 38px;
  background: var(--cream);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s var(--ease);
}
.specialty-item:hover .specialty-icon {
  background: var(--teal);
  color: var(--white);
}
.specialty-icon svg { width: 18px; height: 18px; }
.specialty-item span {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--brown);
  text-align: center;
  letter-spacing: 0.03em;
}

/* ══════════════════════════════════════════════
   METODOLOGÍA
══════════════════════════════════════════════ */
.methodology {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
  position: relative;
  z-index: 1;
}
.methodology-image-half {
  position: relative;
  overflow: hidden;
}
.methodology-image-half img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1s var(--ease);
}
.methodology-image-half:hover img { transform: scale(1.05); }
.methodology-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 70%, var(--white));
}
.methodology-content {
  background: var(--white);
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.methodology-content .section-label { text-align: left; }
.methodology-content .section-label::before { display: none; }
.methodology-content .section-title { text-align: left; margin-bottom: 0.75rem; }
.methodology-lead {
  font-size: 0.98rem;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.75;
}
.steps { display: flex; flex-direction: column; gap: 0; margin-bottom: 2.5rem; }
.step {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.3s var(--ease);
}
.step:last-child { border-bottom: none; }
.step:hover { padding-left: 0.5rem; }
.step-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--terra-light);
  line-height: 1;
  flex-shrink: 0;
  width: 3rem;
  padding-top: 2px;
}
.step-body h4 {
  font-family: var(--font-serif);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 0.4rem;
}
.step-body p {
  font-size: 0.86rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ══════════════════════════════════════════════
   FRANJA DISPONIBILIDAD 24H
══════════════════════════════════════════════ */
.availability-banner {
  background: linear-gradient(135deg, var(--brown-deep) 0%, var(--brown) 50%, var(--teal-dark) 100%);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}
.availability-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}
.availability-inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  position: relative;
}
.availability-icon {
  width: 58px; height: 58px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(212,165,116,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--terra-light);
  flex-shrink: 0;
}
.availability-icon svg { width: 26px; height: 26px; }
.availability-text { display: flex; flex-direction: column; gap: 0.3rem; }
.availability-text strong {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
}
.availability-text span {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.62);
}
.btn-availability {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--brown-deep);
  background: linear-gradient(135deg, var(--terra-light), var(--gold-light));
  padding: 0.9rem 1.8rem;
  border-radius: 100px;
  transition: all 0.32s var(--ease);
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-availability:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.18);
}

/* ══════════════════════════════════════════════
   TESTIMONIOS — GLASSMORPHISM CARDS
══════════════════════════════════════════════ */
.testimonials {
  padding: 7rem 0;
  background: var(--cream);
  position: relative;
  z-index: 1;
}
.testimonials::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--terra-light), var(--gold-light), var(--terra-light), transparent);
}
.carousel-wrap { position: relative; }
.carousel { overflow: hidden; border-radius: var(--radius-lg); }
.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
  will-change: transform;
}

/* GLASSMORPHISM CARD */
.testimonial-card {
  flex: 0 0 100%;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  /* Glassmorphism */
  background: rgba(253,251,247,0.55);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  border: 1px solid rgba(255,255,255,0.75);
  box-shadow:
    0 8px 48px rgba(74,63,54,0.07),
    inset 0 1px 0 rgba(255,255,255,0.9),
    inset 0 -1px 0 rgba(74,63,54,0.04);
  /* Micro-textura interna */
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.018'/%3E%3C/svg%3E"),
    linear-gradient(160deg, rgba(253,251,247,0.65), rgba(245,240,232,0.45));
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -1.5rem; left: 2.5rem;
  font-family: var(--font-display);
  font-size: 12rem;
  color: var(--terra);
  opacity: 0.07;
  line-height: 1;
  pointer-events: none;
  font-weight: 400;
}
.testimonial-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle at top right, rgba(196,152,74,0.06), transparent 70%);
  pointer-events: none;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
}
.testimonial-text {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-style: italic;
  font-weight: 300;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 2rem;
  max-width: 820px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial-avatar {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--terra), var(--gold), var(--teal));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.7);
}
.testimonial-author strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 0.2rem;
}
.testimonial-author span {
  font-size: 0.76rem;
  color: var(--text-muted);
}
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.carousel-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--brown);
  transition: all 0.3s var(--ease-spring);
  box-shadow: var(--shadow-sm);
}
.carousel-btn:hover {
  background: var(--brown);
  color: var(--white);
  border-color: var(--brown);
  transform: scale(1.08);
  box-shadow: var(--shadow-md);
}
.carousel-btn svg { width: 16px; height: 16px; }
.carousel-dots { display: flex; gap: 8px; align-items: center; }
.carousel-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--border);
  transition: all 0.35s var(--ease);
  cursor: pointer;
  border: none;
}
.carousel-dot.active {
  background: var(--terra-muted);
  width: 28px;
  border-radius: 4px;
}

/* ══════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════ */
.faq {
  padding: 7rem 0;
  background: var(--white);
  position: relative;
  z-index: 1;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 5rem;
  align-items: start;
}
.faq-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: sticky;
  top: 100px;
  aspect-ratio: 4/5;
}
.faq-image img { width: 100%; height: 100%; object-fit: cover; }
.faq-content .section-label { text-align: left; }
.faq-content .section-label::before { display: none; }
.faq-content .section-title { text-align: left; margin-bottom: 2.5rem; }
.accordion { display: flex; flex-direction: column; }
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.3rem 0;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--brown);
  text-align: left;
  transition: color 0.25s;
}
.accordion-btn:hover { color: var(--terra-muted); }
.accordion-btn svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--terra); transition: transform 0.35s var(--ease); }
.accordion-btn.active { color: var(--terra-muted); }
.accordion-btn.active svg { transform: rotate(45deg); }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease); }
.accordion-content p {
  padding-bottom: 1.25rem;
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.85;
}

/* ══════════════════════════════════════════════
   CONTACTO
══════════════════════════════════════════════ */
.contact {
  padding: 7rem 0;
  background: var(--cream);
  position: relative;
  z-index: 1;
}
.contact::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--terra-light), var(--gold-light), var(--terra-light), transparent);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.contact-form-wrap h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 2rem;
}
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--text);
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  outline: none;
  transition: all 0.28s var(--ease);
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--terra);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(212,165,116,0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }
.form-group textarea { resize: vertical; }
.form-select-wrap { position: relative; }
.select-arrow {
  position: absolute;
  right: 1rem; top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
  width: 16px; height: 16px;
}
.form-success {
  display: none;
  text-align: center;
  color: var(--teal);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 1rem;
  background: rgba(91,139,125,0.08);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(91,139,125,0.2);
}
.form-success.show { display: block; }

.contact-cards { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.75rem; }
.contact-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease);
}
.contact-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.contact-card--wa {
  background: linear-gradient(135deg, #075E54, #128C7E);
  border-color: transparent;
}
.contact-card--wa strong,
.contact-card--wa span,
.contact-card--wa small { color: rgba(255,255,255,0.95) !important; }
.contact-card--wa .contact-card-icon { color: var(--white) !important; background: rgba(255,255,255,0.15) !important; }
.contact-card-icon {
  width: 44px; height: 44px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}
.contact-card-icon svg { width: 20px; height: 20px; }
.contact-card strong {
  display: block;
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 0.15rem;
  letter-spacing: 0.03em;
}
.contact-card span {
  display: block;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
}
.contact-card small {
  display: block;
  font-size: 0.7rem;
  color: var(--text-light);
  margin-top: 0.12rem;
}

/* Mapa visual */
.map-wrap {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 1.75rem;
}
.map-visual {
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  padding: 2.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.map-pin-anim { position: relative; flex-shrink: 0; }
.map-pin-icon {
  width: 52px; height: 52px;
  background: var(--teal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(91,139,125,0.4);
  position: relative;
  z-index: 1;
}
.map-pin-icon svg { width: 22px; height: 22px; }
.map-pin-ripple {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(91,139,125,0.3);
  animation: pinRipple 2.5s ease-out infinite;
}
@keyframes pinRipple {
  0%   { transform: translate(-50%,-50%) scale(1); opacity: 0.6; }
  100% { transform: translate(-50%,-50%) scale(2.2); opacity: 0; }
}
.map-info h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 0.25rem;
}
.map-info p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.5; }
.map-hours { font-size: 0.75rem !important; color: var(--text-light) !important; margin-top: 0.2rem; }
.map-buttons { display: flex; gap: 0; }
.map-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.9rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--white);
  background: var(--brown);
  transition: all 0.28s;
  letter-spacing: 0.03em;
}
.map-btn--waze { background: var(--teal); }
.map-btn:hover { filter: brightness(1.12); }

/* Social */
.social-section { }
.social-title {
  font-family: var(--font-cinzel);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.social-icons { display: flex; gap: 0.65rem; flex-wrap: wrap; }
.social-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--brown-light);
  transition: all 0.32s var(--ease-spring);
  box-shadow: var(--shadow-xs);
}
.social-icon:hover {
  background: var(--brown);
  color: var(--white);
  border-color: var(--brown);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 24px rgba(74,63,54,0.22);
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer {
  background: var(--brown-deep);
  color: rgba(255,255,255,0.65);
  padding: 5rem 0 2rem;
  position: relative;
  z-index: 1;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--terra), var(--gold), var(--terra), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  height: auto;
  width: clamp(200px, 26vw, 280px);
  filter: brightness(10) saturate(0.5);
  margin-bottom: 1rem;
  transition: filter 0.3s;
}
.footer-logo:hover { filter: brightness(1) saturate(1); }
.footer-brand p {
  font-size: 0.83rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.45);
}
.footer-tagline {
  font-family: var(--font-cinzel) !important;
  font-size: 0.6rem !important;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terra) !important;
  margin-top: 0.5rem;
}
.footer-col h5 {
  font-family: var(--font-cinzel);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra-light);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col li, .footer-col a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.48);
  transition: color 0.25s;
  line-height: 1.5;
}
.footer-col a:hover { color: var(--terra-light); }
.footer-available {
  font-family: var(--font-cinzel);
  font-size: 0.58rem !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-light) !important;
  margin-top: 0.25rem;
}
.footer .social-icon {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.55);
  width: 34px; height: 34px;
}
.footer .social-icon:hover {
  background: var(--terra);
  border-color: var(--terra);
  color: var(--brown-deep);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p { font-size: 0.74rem; color: rgba(255,255,255,0.28); }

/* ══════════════════════════════════════════════
   STICKY CTA — BOTÓN FIJO INFERIOR
══════════════════════════════════════════════ */
.sticky-cta {
  position: fixed;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, var(--brown), var(--brown-light));
  color: var(--white);
  padding: 0.9rem 1.8rem;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 36px rgba(74,63,54,0.4), 0 0 0 1px rgba(212,165,116,0.2);
  transition: all 0.55s var(--ease);
  white-space: nowrap;
  border: 1px solid rgba(212,165,116,0.25);
}
.sticky-cta.visible {
  transform: translateX(-50%) translateY(0);
  animation: stickyPulse 5s ease-in-out 2.5s infinite;
}
@keyframes stickyPulse {
  0%, 80%, 100% { box-shadow: 0 8px 36px rgba(74,63,54,0.4), 0 0 0 1px rgba(212,165,116,0.2); }
  90%           { box-shadow: 0 8px 52px rgba(74,63,54,0.55), 0 0 0 8px rgba(212,165,116,0.1), 0 0 0 1px rgba(212,165,116,0.3); }
}
.sticky-cta:hover {
  background: linear-gradient(135deg, var(--terra-muted), var(--gold));
  color: var(--brown-deep);
  transform: translateX(-50%) translateY(-3px) !important;
  box-shadow: 0 16px 52px rgba(212,165,116,0.55) !important;
  animation: none !important;
}
.sticky-cta svg { opacity: 0.9; }

/* ══════════════════════════════════════════════
   WHATSAPP FLOTANTE — DERECHA CENTRO
══════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 850;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
}
.whatsapp-float svg {
  display: block;
  width: 52px; height: 52px;
  background: #25D366;
  border-radius: 50%;
  padding: 13px;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.2);
  transition: all 0.35s var(--ease-spring);
  animation: waFloat 3s ease-in-out infinite;
}
@keyframes waFloat {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0); }
  50%       { box-shadow: 0 8px 28px rgba(37,211,102,0.55), 0 0 0 8px rgba(37,211,102,0.08); }
}
.whatsapp-float:hover svg {
  transform: scale(1.12);
  box-shadow: 0 10px 36px rgba(37,211,102,0.6);
  animation: none;
}
.whatsapp-float-label {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--white);
  padding: 0.2rem 0.5rem;
  border-radius: 100px;
  border: 1px solid var(--border);
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transition: opacity 0.25s;
}
.whatsapp-float:hover .whatsapp-float-label { opacity: 1; }

/* ══════════════════════════════════════════════
   SOCIAL SIDEBAR FLOTANTE — IZQUIERDA
══════════════════════════════════════════════ */
.social-sidebar {
  position: fixed;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 850;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.social-sidebar.visible { opacity: 1; }
.social-sidebar-icon {
  width: 36px; height: 36px;
  background: rgba(253,251,247,0.88);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--brown-light);
  backdrop-filter: blur(14px);
  transition: all 0.32s var(--ease-spring);
  box-shadow: var(--shadow-sm);
}
.social-sidebar-icon:hover {
  background: var(--brown);
  color: var(--white);
  border-color: var(--brown);
  transform: scale(1.18) translateX(4px);
  box-shadow: var(--shadow-md);
}
.social-sidebar-icon svg { width: 14px; height: 14px; }

/* ══════════════════════════════════════════════
   REVEAL ANIMATIONS ON SCROLL
══════════════════════════════════════════════ */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.reveal-up    { transform: translateY(44px); }
.reveal-left  { transform: translateX(-56px); }
.reveal-right { transform: translateX(56px); }
.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* ══════════════════════════════════════════════
   RESPONSIVE — TABLET
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-grid { gap: 3.5rem; }
  .methodology-content { padding: 4rem 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .hero-logo-main img { width: clamp(280px, 50vw, 520px); }
}
@media (max-width: 900px) {
  .methodology { grid-template-columns: 1fr; }
  .methodology-image-half { height: 420px; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-image { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .modalities-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — MOBILE
══════════════════════════════════════════════ */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.75rem;
    transform: translateX(100%);
    transition: transform 0.45s var(--ease);
    z-index: 999;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-link {
    color: var(--brown);
    font-size: 1.05rem;
    letter-spacing: 0.12em;
  }
  .nav-link::after { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image-wrap { max-width: 340px; margin: 0 auto; }
  .about-badge-float { display: none; }
  .about-img-deco { display: none; }
  .credentials-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
  .stat-divider { display: none; }
  .availability-inner { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .social-sidebar { display: none; }
  .sticky-cta { font-size: 0.75rem; padding: 0.8rem 1.35rem; max-width: calc(100vw - 4rem); }
  .map-buttons { flex-direction: column; }
  .methodology-content { padding: 3rem 2rem; }
  .contact-form-wrap { padding: 2rem; }
  .testimonial-card { padding: 2rem 1.75rem; }
  .hero-badge-corner { top: auto; bottom: 7.5rem; left: 1rem; font-size: 0.58rem; }
  .hero-logo-main img { width: clamp(240px, 82vw, 360px); }
  .br-desktop { display: none; }
}
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-hero-primary, .btn-hero-secondary { width: 100%; text-align: center; justify-content: center; }
  .specialties-grid { gap: 0.75rem; }
  .specialty-item { padding: 1rem 1.25rem; min-width: 90px; }
  .map-visual { flex-direction: column; text-align: center; }
  .hero-logo-main img { width: 85vw; }
  .footer-logo { width: 200px; }
}
