/* GENERADO por tools/build-css.js — NO EDITAR A MANO. Fuentes: layout/footer.css, layout/prefooter.css, layout/welcome.css, components/forms.css, components/modal.css, components/cookies.css, components/location-card.css, components/booking-options.css, components/reviews.css, components/faq.css */
/* ═══ layout/footer.css ═══ */
/* ============================================================
   public/css/layout/footer.css
   FOOTER — alineado 100% con footer.php (BEM)
   Objetivo: footer compacto, en línea, 4 columnas desktop,
   responsive a 2 columnas tablet y 1 columna móvil.
   ============================================================ */

.footer {
  background: var(--grey-900);
  color: var(--grey-300);
  padding: 28px 0 14px;
  font-size: 0.95rem;
}

/* Inner: “contenedor” real del footer */
.footer__inner {
  max-width: var(--container-width, 1200px);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 32px);

  display: grid;
  grid-template-columns: 160px repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 44px);
  align-items: start;
}

/* Tablet */
@media (max-width: 900px) {
  .footer__inner {
    grid-template-columns: 160px 1fr;
    row-gap: 26px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .footer {
    padding-top: 22px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
}

/* =========================
   Brand / Logo
========================= */
.footer__brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.footer__logo {
  width: 120px;     /* clave: evitar el “logo gigante” */
  max-width: 100%;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
}

@media (max-width: 600px) {
  .footer__brand {
    justify-content: center;
  }

  .footer__logo {
    width: 110px;
  }
}

/* =========================
   Titles
========================= */
.footer__title {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--grey-100);
}

/* =========================
   Text / Address
========================= */
.footer__text {
  font-style: normal;
  line-height: 1.7;
  color: var(--grey-300);
}

.footer__text p {
  margin: 0 0 8px;
}

/* Links del footer: no dependemos de main a {} */
.footer a {
  color: var(--grey-300);
  text-decoration: none;
  transition: color .2s ease, opacity .2s ease;
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--primary-300);
  text-decoration: underline;
}

/* =========================
   List
========================= */
.footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__list li {
  margin: 0 0 8px;
}

/* =========================
   Social
========================= */
.footer__social {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  text-decoration: none;

  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.footer__social a:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.18);
}

.footer__social a:focus-visible {
  outline: 3px solid var(--primary-400);
  outline-offset: 3px;
}

.footer__social i {
  font-size: 1.15rem;
  line-height: 1;
  color: var(--grey-100);
}

@media (max-width: 600px) {
  .footer__social {
    justify-content: center;
  }
}

/* =========================
   Bottom
========================= */
.footer__bottom {
  max-width: var(--container-width, 1200px);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 32px);

  margin-top: 18px;
  padding-top: 12px;

  border-top: 1px solid rgba(255,255,255,0.10);
  text-align: center;
  font-size: 0.85rem;
  color: var(--grey-400);
}

.footer__bottom p {
  margin: 0 0 8px;
}

.footer__bottom a {
  color: var(--grey-300);
}

.footer__bottom a:hover {
  color: var(--grey-100);
}

/* ═══ layout/prefooter.css ═══ */
/* ================================
   layout/prefooter.css
   Pre-footer (CTA + colaboradores)
   ================================ */

.prefooter {
  background: var(--color-bg-soft);
  border-top: 1px solid var(--color-border-subtle);
  border-bottom: 1px solid rgba(17, 24, 39, 0.06);
}

/* ================================
   CTA dentro del prefooter
   ================================ */

.prefooter__cta {
  text-align: center;
  padding: var(--space-10) var(--space-6);
  border-bottom: 1px solid var(--color-border-subtle);
}

.prefooter__ctaTitle {
  margin: 0 0 var(--space-3);
  font-size: var(--font-size-2xl);
  color: var(--color-heading);
}

.prefooter__ctaText {
  max-width: 640px;
  margin: 0 auto var(--space-6);
  color: var(--color-text-soft);
  line-height: var(--line-height-relaxed);
}

