/* =========================================
               AVISO DE COOKIES
   ========================================= */

.cookie-banner {
    position: fixed;
    bottom: -100px; 
    left: 0;
    width: 100%;
    background-color: rgba(2, 11, 22, 0.95); 
    border-top: 2px solid var(--accent-cyan); 
    padding: 20px;
    z-index: 10000; 
    box-shadow: 0 -5px 20px rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: bottom 0.5s ease-out; 
    color: white;
    font-family: 'Montserrat', sans-serif;
    flex-wrap: wrap; 
}


.cookie-banner.show {
    bottom: 0;
}

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
    max-width: 800px;
    line-height: 1.5;
}

.cookie-content a {
    color: var(--accent-cyan);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}


.cookie-btn {
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    border: none;
    transition: transform 0.2s;
}

.cookie-btn:hover {
    transform: scale(1.05);
}


.cookie-btn.primary {
    background-color: var(--accent-cyan);
    color: #020b16;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.4);
}


.cookie-btn.secondary {
    background-color: transparent;
    border: 1px solid #555;
    color: #ccc;
}

.cookie-btn.secondary:hover {
    border-color: white;
    color: white;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}