﻿/* ========================================
   PERFORMANCE / A11Y BASE
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important;
    }
}
/* Anti-CLS: reserva espacios mientras carga el contenido */
.hero { min-height: 100vh; min-height: 100svh; background:#0a0a0a; }
.hero-video { width:100%; height:100%; object-fit: cover; }
.agenda-img { aspect-ratio: 1 / 1; background:#1a1a1a; overflow:hidden; }
.agenda-img img { width:100%; height:100%; object-fit: cover; display:block; }
.gallery-item { aspect-ratio: 4 / 3; background:#1a1a1a; }
.ubicacion-map iframe { width:100%; min-height: 380px; aspect-ratio: 4/3; border:0; }
img { content-visibility: auto; }
/* Foco visible accesible */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: 2px solid var(--color-secondary, #d4af37);
    outline-offset: 2px;
}

/* ========================================
   MOBILE ACTIONS BAR (Ver Carta + Reservar)
   ======================================== */
.mobile-actions {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 998;
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: rgba(15, 30, 56, .95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(212,175,55,.25);
    box-shadow: 0 -6px 20px rgba(0,0,0,.35);
    padding-bottom: env(safe-area-inset-bottom, 0);
}
.mobile-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 8px;
    color: #faf8f5;
    font-weight: 600;
    font-size: .95rem;
    text-decoration: none;
    min-height: 56px;
    transition: background .2s ease;
}
.mobile-action i { font-size: 1.15rem; }
.mobile-action--menu { background: rgba(0,0,0,.25); }
.mobile-action--reserva { background: var(--color-secondary, #d4af37); color:#0a0a0a; }
.mobile-action:hover, .mobile-action:focus-visible { filter: brightness(1.1); }
@media (max-width: 767px) {
    .mobile-actions { display: grid; }
    body { padding-bottom: 64px; } /* reserva espacio para no tapar contenido */
    /* Reposiciona el botón flotante WhatsApp encima de la barra */
    .floating-reserve-btn { bottom: 80px !important; right: 16px !important; }
}

/* ========================================
VARIABLES & RESET
   ======================================== */
:root {
    --color-primary: #1a2332;
    --color-secondary: #d4af37;
    --color-accent: #c49a3a;
    --color-dark: #0a0a0a;
    --color-gray: #1a1a1a;
    --color-light: #faf8f5;
    --color-beige: #f5e6d3;
    --color-white: #ffffff;
    
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Montserrat', sans-serif;
    
    --transition: all 0.3s ease;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 15px 50px rgba(0, 0, 0, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    background-color: var(--color-dark);
    color: var(--color-light);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ========================================
   CONTAINER & UTILITIES
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDelay {
    0%, 20% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDelay2 {
    0%, 40% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDelay3 {
    0%, 60% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scroll {
    0% {
        opacity: 0;
    }
    10% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease forwards;
}

.animate-fade-in-delay {
    animation: fadeInDelay 1.5s ease forwards;
}

.animate-fade-in-delay-2 {
    animation: fadeInDelay2 1.8s ease forwards;
}

.animate-fade-in-delay-3 {
    animation: fadeInDelay3 2s ease forwards;
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: rgba(15, 30, 56, 0.35);
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    background: rgba(15, 30, 56, 0.95);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--color-light);
}

.logo-image {
  width: auto;
  height: 60px; /* Altura base para desktop */
  max-width: 200px; /* Evita que crezca demasiado */
  object-fit: contain; /* Mantiene las proporciones */
  display: block;
}

/* Para tablets */
@media (max-width: 768px) {
  .logo-image {
    height: 50px;
    max-width: 180px;
  }
}

/* Para móviles */
@media (max-width: 480px) {
  .logo-image {
    height: 40px;
    max-width: 150px;
  }
}

.logo-subtitle {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--color-secondary);
    text-transform: uppercase;
    margin-top: -5px;
}

.nav-menu {
    display: none;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(15, 30, 56, 0.98);
    padding: 2rem;
    gap: 1.5rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
}

.nav-link:hover {
    color: var(--color-secondary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-secondary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-nav-reserva {
    background: var(--color-secondary);
    color: var(--color-dark);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
}

.btn-nav-reserva:hover {
    background: var(--color-accent);
    color: var(--color-dark);
    transform: translateY(-2px);
}

.btn-nav-reserva::after {
    display: none;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-light);
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }
    
    .nav-menu {
        display: flex;
        flex-direction: row;
        position: static;
        background: none;
        padding: 0;
    }
}

/* ========================================
   FLOATING RESERVE BUTTON (WHATSAPP)
   ======================================== */
.floating-reserve-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--color-secondary); /* Mantiene tu identidad de marca */
    color: var(--color-dark);
    padding: 14px 28px; /* Ligero ajuste para mayor presencia */
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px; /* Un poco más de aire entre icono y texto */
    font-weight: 600;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(100px);
    text-decoration: none; /* Asegura que no haya subrayados */
}

/* Ajuste específico para el icono de WhatsApp */
.floating-reserve-btn i {
    font-size: 1.5rem; /* Icono más grande para destacar */
    margin-bottom: 2px; /* Alineación óptica fina */
}

/* Ajuste del texto para balancear */
.floating-reserve-btn span {
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.floating-reserve-btn.show {
    opacity: 1;
    transform: translateY(0);
}

.floating-reserve-btn:hover {
    background: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
}

/* RESPONSIVE: Mantiene el botón redondo solo con icono en móviles */
@media (max-width: 767px) {
    .floating-reserve-btn span {
        display: none;
    }
    
    .floating-reserve-btn {
        padding: 15px; /* Ajustado para que sea un círculo perfecto con el nuevo tamaño de fuente */
        width: 60px;   /* Forzamos ancho y alto iguales */
        height: 60px;
        border-radius: 50%;
        justify-content: center;
    }

    .floating-reserve-btn i {
        font-size: 1.8rem; /* Aún más grande en móvil para facilitar el toque */
        margin: 0;
    }
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(26, 35, 50, 0.75) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 700;
    letter-spacing: 15px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-family: var(--font-primary);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--color-secondary);
    letter-spacing: 8px;
    margin-bottom: 20px;
}

.hero-tagline {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--color-secondary);
    color: var(--color-dark);
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    border-radius: 50px;
    text-transform: uppercase;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--color-light);
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    border: 2px solid var(--color-secondary);
    border-radius: 50px;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--color-secondary);
    color: var(--color-dark);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--color-secondary);
    border-radius: 60px;
    position: relative;
    display: flex;
    justify-content: center;
}

.wheel {
    height: 10px;
    width: 3px;
    background: var(--color-secondary);
    border-radius: 50%;
    margin-top: 8px;
    animation: scroll 2s ease-out infinite;
}

/* ========================================
   SECTION HEADERS
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 20px;
}

.title-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-secondary), transparent);
    margin: 20px auto;
}

.section-description {
    font-size: 1.1rem;
    color: rgba(250, 248, 245, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   EXPERIENCIA SECTION
   ======================================== */
.experiencia {
    padding: 40px 0;
    background: var(--color-gray);
    position: relative; 
    z-index: 10; 
}

.experiencia-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .experiencia-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .experiencia-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.experiencia-card {
    background: rgba(26, 35, 50, 0.3);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.experiencia-card:hover {
    transform: translateY(-10px);
    background: rgba(26, 35, 50, 0.5);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-hover);
}

.card-icon {
    font-size: 3rem;
    color: var(--color-secondary);
    margin-bottom: 20px;
}

.experiencia-card h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.experiencia-card p {
    color: rgba(250, 248, 245, 0.8);
    line-height: 1.8;
}

/* ========================================
   GALLERY SECTION - ACTUALIZADA
   ======================================== */
.gallery-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 100%);
    padding-bottom: 50px;
}

