/* ================= VARIABLES Y RESET ================= */
:root {
    --bg-dark: #111111;
    --bg-card: #1E1E1E;
    --text-light: #F5F5F5;
    --text-muted: #B0B0B0;
    --accent-gold: #F39C12; 
    --accent-hover: #D68910;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth; /* Hace que todos los anclajes de la web se deslicen suavemente */
}
body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

span { color: var(--accent-gold); }

a {
    text-decoration: none;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.small-text { font-size: 0.85rem; color: var(--text-muted); }

/* ================= CLASES DE IMÁGENES ================= */
.img-fluid {
    max-width: 100%;
    height: auto;
    display: block;
}

.rounded-shadow {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid #333;
    overflow: hidden; /* Importante para que el iframe del mapa no sobresalga de los bordes redondeados */
}

.menu-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 20px;
}

.menu-img-placeholder {
    width: 100%;
    height: 220px;
    background-color: #2A2A2A;
    border-radius: 6px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-weight: bold;
    font-size: 1.2rem;
    border: 1px dashed #444;
}

/* ================= BOTONES ================= */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--bg-dark);
    border: 2px solid var(--accent-gold);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent-gold);
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
}

.btn-secondary:hover {
    background-color: var(--accent-gold);
    color: var(--bg-dark);
}

/* ================= HEADER ================= */
.site-header {
    background-color: rgba(17, 17, 17, 0.95);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #333;
}

.logo a {
    color: var(--text-light);
}

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

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.main-nav a:hover, .main-nav a.active { 
    color: var(--accent-gold); 
}

/* ================= HERO SECTION (INICIO) ================= */
.hero-section {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    background: url('Imagenes/hero.jpeg') center/cover no-repeat; 
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #E0E0E0;
}

.hero-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
}

/* ================= AMBIENTE SECTION (INICIO) ================= */
.about-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* ================= MENÚ / CARTA ================= */
.menu-section {
    padding: 100px 0;
    background-color: var(--bg-card);
}

.section-title { margin-bottom: 60px; }
.section-title h1, .section-title h2 { font-size: 2.8rem; }
.section-title p { color: var(--text-muted); font-size: 1.1rem;}

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

.menu-card {
    background-color: var(--bg-dark);
    padding: 20px;
    text-align: center;
    border: 1px solid #333;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.menu-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-gold);
}

.menu-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--accent-gold);
}

.menu-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ================= PÁGINA CONTACTO ================= */
.page-contacto {
    background-color: var(--bg-card);
}

.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr; 
    gap: 40px;
    align-items: stretch; 
}

.contact-info-card {
    background-color: var(--bg-dark);
    padding: 40px;
}

.contact-info-card h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--accent-gold);
    border-bottom: 1px solid #333;
    padding-bottom: 15px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    gap: 15px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-top: 5px;
}

.info-item h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.info-item p {
    color: var(--text-muted);
}

.info-item a {
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 600;
}

.info-item a:hover {
    color: var(--accent-gold);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #333;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 1.2rem;
    margin-top: 10px;
}

.social-links a:hover {
    background-color: var(--accent-gold);
    color: var(--bg-dark);
}

.contact-map {
    background-color: var(--bg-dark);
    min-height: 400px;
}

/* ================= HERO DE EVENTOS (VÍDEO DE FONDO) ================= */
.eventos-hero {
    position: relative;
    height: 70vh; 
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.background-media {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
}

.bg-video, .background-media img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.overlay-dark {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7); 
    z-index: 2;
}

.eventos-hero .hero-content {
    position: relative;
    z-index: 3;
}

.eventos-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
}

.scroll-down {
    display: inline-block;
    margin-top: 40px;
    font-size: 2rem;
    color: var(--accent-gold);
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: color 0.3s ease;
}

.scroll-down:hover {
    color: var(--text-light); /* Un pequeño brillo al pasar el ratón */
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
}

