:root {
  --white: #FFFFFF;
  --off-white: #F7F5F2;
  --cream: #EDE8E0;
  --dark: #2C2C2A;
  --dark-2: #3A3A37;
  --teal: #7A9E87;
  --teal-light: #96B89F;
  --teal-pale: #EDF2EE;
  --gold: #C4A882;
  --gold-light: #D4BFA0;
  --muted: #8A857D;
  --border: #E2D9D0;
  --shadow: 0 4px 32px rgba(44,44,42,.07);
  --shadow-lg: 0 16px 64px rgba(44,44,42,.12);
  --radius: 16px;
  --radius-sm: 8px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Outfit', sans-serif; font-weight: 300; color: var(--dark); background: var(--white); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
.serif { font-family: 'Cormorant Garamond', serif; }
h1, h2, h3 { font-family: 'Cormorant Garamond', serif; line-height: 1.15; font-weight: 600; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.2rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .3s, box-shadow .3s;
}
nav.scrolled { background: rgba(255,255,255,.95); backdrop-filter: blur(12px); box-shadow: 0 1px 0 var(--border); }
.brand-name { font-family: 'Quicksand', sans-serif; text-transform: uppercase; letter-spacing: .06em; }
.nav-logo { font-size: 1.35rem; font-weight: 600; color: var(--white); display: flex; align-items: center; gap: .5rem; transition: color .3s; }
.nav-logo .brand-name { font-size: .85rem; font-weight: 600; }
nav.scrolled .nav-logo { color: var(--dark); }
.nav-logo .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { font-size: .85rem; font-weight: 400; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.8); transition: color .2s; }
nav.scrolled .nav-links a { color: var(--muted); }
.nav-links a:hover,
nav.scrolled .nav-links a:hover { color: var(--teal); }
.nav-links a.nav-cta,
nav.scrolled .nav-links a.nav-cta { background: var(--teal); color: var(--white); padding: .5rem 1.3rem; border-radius: 2rem; font-weight: 500; transition: background .2s; }
.nav-links a.nav-cta:hover,
nav.scrolled .nav-links a.nav-cta:hover { background: var(--teal-light); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 0; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: background .3s; }
nav.scrolled .nav-toggle span { background: var(--dark); }

/* MOBILE NAV */
.mobile-nav { position: fixed; inset: 0; background: var(--dark); z-index: 200; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem; opacity: 0; pointer-events: none; transition: opacity .3s; }
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav a { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; color: var(--white); font-weight: 600; }
.mobile-close { position: absolute; top: 1.5rem; right: 2rem; font-size: 2rem; color: var(--white); cursor: pointer; background: none; border: none; }

