/* Banner de Consentimento de Cookies - Estilo Moderno */
.cookie-consent-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: #0a0a1a;
    color: white;
    padding: 20px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: bottom 0.5s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-consent-banner.show {
    bottom: 0;
}

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

.cookie-text {
    font-size: 0.9rem;
    line-height: 1.5;
    flex: 1;
}

.cookie-text a {
    color: #ff0000;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    white-space: nowrap;
}

.cookie-btn {
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 0.85rem;
    border: none;
    transition: opacity 0.3s;
}

.cookie-btn:hover {
    opacity: 0.8;
}

.btn-accept {
    background: #ff0000;
    color: white;
}

.btn-decline {
    background: #333;
    color: white;
}

/* Responsividade */
@media (max-width: 768px) {
    .cookie-container {
        flex-direction: column;
        text-align: center;
    }
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}