/* ================= SECCIÓN INFO ZIG-ZAG (EVENTOS) ================= */
.eventos-info-section {
    padding: 80px 0;
    background-color: var(--bg-card);
}

.info-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.info-row:last-child {
    margin-bottom: 0;
}

.info-row.reverse {
    flex-direction: row-reverse;
}

.info-text {
    flex: 1.2; /* El texto respira y ocupa un poco más de espacio */
}

.info-image {
    flex: 0.8; /* El contenedor de la imagen se hace más pequeño */
    display: flex;
    justify-content: center;
}

.info-image img {
    width: 100%;
    max-width: 450px; /* Límite para que no se vean gigantes en pantallas grandes */
    height: 350px; /* Altura fija para que todas las fotos queden uniformes y alineadas */
    object-fit: cover; /* Recorta suavemente la foto para que encaje perfecta sin deformarse */
}

.info-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-text h2 i {
    color: var(--text-light);
    font-size: 1.8rem;
}

.info-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* ================= FOOTER ================= */
.site-footer {
    padding: 40px 0 20px;
    background-color: #0A0A0A;
    border-top: 1px solid #222;
}

.footer-simple {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-links a {
    margin-left: 20px;
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-copyright {
    padding-top: 20px;
    border-top: 1px solid #222;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ================= MENÚ HAMBURGUESA (ESTILOS GENERALES) ================= */
.menu-toggle {
    display: none; /* ESTO ES VITAL: Lo mantiene oculto en el ordenador */
    font-size: 2rem;
    color: var(--accent-gold);
    background: transparent;
    border: none;
    cursor: pointer;
}

/* ================= RESPONSIVO (MÓVILES GLOBALES) ================= */
@media (max-width: 768px) {
    
    /* Oculta el botón "Ver Carta" de la cabecera en móviles */
    .site-header .btn-primary {
        display: none;
    }

    
    /* --- CABECERA Y HAMBURGUESA --- */
    .header-flex { 
        display: flex;
        flex-direction: row; /* Coloca el logo a la izquierda y las rayitas a la derecha */
        justify-content: space-between; 
        align-items: center;
        position: relative; 
    }

    .menu-toggle {
        display: block; /* Muestra las 3 rayitas SOLO en el móvil */
    }

    .main-nav {
        display: none; /* Oculta los enlaces de texto */
        position: absolute;
        top: 100%; 
        left: 0;
        width: 100%;
        background-color: rgba(17, 17, 17, 0.98); 
        padding: 30px 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        z-index: 999;
    }

    .main-nav.active {
        display: block; /* Muestra el menú cuando el JavaScript añade esta clase */
    }

    .main-nav ul { 
        flex-direction: column; 
        align-items: center; 
        gap: 25px; 
    }

    /* --- RESTO DE TU WEB (Intacto) --- */
    .hero-content { text-align: center; margin: 0 auto; }
    .hero-content h1 { font-size: 2.8rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-text { text-align: center; }
    .contact-map { min-height: 350px; }
    .footer-simple { flex-direction: column; gap: 20px; text-align: center; }
    .footer-links a { margin: 0 10px; }

    /* Eventos Hero y Zig-Zag */
    .eventos-hero h1 { font-size: 2.5rem; }
    .info-row, .info-row.reverse {
        flex-direction: column; 
        gap: 30px;
        text-align: center;
        margin-bottom: 60px;
    }
    .info-text h2 {
        justify-content: center;
    }
}




/* ================= GALERÍA DE EVENTOS (MASONRY) ================= */
.galeria-eventos {
    padding: 80px 0;
    background-color: var(--bg-dark); /* Fondo oscuro para contrastar con la sección anterior */
}

.galeria-eventos .section-title {
    margin-bottom: 50px;
}

.galeria-eventos h2 {
    font-size: 2.8rem;
}

/* El truco del mosaico estilo Pinterest */
.masonry-grid {
    column-count: 3; /* Divide en 3 columnas en ordenador */
    column-gap: 20px; /* Espacio entre columnas */
    width: 100%;
}

.masonry-item {
    break-inside: avoid; /* Evita que una foto se parta por la mitad entre columnas */
    margin-bottom: 20px; /* Espacio vertical entre fotos */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Efecto dinámico al pasar el ratón */
.masonry-item:hover {
    transform: scale(1.03); 
    box-shadow: 0 10px 25px rgba(243, 156, 18, 0.3); /* Brillo dorado suave */
    z-index: 2;
    position: relative;
}

.masonry-item img {
    width: 100%;
    height: auto; /* Mantiene la proporción original de cada foto sin deformarla */
    display: block;
}

/* --- Adaptación a Tablets --- */
@media (max-width: 992px) {
    .masonry-grid {
        column-count: 2; /* Pasa a 2 columnas */
    }
}

/* --- Adaptación a Móviles --- */
@media (max-width: 576px) {
    .masonry-grid {
        column-count: 2; /* Cambiado para mostrar 2 columnas en móvil */
        column-gap: 10px; /* Reducimos un poco el espacio entre fotos para pantallas pequeñas */
    }
}

/* ================= PÁGINA RESTAURANTE (BLOQUE SUPERPUESTO) ================= */
.history-hero {
    position: relative;
    height: 75vh;
    display: flex;
    align-items: flex-end; /* Alinea el contenido hacia abajo */
    justify-content: center;
    margin-bottom: 120px; /* Deja espacio para que la caja "sobresalga" hacia abajo */
}

.history-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
}

.history-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.superposed-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    width: 100%;
}

.superposed-box {
    background-color: rgba(30, 30, 30, 0.95);
    border-top: 4px solid var(--accent-gold);
    padding: 60px;
    max-width: 900px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    transform: translateY(80px); /* Empuja la caja hacia abajo rompiendo el borde de la foto */
}

.superposed-box h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.superposed-box .lead-text {
    font-size: 1.3rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
    font-weight: 600;
}

.history-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 30px;
    border-top: 1px solid #444;
    padding-top: 30px;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--accent-gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ================= PLATOS ESTRELLA (TARJETAS INTERACTIVAS) ================= */
.star-dishes-section {
    padding: 80px 0;
    background-color: var(--bg-card);
}

.dishes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.dish-card {
    position: relative;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

.dish-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: brightness(0.4); /* La foto está oscura por defecto */
}

/* Animación al pasar el ratón */
.dish-card:hover img {
    transform: scale(1.1); /* Zoom suave a la foto */
    filter: brightness(0.9); /* Se ilumina */
}

.dish-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 30px 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 50%, transparent 100%);
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.dish-content h3 {
    font-size: 1.8rem;
    color: var(--accent-gold);
    margin-bottom: 5px;
    transition: margin 0.4s ease;
}

.dish-description {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease, margin 0.4s ease;
}

.dish-description p {
    font-size: 0.95rem;
    color: #E0E0E0;
    margin-top: 10px;
}

/* Revelar el texto al hacer Hover */
.dish-card:hover .dish-description {
    max-height: 150px; /* Expande la caja de texto */
    opacity: 1; /* Hace el texto visible */
}

/* --- Adaptación a Móviles --- */
@media (max-width: 768px) {
    .superposed-box {
        padding: 40px 20px;
        transform: translateY(30px); /* Un poco menos de desplazamiento para evitar cortes */
        width: 95%; /* Un pelín más de ancho para que el texto encaje mejor */
    }
    
    .superposed-box h1 { font-size: 2.2rem; }
    
    .history-hero {
        height: auto; /* Quitamos el alto fijo para que se adapte al contenido */
        min-height: 90vh; /* Aseguramos que ocupe buena parte de la pantalla */
        padding-top: 120px; /* ESTO ES LA CLAVE: le damos espacio por arriba para que no se esconda tras el menú */
        margin-bottom: 60px; 
    }
    
    .history-stats {
        flex-direction: column;
        gap: 20px;
    }

    /* En móvil, mostramos el texto por defecto ya que no hay "hover" (ratón) */
    .dish-card img { filter: brightness(0.6); }
    .dish-description {
        max-height: 150px;
        opacity: 1;
    }
}



/* ================= MINIGALERÍA DEL LOCAL ================= */
.mini-gallery-section {
    padding: 80px 0;
    background-color: var(--bg-dark); 
}

.mini-gallery-section .section-title {
    margin-bottom: 50px;
}

/* CAMBIO AQUÍ: Pasamos a Flexbox para garantizar el centrado total */
.mini-gallery-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Esto obliga a que la última fila quede centrada */
    gap: 15px; 
}

.mini-img-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    width: 220px; /* Tamaño fijo para que se mantengan cuadradas y ordenadas */
    aspect-ratio: 1 / 1; /* Obliga a que sean cuadrados perfectos */
    cursor: pointer;
}

