/* ===== CSS VARIABLES ===== */
:root {
  --purple: #7c3aed;
  --purple-light: #a855f7;
  --blue-neon: #3b82f6;
  --blue-light: #60a5fa;
  --pink: #c026d3;
  --pink-light: #e879f9;
  --white: #ffffff;
  --bg: #ffffff;
  --bg-soft: #f8f5ff;
  --bg-services: #f0ebff;
  --bg-footer: #1e0a3c;
  --text: #1a1030;
  --text-muted: #6b5a8a;
  --card-border: rgba(124,58,237,0.15);
  --card-shadow: 0 4px 24px rgba(124,58,237,0.10);
  --gradient: linear-gradient(135deg, var(--purple), var(--blue-neon));
  --gradient-text: linear-gradient(90deg, #7c3aed, #3b82f6, #c026d3);
  --neon-glow-purple: 0 0 30px rgba(124,58,237,0.35), 0 0 60px rgba(124,58,237,0.15);
  --neon-glow-blue: 0 0 30px rgba(59,130,246,0.35), 0 0 60px rgba(59,130,246,0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== CURSOR GLOW ===== */
.cursor-glow {
  position: fixed;
  width: 350px; height: 350px; border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.07) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 0;
  transition: opacity 0.3s;
}

/* ===== WAVE BACKGROUND (decorative layer behind everything) ===== */
.waves-bg {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 320px;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.wave {
  position: absolute;
  bottom: 0; left: 0;
  width: 200%;
  height: 100%;
}
.wave path { fill-opacity: 0.06; }
.wave1 path { fill: var(--purple); animation: waveFlow 8s linear infinite; }
.wave2 path { fill: var(--blue-neon); animation: waveFlow 12s linear infinite reverse; fill-opacity: 0.05; }
.wave3 path { fill: var(--pink); animation: waveFlow 16s linear infinite; fill-opacity: 0.04; }
@keyframes waveFlow {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== WAVE DIVIDERS ===== */
.hero-wave, .section-wave-top, .section-wave-bottom, .footer-wave-top {
  position: absolute; left: 0; right: 0;
  line-height: 0; pointer-events: none;
}
.hero-wave { bottom: -1px; }
.hero-wave svg, .section-wave-top svg, .section-wave-bottom svg, .footer-wave-top svg {
  width: 100%; display: block;
}
.section-wave-top { top: -1px; }
.section-wave-bottom { bottom: -1px; }
.footer-wave-top { top: -1px; }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
section { position: relative; overflow: hidden; }

/* ===== TYPOGRAPHY ===== */
.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(124,58,237,0.08);
  border: 1px solid rgba(124,58,237,0.25);
  color: var(--purple);
  font-size: 12px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px; border-radius: 100px;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.2; color: var(--text);
  margin-bottom: 16px;
}
.section-desc { color: var(--text-muted); font-size: 1.05rem; max-width: 600px; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-desc { margin: 0 auto; }

/* ===== LOGO (Avalon font) ===== */
.logo-avalon {
  font-family: 'Avalon', 'Playfair Display', serif;
  font-size: 22px;
  letter-spacing: 0.5px;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1.1;
}
.logo-avalon--footer {
  font-size: 26px;
  -webkit-text-fill-color: white;
  background: none;
  color: white;
}
.logo-sub {
  font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--purple); display: block; margin-top: 2px;
}
.logo-sub--footer { color: rgba(255,255,255,0.55); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 50px;
  font-size: 15px; font-weight: 600;
  cursor: pointer; border: none;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.btn-primary {
  background: var(--gradient);
  color: white;
  box-shadow: 0 4px 20px rgba(124,58,237,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124,58,237,0.5), var(--neon-glow-purple);
}
.btn-secondary {
  background: white;
  color: var(--purple);
  border: 1.5px solid rgba(124,58,237,0.3);
  box-shadow: 0 2px 12px rgba(124,58,237,0.1);
}
.btn-secondary:hover {
  border-color: var(--purple);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(124,58,237,0.2);
}
.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white; font-weight: 700;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }
.btn-full { width: 100%; justify-content: center; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; padding: 16px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(124,58,237,0.12);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(124,58,237,0.08);
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; flex-direction: column; gap: 0; cursor: pointer; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 8px 14px; border-radius: 8px;
  font-size: 14px; font-weight: 500; color: var(--text-muted);
  transition: var(--transition);
}
.nav-link:hover { color: var(--purple); background: rgba(124,58,237,0.07); }
.nav-cta {
  background: var(--gradient) !important;
  color: white !important; font-weight: 700 !important;
  padding: 10px 20px !important; border-radius: 50px !important;
  box-shadow: 0 4px 15px rgba(124,58,237,0.3);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 25px rgba(124,58,237,0.45) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); transition: var(--transition); border-radius: 2px; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  background:
    radial-gradient(ellipse 70% 50% at 30% 20%, rgba(124,58,237,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(59,130,246,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 60% 50%, rgba(192,38,211,0.07) 0%, transparent 60%),
    #faf8ff;
}
#particleCanvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 120px 24px 100px;
  max-width: 800px;
  animation: heroFadeIn 0.9s ease both;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(124,58,237,0.3);
  color: var(--purple);
  font-size: 13px; font-weight: 500;
  padding: 6px 18px; border-radius: 100px;
  margin-bottom: 24px;
  animation: heroFadeIn 0.9s ease 0.15s both;
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--purple);
  animation: blink 2s ease infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.25} }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.1; color: var(--text);
  margin-bottom: 20px;
  animation: heroFadeIn 0.9s ease 0.25s both;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-muted);
  margin-bottom: 36px; max-width: 520px;
  margin-left: auto; margin-right: auto;
  animation: heroFadeIn 0.9s ease 0.35s both;
}
.hero-btns {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  flex-wrap: wrap;
  animation: heroFadeIn 0.9s ease 0.45s both;
}
.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text-muted);
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  animation: heroFadeIn 0.9s ease 0.9s both;
}
.scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--purple), transparent);
  animation: scrollAnim 2s ease infinite;
}
@keyframes scrollAnim {
  0%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1);transform-origin:top}
  51%{transform:scaleY(1);transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom}
}

