/* --- BANNER DE COOKIES ELITE (ESTILO PÍLULA) --- */
#cookies-banner {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(150%); /* Escondido por padrão */
    width: 95%;
    max-width: 900px;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(191, 149, 63, 0.3);
    padding: 20px 45px;
    border-radius: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    z-index: 10000;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

#cookies-banner.show {
    transform: translateX(-50%) translateY(0); /* Mostra centrado */
}

.cookies-text {
    font-size: 0.9rem;
    color: #ffffff !important;
    margin: 0;
    line-height: 1.4;
}

.cookies-text strong {
    color: #bf953f;
    font-weight: 800;
}

.cookies-link {
    color: #bf953f;
    text-decoration: underline;
    font-weight: 600;
    transition: 0.3s;
}

.cookies-link:hover {
    color: #ffffff;
}

.cookies-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

/* Botão Aceitar (Dourado Metálico) */
.btn-metal {
    background: linear-gradient(135deg, #bf953f 0%, #fcf6ba 45%, #b38728 70%, #fbf5b7 85%, #aa771c 100%);
    color: #000;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s;
}

.btn-metal:hover {
    transform: scale(1.03);
}

/* Botão Rejeitar (Outline Elegante) */
.btn-cookies-refuse {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

.btn-cookies-refuse:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 992px) {
    #cookies-banner {
        flex-direction: column;
        border-radius: 24px;
        padding: 30px 25px;
        text-align: center;
        bottom: 10px;
    }
    .cookies-actions {
        width: 100%;
        flex-direction: column;
    }
    .btn-cookies-refuse, 
    .btn-metal {
        width: 100%;
    }
}