.prefooter__ctaActions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* Links secundarios (teléfono / WhatsApp) */
.prefooter__ctaLink {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--font-size-base);
  font-weight: 700;
  color: var(--color-heading);
  text-decoration: none;
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--color-border-subtle);
  box-shadow: var(--shadow-xs);
  transition: transform var(--transition-fast),
              background var(--transition-fast),
              color var(--transition-fast),
              box-shadow var(--transition-fast);
}

.prefooter__ctaLink:hover {
  background: var(--gray-100);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.prefooter__ctaLink--whatsapp {
  color: #188743;
  border-color: rgba(24, 135, 65, 0.22);
  background: rgba(24, 135, 65, 0.08);
}

.prefooter__ctaLink--whatsapp:hover {
  background: rgba(24, 135, 65, 0.14);
  color: #146c36;
}

/* ================================
   Colaboradores
   ================================ */

.prefooter__inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--space-8) var(--space-6);
}

.prefooter__kicker {
  margin: 0 0 var(--space-3);
  font-size: var(--font-size-lg); /* antes xs */
 font-weight: 800;                 /* más contundente */
  letter-spacing: 0.1em;
  color: var(--color-heading);      /* deja de ser gris */
  text-transform: uppercase;
  text-align: center;
}


/* Grid de logos */
.prefooter__logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-8);
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.prefooter__logoItem {
  display: grid;
  place-items: center;
  padding: var(--space-3);
}

.prefooter__logo {
  max-height: 84px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  opacity: 0.98;
  transition: transform var(--transition-fast);
}

@media (hover: hover) {
  .prefooter__logoItem:hover .prefooter__logo {
    transform: translateY(-1px);
  }
}

/* Excepción: logo blanco (JUDO) */
.prefooter__logoItem--dark {
  background: var(--neutral-900);
  border-radius: var(--radius-md);
  padding: var(--space-2);
  box-shadow: var(--shadow-xs);
  max-width: 180px;
  margin-inline: auto;
}

.prefooter__logoItem--dark .prefooter__logo {
  opacity: 1;
}

/* ================================
   Responsive
   ================================ */

@media (max-width: 1024px) {
  .prefooter__logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .prefooter__inner {
    padding: var(--space-8) var(--space-4);
  }

  .prefooter__logos {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .prefooter__logo {
    max-height: 56px;
  }
}
.prefooter__cta {
  background: linear-gradient(
    180deg,
    rgba(32, 184, 191, 0.18),
    rgba(32, 184, 191, 0.12)
  );
}

/* ═══ layout/welcome.css ═══ */
/* ================================
   HOME - QUIÉNES SOMOS (welcome)
   Fondo full width + contenido centrado (sin "leer más")
================================= */

.section.welcome.welcome .welcome__header{
  margin-bottom: var(--space-5);
}

/* Stack vertical */
.section.welcome.welcome .welcome__stack{
  display: grid;
  gap: var(--space-5);
}

/* ================================
   Slider manual Welcome
================================= */

.section.welcome.welcome .welcome__slider{
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 10;
  background: #fff;
}

.section.welcome.welcome .welcome__slides{
  position: relative;
  width: 100%;
  height: 100%;
}

.section.welcome.welcome .welcome__slide{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.section.welcome.welcome .welcome__slide.active{
  opacity: 1;
}

/* Botones navegación */
.section.welcome.welcome .welcome__nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;

  border: 1px solid rgba(17, 24, 39, 0.14);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(8px);

  display: grid;
  place-items: center;

  font-size: 26px;
  line-height: 1;
  cursor: pointer;

  transition: transform 0.15s ease, background 0.15s ease;
}

.section.welcome.welcome .welcome__nav:hover{
  background: rgba(255, 255, 255, 0.75);
}

.section.welcome.welcome .welcome__nav:active{
  transform: translateY(-50%) scale(0.98);
}

.section.welcome.welcome .welcome__nav--prev{ left: 12px; }
.section.welcome.welcome .welcome__nav--next{ right: 12px; }

/* ================================
   Bloque texto: fondo full width
================================= */

.section.welcome.welcome .welcome__card{
  position: relative;
  padding: 0;
  margin: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

/* Fondo azul a ancho completo */
.section.welcome.welcome .welcome__card::before{
  content: "";
  position: absolute;
  inset: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;

  background: rgba(210, 230, 245, 0.55);
  border-top: 1px solid rgba(17, 24, 39, 0.06);
  border-bottom: 1px solid rgba(17, 24, 39, 0.06);
}

/* Contenido real (ancho normal del site) */
.section.welcome.welcome .welcome__inner{
  position: relative;
  z-index: 1;

  max-width: 1100px;
  margin-inline: auto;
  padding: var(--space-5);

  text-align: center;
}

/* ================================
   Tipografía + ritmo (compacto + alineado)
================================= */

.section.welcome.welcome .welcome__lead{
  margin: 0 0 10px;

  font-size: clamp(1.1rem, 1.2vw, 1.35rem);
  font-weight: 700;
  color: var(--color-heading);
  line-height: 1.25;
}

/* Párrafos: centrados y con ancho cómodo para lectura */
.section.welcome.welcome .welcome__inner p{
  max-width: 68ch;
  margin-left: auto;
  margin-right: auto;
  line-height: var(--line-height-relaxed);
  color: var(--color-text);
}

.section.welcome.welcome .welcome__summary{
  margin: 0 0 10px;
}

/* Ritmo entre párrafos (si hay varios) */
.section.welcome.welcome .welcome__inner p + p{
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 640px){
  .section.welcome.welcome .welcome__inner{
    padding: var(--space-4);
  }

  .section.welcome.welcome .welcome__nav{
    width: 40px;
    height: 40px;
    font-size: 24px;
  }
}
/* =========================================
   WELCOME — forzar ancho (migrar a welcome.css)
   ========================================= */
section.section.section--soft.welcome > .container-global {
  max-width: 1100px;
}
 
section.section.section--soft.welcome .welcome__inner {
  max-width: 1100px;
}
 
section.section.section--soft.welcome .welcome__inner p {
  max-width: none;
}

/* ═══ components/forms.css ═══ */
/* ============================================================
   FORMS — Formularios globales (contacto, reservas, etc.)
   ============================================================ */

.form {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.08);
  max-width: 600px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
}

.form__group {
  margin-bottom: 18px;
}

.form__label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-700);
  margin-bottom: 6px;
}