/* ===== ABOUT ===== */
.about { padding: 100px 0; background: white; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-img-frame { border-radius: 24px; overflow: hidden; position: relative; box-shadow: 0 20px 60px rgba(124,58,237,0.15); }
.about-img-frame img { width: 100%; height: 460px; object-fit: cover; transition: transform 0.6s ease; }
.about-img-frame:hover img { transform: scale(1.03); }
.img-deco-lines {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(to right, rgba(124,58,237,0.15) 1px, transparent 1px) 18px 0 / 1px 100%,
    linear-gradient(to bottom, rgba(124,58,237,0.15) 1px, transparent 1px) 0 18px / 100% 1px;
  border-radius: 24px;
}
.about-text p { color: var(--text-muted); margin-bottom: 16px; font-size: 1rem; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 28px 0; }
.feature { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-muted); }
.feature-icon {
  width: 28px; height: 28px; border-radius: 8px;
  background: rgba(124,58,237,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--purple); flex-shrink: 0;
}

/* ===== SERVICES ===== */
.services {
  padding: 100px 0;
  background: var(--bg-services);
  position: relative;
}
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: white;
  border-radius: 20px; overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--card-border);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(124,58,237,0.18);
  border-color: rgba(124,58,237,0.35);
}
.service-img { height: 190px; overflow: hidden; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-img img { transform: scale(1.07); }
.service-content { padding: 22px; }
.service-content h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.service-content p { font-size: 13px; color: var(--text-muted); margin-bottom: 14px; line-height: 1.6; }
.service-link { font-size: 13px; font-weight: 600; color: var(--purple); transition: var(--transition); }
.service-link:hover { letter-spacing: 0.5px; }

/* ===== BEFORE / AFTER ===== */
.casos { padding: 100px 0; background: white; }
.casos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ba-slider {
  position: relative; border-radius: 20px; overflow: hidden;
  height: 310px; cursor: ew-resize; user-select: none;
  border: 1px solid var(--card-border);
  box-shadow: var(--card-shadow);
}
.ba-after, .ba-before { position: absolute; inset: 0; }
.ba-after img, .ba-before img { width: 100%; height: 100%; object-fit: cover; }
.ba-before { width: 50%; overflow: hidden; }
.ba-label {
  position: absolute; top: 12px;
  font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 6px;
}
.after-label { right: 12px; background: rgba(124,58,237,0.15); color: var(--purple); border: 1px solid rgba(124,58,237,0.3); }
.before-label { left: 12px; background: rgba(0,0,0,0.45); color: white; }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  transform: translateX(-50%); width: 3px;
  background: var(--gradient); cursor: ew-resize;
  box-shadow: 0 0 15px rgba(124,58,237,0.5);
}
.handle-circle {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 20px rgba(124,58,237,0.5);
}
.caso-label { text-align: center; margin-top: 14px; font-size: 14px; font-weight: 600; color: var(--text-muted); }
.casos-frase { text-align: center; margin-top: 48px; font-size: 22px; font-weight: 700; color: var(--text); }
.casos-frase::after { content: ''; display: block; width: 60px; height: 3px; margin: 16px auto 0; border-radius: 3px; background: linear-gradient(90deg, var(--purple), var(--blue-neon)); }

