/* ==========================================================================
   TxokoTxiki — Sistema de Diseño "Txoko Luxe Family Venues"
   Inspirado en Google Stitch
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Outfit:wght@500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..24,400..600,0..1,0&display=swap');

:root {
  /* Paleta Stitch */
  --primary: #006a60;
  --primary-container: #17b3a3;
  --primary-light: #e6faf7;
  --primary-fixed: #75f7e6;
  --primary-dark: #0f8578;
  
  --secondary: #ae2f34;
  --secondary-container: #ff6b6b;
  --secondary-light: #fff0f0;
  --secondary-dark: #e05353;
  
  --tertiary: #795900;
  --tertiary-container: #c8981c;
  --tertiary-light: #fff8e8;
  --tertiary-fixed: #ffdf9f;
  --amarillo: #ffc94d;

  --tinta: #2c2540;
  --tinta-suave: #6d6480;
  --fondo: #fffaf4;
  --tarjeta: #ffffff;
  --borde: #f0e7dd;
  --borde-light: #f7f2ec;
  
  /* Radios */
  --radio-xs: 6px;
  --radio-s: 12px;
  --radio: 20px;
  --radio-l: 32px;
  --radio-pill: 9999px;

  /* Sombras y profundidad */
  --sombra-s: 0 4px 14px rgba(44, 37, 64, 0.05);
  --sombra: 0 12px 32px -4px rgba(44, 37, 64, 0.08), 0 4px 12px -2px rgba(23, 179, 163, 0.06);
  --sombra-hover: 0 20px 42px -6px rgba(44, 37, 64, 0.12), 0 8px 18px -4px rgba(23, 179, 163, 0.1);
  --sombra-coral: 0 8px 24px rgba(255, 107, 107, 0.32);
  --sombra-teal: 0 8px 24px rgba(23, 179, 163, 0.28);
}

/* Reset y base */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  background-color: var(--fondo);
  color: var(--tinta);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .font-heading {
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
  font-weight: 700;
  color: var(--tinta);
  line-height: 1.2;
  margin-top: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img, svg {
  max-width: 100%;
  vertical-align: middle;
}

/* Material Symbols Helper */
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 20px;
  line-height: 1;
  display: inline-block;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  vertical-align: middle;
}

/* Contenedor general */
.contenedor {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .contenedor {
    padding: 0 32px;
  }
}

/* ==========================================================================
   Animaciones Keyframes
   ========================================================================== */
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}

@keyframes float-reverse {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(10px) rotate(-2deg); }
}

@keyframes float-fast {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.45); }
  50% { box-shadow: 0 0 0 14px rgba(255, 107, 107, 0); }
}