/* Inputs */
.form__input,
.form__textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 1rem;

  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: #fff;
  color: var(--text);

  transition: border .25s ease, box-shadow .25s ease;
}

.form__input:focus,
.form__textarea:focus {
  border-color: var(--color-brand);
  box-shadow: 0 0 0 3px rgba(38,199,213,0.25);
  outline: none;
}

.form__textarea {
  min-height: 130px;
  resize: vertical;
}

/* Mensajes */
.form__success,
.form__error {
  padding: 12px;
  border-radius: 8px;
  margin-top: 10px;
  font-size: 0.9rem;
}

.form__success {
  background: #e1faf4;
  color: #0a7a62;
  border: 1px solid #8be5d0;
}

.form__error {
  background: #fde8e8;
  color: #b80000;
  border: 1px solid #ffb7b7;
}

/* Responsivo */
@media (max-width: 600px) {
  .form { padding: 18px; }
  .form__button { padding: 12px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .form__button {
    transition: none !important;
  }
  .form__button:hover,
  .form__button:active {
    transform: none;
    box-shadow: none;
  }
}
/* =========================================
   FORM VALIDATION UI
========================================= */
.form__input.is-invalid,
.form__textarea.is-invalid {
  border-color: var(--color-danger);
  box-shadow: 0 0 0 3px rgba(214, 69, 69, 0.18);
}

.is-invalid-group {
  border-radius: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(214, 69, 69, 0.35);
  background: rgba(214, 69, 69, 0.06);
}

.form__field-error {
  margin-top: 6px;
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--color-danger);
}
/* ============================================================
   RESERVAS — polish visual del contenedor (scoped)
   Pegar al final de components/forms.css
   ============================================================ */

.reservations .section-header{
  max-width: 720px;
  margin: 0 auto 22px;
  text-align: center;
}

/* Mensajes alineados con el ancho del formulario */
.reservations .form__success,
.reservations .form__error{
  max-width: 600px;
  margin: 0 auto 16px;
}