/* HERO */
#hero { min-height: 100svh; background: var(--dark); position: relative; display: flex; align-items: center; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(122,158,135,.3) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(196,168,130,.18) 0%, transparent 50%),
    linear-gradient(160deg, #2C2C2A 40%, #1E2B22 100%);
}
.hero-deco { position: absolute; border-radius: 50%; opacity: .07; animation: float 8s ease-in-out infinite; }
.hero-deco:nth-child(1) { width: 400px; height: 400px; background: var(--teal); top: -100px; right: -80px; }
.hero-deco:nth-child(2) { width: 200px; height: 200px; background: var(--gold); bottom: 80px; right: 30%; animation-delay: -3s; }
.hero-deco:nth-child(3) { width: 140px; height: 140px; background: var(--teal-light); top: 40%; left: -40px; animation-delay: -5s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-24px); } }
.hero-inner { max-width: 1100px; margin: 0 auto; padding: 8rem 2rem 5rem; position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-text { animation: fadeUp .9s ease both; }
.hero-badge { display: inline-flex; align-items: center; gap: .5rem; background: rgba(122,158,135,.2); border: 1px solid rgba(122,158,135,.4); color: #A8C8B2; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; padding: .4rem 1rem; border-radius: 2rem; margin-bottom: 1.5rem; }
.hero-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #A8C8B2; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .3; } }
.hero-text h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); color: var(--white); line-height: 1.1; margin-bottom: 1.2rem; }
.hero-text h1 em { font-style: italic; color: var(--gold-light); }
.hero-text p { font-size: 1rem; color: rgba(255,255,255,.6); line-height: 1.7; max-width: 420px; margin-bottom: 2.2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary { display: inline-flex; align-items: center; gap: .6rem; background: var(--teal); color: var(--white); padding: .9rem 2rem; border-radius: 2rem; font-family: 'Outfit', sans-serif; font-size: .95rem; font-weight: 500; border: none; cursor: pointer; transition: background .2s, transform .15s, box-shadow .2s; box-shadow: 0 4px 24px rgba(42,123,111,.4); }
.btn-primary:hover { background: var(--teal-light); transform: translateY(-2px); }
.btn-secondary { display: inline-flex; align-items: center; gap: .5rem; background: transparent; color: rgba(255,255,255,.7); padding: .9rem 1.6rem; border-radius: 2rem; font-size: .9rem; border: 1px solid rgba(255,255,255,.15); cursor: pointer; transition: border-color .2s, color .2s; }
.btn-secondary:hover { border-color: rgba(255,255,255,.4); color: var(--white); }
.hero-stats { display: flex; gap: 2rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.08); }
.hero-stat-n { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 600; color: var(--gold-light); }
.hero-stat-l { font-size: .75rem; color: rgba(255,255,255,.4); letter-spacing: .06em; }
.hero-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 2rem; backdrop-filter: blur(8px); animation: fadeUp 1s ease .2s both; }
.hero-card-title { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--white); margin-bottom: 1.4rem; }
.quick-service { display: flex; align-items: center; gap: .8rem; padding: .55rem 0; border-bottom: 1px solid rgba(255,255,255,.07); }
.quick-service:last-of-type { border-bottom: none; }
.qs-icon { width: 36px; height: 36px; border-radius: 10px; background: rgba(122,158,135,.25); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.qs-name { font-size: .9rem; color: rgba(255,255,255,.8); }
.qs-tag { margin-left: auto; font-size: .7rem; background: rgba(122,158,135,.3); color: #A8C8B2; padding: .2rem .6rem; border-radius: 2rem; }
.hero-card-cta { margin-top: 1.5rem; width: 100%; background: var(--gold); color: var(--white); border: none; padding: .9rem; border-radius: var(--radius-sm); font-family: 'Outfit', sans-serif; font-size: .95rem; font-weight: 500; cursor: pointer; transition: background .2s; }
.hero-card-cta:hover { background: var(--gold-light); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* SECTIONS */
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label { display: inline-block; font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; color: var(--teal); font-weight: 500; margin-bottom: 1rem; }
.section-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; max-width: 560px; }
.section-sub { font-size: 1rem; color: var(--muted); line-height: 1.7; max-width: 500px; margin-bottom: 3.5rem; }

/* SERVICES */
#servicios { background: var(--off-white); padding: 7rem 2rem; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.service-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; transition: box-shadow .25s, transform .2s, border-color .2s; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--teal), var(--teal-light)); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--teal-pale); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1.3rem; }
.service-card h3 { font-size: 1.25rem; margin-bottom: .6rem; }
.service-card p { font-size: .88rem; color: var(--muted); line-height: 1.65; }

/* SEDES */
#sedes { background: var(--white); padding: 7rem 2rem; }
.sedes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.sede-card {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  text-align: center;
  position: relative;
  transition: box-shadow .25s, transform .2s, border-color .2s;
  display: flex; flex-direction: column; align-items: center;
}
.sede-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--teal); }
.sede-principal {
  background: linear-gradient(135deg, var(--teal-pale), #fff);
  border-color: var(--teal);
  grid-column: span 1;
}
.sede-badge {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--teal); color: #fff;
  font-size: .65rem; letter-spacing: .1em; text-transform: uppercase;
  padding: .25rem .9rem; border-radius: 0 0 .6rem .6rem;
  white-space: nowrap;
}
.sede-icon { font-size: 1.8rem; margin-bottom: .8rem; margin-top: .4rem; }
.sede-card h3 { font-size: 1.3rem; margin-bottom: .4rem; }
.sede-dir { font-size: .85rem; color: var(--muted); line-height: 1.5; margin-bottom: 1.1rem; flex: 1; }
.sede-link {
  display: inline-block;
  font-size: .8rem; font-weight: 500;
  color: var(--teal);
  border: 1.5px solid var(--teal);
  padding: .35rem 1rem;
  border-radius: 2rem;
  transition: background .2s, color .2s;
}
.sede-link:hover { background: var(--teal); color: #fff; }
.sede-link.wsp { background: #25D366; border-color: #25D366; color: #fff; }
.sede-link.wsp:hover { background: #1ebe5d; border-color: #1ebe5d; }
.sede-actions { display: flex; flex-direction: column; gap: .5rem; width: 100%; margin-top: .8rem; }

/* TESTIMONIALS */
#testimonios { background: var(--dark); padding: 7rem 2rem; position: relative; overflow: hidden; }
#testimonios::before { content: ''; position: absolute; top: -200px; right: -200px; width: 500px; height: 500px; border-radius: 50%; background: var(--teal); opacity: .07; }
.testimonios-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 3rem; flex-wrap: wrap; gap: 1.5rem; }
.testimonios-header .section-label { color: var(--gold-light); }
.testimonios-header .section-title { color: var(--white); margin-bottom: 0; }
.rating-summary { text-align: right; }
.rating-stars { color: var(--gold); font-size: 1.2rem; }
.rating-num { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 600; color: var(--white); line-height: 1; }
.rating-label { font-size: .75rem; color: rgba(255,255,255,.4); }
.testimonios-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.testi-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 1.8rem; transition: background .2s; }
.testi-card:hover { background: rgba(255,255,255,.08); }
.testi-stars { color: var(--gold); font-size: .9rem; margin-bottom: 1rem; }
.testi-text { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; color: rgba(255,255,255,.7); line-height: 1.7; margin-bottom: 1.4rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: .8rem; }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--teal), var(--gold)); display: flex; align-items: center; justify-content: center; font-size: .85rem; font-weight: 600; color: var(--white); flex-shrink: 0; }
.testi-name { font-size: .9rem; color: var(--white); font-weight: 500; }
.testi-date { font-size: .75rem; color: rgba(255,255,255,.35); }