@keyframes pulse-teal {
  0%, 100% { box-shadow: 0 0 0 0 rgba(23, 179, 163, 0.45); }
  50% { box-shadow: 0 0 0 14px rgba(23, 179, 163, 0); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-float {
  animation: float 5.5s ease-in-out infinite;
}

.animate-float-reverse {
  animation: float-reverse 6.5s ease-in-out infinite;
}

.animate-float-fast {
  animation: float-fast 3.2s ease-in-out infinite;
}

.animate-pulse-glow {
  animation: pulse-glow 2.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.animate-fade-in-up {
  animation: fadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================================
   Cabecera y Navegación
   ========================================================================== */
header.cabecera {
  background: rgba(255, 250, 244, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(240, 231, 221, 0.9);
  transition: all 0.3s ease;
}

.cabecera .contenedor {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 16px;
}

.brand-logo-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: transform 0.25s ease;
}

.brand-logo-wrap:hover {
  transform: scale(1.02);
}

.brand-logo-img {
  height: 40px;
  width: auto;
}

nav.menu {
  display: none;
  align-items: center;
  gap: 8px;
}

@media (min-width: 900px) {
  nav.menu {
    display: flex;
  }
}

nav.menu a {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--tinta);
  padding: 8px 16px;
  border-radius: var(--radio-pill);
  transition: all 0.2s ease;
}

nav.menu a:hover {
  color: var(--primary-container);
  background: rgba(23, 179, 163, 0.08);
}

nav.menu a.activo {
  color: var(--primary-container);
  background: rgba(23, 179, 163, 0.12);
  font-weight: 700;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-header-reservar {
  display: none;
  align-items: center;
  gap: 6px;
  background: var(--secondary-container);
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 10px 22px;
  border-radius: var(--radio-pill);
  box-shadow: var(--sombra-coral);
  transition: all 0.25s ease;
}

@media (min-width: 640px) {
  .btn-header-reservar {
    display: inline-flex;
  }
}

.btn-header-reservar:hover {
  background: var(--secondary-dark);
  transform: translateY(-1px) scale(1.02);
}

/* Botón Hamburguesa Móvil */
.mobile-nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--tarjeta);
  border: 1px solid var(--borde);
  border-radius: var(--radio-pill);
  cursor: pointer;
  color: var(--tinta);
  transition: all 0.2s ease;
}

@media (min-width: 900px) {
  .mobile-nav-toggle {
    display: none;
  }
}

.mobile-nav-toggle:hover {
  background: var(--primary-light);
  color: var(--primary-container);
}

/* Mobile Drawer */
.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44, 37, 64, 0.45);
  backdrop-filter: blur(4px);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  bottom: 0;
  width: min(320px, 85vw);
  background: var(--tarjeta);
  box-shadow: -10px 0 30px rgba(0,0,0,0.15);
  z-index: 201;
  display: flex;
  flex-direction: column;
  padding: 24px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer-overlay.open .mobile-drawer {
  transform: translateX(-320px);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--borde);
}

.mobile-drawer-close {
  width: 40px;
  height: 40px;
  border-radius: var(--radio-pill);
  background: var(--fondo);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tinta);
}

.mobile-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.mobile-drawer-links a {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: var(--radio-s);
  color: var(--tinta);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.2s ease;
}

.mobile-drawer-links a:hover,
.mobile-drawer-links a.activo {
  background: var(--primary-light);
  color: var(--primary-container);
}

/* ==========================================================================
   Botones Generales
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--secondary-container);
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 14px 28px;
  border-radius: var(--radio-pill);
  border: none;
  cursor: pointer;
  box-shadow: var(--sombra-coral);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.btn:hover {
  background: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 107, 107, 0.45);
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn-teal {
  background: var(--primary-container);
  box-shadow: var(--sombra-teal);
}

.btn-teal:hover {
  background: var(--primary-dark);
  box-shadow: 0 12px 28px rgba(23, 179, 163, 0.4);
}

.btn-secundario {
  background: var(--tarjeta);
  color: var(--tinta);
  border: 1.5px solid var(--borde);
  box-shadow: var(--sombra-s);
}

.btn-secundario:hover {
  background: var(--fondo);
  border-color: var(--primary-container);
  color: var(--primary-container);
  transform: translateY(-2px);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 60px 0 80px 0;
}

@media (min-width: 900px) {
  .hero {
    padding: 80px 0 110px 0;
  }
}

/* Formas decorativas de fondo */
.hero-blob {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(50px);
  z-index: 0;
}

.hero-blob-1 {
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(255, 107, 107, 0.15) 0%, rgba(255, 223, 159, 0.2) 50%, rgba(117, 247, 230, 0.25) 100%);
}

.hero-blob-2 {
  top: 30%;
  right: -50px;
  width: 320px;
  height: 320px;
  background: rgba(255, 218, 216, 0.45);
}

.hero-blob-3 {
  bottom: 20px;
  left: -40px;
  width: 260px;
  height: 260px;
  background: rgba(117, 247, 230, 0.3);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
  }
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--tarjeta);
  padding: 6px 16px;
  border-radius: var(--radio-pill);
  border: 1px solid var(--borde);
  box-shadow: var(--sombra-s);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.trust-badge .rating {
  display: flex;
  align-items: center;
  gap: 3px;
  color: var(--tertiary);
  font-weight: 700;
}

.trust-badge .dot {
  color: #bbcac6;
}

.hero h1 {
  font-size: 2.3rem;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 3.4rem;
  }
}

.hero h1 .highlight {
  color: var(--secondary-container);
  position: relative;
  display: inline-block;
}