/* Grilla responsive: 3 col desktop, 2 col tablet, 1 col móvil */
.gallery-photos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-bottom: 50px;
    margin: 0 0 50px 0;
}

@media (max-width: 1024px) {
    .gallery-photos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .gallery-photos-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
    padding: 0 20px;
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        gap: 18px;
        padding: 0 16px;
    }
}

@media (max-width: 640px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 12px;
    }
}

.gallery-item {
    position: relative;
    aspect-ratio: 4 / 3;
    min-height: 300px;
    border-radius: 20px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.6) 0%, rgba(26, 35, 50, 0.4) 100%);
    transition: var(--transition);
}

.gallery-item:hover::before {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.7) 0%, rgba(196, 154, 58, 0.7) 100%);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    z-index: 1;
    text-align: center;
    transform: translateY(20px);
    opacity: 0.9;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

.gallery-overlay h3 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    color: var(--color-light);
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.gallery-overlay p {
    font-size: 1rem;
    color: rgba(250, 248, 245, 0.9);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Call to Action para Galería */
.gallery-cta {
    text-align: center;
    padding-top: 30px;
}

.gallery-cta .btn {
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.gallery-cta .btn:hover {
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
}

@media (max-width: 768px) {
    .gallery-item {
        min-height: 240px;
    }
}

@media (max-width: 640px) {
    .gallery-item {
        min-height: 220px;
    }
    
    .gallery-overlay h3 {
        font-size: 1.4rem;
    }
}


/* ========================================
   SERVICIOS SECTION
   ======================================== */
.servicios {
    padding: 100px 0;
    background: var(--color-dark);
}

.servicios-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

@media (min-width: 768px) {
    .servicios-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (min-width: 1024px) {
    .servicios-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.servicio-card {
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.2), rgba(26, 26, 26, 0.3));
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.0);
}

.servicio-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.4), rgba(26, 26, 26, 0.5));
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.servicio-icon {
    font-size: 2.5rem;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.servicio-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.servicio-card p {
    font-size: 0.9rem;
    color: rgba(250, 248, 245, 0.7);
}

/* ========================================
   MENU CTA SECTION
   ======================================== */
.menu-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-gray) 100%);
}

