* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Nunito', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #ffffff;
}

/* --- ESTILOS DO Navbar --- */
.header {
    background-color: #276749;
}

.container-fluid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1150px;
    margin: 0 auto;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo {
    height: 30px;
}

.site-title {
    font-size: 1.5rem;
    color: #E0E0E0;
    margin-bottom: 0;
    font-weight: 700;
}

.navbar-nav {
    gap: 1.5rem;
    font-weight: 700;
}

.navbar-nav .nav-link:hover {
    color: #ABD3C0;
}

/* --- ESTILOS DO CONTAINER PRINCIPAL --- */

.content-section {
    display: flex;
    max-width: 74rem;
    margin: 0 auto;
    gap: 3rem; 
    align-items: center;
    padding: 1rem 2rem;
}

.text-content {
    flex: 1;
}

.image-content {
    flex: 1; 
}

.section-title {
    font-size: 48px;
    color: #224233;
    margin-bottom: 1.5rem;
    font-weight: 650;
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 2rem;
}

.section-image {
    max-width: 100%;
    padding: 4rem 4rem;
    height: auto;
    display: block; 
}

.cta-button {
    display: inline-block;
    background-color: #609F81;
    color: #ffffff;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 51px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #276648;
}

.artigos-container {
    display: flex;
    justify-content: flex-start;
    
    position: absolute;
    transform: translateY(-50%);

}

.artigos-box {
    width: calc(50dvw - 10em);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 66px; 
    background-color: #2A5784; 
    border-radius: 0 50px 50px 0;
    color: #f4f4f4;
    font-size: 24px; 
    font-weight: 700; 
    font-family: 'Nunito', sans-serif; 
}
.artigos-box span {
    margin-right: 12rem; 
}

.artigos {
    text-align: center;
    background-color: #f4f4f4;
    padding: 60px 0;
}

/* --- ESTILOS DA DENÚNCIA --- */

.denuncia-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5rem; 
    max-width: 1200px;
    margin: 0 auto; 
    flex-wrap: wrap; 
    padding: 1rem;
}

.denuncia-conteudo {
    flex: 1; 
    max-width: 500px; 
    min-width: 300px; 
}

.denuncia-conteudo h2 {
    font-size: 1.93rem; 
    color: #224233; 
    margin-top: 0;
    margin-bottom: 1rem; 
    font-weight: 600;
}

.denuncia-conteudo p {
    font-size: 1.125rem; 
    color: #000000; 
    line-height: 1.6;
    margin-bottom: 2rem;
}

.denuncia-botao {
    display: inline-block;
    background-color: #609F81; 
    color: #ffffff;
    text-decoration: none;
    padding: 14px 35px;
    border-radius: 50px; 
    font-size: 1rem; 
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.denuncia-botao:hover {
    background-color: #276648; 
    transform: translateY(-5px);
}

.denuncia-imagem {
    flex: 1; 
    max-width: 550px;
    min-width: 300px; 
}

.denuncia-imagem img {
    width: 100%;
    height: auto; 
    display: block;
}

/* --- ESTILOS DO RODAPÉ --- */

footer {
    background-color: #276648;
    color: #ffffff;
    padding: 40px 20px;
    font-family: Nunito, sans-serif;
    width: 100%;
    margin: 0 auto;
}


.footer-container, .footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1150px;
    margin: 0 auto;
    gap: 20px;
}

.footer-container {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 30px;
}

.footer-legal {
    margin-top: 30px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo {
    height: 40px;
}

.footer-text {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border: 1px solid #979797;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.footer-social a:hover {
    border-color: #ffffff;
    text-decoration: none;
}

.footer-social img {
    height: 18px;
    width: 18px;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-legal p {
    margin: 0;
    color: #bdc3c7;
    font-size: 0.9rem;
}

footer a {
    color: #ffffff;
    text-decoration: none;
}

.footer-nav a:hover {
    text-decoration: underline;
}