.hero h1 .highlight svg {
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 8px;
}

.hero-lead {
  font-size: 1.125rem;
  color: var(--tinta-suave);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 580px;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

@media (min-width: 540px) {
  .hero-ctas {
    flex-direction: row;
    align-items: center;
  }
}

.hero-security-note {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--tinta-suave);
  font-size: 0.88rem;
}

.hero-security-note .material-symbols-outlined {
  color: var(--primary-container);
}

/* Card Visual en Hero */
.hero-card-visual {
  background: var(--tarjeta);
  border-radius: var(--radio-l);
  padding: 16px;
  box-shadow: var(--sombra);
  border: 1px solid var(--borde-light);
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-card-visual:hover {
  transform: translateY(-6px);
  box-shadow: var(--sombra-hover);
}

.hero-canvas-art {
  height: 380px;
  border-radius: var(--radio);
  background: linear-gradient(135deg, rgba(117, 247, 230, 0.35) 0%, rgba(243, 234, 255, 0.6) 50%, rgba(255, 218, 216, 0.4) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
}

.hero-float-badge {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  padding: 10px 16px;
  border-radius: var(--radio);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--sombra-s);
  border: 1px solid rgba(255, 255, 255, 0.6);
  max-width: fit-content;
}

/* ==========================================================================
   Secciones y Grid
   ========================================================================== */
section {
  padding: 70px 0;
  position: relative;
}

.seccion-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px auto;
}

.seccion-header h2 {
  font-size: 2.1rem;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .seccion-header h2 {
    font-size: 2.6rem;
  }
}

.seccion-header .subtitulo {
  font-size: 1.1rem;
  color: var(--tinta-suave);
  margin: 0;
}

.tag-pill {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border-radius: var(--radio-pill);
  background: rgba(23, 179, 163, 0.12);
  color: var(--primary-container);
  margin-bottom: 12px;
}

/* Rejilla de características */
.rejilla-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .rejilla-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .rejilla-features {
    grid-template-columns: repeat(4, 1fr);
  }
}

.tarjeta-feature {
  background: var(--tarjeta);
  border: 1px solid var(--borde);
  border-radius: var(--radio);
  padding: 32px 24px;
  box-shadow: var(--sombra-s);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.tarjeta-feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--sombra);
  border-color: var(--primary-container);
}

.feature-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon-box.teal {
  background: rgba(23, 179, 163, 0.12);
  color: var(--primary-container);
}

.feature-icon-box.coral {
  background: rgba(255, 107, 107, 0.14);
  color: var(--secondary-container);
}

.feature-icon-box.gold {
  background: rgba(255, 201, 77, 0.2);
  color: #b38200;
}

.feature-icon-box.purple {
  background: rgba(108, 92, 231, 0.12);
  color: #6c5ce7;
}

.tarjeta-feature h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.tarjeta-feature p {
  color: var(--tinta-suave);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.55;
}

/* ==========================================================================
   Fichas de Locales
   ========================================================================== */
.rejilla-locales {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 900px) {
  .rejilla-locales {
    grid-template-columns: repeat(2, 1fr);
  }
}

