/* ============================================================
   Impulso Nove — Estilos del sitio público
   Identidad: morado #8C52FF · oscuro #2D2D3A · blanco
   ============================================================ */

:root {
  --purple: #8C52FF;
  --purple-dark: #6E2FF0;
  --purple-deep: #5B2AC4;
  --purple-soft: #F3EEFF;
  --purple-soft-2: #EDE7FF;
  --ink: #2D2D3A;
  --ink-2: #45455A;
  --muted: #6B6B7B;
  --muted-2: #9A9AA8;
  --bg: #F7F7FA;
  --bg-2: #FBFBFD;
  --white: #FFFFFF;
  --border: #EBEBF2;
  --success: #10B981;
  --danger: #EF4444;
  --warn: #EAB308;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 8px rgba(45,45,58,.06);
  --shadow-md: 0 12px 32px rgba(45,45,58,.10);
  --shadow-lg: 0 24px 60px rgba(45,45,58,.14);
  --font: 'Plus Jakarta Sans', 'Inter', -apple-system, 'Segoe UI', sans-serif;
  --grad: linear-gradient(135deg, #8C52FF 0%, #6E2FF0 55%, #5B2AC4 100%);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg-2);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
h1,h2,h3,h4 { line-height: 1.2; margin: 0; letter-spacing: -.02em; }
p { margin: 0; }
fieldset { border: 0; margin: 0; padding: 0; min-width: 0; }
legend { padding: 0; }
i.icon, .icon { width: 18px; height: 18px; }
i.icon-sm, .icon-sm { width: 16px; height: 16px; }

.container { width: min(1160px, 92%); margin-inline: auto; }

.text-gradient {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------------- Botones ---------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 15px;
  border: none;
  border-radius: 12px;
  padding: 11px 20px;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn-lg { padding: 14px 26px; font-size: 15.5px; border-radius: 14px; }

.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 8px 20px rgba(140,82,255,.32);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(140,82,255,.42); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { border-color: var(--purple); color: var(--purple); background: var(--purple-soft); }

.btn-white { background: #fff; color: var(--purple-deep); box-shadow: 0 10px 24px rgba(0,0,0,.18); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0,0,0,.22); }

.btn[disabled] { opacity: .55; cursor: not-allowed; transform: none !important; box-shadow: none !important; }

/* ---------------- Header ---------------- */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s;
  backdrop-filter: blur(0);
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border), 0 8px 24px rgba(45,45,58,.05);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 20px;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { width: 40px; height: 40px; border-radius: 12px; box-shadow: 0 6px 16px rgba(140,82,255,.35); }
.brand-mark--logo { width: auto; height: 46px; border-radius: 0; box-shadow: none; object-fit: contain; }

.site-nav { display: flex; align-items: center; gap: 28px; }
.nav-link {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-2);
  transition: color .18s;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.nav-link:hover { color: var(--purple); }
.nav-link--cta {
  background: var(--grad);
  color: #fff;
  padding: 10px 18px;
  border-radius: 11px;
  box-shadow: 0 6px 16px rgba(140,82,255,.3);
}
.nav-link--cta:hover { color: #fff; transform: translateY(-1px); }

.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  color: var(--ink); padding: 8px;
}
.nav-toggle i { width: 26px; height: 26px; }
.nav-toggle svg { width: 26px; height: 26px; }

.mobile-menu {
  display: none;
  position: fixed;
  top: 74px; left: 0; right: 0;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 12px 4% 20px;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 16px 40px rgba(45,45,58,.1);
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
  padding: 13px 12px;
  font-weight: 600;
  color: var(--ink-2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mobile-menu a:hover { background: var(--purple-soft); color: var(--purple); }
.mobile-menu .mobile-cta { background: var(--grad); color: #fff; }
.mobile-menu .mobile-cta:hover { color: #fff; background: var(--grad); }

/* ---------------- Hero ---------------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: linear-gradient(180deg, #F6F1FF 0%, #FBFBFD 45%, #FFFFFF 100%);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-glow {
  position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5;
}
.hero-glow--1 { width: 520px; height: 520px; background: rgba(140,82,255,.30); top: -160px; right: -80px; }
.hero-glow--2 { width: 420px; height: 420px; background: rgba(140,82,255,.18); bottom: -140px; left: -100px; }
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(140,82,255,.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(140,82,255,.05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 75%);
  animation: gridPan 26s linear infinite;
}
@keyframes gridPan {
  from { background-position: 0 0; }
  to { background-position: 46px 46px; }
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(140,82,255,.1);
  color: var(--purple-deep);
  font-weight: 600;
  font-size: 13.5px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(140,82,255,.18);
  margin-bottom: 22px;
}
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--purple); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{ box-shadow: 0 0 0 0 rgba(140,82,255,.4);} 50%{ box-shadow: 0 0 0 6px rgba(140,82,255,0);} }

.hero-title {
  font-size: clamp(42px, 6vw, 68px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.02;
  margin-bottom: 22px;
}
.title-gradient {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 30px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }

.hero-stats { display: flex; flex-wrap: wrap; gap: 32px; }
.stat strong { display: block; font-size: 20px; font-weight: 800; color: var(--ink); }
.stat span { font-size: 13px; color: var(--muted); }

/* Visual */
.hero-visual { position: relative; min-height: 420px; }

.float-card {
  position: absolute;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(8px);
  animation: float 6s ease-in-out infinite;
}
.float-card--main {
  width: 300px; left: 6%; top: 60px; padding: 22px;
}
.float-card--mini {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px; font-size: 14px;
}
.float-card--mini i, .float-card--mini svg { width: 20px; height: 20px; color: var(--purple); }
.float-card--top { right: 0; top: 14px; animation-delay: 1s; }
.float-card--bottom { right: 4%; bottom: 20px; animation-delay: 2s; }
@keyframes float { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-10px);} }

.fc-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.fc-avatar {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--grad); color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.fc-avatar i, .fc-avatar svg { width: 22px; height: 22px; }
.fc-head strong { display: block; font-size: 15px; }
.fc-head small { color: var(--muted); font-size: 12.5px; }

.fc-body {
  background: var(--bg); border-radius: 12px; padding: 14px;
  display: flex; align-items: center; gap: 12px;
}
.fc-date { font-size: 11px; font-weight: 700; color: var(--purple); letter-spacing: .08em; background: var(--purple-soft); padding: 4px 9px; border-radius: 7px; }
.fc-time { font-weight: 700; font-size: 15px; }
.fc-status { margin-left: auto; font-size: 12px; color: var(--success); display: flex; align-items: center; gap: 5px; }
.fc-status .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--success); }

.hero-ring {
  position: absolute; inset: 0; margin: auto;
  width: 330px; height: 330px;
  border-radius: 50%;
  border: 1.5px dashed rgba(140,82,255,.25);
  animation: spin 40s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------------- Secciones ---------------- */

.section { padding: 104px 0; }
.section-services { background: var(--bg-2); }

.section-head { text-align: center; max-width: 620px; margin: 0 auto 56px; }
.section-tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--purple-soft);
  color: var(--purple-deep);
  font-size: 12.5px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 999px;
  margin-bottom: 16px;
}
.section-head h2 { font-size: clamp(28px, 3.6vw, 40px); font-weight: 800; margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 16.5px; }

/* Servicios */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(140,82,255,.35);
}
.service-icon {
  width: 50px; height: 50px;
  border-radius: 13px;
  background: var(--purple-soft);
  color: var(--purple);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  transition: background .25s, color .25s;
}
.service-icon i, .service-icon svg { width: 24px; height: 24px; }
.service-card:hover .service-icon { background: var(--grad); color: #fff; }
.service-card h3 { font-size: 18.5px; margin-bottom: 8px; }
.service-card p { color: var(--muted); font-size: 14.5px; }

/* Proceso */
.section-process { background: var(--bg); position: relative; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.process-step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 28px 30px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.process-step:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.step-num {
  position: absolute; top: 24px; right: 26px;
  font-size: 52px; font-weight: 800;
  color: var(--purple-soft-2);
  letter-spacing: -.04em;
}
.step-icon {
  width: 54px; height: 54px; border-radius: 14px;
  background: var(--grad); color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 18px rgba(140,82,255,.3);
}
.step-icon i, .step-icon svg { width: 26px; height: 26px; }
.process-step h3 { font-size: 18px; margin-bottom: 10px; }
.process-step p { color: var(--muted); font-size: 14.5px; }

/* CTA */
.section-cta { padding-top: 40px; }
.cta-card {
  position: relative;
  border-radius: 24px;
  padding: 72px 40px;
  text-align: center;
  background: var(--grad);
  color: #fff;
  overflow: hidden;
}
.cta-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,.22), transparent 60%);
  pointer-events: none;
}
.cta-card h2 { font-size: clamp(26px, 3.4vw, 38px); font-weight: 800; margin-bottom: 14px; position: relative; }
.cta-card p { color: rgba(255,255,255,.9); max-width: 520px; margin: 0 auto 30px; font-size: 16.5px; position: relative; }
.cta-card .btn { position: relative; }