/* Card premium para el formulario SOLO en reservas */
.reservations .form--reservation{
  max-width: 600px;
  padding: 30px 28px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
}

/* Quitar el “fieldset look” del navegador (líneas / marco raro) */
.reservations .form__fieldset{
  border: 0;
  padding: 0;
  margin: 0;
  min-width: 0;

  /* Aquí está la clave del “aire”: */
  display: grid;
  gap: 16px;
}

/* Con grid-gap, quitamos márgenes viejos para evitar inconsistencias */
.reservations .form__group{
  margin: 0;
}

/* Labels con mejor jerarquía */
.reservations .form__label{
  font-size: 0.95rem;
  color: var(--text-700);
  margin-bottom: 6px;
}

/* Inputs más “premium” */
.reservations .form__input,
.reservations .form__textarea{
  border-radius: 10px;
  border-color: rgba(15, 23, 42, 0.14);
  background: #fff;
}

/* Checkbox: alineación más limpia (evita que se vea “cutre”) */
.reservations .form__group input[type="checkbox"]{
  width: 18px;
  height: 18px;
  transform: translateY(2px);
}

.reservations .form__group label.form__label{
  line-height: 1.45;
}

/* Hint más legible */
.reservations .form__hint{
  margin: 0;
  font-size: 0.92rem;
  color: var(--grey-600);
}

/* Responsive: card más compacta */
@media (max-width: 600px){
  .reservations .form--reservation{
    padding: 22px 16px;
    border-radius: 14px;
  }
}

/* ═══ components/modal.css ═══ */
/* ============================================================
   MODAL — sistema moderno, accesible y consistente
   ============================================================ */

/* ===== OVERLAY ===== */
.modal {
  position: fixed;
  inset: 0;

  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);

  display: none; /* oculto por defecto */
  align-items: center;
  justify-content: center;

  z-index: var(--z-modal, 10000);
  padding: 20px;
}

/* Mostrar modal */
.modal.is-active {
  display: flex;
}

/* ===== MODAL BOX ===== */
.modal__content {
  position: relative;

  width: 100%;
  max-width: 540px;

  background: #fff;
  padding: 28px;
  border-radius: 14px;

  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);

  animation: modalFadeIn .25s ease;
}

/* Animación */
@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== CLOSE BUTTON ===== */
.modal__close {
  position: absolute;
  top: 12px;
  right: 14px;

  font-size: 1.6rem;
  line-height: 1;

  color: var(--grey-600);
  background: none;
  border: none;
  padding: 6px;

  cursor: pointer;

  transition: opacity .2s ease, transform .2s ease;
  -webkit-tap-highlight-color: transparent;
}

.modal__close:hover {
  opacity: 0.7;
  transform: scale(1.05);
}

.modal__close:focus-visible {
  outline: 3px solid var(--primary-400);
  outline-offset: 3px;
}

/* ===== TITLE ===== */
.modal__title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--grey-900);
}

/* ===== TEXT ===== */
.modal__text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--grey-700);
  margin-bottom: 22px;
}

/* ===== ACTIONS ===== */
.modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
}

.modal__actions .btn {
  min-width: 110px;
}

/* ===== BODY LOCK ===== */
body.modal-open {
  overflow: hidden;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .modal__content {
    padding: 22px 18px;
    border-radius: 12px;
  }

  .modal__title {
    font-size: 1.25rem;
  }
}

/* ===== REDUCE MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  .modal__content {
    animation: none;
  }
}

/* ═══ components/cookies.css ═══ */
/* ============================================================
   COOKIES — Banner + Modal (versión premium, RGPD-friendly)
   ============================================================ */

/* =========================
   COOKIE BANNER
========================= */
.cookie-banner {
  position: fixed;
  inset-inline: 0;
  bottom: 0;

  display: none; /* controlado por JS */
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  padding: 18px 20px;

  background: rgba(18, 19, 20, 0.92);
  backdrop-filter: blur(4px);

  color: #fff;
  font-size: 0.95rem;
  line-height: 1.5;

  z-index: var(--z-cookie-banner, 9000);
}

/* Mostrar banner */
.cookie-banner.is-visible {
  display: flex;
}

