.elementor-1747 .elementor-element.elementor-element-a3b236e{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS *//* ==========================================================
   VARIABLES DE COLOR CORPORATIVO
   ========================================================== */

:root {
    --color-bg: #f5f0e9;
    --color-card: #ffffff;
    --color-text: #2b2b2b;
    --color-title: #1a1a1a;
    --color-accent: #b1976b; /* Dorado-beige */
    --color-border: #e1d7c8;
    --shadow: rgba(0,0,0,0.06);
    --radius: 16px;
    --transition: 0.3s ease;
}

/* ==========================================================
   HEADER DE LA PÁGINA
   ========================================================== */
   
.header-line {
    width: 90px;
    height: 3px;
    margin: 16px auto 20px;
    background: var(--color-accent);
    border-radius: 10px;
}

.subheading {
    font-size: 17px;
    color: var(--color-accent);
    margin-top: 8px;
    font-weight: 600;
}

.reservas-header {
    text-align: center;
    padding: 50px 20px 20px;
}

.reservas-header h1 {
    font-size: 38px;
    font-weight: 600;
    color: var(--color-title);
    margin-bottom: 10px;
}

.reservas-header p {
    font-size: 18px;
    color: var(--color-text);
    max-width: 700px;
    margin: auto;
}


/* ==========================================================
   CONTENEDOR DE TARJETAS
   ========================================================== */

.venues-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

/* Móvil: 1 columna */
@media (max-width: 900px) {
    .venues-wrapper {
        grid-template-columns: 1fr;
    }
}


/* ==========================================================
   TARJETA RESTAURANTE
   ========================================================== */

.venue-card {
    background: var(--color-card);
    border-radius: var(--radius);
    box-shadow: 0 4px 16px var(--shadow);
    border: 1px solid var(--color-border);
    overflow: hidden;
    transition: transform 0.25s ease;
}

.venue-card:hover {
    transform: translateY(-4px);
}

/* Imagen más razonable */
.venue-image {
    width: 100%;
    aspect-ratio: 1/1;
    background-size: cover;
    background-position: center;
}


.venue-content {
    padding: 24px 26px 30px;
}

.venue-content h2 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--color-title);
}


/* ==========================================================
   DESCRIPCIÓN
   ========================================================== */

.venue-desc {
    font-size: 15px;
    color: var(--color-text);
    margin-bottom: 18px;
    line-height: 1.55;
}


/* ==========================================================
   DETALLES
   ========================================================== */

.venue-details h3 {
    font-size: 17px;
    margin-top: 16px;
    margin-bottom: 6px;
    color: var(--color-title);
}

.venue-details p,
.venue-details li {
    font-size: 14.5px;
    color: var(--color-text);
    line-height: 1.5;
}

.venue-details ul {
    padding-left: 18px;
}


/* ==========================================================
   COLLAPSE (MÓVIL / TABLET)
   ========================================================== */

.venue-more {
    overflow: hidden;
    transition: max-height 0.35s ease;
}

/* Botón "Mostrar información" */
.btn-toggle-more {
    background: none;
    border: none;
    color: var(--color-accent);
    font-size: 15.5px;
    font-weight: 600;
    cursor: pointer;
    padding: 6px 0;
    display: none; /* Oculto en desktop */
    transition: color 0.2s ease;
}

.btn-toggle-more:hover {
    color: #8d744f; /* Un dorado más oscuro, no rojo */
}


/* Mostrar botón solo en móvil/tablet */
@media (max-width: 1024px) {
    .btn-toggle-more {
        display: inline-block;
    }
}


/* ==========================================================
   BOTONES MENU + RESERVAR
   ========================================================== */

.venue-buttons {
    margin-top: 22px;
    display: flex;
    gap: 12px;
}

.btn-menu,
.btn-reservar {
    flex: 1;
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

/* Botón PDF */
.btn-menu {
    background: #ffffff;
    border: 1px solid var(--color-border);
    color: var(--color-title);
}

.btn-menu:hover {
    background: var(--color-bg);
}

/* Botón Reservar */
.btn-reservar {
    background: var(--color-accent);
    color: #ffffff;
    border: none;
}

.btn-reservar:hover {
    background: #9c8357;
}


/* ==========================================================
   POPUP
   ========================================================== */

.popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(3px);
    justify-content: center;
    align-items: center;
    padding: 20px;
    z-index: 999999;
}

.popup-box {
    background: #ffffff;
    padding: 34px;
    max-width: 440px;
    width: 100%;
    border-radius: var(--radius);
    position: relative;
    box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 12px;
    cursor: pointer;
    font-size: 22px;
    color: var(--color-title);
}


/* ==========================================================
   POPUP FORM
   ========================================================== */

#formReserva label {
    display: block;
    margin-top: 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-title);
}

#formReserva input,
#formReserva select,
#formReserva textarea {
    width: 100%;
    padding: 10px 12px;
    margin-top: 6px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: #faf9f7;
    font-size: 15px;
}

.btn-enviar {
    margin-top: 22px;
    padding: 12px;
    background: var(--color-accent);
    border: none;
    color: #fff;
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
}

.btn-enviar:hover {
    background: #8e744d;
}

/* ================================
   POPUP MEJORADO CON GRID
   ================================ */

.popup-box {
    max-height: 90vh;
    overflow-y: auto;
}

/* Filas de dos columnas */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 16px;
}

/* En móvil → una columna */
@media (max-width: 480px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.popup-box h2 {
    margin-bottom: 12px;
}

/* Ajustes para inputs dentro de las dos columnas */
.form-row label {
    margin-top: 0 !important;
}

textarea {
    min-height: 80px;
}

/* =========================================================
   MINI GALLERY – VERSIÓN CONSISTENTE Y LIMPIA
========================================================= */

.venue-gallery {
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

/* Cada celda */
.venue-gallery div {
    width: 100%;
    height: 150px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

/* Imagen */
.venue-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;   /* 🔥 asegura esquinas coherentes */
    transition: transform 0.35s ease, filter 0.35s ease;
    filter: brightness(0.92);
}

/* Hover elegante igual para todas */
.venue-gallery div:hover img {
    transform: scale(1.05);
    filter: brightness(1);
}

/* Móvil */
@media (max-width: 580px) {
    .venue-gallery {
        grid-template-columns: 1fr;
    }
    .venue-gallery div {
        height: 180px;
    }
}


/* ==========================================
   FIX 1 — Cada tarjeta independiente
========================================== */
.venue-card {
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    background: var(--color-card);
    overflow: hidden;
    align-self: start;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* HOVER LIMPIO */
.venue-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* ==========================================
   FIX 2 — No empujar tarjetas al expandir
========================================== */
.venue-more {
    overflow: hidden;
    transition: max-height 0.35s ease;
    will-change: max-height;
    margin-top: 12px;
    position: relative;
    z-index: 1;
}

/* ==========================================
   FIX 3 — Evitar saltos verticales
========================================== */
.venue-content {
    padding-bottom: 28px;
    position: relative;
    z-index: 2;
}


/* ==========================
   LIGHTBOX – IMAGE PREVIEW
========================== */

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    cursor: zoom-out;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 14px;
    box-shadow: 0 0 28px rgba(0,0,0,0.5);
    animation: fadeIn 0.25s ease;
}

/* Animación suave */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.94); }
    to   { opacity: 1; transform: scale(1); }
}/* End custom CSS */