.menu-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.menu-cta-icon {
    font-size: 4rem;
    color: var(--color-secondary);
    margin-bottom: 30px;
}

.menu-cta-content h2 {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 20px;
}

.menu-cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: rgba(250, 248, 245, 0.8);
}

/* ========================================
   MODAL
   ======================================== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    overflow-y: auto;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: linear-gradient(135deg, var(--color-primary), var(--color-gray));
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 40px 30px 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.5s ease;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.8rem;
    color: var(--color-light);
    cursor: pointer;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.modal-close:hover {
    color: var(--color-secondary);
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-header h2 {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    margin-bottom: 8px;
    color: var(--color-light);
}

.modal-header p {
    color: var(--color-secondary);
    font-size: 1rem;
}

.modal-body {
    width: 100%;
}

.menu-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

/* QR Container - Centrado y Armonioso */
.qr-container {
    text-align: center;
    padding: 20px 15px;
    width: 100%;
}

.qr-code {
    max-width: 320px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.25);
    border: 3px solid var(--color-secondary);
    background: white;
    padding: 12px;
    transition: var(--transition);
    display: block;
    margin: 0 auto 20px;
}

.qr-code:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

.qr-text {
    margin: 0 0 20px 0;
    font-size: 1.1rem;
    color: var(--color-light);
    font-weight: 500;
    letter-spacing: 1px;
    font-family: var(--font-secondary);
}

/* Botón Ir al Menú */
.btn-menu {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--color-secondary);
    color: var(--color-dark);
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
    margin-top: 5px;
}

.btn-menu:hover {
    background: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.btn-menu i {
    font-size: 1.1rem;
    transition: var(--transition);
}

.btn-menu:hover i {
    transform: translateX(5px);
}

/* Reutiliza .menu-footer del bloque DYNAMIC MENU STYLES */

/* Estilos anteriores mantenidos por compatibilidad */
.menu-categories {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .menu-categories {
        grid-template-columns: repeat(2, 1fr);
    }
}

.menu-category {
    background: rgba(26, 35, 50, 0.3);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
}

.menu-category:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: scale(1.05);
}