.tarjeta-local-luxe {
  background: var(--tarjeta);
  border-radius: var(--radio-l);
  border: 1px solid var(--borde);
  box-shadow: var(--sombra);
  overflow: hidden;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

.tarjeta-local-luxe:hover {
  transform: translateY(-6px);
  box-shadow: var(--sombra-hover);
}

.local-header-visual {
  height: 220px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.local-header-visual.deusto {
  background: linear-gradient(135deg, #17b3a3 0%, #006a60 100%);
}

.local-header-visual.getxo {
  background: linear-gradient(135deg, #ff6b6b 0%, #ae2f34 100%);
}

.local-location-badge {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: var(--radio-pill);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--tinta);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.local-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.local-body h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.local-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.badge-item {
  background: var(--fondo);
  border: 1px solid var(--borde);
  padding: 4px 12px;
  border-radius: var(--radio-pill);
  font-size: 0.82rem;
  color: var(--tinta);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.badge-item .material-symbols-outlined {
  font-size: 16px;
  color: var(--primary-container);
}

.local-description {
  color: var(--tinta-suave);
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

.local-footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--borde);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.precio-highlight {
  display: flex;
  flex-direction: column;
}

.precio-highlight .label {
  font-size: 0.8rem;
  color: var(--tinta-suave);
}

.precio-highlight .amount {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary-container);
}

/* ==========================================================================
   Acordeón FAQ
   ========================================================================== */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--tarjeta);
  border: 1px solid var(--borde);
  border-radius: var(--radio);
  overflow: hidden;
  transition: all 0.2s ease;
}

.faq-item:hover {
  border-color: var(--primary-container);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--tinta);
  cursor: pointer;
  gap: 16px;
}

.faq-question .chevron {
  transition: transform 0.3s ease;
  color: var(--primary-container);
}

.faq-item.open .chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
  color: var(--tinta-suave);
  font-size: 0.98rem;
  line-height: 1.65;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 22px 24px;
}

/* ==========================================================================
   Formularios y Reservas
   ========================================================================== */
.card-reserva {
  background: var(--tarjeta);
  border: 1px solid var(--borde);
  border-radius: var(--radio-l);
  box-shadow: var(--sombra);
  padding: 32px 24px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .card-reserva {
    padding: 44px;
  }
}

.form-grupo {
  margin-bottom: 24px;
}

.form-grupo label {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--tinta);
}

.form-grupo select,
.form-grupo input[type="text"],
.form-grupo input[type="email"],
.form-grupo input[type="tel"],
.form-grupo input[type="number"],
.form-grupo input[type="date"],
.form-grupo textarea {
  width: 100%;
  height: 52px;
  padding: 0 18px;
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  color: var(--tinta);
  background: var(--fondo);
  border: 1.5px solid var(--borde);
  border-radius: var(--radio-md);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.form-grupo textarea {
  height: 110px;
  padding: 14px 18px;
  resize: vertical;
}

.form-grupo select:focus,
.form-grupo input:focus,
.form-grupo textarea:focus {
  border-color: var(--primary-container);
  box-shadow: 0 0 0 3px rgba(23, 179, 163, 0.18);
  background: #ffffff;
}

.fila-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 600px) {
  .fila-2 {
    grid-template-columns: 1fr 1fr;
  }
}

/* Franjas Horarias */
.franjas-lista {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 500px) {
  .franjas-lista {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}

.franja-opcion {
  padding: 16px 20px;
  background: var(--fondo);
  border: 1.5px solid var(--borde);
  border-radius: var(--radio);
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
}

.franja-opcion:hover:not(.ocupada) {
  border-color: var(--primary-container);
  transform: translateY(-2px);
  background: #ffffff;
}

.franja-opcion.seleccionada {
  background: var(--primary-container) !important;
  color: #ffffff !important;
  border-color: var(--primary-container) !important;
  box-shadow: var(--sombra-teal);
}

.franja-opcion.ocupada {
  opacity: 0.45;
  cursor: not-allowed;
  background: #eae5df;
  text-decoration: line-through;
}

.franja-opcion small {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--primary-dark);
}

.franja-opcion.seleccionada small {
  color: #ffffff;
}