/* ---------------- Footer ---------------- */

.site-footer {
  background: var(--ink);
  color: #fff;
  margin-top: 96px;
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; }
.footer-brand .footer-logo {
  width: auto;
  height: 60px;
  object-fit: contain;
  filter: none;
}
.footer-brand p { color: rgba(255,255,255,.6); margin-top: 14px; font-size: 14px; }
.footer-col h4 {
  font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.45); margin-bottom: 16px;
}
.footer-col a {
  display: block; color: rgba(255,255,255,.82);
  font-size: 14.5px; padding: 5px 0;
  transition: color .18s, transform .18s;
}
.footer-col a:hover { color: #B795FF; transform: translateX(3px); }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 22px;
}
.footer-bottom p { color: rgba(255,255,255,.5); font-size: 13px; }
.footer-slogan { color: rgba(255,255,255,.35) !important; }

/* ============================================================
   Página de reserva
   ============================================================ */

.booking-hero {
  position: relative;
  padding: 150px 0 64px;
  background: linear-gradient(180deg, #F3EEFF 0%, var(--bg-2) 100%);
  text-align: center;
  overflow: hidden;
}
.booking-hero-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(140,82,255,.06) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(140,82,255,.06) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 70% 90% at 50% 0%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 90% at 50% 0%, #000 20%, transparent 75%);
}
.booking-hero-inner { position: relative; }
.booking-hero h1 { font-size: clamp(32px, 4.4vw, 48px); font-weight: 800; margin-bottom: 14px; }
.booking-hero p { color: var(--muted); font-size: 17px; max-width: 520px; margin: 0 auto; }