.menu-category i {
    font-size: 2.5rem;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.menu-category h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.menu-category p {
    color: rgba(250, 248, 245, 0.7);
}

.menu-qr-placeholder {
    text-align: center;
    padding: 40px;
    background: rgba(10, 10, 10, 0.3);
    border-radius: 15px;
    border: 2px dashed var(--color-secondary);
}

.menu-qr-placeholder i {
    font-size: 4rem;
    color: var(--color-secondary);
    margin-bottom: 20px;
}

.menu-qr-placeholder p {
    font-size: 1.1rem;
    color: rgba(250, 248, 245, 0.8);
}

/* Responsive para QR */
@media (max-width: 768px) {
    .modal-content {
        padding: 35px 25px 25px;
        max-width: 95%;
    }
    
    .modal-header h2 {
        font-size: 1.9rem;
    }
    
    .qr-container {
        padding: 15px 10px;
    }
    
    .qr-code {
        max-width: 280px;
        margin-bottom: 18px;
    }
    
    .qr-text {
        font-size: 1rem;
        margin-bottom: 18px;
    }
    
    .btn-menu {
        padding: 12px 28px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .modal-content {
        padding: 30px 20px 20px;
    }
    
    .modal-header h2 {
        font-size: 1.7rem;
    }
    
    .qr-code {
        max-width: 240px;
        margin-bottom: 15px;
    }
    
    .qr-text {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
    
    .btn-menu {
        padding: 11px 24px;
        font-size: 0.9rem;
    }
}

/* ========================================
   UBICACION SECTION
   ======================================== */
.ubicacion {
    padding: 100px 0;
    background: var(--color-gray);
}

.ubicacion-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

@media (min-width: 1024px) {
    .ubicacion-content {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

.ubicacion-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    background: rgba(26, 35, 50, 0.3);
    padding: 30px;
    border-radius: 15px;
    display: flex;
    gap: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
}

.info-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateX(10px);
}

.info-icon {
    font-size: 2rem;
    color: var(--color-secondary);
    min-width: 50px;
}

.info-text h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--color-secondary);
}

.info-text p {
    margin-bottom: 5px;
    color: rgba(250, 248, 245, 0.9);
}

.info-text a {
    color: var(--color-secondary);
    font-weight: 600;
}

.info-text a:hover {
    text-decoration: underline;
}

.horario-note {
    font-size: 0.9rem;
    color: var(--color-secondary);
    margin-top: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--color-secondary);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--color-secondary);
    color: var(--color-dark);
    transform: translateY(-3px);
}

.ubicacion-map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 450px;
}

.ubicacion-map iframe {
    filter: grayscale(30%) contrast(1.1);
}

/* ========================================
   RESERVAS SECTION
   ======================================== */
.reservas {
    min-height: 100vh;              /* ocupa toda la altura visible */
    padding: 100px 0;
    position: relative;

    background-image: url('imagenes/formu.webp');
    background-size: cover;         /* rellena ancho y alto */
    background-position: top center;/* cambia el foco del recorte */
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.reservas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

.reservas .container {
    position: relative;
    z-index: 2;
}

.reserva-form {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(26, 35, 50, 70%);
    padding: 50px 40px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(10, 10, 10, 0.5);
    border: 2px solid rgba(212, 175, 55, 0.2);
    color: var(--color-light);
    padding: 15px;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: rgba(212, 175, 55, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-secondary);
    background: rgba(10, 10, 10, 0.7);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

/* Select custom: flecha dorada + eliminar default del navegador */
.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23d4af37' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
    padding-right: 40px;
    cursor: pointer;
}

.form-group select option {
    background: var(--color-primary);
    color: var(--color-light);
    padding: 10px;
}

/* Date picker custom: icono y color scheme oscuro */
.form-group input[type="date"] {
    color-scheme: dark;
    cursor: pointer;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(78%) sepia(50%) saturate(500%) hue-rotate(10deg);
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

/* Placeholder consistente */
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(250, 248, 245, 0.35);
    font-style: italic;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    margin-top: 20px;
    padding: 18px;
    font-size: 1.1rem;
    justify-content: center;
}

.form-success {
    display: none;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    padding: 60px 40px;
    background: rgba(26, 35, 50, 0.3);
    border-radius: 20px;
    border: 2px solid var(--color-secondary);
}

.form-success.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.success-icon {
    font-size: 5rem;
    color: var(--color-secondary);
    margin-bottom: 20px;
}

.form-success h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    margin-bottom: 15px;
}

.form-success p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: rgba(250, 248, 245, 0.8);
}
/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--color-primary);
    padding: 60px 0 30px;
    border-top: 2px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-brand {
    text-align: center;
}

@media (min-width: 768px) {
    .footer-brand {
        text-align: left;
    }
}

.footer-logo-img {
    width: auto;
    height: 80px;
    max-width: 250px;
    object-fit: contain;
    margin-bottom: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .footer-logo-img {
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 480px) {
    .footer-logo-img {
        height: 60px;
        max-width: 200px;
    }
}

.footer-description {
    color: rgba(250, 248, 245, 0.7);
    font-style: italic;
}

.footer-info,
.footer-hours {
    text-align: center;
}

@media (min-width: 768px) {
    .footer-info,
    .footer-hours {
        text-align: left;
    }
}

.footer-info h4,
.footer-hours h4 {
    font-size: 1.2rem;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.footer-info p,
.footer-hours p {
    margin-bottom: 8px;
    color: rgba(250, 248, 245, 0.8);
}

.footer-info i {
    margin-right: 10px;
    color: var(--color-secondary);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: center;
}

@media (min-width: 768px) {
    .footer-social {
        justify-content: flex-start;
    }
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--color-secondary);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--color-secondary);
    transition: var(--transition);
    text-decoration: none;
}

