/* Estilos de Alto Contraste */
body.high-contrast {
    --primary-color: #ffffff;
    --text-color: #ffffff;
    --background-color: #000000;
    --contrast-border: 2px solid #ffffff;
}

/* Ajustes gerais para alto contraste */
body.high-contrast * {
    background-color: #000000 !important;
    color: #ffffff !important;
    border-color: #ffffff !important;
}

/* Ajustes específicos para seções */
body.high-contrast #quem-somos,
body.high-contrast #projetos,
body.high-contrast #noticias,
body.high-contrast #procuradorias,
body.high-contrast #leis,
body.high-contrast #denunciar,
body.high-contrast #contato {
    background: #000000 !important;
}

/* Remover gradientes e imagens de fundo em alto contraste */
body.high-contrast #quem-somos::before,
body.high-contrast #projetos::before,
body.high-contrast #noticias::before,
body.high-contrast #procuradorias::before,
body.high-contrast #leis::before,
body.high-contrast #denunciar::before,
body.high-contrast #contato::before {
    display: none !important;
}

/* Ajustes para cards e elementos de destaque */
body.high-contrast .representante-card,
body.high-contrast .projeto-card,
body.high-contrast .noticia-card,
body.high-contrast .procuradoria-card,
body.high-contrast .lei-item,
body.high-contrast .organismo-card,
body.high-contrast .contato-destaque {
    background: #000000 !important;
    border: var(--contrast-border) !important;
    box-shadow: none !important;
}

/* Ajustes para imagens */
body.high-contrast img {
    filter: grayscale(100%) contrast(120%) !important;
    border: var(--contrast-border) !important;
}

/* Ajustes para links e botões */
body.high-contrast a,
body.high-contrast button {
    background: #000000 !important;
    color: #ffffff !important;
    border: var(--contrast-border) !important;
    text-decoration: underline !important;
}

body.high-contrast a:hover,
body.high-contrast button:hover {
    background: #ffffff !important;
    color: #000000 !important;
}

/* Ajustes para formulários */
body.high-contrast input,
body.high-contrast textarea {
    background: #000000 !important;
    color: #ffffff !important;
    border: var(--contrast-border) !important;
}

/* Ajustes para texto destacado */
body.high-contrast strong,
body.high-contrast h1,
body.high-contrast h2,
body.high-contrast h3,
body.high-contrast h4,
body.high-contrast h5,
body.high-contrast h6 {
    color: #ffffff !important;
}

/* Ajustes para elementos com fundo amarelo */
body.high-contrast [style*="background-color: yellow"] {
    background-color: #000000 !important;
    border: 2px dashed #ffffff !important;
    padding: 10px !important;
}

/* Ajustes para ícones */
body.high-contrast .phone-icon,
body.high-contrast .email-icon,
body.high-contrast .whatsapp-icon {
    color: #ffffff !important;
    border: none !important;
}