.booking-section { padding: 56px 0 90px; }
.booking-shell {
  position: relative;
  overflow: hidden;
  max-width: 860px;
  margin-inline: auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow-md);
  padding: 34px 42px 42px;
}
.booking-shell::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad);
}

/* Progreso */
.booking-progress { margin-bottom: 40px; }
.progress-track {
  height: 6px; border-radius: 99px;
  background: var(--bg);
  overflow: hidden;
}
.progress-fill {
  height: 100%; width: 0;
  background: var(--grad);
  border-radius: 99px;
  transition: width .45s ease;
}
.progress-steps {
  list-style: none; margin: 18px 0 0; padding: 0;
  display: flex; justify-content: space-between;
}
.progress-steps .step { display: flex; flex-direction: column; align-items: center; gap: 7px; }
.progress-steps .step-dot {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--bg); color: var(--muted-2);
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
  transition: all .3s ease;
}
.progress-steps .step small { font-size: 12px; color: var(--muted-2); font-weight: 600; transition: color .3s; }
.progress-steps .step.is-active .step-dot {
  background: var(--grad); color: #fff; border-color: transparent;
  box-shadow: 0 4px 12px rgba(140,82,255,.35);
}
.progress-steps .step.is-active small { color: var(--purple); }
.progress-steps .step.is-done .step-dot { background: var(--success); color: #fff; border-color: transparent; }

/* Pasos del formulario */
.form-step { display: none; animation: fadeUp .45s ease; }
.form-step.is-active { display: block; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px);} to { opacity: 1; transform: none;} }