.footer-social a i {
    line-height: 0;
    vertical-align: middle;
    margin:auto
}

.footer-social a:hover {
    background: var(--color-secondary);
    color: var(--color-dark);
    transform: translateY(-3px);
}

.footer-social a:hover i{
    color: var(--color-dark);
    transform: scale(1.2);
    font-weight: 900;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-bottom p {
    color: rgba(250, 248, 245, 0.6);
    margin-bottom: 5px;
}

.footer-premium {
    color: var(--color-secondary);
    font-style: italic;
    font-size: 0.9rem;
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */
@media (max-width: 767px) {
    .section-header {
        margin-bottom: 40px;
    }
    
    .experiencia,
    .servicios,
    .menu-cta,
    .ubicacion,
    .reservas {
        padding: 60px 0;
    }
    
    .reserva-form {
        padding: 30px 25px;
    }

    /* Parallax no funciona en iOS Safari */
    .reservas {
        background-attachment: scroll;
    }
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent);
}

/* Aca empieza div_pidgan barra inferior */

.div_pidgan{
    display: flex;
    align-items: center;
    background-color: var(--color-primario);
    width: 100%;
    min-height: 5vh;
    justify-content: center; /* Aquí */
}

.inferior1{
    display: flex;
    align-items: center;
}

.inferior1 p{
    color: rgba(250, 248, 245, 0.6);
    padding: 0px 5px;
    margin-bottom: 5px;
}

.inferior1 a{
    color: var(--color-secondary);
    font-style: italic;
    font-size: 0.9rem;
    padding: 0px 5px;
}

.miniatura_pidgan{
    width: 60px;
    margin: 5px 5px 5px 0px;
    padding-left: 20px;
}

@media screen and (max-width: 650px) {
    .div_pidgan{
        flex-direction: column;
        padding: 5px 0px;
    }

    .inferior1{
        flex-direction: column;
        align-items: center;
    }

    .miniatura_pidgan{
        width: 45px;
        margin: 0px auto;
        padding: 0px;
    }

    .inferior1 a{
        font-size: small;
    }

    .inferior1 p{
        font-size: smaller;
    }

}

/* ========================================
   3-COLUMN GALLERY GRID (INDEX)
   ======================================== */
.gallery-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 992px) {
    .gallery-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-grid-3 {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   3-COLUMN SERVICIOS GRID
   ======================================== */
.servicios-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 992px) {
    .servicios-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .servicios-grid-3 {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   FORM CHECKBOXES & NOTE
   ======================================== */
.form-checkboxes {
    margin-bottom: 10px;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 500;
    color: var(--color-light);
    font-size: 1rem;
    user-select: none;
}

/* Checkbox custom: ocultar nativo, usar span visual */
.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-custom {
    display: inline-block;
    width: 22px;
    height: 22px;
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 5px;
    background: rgba(10, 10, 10, 0.5);
    transition: var(--transition);
    position: relative;
    flex-shrink: 0;
}

.checkbox-custom::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 7px;
    width: 6px;
    height: 11px;
    border: solid var(--color-dark);
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg) scale(0);
    transition: transform 0.2s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    transform: rotate(45deg) scale(1);
}

.checkbox-label input[type="checkbox"]:focus-visible + .checkbox-custom {
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
}

.checkbox-label:hover .checkbox-custom {
    border-color: var(--color-secondary);
}

.form-note {
    text-align: center;
    color: var(--color-secondary);
    font-size: 0.9rem;
    font-style: italic;
    margin: 10px 0 5px;
}

/* ========================================
   GALLERY PAGE - HERO
   ======================================== */
.gallery-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.gallery-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: url('imagenes/ambiente.webp') center/cover; */
    opacity: 0.15;
    z-index: 0;
}

