/**
 * Estilos para o banner de consentimento de cookies
 */

/* Banner principal */
.ps-core-cookie-consent-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 380px;
    background-color: #fff;
    z-index: 999999;
    padding: 15px 20px;
    font-family: "Inter", Sans-serif;
    animation: fadeIn 0.3s ease-in-out;
    border-radius: 15px;
    border: solid 1px #171717;
}

.ps-core-cookie-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ps-core-cookie-content h3 {
    display: none;
}

.ps-core-cookie-content p {
    margin: 0;
    font-size: 0.85rem;
    color: #111;
    line-height: 1.4;
}

.ps-core-cookie-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

/* Propriedades comuns dos botões */
.ps-core-cookie-buttons button,
.ps-core-cookie-settings-buttons button {
    font-family: "Inter", Sans-serif!important;
    font-size: 13px!important;
    font-weight: 600!important;
    border-style: none!important;
    border-radius: 80px 80px 80px 80px!important;
    padding: 9px 15px 9px 15px!important;
    width: 100%!important;
    cursor: pointer!important;
    transition: background-color 0.2s!important;
    color: #fff!important;
    background-color: #171717!important;
}

/* Botão de aceitar */
.ps-core-accept-cookies {
    background-color: #171717;
    color: white;
}

.ps-core-accept-cookies:hover {
    background-color: #333;
}

/* Botão de personalizar */
.ps-core-customize-cookies {
    display: none;
}

/* Botão de rejeitar */
.ps-core-reject-cookies {
    background-color: #eee;
    color: #333;
}

.ps-core-reject-cookies:hover {
    background-color: #ddd;
}

/* Link de política */
.ps-core-privacy-link {
    color: #1a73e8;
    text-decoration: none;
}

.ps-core-privacy-link:hover {
    text-decoration: underline;
}

/* Painel de configurações */
.ps-core-cookie-settings-panel {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Inter", Sans-serif;
    animation: fadeIn 0.2s ease-in-out;
}

.ps-core-cookie-settings-content {
    background-color: #fff;
    border-radius: 15px;
    max-width: 600px;
    width: 100%;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-height: 90vh;
    overflow-y: auto;
}

.ps-core-cookie-option {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f1f1f1;
}

.ps-core-cookie-option:last-child {
    border-bottom: none;
}

.ps-core-cookie-option label {
    display: flex;
    align-items: center;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.ps-core-cookie-option p {
    margin: 5px 0 0 25px;
    font-size: 0.85rem;
    color: #777;
}

.ps-core-cookie-option input[type="checkbox"] {
    margin-right: 10px;
    width: 16px;
    height: 16px;
}

.ps-core-cookie-settings-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

/* Botão de salvar */
.ps-core-save-cookie-preferences {
    background-color: #171717;
    color: white;
}

.ps-core-save-cookie-preferences:hover {
    background-color: #333;
}

/* Botão de fechar */
.ps-core-close-cookie-settings {
    background-color: #eee;
    color: #333;
}

.ps-core-close-cookie-settings:hover {
    background-color: #ddd;
}

/* Responsividade */
@media (max-width: 480px) {
    .ps-core-cookie-consent-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;
        max-width: none;
    }
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 