/* Texto */
.cookie-banner__text {
  flex: 1;
  margin: 0; /* <p> por defecto mete margen y “rompe” el layout */
}

/* Links dentro del texto (si usas <a>) */
.cookie-banner__text a {
color: var(--brand-400);
  text-decoration: underline;
}

/* =========================
   COMPATIBILIDAD CON TU HTML ACTUAL
   - Tu banner usa un <button class="btn-link" id="openCookiePolicy">
   - Este CSS lo deja como link “bonito” dentro del texto
========================= */
.cookie-banner__text .btn-link,
.btn-link#openCookiePolicy {
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  margin: 0;

  color: var(--brand-400);
  text-decoration: underline;
  font: inherit;
  cursor: pointer;
}

.cookie-banner__text .btn-link:hover,
.btn-link#openCookiePolicy:hover {
  opacity: 0.9;
}

.cookie-banner__text .btn-link:focus-visible,
.btn-link#openCookiePolicy:focus-visible {
  outline: 3px solid var(--primary-400);
  outline-offset: 2px;
  border-radius: 6px;
}

/* Acciones */
.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

/* =========================
   BOTONES (estilo premium)
========================= */
.cookie-btn {
  padding: 10px 18px;

  border-radius: 8px;
  border: none;

  font-weight: 600;
  font-size: 0.9rem;

  cursor: pointer;
  white-space: nowrap;

  transition: background .25s ease, transform .15s ease, box-shadow .15s ease;
  -webkit-tap-highlight-color: transparent;
}

.cookie-btn:hover {
  transform: scale(1.03);
}

/* Aceptar */
.cookie-btn--accept {
  background: var(--brand-600);
  color: #fff;
}

.cookie-btn--accept:hover {
  background: var(--brand-700);
}

/* Configurar */
.cookie-btn--settings {
  background: rgba(255,255,255,0.14);
  color: #fff;
}

.cookie-btn--settings:hover {
  background: rgba(255,255,255,0.22);
}

/* Rechazar */
.cookie-btn--reject {
  background: transparent;
  color: #fff;
  opacity: 0.8;
}

.cookie-btn--reject:hover {
  opacity: 1;
}

/* Focus accesible */
.cookie-btn:focus-visible {
  outline: 3px solid var(--primary-400);
  outline-offset: 2px;
}

/* =========================
   COMPATIBILIDAD CON TU HTML ACTUAL
   - Tu botón Aceptar tiene class="cookie-banner__button"
   - Lo mapeamos a los estilos premium sin tocar HTML
========================= */
.cookie-banner__button {
  padding: 10px 18px;

  border-radius: 8px;
  border: none;

  font-weight: 600;
  font-size: 0.9rem;

  cursor: pointer;
  white-space: nowrap;

  transition: background .25s ease, transform .15s ease, box-shadow .15s ease;
  -webkit-tap-highlight-color: transparent;

  background: var(--brand-600);
  color: #fff;
}

.cookie-banner__button:hover {
  transform: scale(1.03);
  background: var(--brand-700);
}

.cookie-banner__button:focus-visible {
  outline: 3px solid var(--primary-400);
  outline-offset: 2px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    padding: 16px 14px;
  }

  .cookie-banner__actions {
    width: 100%;
    justify-content: center;
  }

  .cookie-btn,
  .cookie-banner__button {
    width: 100%;
  }
}

/* =========================
   COOKIE MODAL
   (extiende modal base)
========================= */
.cookie-modal .modal__content {
  max-width: 680px;
}

.cookie-modal .modal__title {
  margin-bottom: 10px;
}

.cookie-modal .modal__text p + p {
  margin-top: 10px;
}

/* =========================
   REDUCE MOTION
========================= */
@media (prefers-reduced-motion: reduce) {
  .cookie-btn,
  .cookie-banner__button {
    transition: none !important;
  }

  .cookie-btn:hover,
  .cookie-banner__button:hover {
    transform: none;
  }
}
/* =========================
   CMP MINI — Settings UI
========================= */
.cookie-settings {
  margin-top: 14px;
  display: grid;
  gap: 12px;
}