.gallery-hero-content {
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.gallery-hero h1 {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--color-light);
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.gallery-hero p {
    font-size: 1.3rem;
    color: rgba(250, 248, 245, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.back-to-home {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(212, 175, 55, 0.2);
    color: var(--color-secondary);
    padding: 12px 20px;
    border-radius: 30px;
    border: 2px solid var(--color-secondary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: var(--transition);
    z-index: 2;
}

.back-to-home:hover {
    background: var(--color-secondary);
    color: var(--color-dark);
    transform: translateX(-5px);
}

/* ========================================
   GALLERY PAGE - FILTERS
   ======================================== */
.gallery-filters-section {
    padding: 40px 0 20px;
    background: var(--color-dark);
    position: sticky;
    top: 80px;
    z-index: 100;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.filter-btn {
    background: transparent;
    color: rgba(250, 248, 245, 0.6);
    border: 2px solid rgba(212, 175, 55, 0.3);
    padding: 12px 30px;
    border-radius: 30px;
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--color-secondary);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: -1;
}

.filter-btn:hover {
    color: var(--color-light);
    border-color: var(--color-secondary);
}

.filter-btn:hover::before {
    width: 300px;
    height: 300px;
}

.filter-btn.active {
    background: var(--color-secondary);
    color: var(--color-dark);
    border-color: var(--color-secondary);
    font-weight: 700;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.filter-btn.active::before {
    width: 300px;
    height: 300px;
}

.gallery-counter {
    text-align: center;
    padding: 20px;
    color: rgba(250, 248, 245, 0.6);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .gallery-filters {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 10px 20px;
        -webkit-overflow-scrolling: touch;
        gap: 10px;
        scrollbar-width: none;
    }

    .gallery-filters::-webkit-scrollbar {
        display: none;
    }

    .filter-btn {
        flex: 0 0 auto;
        white-space: nowrap;
    }
}

/* ========================================
   GALLERY PAGE - PHOTOS GRID
   ======================================== */
.gallery-photos-section {
    padding: 60px 0 100px;
    background: linear-gradient(180deg, var(--color-dark) 0%, var(--color-primary) 100%);
    min-height: 70vh;
}

/* Proporciones consistentes: 4:3 con object-fit para imágenes uniformes */
.gallery-photo-item {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-photo-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-photo-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.4) 0%, rgba(26, 35, 50, 0.6) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.gallery-photo-item:hover::before {
    opacity: 1;
}

.gallery-photo-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.gallery-photo-item:hover img {
    transform: scale(1.1);
}

.gallery-photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    transform: translateY(100%);
    transition: transform 0.4s ease;
    z-index: 2;
}

.gallery-photo-item:hover .gallery-photo-overlay {
    transform: translateY(0);
}

.gallery-photo-overlay h3 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    color: var(--color-light);
    margin-bottom: 5px;
}

.gallery-photo-overlay p {
    font-size: 0.85rem;
    color: rgba(250, 248, 245, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 60px;
    height: 60px;
    background: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-dark);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.gallery-photo-item:hover .zoom-icon {
    transform: translate(-50%, -50%) scale(1);
}

/* ========================================
   GALLERY PAGE - LIGHTBOX
   ======================================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.3);
    transition: opacity 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--color-secondary);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--color-dark);
    cursor: pointer;
    transition: var(--transition);
    z-index: 10000;
}

.lightbox-close:hover {
    transform: rotate(90deg) scale(1.1);
    background: var(--color-accent);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-dark);
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-nav:hover {
    background: var(--color-secondary);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

@media (max-width: 768px) {
    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
    }
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
}

/* ========================================
   GALLERY PAGE - UTILITIES
   ======================================== */
.no-images-message {
    text-align: center;
    padding: 100px 20px;
    color: rgba(250, 248, 245, 0.6);
}

.no-images-message i {
    font-size: 4rem;
    color: var(--color-secondary);
    margin-bottom: 20px;
}

.no-images-message h3 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    color: var(--color-light);
    margin-bottom: 10px;
}

.gallery-loader {
    display: none;
    text-align: center;
    padding: 50px;
}

.gallery-loader.active {
    display: block;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(212, 175, 55, 0.2);
    border-top-color: var(--color-secondary);
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ========================================
   DYNAMIC MENU STYLES
   ======================================== */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 15px;
}

.menu-tab-btn {
    background: transparent;
    color: rgba(250, 248, 245, 0.6);
    border: 1px solid transparent;
    padding: 8px 20px;
    border-radius: 20px;
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.menu-tab-btn:hover {
    color: var(--color-secondary);
    border-color: rgba(212, 175, 55, 0.3);
}

.menu-tab-btn.active {
    background: var(--color-secondary);
    color: var(--color-dark);
    font-weight: 600;
}

/* Menu Grid */
.menu-items-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    animation: fadeIn 0.4s ease;
}

@media (min-width: 768px) {
    .menu-items-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columnas en PC */
        column-gap: 60px;
    }
}

.menu-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 5px;
    border-bottom: 1px dashed rgba(212, 175, 55, 0.3);
    padding-bottom: 5px;
}

.menu-item-title {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    color: var(--color-secondary);
    font-weight: 600;
}

.menu-item-price {
    font-family: var(--font-secondary);
    font-weight: 600;
    color: var(--color-light);
    font-size: 1rem;
}

.menu-item-desc {
    font-size: 0.85rem;
    color: rgba(250, 248, 245, 0.7);
    font-style: italic;
    line-height: 1.4;
}

/* Badges */
.badge {
    font-size: 0.6rem;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 8px;
    text-transform: uppercase;
    vertical-align: middle;
}

.badge-new { background: #d4af37; color: #000; }
.badge-sig { background: #c49a3a; color: #fff; }

.menu-footer {
    text-align: center;
    padding-top: 25px;
    margin-top: 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    font-size: 0.8rem;
    color: rgba(250, 248, 245, 0.4);
}

.menu-footer p {
    font-size: 0.85rem;
    color: rgba(250, 248, 245, 0.5);
    font-style: italic;
    margin: 0;
}


/* ========================================
   AGENDA / PARRILLA SEMANAL
   ======================================== */
.agenda-section {
    padding: 80px 0;
    background-color: var(--color-dark);
    background-image: radial-gradient(circle at 1px 1px, rgba(212, 175, 55, 0.05) 1px, transparent 0);
    background-size: 40px 40px;
}

/* --- Grilla responsive: 1 → 3 → 5 columnas --- */
.agenda-grid {
    display: grid;
    grid-template-columns: 1fr;             /* Mobile: 1 col */
    gap: 20px;
    align-items: stretch;
}

@media (min-width: 600px) {
    .agenda-grid {
        grid-template-columns: repeat(2, 1fr); /* Móvil grande: 2 col */
    }
}

@media (min-width: 900px) {
    .agenda-grid {
        grid-template-columns: repeat(3, 1fr); /* Tablet: 3 col */
        gap: 24px;
    }
}

@media (min-width: 1200px) {
    .agenda-grid {
        grid-template-columns: repeat(5, 1fr); /* Desktop: 5 col */
        gap: 20px;
    }
}

/* --- Tarjeta base --- */
.agenda-card {
    background: linear-gradient(145deg, #121212, #1a1a1a);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
}

.agenda-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-secondary);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.18);
}

/* --- Contenedor de imagen: aspect-ratio cuadrado --- */
.agenda-img {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1 / 1; /* Mantiene proporciones siempre */
    background: #0d0d0d;
}

.agenda-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
    display: block;
}

.agenda-card:hover .agenda-img img {
    transform: scale(1.08);
}

/* --- Placeholder para días sin imagen --- */
.agenda-img--placeholder {
    background: linear-gradient(135deg, #151515 0%, #1e1e1e 100%);
    border-bottom: 1px dashed rgba(212, 175, 55, 0.25);
}

.agenda-placeholder-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(212, 175, 55, 0.4);
}

.agenda-placeholder-inner i {
    font-size: 2.5rem;
}

.agenda-placeholder-inner span {
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: var(--font-secondary);
    color: rgba(212, 175, 55, 0.5);
}

/* --- Badge de día --- */
.agenda-day {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--color-secondary);
    color: var(--color-dark);
    font-family: var(--font-primary);
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 0.8rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    z-index: 2;
    line-height: 1;
}

/* --- Contenido textual de la tarjeta --- */
.agenda-content {
    padding: 18px 16px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.agenda-content h3 {
    font-family: var(--font-primary);
    color: var(--color-secondary);
    font-size: 1.1rem;
    line-height: 1.3;
    margin: 0;
}

.agenda-content p {
    font-size: 0.82rem;
    color: rgba(250, 248, 245, 0.7);
    line-height: 1.5;
    margin: 0;
}