.mini-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transition: transform 0.4s ease, filter 0.4s ease;
    filter: brightness(0.85); 
}

/* Efecto al pasar el ratón */
.mini-img-wrapper:hover img {
    transform: scale(1.1); 
    filter: brightness(1.1); 
}

/* --- Adaptación a Móviles --- */
@media (max-width: 576px) {
    .mini-img-wrapper {
        width: 150px; /* Se reducen ligeramente en móvil para que quepan 2 centradas */
    }
}


/* ================= BOTÓN FLOTANTE WHATSAPP ================= */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366; /* Verde oficial de WhatsApp */
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.5);
    z-index: 1000; /* Asegura que siempre esté por encima de todo */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
    animation: pulse-wa 2s infinite; /* Animación sutil */
}

/* Efecto al pasar el ratón */
.whatsapp-float:hover {
    background-color: #1ebe57;
    color: #FFF;
    transform: scale(1.1); /* Crece un poquito */
    animation: none; /* Quitamos el pulso al poner el ratón encima */
}

/* Animación de "latido" para llamar sutilmente la atención */
@keyframes pulse-wa {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* --- Adaptación a Móviles --- */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 30px;
    }
}


/* ================= SECCIÓN DE RESEÑAS (OPINIONES) ================= */
.reviews-section {
    padding: 80px 0;
    background-color: var(--bg-dark); /* Fondo oscuro para hacer contraste */
}

