/* ==========================================================================
   BRAZZEIRO - ESTILOS ESPECÍFICOS DE LA PÁGINA MENÚ
   ========================================================================== */

/* 1. Hero del Menú */
.hero-menu {
    height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.titulo-ritual {
    font-family: var(--font-titles);
    color: var(--gold);
    font-size: clamp(3rem, 10vw, 8rem);
    line-height: 0.9;
    margin-bottom: 20px;
}

.subtitulo-autor {
    font-family: var(--font-body);
    font-style: italic;
    font-weight: 300;
    color: var(--white);
    font-size: 1.2rem;
    letter-spacing: 2px;
}

/* 2. Sección Platillos Top (Blanco) */
.top-platillos-menu {
    background: var(--white);
    padding: 100px 5%;
    color: var(--black);
}

.titulo-seccion-oro {
    font-family: var(--font-titles);
    color: var(--gold);
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.grid-magazine {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.card-top img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.card-top:hover img {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.card-info h4 {
    font-family: var(--font-body);
    font-weight: 900;
    margin-top: 20px;
    letter-spacing: 1px;
}

.tag-fuego {
    background: var(--red-meat);
    color: var(--white);
    font-size: 0.6rem;
    padding: 3px 8px;
    border-radius: 2px;
    margin-left: 10px;
    vertical-align: middle;
}

/* 3. Listado de Menú (Negro) */
.menu-listado-negro {
    background: var(--black);
    padding: 100px 5%;
}

.menu-grid-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 100px;
    margin-top: 60px;
}

.menu-item {
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 20px;
}

.item-main {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
}

.item-name {
    font-family: var(--font-body);
    color: var(--gold);
    font-weight: 700;
    font-size: 1.2rem;
}

.item-price {
    font-family: var(--font-titles);
    color: var(--red-meat);
    font-size: 1.2rem;
}

.item-desc {
    color: #888;
    font-size: 0.9rem;
    font-weight: 300;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-grid-items { grid-template-columns: 1fr; }
    .hero-menu { height: 60vh; }
    .titulo-ritual { font-size: 4rem; }
}

/* ==========================================================================
   BRAZZEIRO - REDISEÑO EDITORIAL DEL MENÚ (CORTES Y PLATOS)
   ========================================================================== */

.menu-listado-negro {
    padding: 120px 5%;
    background-color: var(--black);
}

/* Título de la sección y subtítulo curvilíneo */
.listado-header {
    text-align: center;
    margin-bottom: 80px;
}

.listado-header h2 {
    font-family: var(--font-titles);
    color: var(--gold);
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 10px;
}

.listado-header .subtitulo-autor {
    font-family: var(--font-body);
    font-style: italic;
    font-weight: 300;
    color: var(--white);
    font-size: 1.2rem;
    letter-spacing: 2px;
}

/* Grid del Menú: 2 columnas en PC, 1 en móvil */
.menu-grid-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px 100px; /* Espacio generoso entre columnas */
    max-width: 1400px;
    margin: 0 auto;
}

/* Cada Item del Menú */
.menu-item {
    border-bottom: 1px solid rgba(212, 175, 55, 0.15); /* Línea dorada muy sutil */
    padding-bottom: 25px;
    transition: all 0.4s ease;
}

.menu-item:hover {
    border-bottom: 1px solid var(--red-meat); /* Cambia a rojo al pasar el mouse */
}

/* Contenedor Nombre + Precio */
.item-main {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 12px;
}

.item-name {
    font-family: var(--font-titles); /* Dela Gothic para el nombre del plato */
    color: var(--white);
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.item-price {
    font-family: var(--font-titles);
    color: var(--red-meat); /* Precio en Rojo Carne */
    font-size: 1.2rem;
}

/* Descripción del plato */
.item-desc {
    font-family: var(--font-body);
    color: #999; /* Gris suave para que no compita con el nombre */
    font-size: 0.9rem;
    line-height: 1.5;
    font-weight: 300;
    max-width: 85%;
}

/* --- OPTIMIZACIÓN MÓVIL --- */
@media (max-width: 768px) {
    .menu-grid-items {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .item-name {
        font-size: 1rem;
    }

    .item-price {
        font-size: 1.1rem;
    }
}

/* --- NAVEGACIÓN DE CATEGORÍAS (STICKY) --- */
.menu-categories-nav {
    position: sticky;
    top: 90px; /* Debajo del menú principal */
    background: rgba(8, 8, 8, 0.9);
    backdrop-filter: blur(10px);
    z-index: 900;
    padding: 15px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.categories-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Para que en móvil se acomoden */
}

.cat-link {
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.7rem;
    color: var(--white);
    padding: 8px 18px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    transition: 0.3s;
    letter-spacing: 1px;
}

.cat-link:hover, .cat-link.active {
    background: var(--red-meat);
    border-color: var(--red-meat);
    color: white;
}

/* --- TÍTULOS DE CATEGORÍA --- */
.titulo-categoria {
    font-family: var(--font-titles);
    color: var(--gold);
    text-align: center;
    font-size: 3rem;
    margin-bottom: 50px;
}

/* --- GRID DE ITEMS DEL MENÚ --- */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-item {
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding-bottom: 15px;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.item-title {
    font-family: var(--font-titles);
    font-size: 1.1rem;
    color: inherit; /* Toma el color de la sección (blanco o negro) */
}

.item-price {
    font-family: var(--font-titles);
    color: var(--red-meat); /* Precios siempre en rojo para llamar la atención */
    font-size: 1.1rem;
}

.item-description {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.9rem;
    margin-top: 10px;
    opacity: 0.8;
}

/* Ajustes para secciones Blancas */
.section-light .item-title { color: var(--black); }
.section-light .item-description { color: var(--black); }

/* --- ESTILOS DE CATEGORÍA INFANTIL --- */

.section-light {
    background-color: var(--white) !important;
    color: var(--black) !important;
    padding: 100px 5%;
}

.category-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.linea-decorativa-roja {
    width: 80px;
    height: 3px;
    background-color: var(--red-meat);
    margin: 20px auto;
}

/* Grid de items editorial */
.menu-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px 80px;
    max-width: 1300px;
    margin: 0 auto;
}

.menu-item-editorial {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 20px;
}

.item-main-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
}

.menu-item-editorial .item-name {
    font-family: var(--font-titles);
    color: var(--black); /* En sección blanca el nombre es negro */
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.menu-item-editorial .item-price {
    font-family: var(--font-titles);
    color: var(--red-meat); /* Precio resalta en rojo */
    font-size: 1.2rem;
}

.menu-item-editorial .item-description {
    font-family: var(--font-body);
    color: #444;
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 1.6;
}

.nota-adicional-infantil {
    text-align: center;
    margin-top: 50px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: #888;
    font-style: italic;
}

/* Responsivo */
@media (max-width: 768px) {
    .menu-grid-premium {
        grid-template-columns: 1fr;
    }
}

/* --- CORRECCIÓN DE LEGIBILIDAD BEBIDAS --- */

.menu-subcategory-wrapper {
    position: relative;
    overflow: hidden; /* Evita que la imagen se salga del contenedor */
    padding-bottom: 80px;
}

/* Contenedor de los platos: Siempre por encima */
.subcategory-content {
    position: relative;
    z-index: 10; /* Prioridad máxima */
}

/* La imagen decorativa: Como marca de agua */
.decor-image {
    position: absolute;
    bottom: 0;
    right: -10px;
    width: 200px; /* Tamaño más controlado */
    opacity: 0.15 !important; /* MUY tenue para que se vean las letras */
    z-index: 1; /* Por debajo del texto */
    pointer-events: none;
    filter: grayscale(1) contrast(1.2);
    transition: opacity 0.5s ease;
}

/* Solo se ilumina un poco si el usuario no está leyendo directamente encima */
.menu-subcategory-wrapper:hover .decor-image {
    opacity: 0.25 !important;
}

/* Forzamos el color del texto para que brille sobre cualquier sombra */
.menu-item-editorial .item-name {
    color: var(--gold) !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8); /* Sombra para resaltar sobre la imagen */
}

.menu-item-editorial .item-price {
    color: var(--red-meat) !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

/* ==========================================================================
   BRAZZEIRO - LUXURY MINIMALIST MENU
   ========================================================================== */

.menu-luxury-section {
    background-color: var(--black);
    padding: 120px 0;
    color: var(--white);
}

/* --- OPTIMIZACIÓN DE ESPACIO PARA PC --- */
.luxury-container {
    max-width: 1200px; /* Ampliamos un poco el ancho en PC */
    margin: 0 auto;
    padding: 0 40px;
}

.luxury-header {
    text-align: center;
    margin-bottom: 80px;
}

.luxury-tag {
    font-family: var(--font-body);
    font-size: 0.6rem;
    letter-spacing: 5px;
    color: var(--red-meat);
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.luxury-title {
    font-family: var(--font-titles);
    color: var(--gold);
    font-size: 3.5rem;
    letter-spacing: 2px;
}

.luxury-category {
    position: relative;
    margin-bottom: 100px;
}

.luxury-subtitle {
    font-family: var(--font-body);
    font-weight: 300;
    font-style: italic;
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 40px;
    border-left: 2px solid var(--red-meat);
    padding-left: 20px;
}

/* El Grid de Items */
.luxury-grid {
    display: grid !important;
    /* En PC usamos 2 columnas con un espacio (gap) muy grande entre ellas */
    grid-template-columns: 1fr 1fr !important; 
    gap: 40px 120px !important; /* 120px de separación central para dar elegancia */
    margin-top: 50px;
}

@media (min-width: 851px) {
    .luxury-grid {
        position: relative;
    }

.luxury-grid::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        width: 1px;
        background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.2), transparent);
        transform: translateX(-50%);
    }
}

.luxury-item {
    margin-bottom: 15px;
    width: 100%;
}

/* Ajuste de los nombres para que ocupen mejor el espacio */
.item-info .name {
    font-size: 1rem !important; /* Un poco más grande en PC */
    letter-spacing: 1.5px;
}

/* RESPONSIVO: Volver a 1 columna solo cuando sea realmente necesario */
@media (max-width: 900px) {
    .luxury-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .luxury-grid::after {
        display: none;
    }
}

/* Si una subsección tiene pocos items, los centramos elegantemente */
.luxury-category-short .luxury-grid {
    grid-template-columns: 1fr !important;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.item-info {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.item-info .name {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

/* La línea de puntos que conecta nombre y precio */
.luxury-line {
    flex-grow: 1;
    border-bottom: 1px dotted rgba(212, 175, 55, 0.3);
}

.item-info .price {
    font-family: var(--font-titles);
    color: var(--gold); /* El precio en dorado se ve más caro que en rojo */
    font-size: 1rem;
}

/* Marca de Agua Ultra-Fina */
.luxury-decor-watermark {
    position: absolute;
    bottom: -40px;
    right: 0;
    width: 300px;
    opacity: 0.05; /* Casi invisible, solo se ve si fijas la vista */
    pointer-events: none;
    filter: grayscale(1) brightness(2);
    z-index: 1;
}

/* Ajuste Móvil */
@media (max-width: 768px) {
    .luxury-grid {
        grid-template-columns: 1fr;
    }
    .luxury-title {
        font-size: 2.5rem;
    }
}

/* --- FORZAR 2 COLUMNAS EN DISEÑO DE LUJO --- */
.luxury-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important; /* Fuerza las dos columnas */
    gap: 20px 80px !important; /* Aumentamos el espacio horizontal para que respire */
    position: relative;
    z-index: 10;
    width: 100%;
    margin-top: 30px;
}

/* Evitamos que los items se estiren de más */
.luxury-item {
    width: 100%;
    max-width: 450px; /* Controlamos el ancho para que no se vea saturado */
}

.item-info {
    display: flex;
    align-items: baseline;
    justify-content: space-between; /* Empuja el precio al extremo derecho */
    width: 100%;
}

/* Ajuste para que en celulares SÍ se pongan uno debajo del otro */
@media (max-width: 850px) {
    .luxury-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .luxury-item {
        max-width: 100%;
    }
}

/* --- SECCIÓN BLANCA RITUAL (FINE DINING) --- */
.section-white-ritual {
    background-color: #fdfdfd !important; /* Blanco hueso para evitar fatiga visual */
    padding: 140px 5% !important;
    position: relative;
    color: var(--black) !important;
}

/* El Recuadro Principal (Frame) */
.luxury-frame {
    border: 1px solid rgba(212, 175, 55, 0.3); /* Marco dorado muy fino */
    padding: 80px 40px;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

/* Recuadro decorativo de esquina (El detalle que pedías) */
.inner-decoration-box {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100px;
    height: 100px;
    border-top: 3px solid var(--red-meat);
    border-right: 3px solid var(--red-meat);
    z-index: 1;
}

.section-white-ritual .luxury-title {
    color: var(--black) !important;
    font-size: 4rem;
}

.section-white-ritual .luxury-subtitle {
    color: var(--red-meat) !important; /* Rojo sutil para categorías de carne */
    border-left: 3px solid var(--gold);
}

/* Línea de puntos para sección blanca */
.section-white-ritual .luxury-line {
    border-bottom: 1px dotted rgba(0, 0, 0, 0.2) !important;
}

.section-white-ritual .item-info .name {
    color: var(--black) !important;
    font-weight: 800;
}

.section-white-ritual .item-info .price {
    color: var(--gold) !important;
    font-weight: 900;
}

/* Descripción del plato en la versión blanca */
.item-details {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: #666;
    margin-top: 5px;
    font-weight: 300;
    max-width: 90%;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .luxury-frame {
        padding: 40px 20px;
        border: none; /* Quitamos marco en móvil para ganar espacio */
    }
    .inner-decoration-box {
        display: none;
    }
}

/* --- RESPONSIVE MASTER PARA MÓVIL --- */

@media (max-width: 850px) {
    /* 1. Ajuste Platillos Top */
    .grid-magazine {
        grid-template-columns: 1fr !important; /* Una sola columna */
        gap: 40px !important;
    }

    .card-top img {
        height: 300px !important; /* Imagen menos alta para que no ocupe toda la pantalla */
    }

    /* 2. Menú Hamburguesa Estilo Desplegable */
    .menu-toggle {
        display: block !important;
        cursor: pointer;
        z-index: 1100;
    }

    .menu-toggle .bar {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px auto;
        background-color: var(--red-meat);
        transition: 0.3s;
    }

    .nav-links-container {
        position: fixed;
        left: -100%; /* Escondido a la izquierda */
        top: 0;
        flex-direction: column;
        background: rgba(8, 8, 8, 0.98);
        backdrop-filter: blur(15px);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.4s;
        justify-content: center;
        display: flex !important;
        z-index: 1050;
    }

    .nav-links-container.active {
        left: 0; /* Aparece al activarse */
    }

    .nav-link {
        font-size: 1.5rem !important;
        margin: 20px 0 !important;
        display: block;
    }

    .desktop-only { display: none !important; }
    .mobile-only { display: inline-block !important; margin-top: 20px; }

    /* Animación del icono X */
    .menu-toggle.is-active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.is-active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-toggle.is-active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

/* Ocultar botones por defecto */
.mobile-only { display: none; }
.menu-toggle { display: none; }

/* Arreglo rápido para el link de reserva */
.btn-reserva-nav {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    cursor: pointer;
}

/* En móvil queremos que resalte más */
@media (max-width: 850px) {
    .btn-reserva-nav.mobile-only {
        width: 80%;
        margin: 20px auto;
        padding: 15px;
    }
}

/* --- ARREGLO DE JERARQUÍA Y ESPACIADO --- */

/* 1. El Header principal debe ser la capa más alta */
.fixed-nav {
    z-index: 1000 !important;
    height: 80px; /* Definimos una altura fija para poder calcular el resto */
}

/* 2. El menú de categorías (sub-botones) debe estar justo DEBAJO del header */
.menu-categories-nav {
    position: sticky;
    top: 80px; /* Exactamente la altura del header */
    z-index: 900 !important;
    background: rgba(8, 8, 8, 0.98);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    width: 100%;
}

/* 3. Evitar que los botones se amontonen en móvil */
.categories-wrapper {
    display: flex;
    overflow-x: auto; /* Permite scroll lateral si no caben */
    white-space: nowrap;
    padding: 5px 15px;
    gap: 10px;
    scrollbar-width: none; /* Esconde scroll en Firefox */
}

.categories-wrapper::-webkit-scrollbar {
    display: none; /* Esconde scroll en Chrome/Safari */
}

.cat-link {
    flex: 0 0 auto; /* Evita que los botones se encojan */
    font-size: 0.65rem !important;
    padding: 8px 15px !important;
}

/* 4. El contenido del menú debe tener un "aire" para no empezar debajo de los botones */
.menu-container {
    padding-top: 20px;
}

/* --- FIX TOTAL SALSAS --- */
.salsas-container-final {
    width: 100%;
    max-width: 1000px;
    margin: 60px auto;
    padding: 40px 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    clear: both; /* Asegura que no se pegue a elementos flotantes */
}

.salsas-flex-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap; /* Importante para que no se amontone en pantallas pequeñas */
    margin-top: 30px;
}

.salsa-item-minimal {
    display: flex;
    flex-direction: column; /* Nombre arriba, precio abajo para más estilo */
    align-items: center;
    min-width: 150px;
}

.salsa-name {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    color: inherit;
}

.salsa-price {
    font-family: var(--font-titles);
    color: var(--red-meat);
    font-size: 1.1rem;
}

/* Ajuste móvil */
@media (max-width: 768px) {
    .salsas-flex-grid {
        gap: 20px;
    }
    .salsa-item-minimal {
        min-width: 120px;
    }
}

/* ==========================================================================
   BRAZZEIRO - REDISEÑO DE FOOTER PREMIUM (CORREGIDO)
   ========================================================================== */

.footer-brazzeiro {
    position: relative;
    background-color: #050505;
    padding: 120px 0 40px;
    overflow: hidden;
    border-top: 1px solid rgba(212, 175, 55, 0.3); /* Línea dorada superior muy fina */
}

/* Marca de agua corregida: más sutil y más abajo */
.footer-bg-text {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-titles);
    font-size: 22vw;
    color: rgba(255, 255, 255, 0.015); /* Casi invisible */
    z-index: 0;
    pointer-events: none;
    letter-spacing: -10px;
}

.footer-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr; /* El centro es un poco más ancho */
    gap: 40px;
    align-items: start;
    margin-bottom: 80px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-label {
    font-family: var(--font-titles);
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.footer-column p {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    margin: 0;
    letter-spacing: 1px;
}

/* Columna del Logo */
.logo-column {
    align-items: center;
    border-left: 1px solid rgba(212, 175, 55, 0.1);
    border-right: 1px solid rgba(212, 175, 55, 0.1);
    padding: 0 40px;
}

.footer-logo-v3 {
    width: 160px;
    margin-bottom: 25px;
    filter: brightness(1.1);
}

.footer-divider-gold {
    width: 40px;
    height: 1px;
    background-color: var(--gold);
    margin-bottom: 25px;
}

.footer-btn-minimal {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--white);
    text-decoration: none;
    border: 1px solid var(--red-meat);
    padding: 12px 25px;
    transition: 0.4s ease;
}

.footer-btn-minimal:hover {
    background-color: var(--red-meat);
    box-shadow: 0 0 20px rgba(196, 30, 58, 0.3);
}

/* Redes Sociales */
.footer-social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-social-links a {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    letter-spacing: 2px;
    transition: 0.3s;
}

.footer-social-links a:hover {
    color: var(--gold);
    padding-left: 5px; /* Efecto sutil de desplazamiento */
}

/* Barra inferior */
.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    font-size: 0.6rem;
    color: #444;
    letter-spacing: 2px;
}

/* RESPONSIVO */
@media (max-width: 850px) {
    .footer-main-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }
    .logo-column {
        border: none;
        padding: 0;
        order: -1; /* Logo arriba en móvil */
    }
    .footer-column { align-items: center; }
    .footer-bottom-bar { flex-direction: column; gap: 20px; }
}

/* --- AJUSTE NAV 4 ENLACES --- */
.nav-wrapper {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto; /* Links Izq - Logo - Links Der - Botón Reserva */
    align-items: center;
    gap: 20px;
}

.nav-side {
    display: flex;
    gap: 30px;
    justify-content: center;
}

/* En móvil ocultamos las partes laterales y mostramos el toggle */
@media (max-width: 850px) {
    .nav-wrapper {
        display: flex;
        justify-content: space-between;
    }
    .desktop-only {
        display: none !important;
    }
}