.step-head { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.step-head-icon {
  width: 48px; height: 48px; border-radius: 13px;
  background: var(--purple-soft); color: var(--purple);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.step-head-icon i, .step-head-icon svg { width: 22px; height: 22px; }
.step-head h2 { font-size: 21px; font-weight: 800; }
.step-head p { color: var(--muted); font-size: 14px; }

/* Campos */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; }
.field--full { grid-column: 1 / -1; }
.field label {
  display: block; font-size: 13.5px; font-weight: 600;
  color: var(--ink); margin-bottom: 7px;
}
.field .req { color: var(--purple); }

.input-wrap {
  position: relative;
  display: flex; align-items: center;
}
.input-wrap > i,
.input-wrap > svg {
  position: absolute; left: 14px;
  width: 18px; height: 18px;
  color: var(--muted-2);
  transition: color .2s;
  pointer-events: none;
}
.input-wrap input,
.input-wrap select,
.input-wrap textarea {
  width: 100%;
  font-family: var(--font);
  font-size: 15px;
  color: var(--ink);
  background: var(--bg-2);
  border: 1.5px solid var(--border);
  border-radius: 11px;
  padding: 12px 14px 12px 42px;
  transition: border-color .2s, box-shadow .2s, background .2s;
  appearance: none;
}
.input-wrap textarea { resize: vertical; padding-top: 14px; }
.input-wrap--area > i, .input-wrap--area > svg { top: 16px; }
.input-wrap input::placeholder,
.input-wrap textarea::placeholder { color: var(--muted-2); }
.input-wrap input:focus,
.input-wrap select:focus,
.input-wrap textarea:focus {
  outline: none;
  border-color: var(--purple);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(140,82,255,.12);
}
.input-wrap:focus-within > i, .input-wrap:focus-within > svg { color: var(--purple); }
.input-wrap select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B6B7B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.input-wrap select:has(option[value=""]:checked) { color: var(--muted-2); }

.field-error {
  display: none;
  font-size: 12.5px; color: var(--danger);
  margin-top: 6px; font-weight: 500;
}
.field-error.is-visible { display: block; }
.field-error--center { display: block; text-align: center; margin-top: 14px; min-height: 20px; }
.field.has-error .input-wrap input,
.field.has-error .input-wrap select,
.field.has-error .input-wrap textarea { border-color: var(--danger); background: #FFF5F5; }

.step-actions {
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px; margin-top: 28px;
}

/* Selector de fecha */
.date-picker-wrap { display: grid; grid-template-columns: 1.5fr 1fr; gap: 24px; }
.date-picker {
  background: var(--bg-2);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 18px;
}
.dp-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.dp-head strong { font-size: 15.5px; font-weight: 700; }
.dp-nav {
  width: 34px; height: 34px; border-radius: 9px;
  border: 1px solid var(--border); background: #fff;
  color: var(--muted); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .18s;
}
.dp-nav:hover { color: var(--purple); border-color: var(--purple); }
.dp-nav i, .dp-nav svg { width: 18px; height: 18px; }
.dp-weekdays {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 4px; margin-bottom: 6px;
}
.dp-weekdays span {
  text-align: center; font-size: 11px; font-weight: 700;
  color: var(--muted-2); letter-spacing: .04em; padding: 6px 0;
}
.dp-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.dp-day {
  aspect-ratio: 1;
  border: none; background: transparent;
  border-radius: 9px;
  font-family: var(--font);
  font-size: 13.5px; font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .15s ease;
  position: relative;
}
.dp-day:hover:not(.is-disabled) { background: var(--purple-soft); color: var(--purple); }
.dp-day.is-today { box-shadow: inset 0 0 0 1.5px var(--purple); color: var(--purple); }
.dp-day.is-selected { background: var(--grad); color: #fff; box-shadow: 0 4px 12px rgba(140,82,255,.35); transform: scale(1.06); }
.dp-day.is-disabled {
  color: var(--muted-2); opacity: .4;
  cursor: not-allowed;
  background: transparent;
}
.dp-day.is-weekend { opacity: .55; }
.dp-day.is-unavailable { text-decoration: line-through; opacity: .4; }
.dp-day.is-past {
  background: #EFF0F4;
  color: var(--muted-2);
  opacity: .75;
  cursor: not-allowed;
}
.dp-day.is-past:hover:not(.is-disabled) { background: #EFF0F4; color: var(--muted-2); }
.dp-day.is-past .dp-lock {
  position: absolute;
  bottom: 3px; right: 5px;
  width: 9px; height: 9px;
  color: var(--muted-2);
}

.date-picker-side { display: flex; align-items: stretch; }
.date-selected {
  flex: 1;
  background: var(--purple-soft);
  border: 1.5px solid var(--purple-soft-2);
  border-radius: 14px;
  padding: 22px;
  display: flex; flex-direction: column; justify-content: center; gap: 8px;
}
.date-selected i, .date-selected svg { width: 30px; height: 30px; color: var(--purple); margin-bottom: 4px; }
.date-selected small { font-size: 12px; font-weight: 600; color: var(--muted); }
.date-selected strong { font-size: 18px; font-weight: 800; color: var(--ink); }
.date-selected span { font-size: 13px; color: var(--muted); }

/* Slots de hora */
.slots-loading {
  display: flex; align-items: center; gap: 12px;
  justify-content: center;
  padding: 36px 0;
  color: var(--muted); font-size: 14.5px;
}
.spinner {
  width: 20px; height: 20px;
  border: 2.5px solid var(--purple-soft-2);
  border-top-color: var(--purple);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
.spinner--light { border-color: rgba(255,255,255,.4); border-top-color: #fff; }
@keyframes spin { to { transform: rotate(360deg); } }

.slots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.slot-btn {
  position: relative;
  font-family: var(--font);
  font-size: 14px; font-weight: 600;
  color: var(--ink);
  background: var(--bg-2);
  border: 1.5px solid var(--border);
  border-radius: 11px;
  padding: 13px 10px;
  cursor: pointer;
  transition: all .16s ease;
  animation: fadeUp .35s ease backwards;
}
.slot-btn small { display: block; font-size: 10.5px; color: var(--muted-2); font-weight: 500; }
.slot-btn:hover { border-color: var(--purple); color: var(--purple); background: var(--purple-soft); }
.slot-btn.is-selected {
  background: var(--grad); color: #fff; border-color: transparent;
  box-shadow: 0 6px 16px rgba(140,82,255,.35);
  transform: scale(1.04);
}
.slot-btn.is-selected small { color: rgba(255,255,255,.8); }
.slot-btn.is-past {
  color: var(--muted-2);
  opacity: .5;
  background: #F3F4F6;
  border-color: var(--border);
  cursor: not-allowed;
  text-decoration: line-through;
}
.slot-btn.is-past:hover { border-color: var(--border); color: var(--muted-2); background: #F3F4F6; }
.slot-btn.is-past small { color: var(--muted-2); }
.slot-btn .slot-lock {
  position: absolute;
  top: 50%; left: 10px;
  transform: translateY(-50%);
  width: 13px; height: 13px;
  color: var(--muted-2);
}

.slots-empty {
  text-align: center; padding: 40px 0; color: var(--muted);
}
.slots-empty i, .slots-empty svg { width: 44px; height: 44px; color: var(--muted-2); margin-bottom: 12px; }
.slots-empty p { margin-bottom: 16px; }

/* Resumen */
.summary-card {
  background: var(--bg-2);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 8px 22px;
}
.summary-row {
  display: flex; justify-content: space-between; gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.summary-row:last-child { border-bottom: none; }
.summary-row span { color: var(--muted); font-size: 14px; }
.summary-row strong { font-size: 14.5px; text-align: right; word-break: break-word; }
.summary-row--highlight strong { color: var(--purple-deep); font-size: 16px; }
.summary-notes { max-width: 60%; font-weight: 500 !important; color: var(--ink-2) !important; }
.summary-divider { height: 1.5px; background: var(--border); }

/* Éxito */
.success-panel { text-align: center; padding: 24px 0 8px; animation: fadeUp .5s ease; }
.success-icon {
  width: 84px; height: 84px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #34D399, #10B981);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 34px rgba(16,185,129,.4);
  animation: pop .5s cubic-bezier(.2,1.4,.4,1);
}
.success-icon i, .success-icon svg { width: 42px; height: 42px; }
@keyframes pop { from { transform: scale(.4); opacity: 0;} to { transform: scale(1); opacity: 1;} }
.success-panel h2 { font-size: 27px; font-weight: 800; margin-bottom: 10px; }
.success-panel > p { color: var(--muted); margin-bottom: 30px; }
.success-details {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px; max-width: 560px; margin: 0 auto 32px;
}
.success-details > div {
  background: var(--purple-soft);
  border-radius: 12px;
  padding: 14px 10px;
}
.success-details small { display: block; color: var(--muted); font-size: 11.5px; font-weight: 600; margin-bottom: 4px; }
.success-details strong { font-size: 13.5px; word-break: break-word; }

.booking-error {
  text-align: center; padding: 26px;
  background: #FFF5F5; border: 1.5px solid #FECACA;
  border-radius: 14px; margin-top: 20px;
  color: #B91C1C;
}
.booking-error i, .booking-error svg { width: 30px; height: 30px; margin-bottom: 8px; }
.booking-error p { font-size: 14.5px; }

/* ---------------- Responsive ---------------- */

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 70px; }
  .hero-visual { max-width: 420px; margin-inline: auto; width: 100%; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .slots-grid { grid-template-columns: repeat(3, 1fr); }
  .booking-shell { padding: 30px 28px 36px; }
  .date-picker-wrap { grid-template-columns: 1fr; }
  .date-selected { min-height: auto; padding: 16px 20px; }
}

@media (max-width: 760px) {
  .site-nav { display: none; }
  .nav-toggle { display: block; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .booking-shell { padding: 24px 18px 30px; border-radius: 16px; }
  .form-grid { grid-template-columns: 1fr; }
  .slots-grid { grid-template-columns: repeat(2, 1fr); }
  .step-actions { flex-direction: column-reverse; align-items: stretch; }
  .step-actions .btn { width: 100%; }
  .success-details { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .hero-visual { min-height: 360px; }
  .float-card--main { width: 260px; }
  .progress-steps .step small { display: none; }
  .hero { padding-top: 130px; }
}

@media (max-width: 480px) {
  .slots-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
}