/* ===== REVIEWS CTA ===== */
.reviews-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #f0ebff 0%, #e8f0ff 100%);
  position: relative;
}
.reviews-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
.reviews-text p { color: var(--text-muted); margin-bottom: 28px; font-size: 1rem; }
.reviews-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.reviews-deco {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px; position: relative; height: 260px;
}
.deco-big-stars {
  font-size: 3rem; letter-spacing: 4px;
  background: var(--gradient-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  filter: drop-shadow(0 0 12px rgba(124,58,237,0.4));
}
.deco-label { font-size: 14px; color: var(--text-muted); font-weight: 500; }
.deco-star {
  position: absolute;
  font-size: 1.4rem;
  background: var(--gradient-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  opacity: 0.5;
  animation: floatStar 4s ease-in-out infinite;
}
.s1 { top: 10%; left: 5%; animation-delay: 0s; }
.s2 { top: 20%; right: 8%; animation-delay: 0.7s; }
.s3 { bottom: 15%; left: 10%; animation-delay: 1.4s; }
.s4 { bottom: 25%; right: 5%; animation-delay: 2.1s; }
.s5 { top: 50%; left: 0%; animation-delay: 2.8s; }
@keyframes floatStar {
  0%,100%{transform:translateY(0) rotate(0deg)} 50%{transform:translateY(-10px) rotate(20deg)}
}

/* ===== BOOKING / CITAS ===== */
.citas { padding: 100px 0; background: white; }
.citas-grid { display: grid; grid-template-columns: 1fr; gap: 72px; align-items: start; max-width: 720px; margin: 0 auto; }
.citas-info p { color: var(--text-muted); margin-bottom: 28px; font-size: 1rem; }
.contact-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon {
  width: 44px; height: 44px; min-width: 44px; min-height: 44px; border-radius: 12px;
  background: rgba(124,58,237,0.08); border: 1px solid rgba(124,58,237,0.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--purple); flex-shrink: 0;
}
.contact-item strong { display: block; font-size: 14px; margin-bottom: 2px; color: var(--text); }
.contact-item span { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* Booking Form */
.booking-form-wrap {
  background: white;
  border: 1.5px solid var(--card-border);
  border-radius: 24px; padding: 36px;
  box-shadow: 0 20px 60px rgba(124,58,237,0.10);
}
.form-header { margin-bottom: 24px; }
.form-header h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 4px; color: var(--text); }
.form-header p { font-size: 13px; color: var(--text-muted); }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.booking-form { display: flex; flex-direction: column; gap: 16px; }
label { font-size: 13px; font-weight: 500; color: var(--text-muted); }
input, select, textarea {
  background: #f8f5ff;
  border: 1.5px solid rgba(124,58,237,0.15);
  border-radius: 12px; color: var(--text);
  font-size: 14px; font-family: inherit;
  padding: 12px 16px; transition: var(--transition); width: 100%; outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--purple);
  background: white;
  box-shadow: 0 0 0 3px rgba(124,58,237,0.12);
}
input::placeholder, textarea::placeholder { color: #b8a8d0; }
textarea { resize: vertical; min-height: 80px; }
input[type="date"] { color-scheme: light; }
.form-msg { padding: 12px 16px; border-radius: 12px; font-size: 14px; text-align: center; display: none; }
.form-msg.success { display:block; background:rgba(16,185,129,0.08); border:1px solid rgba(16,185,129,0.3); color:#059669; }
.form-msg.error { display:block; background:rgba(239,68,68,0.08); border:1px solid rgba(239,68,68,0.3); color:#dc2626; }
.btn-loading { position:relative; color:transparent !important; }
.btn-loading::after {
  content:''; position:absolute; top:50%; left:50%;
  transform:translate(-50%,-50%);
  width:20px; height:20px; border-radius:50%;
  border:2px solid transparent; border-top-color:white;
  animation:spin 0.8s linear infinite;
}
@keyframes spin{to{transform:translate(-50%,-50%) rotate(360deg)}}

/* ===== MAP ===== */
.mapa { padding: 0 0 0; }
.mapa .container { padding: 0 24px 60px; }
.mapa-wrap { border-radius: 20px; overflow: hidden; box-shadow: var(--card-shadow); border: 1px solid var(--card-border); }
.mapa-wrap iframe { display: block; }

/* ===== FOOTER ===== */
.footer { padding: 80px 0 30px; background: var(--bg-footer); color: white; position: relative; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand { display: flex; flex-direction: column; gap: 0; }
.footer-logo { display: flex; flex-direction: column; margin-bottom: 16px; }
.footer-desc { color: rgba(255,255,255,0.5); font-size: 14px; margin-bottom: 24px; max-width: 280px; line-height: 1.7; }
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); transition: var(--transition);
}
.social-links a:hover { background: rgba(124,58,237,0.3); border-color: rgba(124,58,237,0.5); color: white; transform: translateY(-2px); }
.footer-links-col h4 { font-size: 13px; font-weight: 700; margin-bottom: 20px; color: rgba(255,255,255,0.9); letter-spacing: 0.5px; }
.footer-links-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-col li, .footer-links-col a { font-size: 13px; color: rgba(255,255,255,0.45); transition: var(--transition); }
.footer-links-col a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 8px;
}
.footer-bottom p, .footer-disclaimer { font-size: 12px; color: rgba(255,255,255,0.25); }

/* ===== WHATSAPP FAB ===== */
.whatsapp-fab {
  position: fixed; bottom: 32px; right: 32px;
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 30px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.4);
  z-index: 999; transition: var(--transition);
  animation: fabPulse 3s ease infinite;
}
@keyframes fabPulse {
  0%,100%{box-shadow:0 8px 30px rgba(37,211,102,0.45),0 0 0 0 rgba(37,211,102,0.3)}
  50%{box-shadow:0 8px 30px rgba(37,211,102,0.6),0 0 0 12px rgba(37,211,102,0)}
}
.whatsapp-fab:hover { transform: scale(1.1); }
.fab-tooltip {
  position: absolute; right: 70px; top: 50%;
  transform: translateY(-50%);
  background: var(--text); color: white; font-size: 13px; white-space: nowrap;
  padding: 8px 14px; border-radius: 10px;
  opacity: 0; pointer-events: none; transition: var(--transition);
}
.whatsapp-fab:hover .fab-tooltip { opacity: 1; }

/* ===== REVEAL ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
[data-delay="100"] { transition-delay: 0.1s !important; }
[data-delay="150"] { transition-delay: 0.15s !important; }
[data-delay="200"] { transition-delay: 0.2s !important; }
[data-delay="300"] { transition-delay: 0.3s !important; }

/* ===== MOBILE NAV ===== */
@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: 0; bottom: 0; width: 280px;
    background: rgba(255,255,255,0.98); backdrop-filter: blur(20px);
    border-left: 1px solid rgba(124,58,237,0.12);
    flex-direction: column; padding: 100px 24px 40px; gap: 4px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    z-index: 999;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-link { padding: 14px 16px; width: 100%; display: block; font-size: 16px; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid, .citas-grid, .reviews-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-image-wrap { max-width: 500px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .services-grid, .casos-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .reviews-deco { display: none; }
  .booking-form-wrap { padding: 24px 18px; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .btn { justify-content: center; }
  .reviews-btns { flex-direction: column; }
}
