/* ========== COOKIE BANNER STYLES ========== */
/* Modal simples para aceitar políticas de privacidade */

.cookie-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
}

.cookie-banner.show {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #f2f4f8;
    border-radius: 12px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    animation: slideDown 0.4s ease-out;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    text-align: center;
}

@keyframes slideDown {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-text {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.cookie-text a {
    color: #06ece1;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.cookie-text a:hover {
    color: #33b0f8;
    text-decoration: underline;
}

.cookie-buttons {
    /* ALTERADO: adicionada estrutura responsiva/completa para botões Aceitar/Recusar */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.cookie-btn {
    /* ALTERADO: min-width e padding ajustados para nova UX */
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 130px;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, #06ece1 0%, #33b0f8 100%);
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(6, 236, 225, 0.3);
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 236, 225, 0.4);
}

.cookie-btn-decline {
    /* ALTERADO: estilo do botão Recusar */
    background: #ffffff;
    color: #333;
    border: 1px solid #bbb;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cookie-btn-decline:hover {
    transform: translateY(-2px);
    border-color: #999;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .cookie-content {
        padding: 30px 20px;
        max-width: 85vw;
    }

    .cookie-text {
        font-size: 13px;
    }

    .cookie-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .cookie-content {
        padding: 20px 15px;
        gap: 15px;
    }

    .cookie-text {
        font-size: 12px;
    }
}