.reviews-section .section-title {
    margin-bottom: 50px;
}

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

.review-card {
    background-color: var(--bg-card); /* Tarjeta un poco más clara */
    padding: 40px 30px;
    border-radius: 8px;
    border: 1px solid #333;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

/* Efecto al pasar el ratón */
.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
}

.review-card .stars {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.review-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 30px;
    flex-grow: 1; /* Empuja el autor hacia el fondo para que queden alineados */
    line-height: 1.7;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #333;
    padding-top: 20px;
}

.review-author .fa-user-circle {
    font-size: 2.5rem;
    color: var(--text-muted);
}

.author-name {
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
    color: var(--text-light);
}

.review-source {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 3px;
}

/* Color para los iconos de Google y TripAdvisor */
.review-source .fa-google { color: #DB4437; }
.review-source .fa-tripadvisor { color: #34E0A1; }



/* ================= ENLACES LEGALES (FOOTER) ================= */
.footer-legal {
    margin-top: 10px;
    padding-top: 10px;
}

.footer-legal a {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-legal a:hover {
    color: var(--accent-gold);
}

/* ================= BANNER DE COOKIES ================= */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(17, 17, 17, 0.95);
    border-top: 2px solid var(--accent-gold);
    padding: 20px;
    z-index: 9999; /* Por encima de todo */
    box-shadow: 0 -5px 20px rgba(0,0,0,0.7);
    display: none;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.cookie-content {
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

.cookie-content a {
    color: var(--accent-gold);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0; /* Evita que los botones se aplasten */
}

.cookie-buttons button {
    padding: 8px 20px;
    font-size: 0.9rem;
    cursor: pointer;
    font-family: var(--font-body);
}

/* --- Adaptación a Móviles --- */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}