.turno-opcion {
  padding: 16px 20px;
  background: var(--fondo);
  border: 1.5px solid var(--borde);
  border-radius: var(--radio);
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.turno-opcion:hover {
  border-color: var(--primary-container);
  transform: translateY(-2px);
  background: #ffffff;
}

.turno-opcion.seleccionada {
  background: var(--primary-container);
  color: #ffffff;
  border-color: var(--primary-container);
  box-shadow: var(--sombra-teal);
}

.turno-opcion.seleccionada div,
.turno-opcion.seleccionada strong {
  color: #ffffff !important;
}

/* Avisos */
.aviso {
  padding: 14px 20px;
  border-radius: var(--radio);
  margin-bottom: 24px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.aviso.error {
  background: #fde8e8;
  color: #9b1c1c;
  border: 1px solid #f8b4b4;
}

.aviso.info {
  background: #e1effe;
  color: #1e429f;
  border: 1px solid #b4c6f0;
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer.pie-luxe {
  background: #1e1732;
  color: #ffffff;
  padding: 70px 0 40px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
  }
}

.footer-brand p {
  color: #bbcac6;
  font-size: 0.92rem;
  line-height: 1.6;
  margin-top: 14px;
  max-width: 320px;
}

.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  color: #bbcac6;
  font-size: 0.92rem;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.footer-col ul a:hover {
  color: var(--primary-fixed);
  transform: translateX(3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.86rem;
  color: #8c7d9e;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    text-align: left;
  }
}

/* ==========================================================================
   Barra Sticky Móvil (Inspirada en Stitch Mobile)
   ========================================================================== */
.mobile-sticky-bar {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 250, 244, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--borde);
  padding: 12px 20px;
  z-index: 90;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
}

@media (min-width: 769px) {
  .mobile-sticky-bar {
    display: none;
  }
}

.mobile-sticky-info {
  display: flex;
  flex-direction: column;
}

.mobile-sticky-info span {
  font-size: 0.78rem;
  color: var(--tinta-suave);
}

.mobile-sticky-info strong {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-container);
  line-height: 1.1;
}

.mobile-sticky-bar .btn {
  padding: 10px 22px;
  font-size: 0.95rem;
}

/* ==========================================================================
   Confetti Canvas & Componentes de Reserva Estilo Stitch
   ========================================================================== */
.confetti-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}

.venue-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 20px;
}

@media (max-width: 600px) {
  .venue-cards-grid {
    grid-template-columns: 1fr;
  }
}

.venue-select-card {
  border: 2px solid var(--borde);
  border-radius: var(--radio);
  padding: 16px 18px;
  background: var(--tarjeta);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  text-align: left;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.venue-select-card:hover {
  border-color: var(--primary-container);
  transform: translateY(-2px);
  box-shadow: var(--sombra-s);
}

.venue-select-card.selected {
  border-color: var(--secondary-container) !important;
  background: #ffffff !important;
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.22), var(--sombra) !important;
}

.venue-select-card .venue-icon-thumb {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 24px;
}

.venue-select-card .selected-check {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--secondary-container);
  color: #ffffff;
  display: none;
  align-items: center;
  justify-content: center;
}

.venue-select-card.selected .selected-check {
  display: flex;
}

/* Franjas Luxe */
.shift-card {
  width: 100%;
  text-align: left;
  padding: 14px 18px;
  border-radius: var(--radio);
  background: var(--fondo);
  border: 1.5px solid var(--borde);
  box-shadow: var(--sombra-s);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  margin-bottom: 10px;
}

.shift-card:hover:not(.ocupada) {
  border-color: var(--primary-container);
  background: #ffffff;
  transform: translateY(-2px);
}

.shift-card.active-shift {
  border-color: var(--secondary-container) !important;
  background: rgba(255, 218, 216, 0.45) !important;
  box-shadow: 0 0 0 2px var(--secondary-container), var(--sombra-s) !important;
}

.shift-card.ocupada {
  opacity: 0.45;
  cursor: not-allowed;
  background: #f1ede8;
}

/* Counter Widget (+ / -) */
.counter-widget {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--fondo);
  border: 1.5px solid var(--borde);
  border-radius: var(--radio-pill);
  padding: 6px 14px;
}

.counter-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tinta);
  transition: all 0.15s ease;
}

.counter-btn:hover {
  background: var(--primary-container);
  color: #ffffff;
}

.counter-btn:active {
  transform: scale(0.92);
}

.counter-value {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  min-width: 32px;
  text-align: center;
}

/* Indicador de pasos */
.booking-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  background: var(--fondo);
  padding: 12px 18px;
  border-radius: var(--radio-pill);
  border: 1px solid var(--borde);
  overflow-x: auto;
}

.progress-step {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--tinta-suave);
  white-space: nowrap;
}

.progress-step.active {
  color: var(--primary-container);
  font-weight: 700;
}

.progress-step .step-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #e2dcd5;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
}

.progress-step.active .step-dot {
  background: var(--primary-container);
}