.cookie-setting {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;

  padding: 12px 12px;
  border-radius: 12px;
  background: rgba(0,0,0,0.04);
}

.cookie-setting__info {
  display: grid;
  gap: 4px;
}

.cookie-setting__info span {
  opacity: 0.8;
  font-size: 0.95rem;
}

/* Switch */
.cookie-switch {
  position: relative;
  width: 46px;
  height: 28px;
  flex: 0 0 auto;
}

.cookie-switch input {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.cookie-switch__ui {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(0,0,0,0.25);
  transition: background .2s ease;
}

.cookie-switch__ui::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  transition: transform .2s ease;
}

.cookie-switch input:checked + .cookie-switch__ui {
  background: var(--brand-600);
}

.cookie-switch input:checked + .cookie-switch__ui::after {
  transform: translateX(18px);
}

.cookie-switch input:disabled + .cookie-switch__ui {
  opacity: 0.6;
}

/* Modal actions */
.cookie-modal__actions {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (max-width: 600px) {
  .cookie-modal__actions .cookie-btn {
    width: 100%;
  }
  .cookie-setting {
    align-items: flex-start;
  }
}

/* ═══ components/location-card.css ═══ */
/* ================================
   components/location-card.css
   Location card (foto local + datos)
   ================================ */

.locationCard {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: var(--space-8);
  align-items: stretch;
}

.locationCard__media {
  margin: 0;
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-surface);
  box-shadow: var(--shadow-md);
  min-height: 360px;
}

/* Imagen + hover zoom sutil */
.locationCard__img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  transform: scale(1);
  transition: transform var(--transition-slow);
  display: block;
}

@media (hover: hover) {
  .locationCard__media:hover .locationCard__img {
    transform: scale(1.035);
  }
}

@media (prefers-reduced-motion: reduce) {
  .locationCard__img {
    transition: none;
  }
  .locationCard__media:hover .locationCard__img {
    transform: none;
  }
}

/* Overlay sutil para legibilidad */
.locationCard__overlay {
  position: absolute;
  inset: 0;
  padding: var(--space-6);
  display: grid;
  align-content: start;
  gap: var(--space-2);
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(17, 24, 39, 0.55) 0%,
    rgba(17, 24, 39, 0.20) 45%,
    rgba(17, 24, 39, 0.00) 70%
  );
}

.locationCard__badge {
  margin: 0;
  display: inline-flex;
  width: fit-content;
  padding: 0.35rem 0.6rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
  font-size: var(--font-size-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.locationCard__overlayTitle {
  margin: 0;
  color: #fff;
  font-size: var(--font-size-2xl);
  line-height: var(--line-height-tight);
  font-weight: 700;
}

/* Botones sobre la imagen (abajo izquierda) */
.locationCard__mediaActions {
  position: absolute;
  left: var(--space-6);
  bottom: var(--space-6);
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

/* Panel */
.locationCard__panel {
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  background: var(--color-surface);
  border: 1px solid var(--color-border-subtle);
  box-shadow: var(--shadow-sm);
}

.locationCard__title {
  margin: 0 0 var(--space-4);
  color: var(--color-heading);
}

.locationCard__list {
  margin: 0 0 var(--space-6);
}

.locationCard__row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: var(--space-4);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-border-subtle);
}

.locationCard__row:last-child {
  border-bottom: 0;
}

.locationCard__row dt {
  color: var(--color-text-muted);
  font-weight: 600;
}

.locationCard__row dd {
  margin: 0;
  color: var(--color-text);
}

.locationCard__actions {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  align-items: center;
}

/* Link secundario (WhatsApp) sin depender de FontAwesome */
.locationCard__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-size: var(--font-size-sm);
  color: var(--color-text-soft);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.locationCard__link:hover {
  background: var(--gray-100);
  color: var(--color-heading);
}

.locationCard__link--whatsapp {
  color: var(--color-whatsapp);
}

.locationCard__link--whatsapp:hover {
  background: rgba(24, 135, 65, 0.08);
}

/* Responsive */
@media (max-width: 900px) {
  .locationCard {
    grid-template-columns: 1fr;
  }

  .locationCard__media {
    min-height: 320px;
  }

  .locationCard__img {
    min-height: 320px;
  }

  .locationCard__mediaActions {
    left: var(--space-4);
    right: var(--space-4);
    bottom: var(--space-4);
  }

  .locationCard__panel {
    padding: var(--space-6);
  }

  .locationCard__row {
    grid-template-columns: 1fr;
    gap: var(--space-2);
  }
}
.locationCard__mediaActions .btn {
  box-shadow: var(--shadow-sm);
}

/* ═══ components/booking-options.css ═══ */
/* ================================
   components/booking-options.css
   Selección de método de reserva
   ================================ */

.bookingOptions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-6);
}