/* BOOKING */
#turnos { background: var(--cream); padding: 7rem 2rem; }
.booking-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
.booking-info { position: sticky; top: 7rem; }
.booking-feature { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.3rem; }
.bf-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--teal-pale); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.bf-title { font-weight: 500; font-size: .92rem; margin-bottom: .2rem; }
.bf-desc { font-size: .82rem; color: var(--muted); line-height: 1.5; }
.booking-form { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 2.5rem; box-shadow: var(--shadow); }
.form-title { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 600; margin-bottom: .4rem; }
.form-subtitle { font-size: .85rem; color: var(--muted); margin-bottom: 2rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field label { font-size: .78rem; font-weight: 500; letter-spacing: .05em; text-transform: uppercase; color: var(--dark-2); }
.field input,
.field select,
.field textarea { padding: .75rem 1rem; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-family: 'Outfit', sans-serif; font-size: .9rem; font-weight: 300; color: var(--dark); background: var(--white); transition: border-color .2s, box-shadow .2s; width: 100%; appearance: none; -webkit-appearance: none; }
.field input:focus,
.field select:focus,
.field textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(42,123,111,.1); }
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2378716C' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.field textarea { resize: vertical; min-height: 80px; }
.form-submit { margin-top: 1.5rem; width: 100%; background: var(--teal); color: var(--white); border: none; padding: 1rem; border-radius: var(--radius-sm); font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 500; cursor: pointer; transition: background .2s, transform .15s; display: flex; align-items: center; justify-content: center; gap: .6rem; }
.form-submit:hover:not(:disabled) { background: var(--teal-light); transform: translateY(-1px); }
.form-submit:disabled { opacity: .6; cursor: not-allowed; }
.form-note { margin-top: .9rem; font-size: .75rem; color: var(--muted); text-align: center; line-height: 1.5; }
.form-status { margin-top: 1rem; padding: 1rem 1.2rem; border-radius: var(--radius-sm); font-size: .88rem; display: none; }
.form-status.success { background: #ECFDF5; border: 1px solid #6EE7B7; color: #065F46; }
.form-status.error { background: #FEF2F2; border: 1px solid #FCA5A5; color: #991B1B; }
.select-loading { padding: .75rem 1rem; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: .9rem; color: var(--muted); background: linear-gradient(90deg, #f5f5f5 25%, #ebebeb 50%, #f5f5f5 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* LOGO IMG */
.nav-logo-img { height: 36px; width: 36px; object-fit: contain; border-radius: 50%; }
.footer-logo-img { height: 64px; width: 64px; object-fit: contain; margin: 0 auto 1rem; display: block; border-radius: 50%; background: rgba(255,255,255,.06); padding: 4px; }
.hero-card-logo { text-align: center; margin-bottom: 1.2rem; }
.hero-card-logo img { height: 220px; width: 220px; object-fit: contain; border-radius: 50%; background: rgba(255,255,255,.08); padding: 10px; }

/* CONTACTO */
#contacto { background: var(--off-white); padding: 7rem 2rem; }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 1rem; }
.contact-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  text-align: center;
  transition: box-shadow .25s, transform .2s, border-color .2s;
  display: flex; flex-direction: column; align-items: center; gap: .8rem;
  text-decoration: none; color: var(--dark);
}
.contact-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--teal); }
.contact-card-icon {
  width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.6rem;
  margin-bottom: .4rem;
}
.contact-card-icon.wsp { background: #E8FAF0; }
.contact-card-icon.phone { background: var(--teal-pale); }
.contact-card-icon.mail { background: #EEF2FF; }
.contact-card h3 { font-size: 1.2rem; margin-bottom: .2rem; }
.contact-card p { font-size: .85rem; color: var(--muted); line-height: 1.5; }
.contact-card .contact-action {
  margin-top: .6rem;
  font-size: .82rem; font-weight: 500;
  color: var(--teal);
  border: 1.5px solid var(--teal);
  padding: .35rem 1.2rem;
  border-radius: 2rem;
  transition: background .2s, color .2s;
}
.contact-card:hover .contact-action { background: var(--teal); color: #fff; }

/* CONTACT MINI FORM */
.contact-form-card { cursor: default; }
.contact-form-card:hover { border-color: var(--teal); }
.contact-mini-form { width: 100%; margin-top: .4rem; display: flex; flex-direction: column; gap: .6rem; }
.contact-input {
  width: 100%; padding: .65rem .9rem;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif; font-size: .88rem; font-weight: 300;
  color: var(--dark); background: var(--off-white);
  transition: border-color .2s, box-shadow .2s;
}
.contact-input:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(122,158,135,.12); }
.contact-send-btn {
  width: 100%; padding: .7rem;
  background: var(--teal); color: #fff;
  border: none; border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif; font-size: .88rem; font-weight: 500;
  cursor: pointer; transition: background .2s;
}
.contact-send-btn:hover { background: var(--teal-light); }
.contact-send-btn:disabled { opacity: .6; cursor: not-allowed; }
.contact-form-note { font-size: .75rem; text-align: center; margin-top: .2rem; min-height: 1rem; }
.contact-form-note.ok { color: #065F46; }
.contact-form-note.err { color: #991B1B; }

/* LOGO MOBILE EN HERO */
.hero-logo-mobile { display: none; margin-bottom: 1.4rem; }
.hero-logo-mobile img {
  height: 110px; width: 110px;
  object-fit: contain; border-radius: 50%;
  background: rgba(255,255,255,.08);
  padding: 6px;
}

/* BURBUJA WHATSAPP */
.wsp-bubble {
  position: fixed; bottom: 1.8rem; right: 1.8rem; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  cursor: pointer; text-decoration: none;
  animation: wsp-float 3s ease-in-out infinite;
  transition: transform .2s, box-shadow .2s;
}
.wsp-bubble:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.6);
  animation-play-state: paused;
}
.wsp-bubble svg { width: 30px; height: 30px; fill: #fff; }
.wsp-tooltip {
  position: absolute; right: 70px; top: 50%; transform: translateY(-50%);
  background: var(--dark); color: #fff;
  font-size: .78rem; font-weight: 400; white-space: nowrap;
  padding: .4rem .85rem; border-radius: 2rem;
  opacity: 0; pointer-events: none;
  transition: opacity .2s;
}
.wsp-tooltip::after {
  content: ''; position: absolute; right: -6px; top: 50%; transform: translateY(-50%);
  border: 6px solid transparent; border-right: none; border-left-color: var(--dark);
}
.wsp-bubble:hover .wsp-tooltip { opacity: 1; }
@keyframes wsp-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* FOOTER */
footer { background: var(--dark-2); color: rgba(255,255,255,.5); padding: 3rem 2rem; text-align: center; }
.footer-logo { font-size: 1.5rem; font-weight: 600; color: var(--white); margin-bottom: .5rem; }
footer p { font-size: .82rem; line-height: 1.7; }
.footer-links { display: flex; gap: 1.5rem; justify-content: center; margin-top: 1.2rem; flex-wrap: wrap; }
.footer-links a { font-size: .8rem; transition: color .2s; }
.footer-links a:hover { color: var(--teal-light); }

/* SLOT PICKER */
.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: .5rem;
  margin-top: .4rem;
}
.slot-btn {
  padding: .55rem .4rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: .82rem;
  font-weight: 400;
  color: var(--dark);
  cursor: pointer;
  transition: border-color .15s, background .15s, color .15s, transform .1s;
  text-align: center;
}
.slot-btn:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-1px); }
.slot-btn.selected {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
  font-weight: 500;
}

/* RESPONSIVE (consolidated) */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .booking-layout { grid-template-columns: 1fr; }
  .booking-info { position: static; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .sedes-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .sede-card { padding: 1.4rem 1.1rem; }
  .contact-grid { grid-template-columns: 1fr; max-width: 400px; margin: 1rem auto 0; }
  .hero-logo-mobile { display: block; }
}
@media (max-width: 600px) {
  .form-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.2rem; }
  .testimonios-header { flex-direction: column; align-items: flex-start; }
  .rating-summary { text-align: left; }
  .sedes-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .sedes-grid { grid-template-columns: repeat(2, 1fr); gap: .8rem; }
  .sede-card { padding: 1.1rem .8rem; }
  .sede-card h3 { font-size: 1.1rem; }
  .sede-dir { font-size: .76rem; }
  .sede-link { font-size: .72rem; padding: .3rem .7rem; }
}
