/* ============================================================
   BANNER DE COOKIES
   ============================================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(40, 126, 135, 0.95); /* Color azul nave con opacidad */
    backdrop-filter: blur(8px);
    color: white;
    padding: 1.2rem 2rem;
    z-index: 99999;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    font-family: 'Caviar', sans-serif;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}

.cookie-banner p {
    margin: 0;
    font-size: 0.95rem;
    flex: 1 1 300px;
    text-align: center;
}

/* Enlace "Más información" en naranja */
.cookie-banner p a {
    color: #e67e22; /* NARANJA */
    text-decoration: underline;
    font-weight: 600;
}

.cookie-banner p a:hover {
    color: #f39c12; /* Naranja más claro al pasar el ratón */
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-cookie {
    padding: 0.5rem 1.8rem;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.3s, transform 0.1s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Botón "Aceptar todas" en naranja */
.btn-cookie-aceptar {
    background: #e67e22; /* NARANJA */
    color: white; /* Texto blanco para mejor contraste */
}

.btn-cookie-aceptar:hover {
    background: #d35400; /* Naranja más oscuro al pasar el ratón */
    transform: scale(1.03);
}

.btn-cookie-rechazar {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-cookie-rechazar:hover {
    background: rgba(255,255,255,0.15);
    transform: scale(1.03);
}

.btn-cookie-config {
    background: transparent;
    color: #ddd;
    border: none;
    text-decoration: underline;
    font-size: 0.85rem;
}

.btn-cookie-config:hover {
    color: white;
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .cookie-banner {
        padding: 1rem 1.2rem;
        flex-direction: column;
        gap: 1rem;
    }
    .cookie-banner p {
        font-size: 0.85rem;
        text-align: center;
    }
    .btn-cookie {
        padding: 0.4rem 1.2rem;
        font-size: 0.8rem;
    }
}