/* Card base */
.bookingOptions__card {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  border: 1px solid var(--color-border-subtle);
  text-decoration: none;
  color: var(--color-text);
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    border-color var(--transition-fast);
}

@media (hover: hover) {
  .bookingOptions__card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--brand-400);
  }
}

/* Icono */
.bookingOptions__icon {
  font-size: 1.75rem;
  line-height: 1;
  margin-top: 0.2rem;
}

/* Texto */
.bookingOptions__title {
  margin: 0 0 var(--space-1);
  font-size: var(--font-size-lg);
  color: var(--color-heading);
}

.bookingOptions__text {
  margin: 0;
  color: var(--color-text-soft);
  font-size: var(--font-size-sm);
  line-height: var(--line-height-relaxed);
}

/* WhatsApp refuerzo semántico */
.bookingOptions__card--whatsapp {
  border-color: rgba(24, 135, 65, 0.25);
}

@media (hover: hover) {
  .bookingOptions__card--whatsapp:hover {
    border-color: var(--color-whatsapp);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .bookingOptions {
    grid-template-columns: 1fr;
  }

  .bookingOptions__card {
    align-items: center;
  }

  .bookingOptions__icon {
    font-size: 1.5rem;
  }
}
/* Redes en reservas — versión premium */
.booking-social{
  margin-top: 36px;
  text-align: center;
}

.booking-social__label{
  font-size: 0.95rem;
  color: var(--grey-600);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

/* Contenedor */
.booking-social__icons{
  display: flex;
  justify-content: center;
  gap: 18px;
}

/* Botones sociales */
.booking-social__icons a{
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;

  font-size: 1.35rem;
  color: var(--color-brand-dark);

  background: linear-gradient(
    145deg,
    #ffffff,
    #f1f5f9
  );

  border: 1px solid rgba(15,23,42,0.08);
  box-shadow:
    0 6px 16px rgba(15,23,42,0.08),
    inset 0 1px 0 rgba(255,255,255,.7);

  transition:
    transform .2s ease,
    box-shadow .2s ease,
    background .2s ease;
}

/* Hover elegante */
.booking-social__icons a:hover{
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 26px rgba(15,23,42,0.14);
  background: var(--color-brand-soft);
}

/* ═══ components/reviews.css ═══ */
/* ============================================================
   REVIEWS — reseñas de Google en HTML propio (src/partials/reviews-fallback.php)
   Mismo aspecto que el widget de Elfsight que lo sustituye al aceptar cookies.
   ============================================================ */

.gr {
  --gr-star: #F6B21B;
  --gr-blue: #1A73E8;
  --gr-card: #F3F5F7;
  --gr-gap: 24px;
}

.gr__title {
  text-align: center;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 clamp(20px, 3vw, 32px);
}

/* Cabecera: nota · estrellas · total · botón */
.gr__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 22px 32px;
  background: var(--gr-card);
  border-radius: var(--radius-xl);
  margin-bottom: var(--gr-gap);
}

.gr__score {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.gr__rating {
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-text);
}

.gr__stars {
  display: inline-flex;
  gap: 2px;
  color: var(--gr-star);
}

.gr__stars .gr-star {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.gr__count {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 1.05rem;
  color: var(--color-text);
  text-decoration: none;
}

.gr__count:hover span { text-decoration: underline; }

.gr-g {
  width: 20px;
  height: 20px;
  flex: none;
}

.gr__cta {
  display: inline-flex;
  align-items: center;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  background: var(--gr-blue);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
}

.gr__cta:hover { background: #1557B0; transform: translateY(-1px); }

/* Carrusel */
.gr__carousel {
  position: relative;
}

.gr__track {
  --gr-cols: 4;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - (var(--gr-cols) - 1) * var(--gr-gap)) / var(--gr-cols));
  column-gap: var(--gr-gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.gr__track::-webkit-scrollbar { display: none; }

.gr__card {
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 30px;
  background: var(--gr-card);
  border-radius: var(--radius-xl);
  min-height: 300px;
}

.gr__head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.gr__avatar {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.15rem;
}

.gr__who {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.gr__name {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 700;
  color: var(--color-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gr-verified {
  width: 15px;
  height: 15px;
  flex: none;
}

.gr__when {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.gr__card .gr__stars .gr-star {
  width: 22px;
  height: 22px;
}

.gr__text {
  margin: 0;
  color: var(--color-text);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
  overflow: hidden;
}

.gr__text.is-open {
  display: block;
  -webkit-line-clamp: unset;
}

.gr__more {
  align-self: flex-start;
  background: none;
  border: 0;
  padding: 0;
  color: var(--gr-blue);
  font: inherit;
  cursor: pointer;
}

.gr__more:hover { text-decoration: underline; }

.gr__source {
  margin-top: auto;
  padding-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--color-text-soft);
}

.gr__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  box-shadow: var(--shadow-md);
  color: var(--color-text);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gr__arrow svg { width: 22px; height: 22px; }
.gr__arrow:hover { transform: translateY(-50%) scale(1.06); box-shadow: var(--shadow-lg); }
.gr__arrow--prev { left: -21px; }
.gr__arrow--next { right: -21px; }

.gr__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  min-height: 8px;
}

.gr__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-border-strong);
  transition: transform 0.2s ease, background 0.2s ease;
}

.gr__dot.is-active {
  background: var(--color-text);
  transform: scale(1.3);
}

@media (max-width: 1100px) {
  .gr__track { --gr-cols: 3; }
}

@media (max-width: 820px) {
  .gr__track { --gr-cols: 2; }
  .gr__summary { justify-content: center; text-align: center; padding: 20px; }
  .gr__score { justify-content: center; }
}

@media (max-width: 560px) {
  .gr { --gr-gap: 14px; }
  .gr__track { --gr-cols: 1; }
  .gr__card { padding: 22px 20px; min-height: 0; }
  .gr__arrow { display: none; }
  .gr__cta { width: 100%; justify-content: center; }
}

/* ═══ components/faq.css ═══ */
/* ============================================================
   components/faq.css — Preguntas frecuentes (src/partials/faq.php)
   Acordeón sobrio: pregunta en negrita, línea fina, sin cajas.
   Solo usa tokens existentes (core/tokens.css).
   ============================================================ */

.faq__list {
  max-width: 820px;
  margin-inline: auto;
  border-top: 1px solid var(--color-border-subtle);
}

.faq__item {
  border-bottom: 1px solid var(--color-border-subtle);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-4) 0;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: var(--font-size-lg);
  line-height: 1.35;
  color: var(--color-text);
  transition: color 0.2s ease;
}

.faq__question::-webkit-details-marker { display: none; }

.faq__question:hover,
.faq__item[open] .faq__question {
  color: var(--color-brand-dark);
}

.faq__question:focus-visible {
  outline: 2px solid var(--color-brand);
  outline-offset: 4px;
  border-radius: var(--radius-xs);
}

.faq__icon {
  flex: none;
  width: 22px;
  height: 22px;
  color: var(--color-brand);
  transition: transform 0.25s ease;
}

.faq__item[open] .faq__icon {
  transform: rotate(180deg);
}

.faq__answer {
  padding: 0 0 var(--space-5);
  max-width: 70ch;
  color: var(--color-text-soft);
  line-height: var(--line-height-relaxed);
}

.faq__answer p { margin: 0; }
.faq__answer p + p { margin-top: var(--space-3); }

@media (max-width: 560px) {
  .faq__question {
    font-size: var(--font-size-md);
    padding: var(--space-3) 0;
  }
}
