/* Estilos para a seção Onde Denunciar */
#denunciar {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
    position: relative;
}

#denunciar h2 {
    text-align: center;
    color: #2c3e50;
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
}

.organismos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.organismo-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #D8366F;
}

.organismo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
}

.organismo-titulo {
    color: #D8366F;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.organismo-subtitulo {
    color: #4a5568;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.organismo-contato {
    font-size: 0.9rem;
    color: #4a5568;
    margin-bottom: 0.3rem;
}

.organismo-contato strong {
    color: #2d3748;
    font-weight: 600;
}

.organismo-email {
    color: #D8366F;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-block;
    margin-top: 0.5rem;
    transition: color 0.3s ease;
}

.organismo-email:hover {
    color: #B42D5C;
    text-decoration: underline;
}

/* Responsivo */
@media (max-width: 768px) {
    #denunciar {
        padding: 3rem 0;
    }
.organismo-email {
            font-size: 11px;
    }
    #denunciar h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .organismos-grid {
/*        grid-template-columns: 1fr;*/
        gap: 1rem;
        padding: 0 1rem;
    }

    .organismo-card {
        padding: 1.2rem;
    }
}

/* Alto Contraste */
body.high-contrast #denunciar {
    background: var(--background-color);
}

body.high-contrast .organismo-card {
    background: var(--background-color);
    border: 1px solid var(--text-color);
}

body.high-contrast .organismo-titulo,
body.high-contrast .organismo-subtitulo,
body.high-contrast .organismo-contato,
body.high-contrast .organismo-email {
    color: var(--text-color);
}