* {
    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: #003366;
}

.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: #5da2d3;
}

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

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

.text-content {
    flex: 1;
}

.image-content {
    flex: 1; 
}

.section-title {
    font-size: 48px;
    color: #003366;
    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%;
    height: auto;
    display: block; 
}

.cta-button {
    display: inline-block;
    background-color: #3E7DBB;
    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: #3b5f84;
}

.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 DO CARD --- */

.cards-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap; 
    padding: 30px; 
}

.card-wrapper {
    width: 320px;
    height: 480px;
    position: relative; 
}

.card-sombra {
    width: 100%;
    height: 100%;
    background-color: #7b9fc6; 
    border-radius: 51px;
    position: absolute;
    top: -15px; 
    left: 15px;  
    z-index: 1; 
}

.card-conteudo {
    width: 100%;
    height: 100%;
    background-color: white;
    border: 2px solid #7b9fc6; 
    border-radius: 51px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2; 
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.card-conteudo img {
    width: 100%;
    height: 150px; 
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 15px;
}

.card-conteudo h3 {
    font-size: 18px;
    color: #2b507a;
    margin-bottom: 10px;
    font-weight: 600;
}

.card-conteudo p {
    font-size: 14px;
    line-height: 1.6;
    flex-grow: 1; 
    font-weight: 500;
}

.link-saiba-mais {
    color: #2b507a;
    text-decoration: none;
    font-weight: 600;
    align-self: flex-end; 
    transition: all 0.2s ease;
}
.link-saiba-mais:hover {
    color: #1a3d5c; 
    transform: translate(-5px, -5px);
}


.btn-veja-mais {
    background-color: #5884b8;
    color: white;
    border: none;
    border-radius: 51px;
    padding: 12px 60px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.btn-veja-mais:hover {
    background-color: #4a72a0;
    transform: translateY(-5px);
}

/* --- 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: 2rem;
}

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

.denuncia-conteudo h2 {
    font-size: 1.93rem; 
    color: #0d2847; 
    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: #4682B4; 
    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: #3a6d9a; 
    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: #003366;
    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;
}