/*
==============================================
IMPORTAÇÃO DE FONTE E ESTILOS GLOBAIS
==============================================
*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: "Montserrat", sans-serif;
}

/* --- ESTRUTURA E PADRONIZAÇÃO --- */

body {
    background-color: #ffffff;
    transition: background-color 0.4s;
}

body.menu-open {
    overflow: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

.section-title {
    color: #003C63;
    font-size: 1.8em;
    font-weight: 700;
    margin-bottom: 40px;
}

/*
==============================================
CABEÇALHO E NAVEGAÇÃO
==============================================
*/

/* --- CABEÇALHO --- */
.icones-sociais {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    padding-bottom: 30px;
}
.logo {
    width: 200px;
}
.icones-sociais i {
    color: #003C63;
    font-size: 1.2rem;
}
.icones-header {
    display: flex;
    gap: 15px;
}

/* --- MENU DE NAVEGAÇÃO --- */
.nav-header {
    background-color: #003C63;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.nav-header .container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.ul-header {
    display: flex;
    color: white;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
}
.ul-header > li > a {
    color: white;
    padding: 25px 0;
    display: inline-block;
    transition: color 0.2s ease;
}
.ul-header > li > a:hover {
    color: #00A9E2;
}
.has-submenu {
    position: relative;
}

/* --- ADIÇÃO DE SETA PARA SUBMENUS (DESKTOP) --- */
.has-submenu > a::after {
    content: '▼'; /* Cria o ícone de seta */
    font-size: 0.6em; /* Tamanho pequeno para ser sutil */
    margin-left: 8px; /* Espaço entre o texto e a seta */
    display: inline-block; /* Permite que a seta seja transformada */
    transition: transform 0.3s ease; /* Animação suave */
}

/* Gira a seta quando o menu está aberto */
.has-submenu:hover > a::after {
    transform: rotate(180deg);
}
.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 250px;
    padding: 10px 0;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 100;
}
.has-submenu:hover > .submenu {
    display: block;
    opacity: 1;
    visibility: visible;
}
.submenu li a {
    display: block;
    padding: 12px 20px;
    color: #003C63;
    font-size: 0.95rem;
    white-space: nowrap;
    transition: background-color 0.2s, color 0.2s;
}
.submenu li a:hover {
    background-color: #f5f5f5;
    color: #00A9E2;
}

/* --- MENU HAMBÚRGUER (MOBILE) --- */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}
.hamburger-bar {
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

/*
==============================================
CSS CORRIGIDO E RESPONSIVO - CARROSSEL PRINCIPAL
==============================================
*/

.carousel-container {
    position: relative;
    width: 100%;
    margin: auto;
    aspect-ratio: 16 / 7;
    overflow: hidden;
}

.carousel-slides {
    display: flex;
    height: 100%;
    transition: transform 1.5s ease-in-out;
}

.slide {
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    flex-shrink: 0;
}

.slide-content {
    position: absolute;
    top: 0;
    height: 100%;
    width: 45%;
    background-color: #003C63;
    display: flex;
    align-items: center;
}

.slide-content.right {
    right: 0;
    clip-path: ellipse(80% 100% at 100% 50%);
    justify-content: flex-end;
    padding: 3% 8% 3% 20%;
}

.slide-content.left {
    left: 0;
    clip-path: ellipse(80% 100% at 0% 50%);
    justify-content: flex-start;
    padding: 3% 20% 3% 8%;
}

.text-wrapper {
    position: relative;
    z-index: 2;
    color: white;
    width: 100%;
    max-width: 100%; 
}

.slide-content.right .text-wrapper {
    text-align: right;
}

.slide-content.left .text-wrapper {
    text-align: left;
}

.text-wrapper h2 {
    font-size: clamp(1.4em, 2.2vw, 2.2em);
    line-height: 1.3;
    margin-bottom: 20px;
}

.text-wrapper .btn {
    display: inline-block;
    background-color: #00A9E2;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 20px;
    transition: all 0.2s ease;
}

/* HOVER ATUALIZADO: Como este botão já é azul claro, ele escurece no hover. */
.text-wrapper .btn:hover {
    filter: brightness(90%);
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border: 2px solid white;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: white;
}

/* --- SEÇÃO FRENTES DE ATUAÇÃO (HOME) --- */
.frentes-section {
    padding-top: 50px;
    padding-bottom: 50px;
}
.frentes-title {
    color: #003C63;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}
.frentes-div {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}
.frentes-box {
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    padding: 100px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    color: white;
    transition: transform 0.3s ease;
}
.frentes-box:hover {
    transform: scale(1.03);
}
.frentes-box-1 {
    background-image: linear-gradient(to top, rgba(251, 189, 81, 0.7), transparent 60%), url(/img/Banner_1_V3.png);
}
.frentes-box-2 {
    background-image: linear-gradient(to top, rgba(239, 122, 145, 0.7), transparent 60%), url(/img/padeira.png);
}
.frentes-box-3 {
    background-image: linear-gradient(to top, rgba(188, 124, 174, 0.7), transparent 60%), url(/img/recebidos.jpg);
}
.frentes-box-title-wrapper {
    position: relative;
    top: 80px;
    text-align: center;
    z-index: 2;
    transition: opacity 0.4s ease;
    display: flex;
    justify-content: center;
}
.frentes-box-title {
    font-size: 2rem;
    font-weight: bold;
    color: white;
}
.frentes-box-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 3;
}
.frentes-box:hover .frentes-box-title-wrapper {
    opacity: 0;
}
.frentes-box:hover .frentes-box-overlay {
    opacity: 1;
}
.frentes-box-1 .frentes-box-overlay {
    background-color: #FBBD51;
}
.frentes-box-2 .frentes-box-overlay {
    background-color: #EF7A91;
}
.frentes-box-3 .frentes-box-overlay {
    background-color: #BC7CAE;
}
.frentes-box-text {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.5;
    color: white;
}

/* --- SEÇÃO NOTÍCIAS ROTATIVAS (HOME) --- */
.noticias-section {
    padding: 50px 0;
}
.noticias-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}
.noticias-viewport {
    overflow: hidden;
    width: 100%;
}
.noticias-grid {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
}
.noticia-card {
    flex: 0 0 calc(25% - 15px);
    min-width: calc(25% - 15px);
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.noticia-img-placeholder {
    width: 100%;
    padding-top: 56.25%;
    background-color: #e9e9e9;
}
.noticia-content {
    padding: 15px;
    background-color: #f8f8f8;
    flex-grow: 1;
}
.noticia-data {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 5px;
}
.noticia-texto {
    font-weight: bold;
    color: #333;
}
.noticias-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 60, 99, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
}
/* HOVER ATUALIZADO: Muda para azul claro */
.noticias-btn:hover {
    background-color: #00A9E2;
}
.noticias-btn.prev {
    left: -50px;
}
.noticias-btn.next {
    right: -50px;
}
.noticias-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* --- SEÇÃO NEWSLETTER --- */
.newstaller-section {
    background-color: #F1F1F1;
    padding-top: 50px;
    padding-bottom: 50px;
}
.newstaller-div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}
.text-title-newslatter {
    color: #003C63;
    flex-basis: 50%;
}
.text-title-newslatter h2{
    margin-bottom: 10px;
}
.forms-newslatter {
    flex-basis: 45%;
    min-width: 300px;
}
.form-group {
    display: flex;
    gap: 10px;
}
.email-input {
    flex-grow: 1;
    padding: 15px;
    font-size: 16px;
    border: 1.5px solid #003C63;
    border-radius: 12px;
    background-color: #fff;
}
.submit-button {
    padding: 15px 25px;
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    background-color: #003C63;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}
/* HOVER ATUALIZADO: Muda para azul claro */
.submit-button:hover {
    background-color: #00A9E2;
}
.privacy-policy {
    display: flex;
    align-items: center;
    margin-top: 15px;
    font-size: 13px;
    color: #333;
}
.privacy-policy input[type="checkbox"] {
    margin-right: 8px;
    width: 18px;
    height: 18px;
    accent-color: #003C63;
}
.privacy-policy a {
    color: #003C63;
    text-decoration: none;
}
.privacy-policy a:hover {
    text-decoration: underline;
}

/*
==============================================
ESTILOS PÁGINA "SOBRE O INSTITUTO GPA"
==============================================
*/

.hero-sobre {
    position: relative;
    background-size: cover;
    background-position: center 30%;
    /* padding: 60px 0; -- Removido para padronização de altura */
    background-image:
    linear-gradient(rgba(0, 60, 99, 0.1), rgba(0, 60, 99, 0.15)),
    url('img/equipe-mercado-sacolao.png');
}
.hero-sobre::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 60, 99, 0.85);
}
.hero-sobre-content {
    position: relative;
    color: white;
    width: 45%;
    clip-path: ellipse(120% 100% at 0% 50%);
}
.hero-sobre-content h2 {
    font-size: 2.2em;
    margin-bottom: 20px;
}
.hero-sobre-content p {
    font-size: 1em;
    line-height: 1.7;
}

.governance-section {
    padding: 70px 0;
    background-color: #fff;
}
.governance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.governance-column h4 {
    font-size: 1.2em;
    color: #003C63;
    margin-bottom: 15px;
}
.governance-column p,
.governance-column ul li {
    font-size: 1em;
    color: #555;
    line-height: 1.6;
}

/*
==============================================
ESTILOS LINHA DO TEMPO HORIZONTAL (COM CSS SCROLL SNAP)
==============================================
*/

.timeline-section-horizontal {
    padding: 70px 0;
    background-color: #f8f8f8;
}

.timeline-section-horizontal .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}

.timeline-section-horizontal .section-title {
    color: #003C63;
    font-size: 2.5em; /* Mantido o tamanho do título original */
    margin-bottom: 40px;
    text-align: center; /* Centralizado para consistência */
}

/* --- ESTRUTURA DO CARROSSEL --- */
/* --- ESTRUTURA DO CARROSSEL --- */
.timeline-carousel {
    position: relative;
    display: flex;
    align-items: center;
}

.timeline-viewport {
    overflow: hidden;
    width: 100%;
}

.timeline-container {
    display: flex;
    gap: 20px; /* Espaçamento padronizado como o de notícias */
    /* REMOVIDO: overflow-x, scroll-snap-type, scroll-behavior, scrollbar-width */
    /* A transição agora é controlada pelo JavaScript */
}
.timeline-container::-webkit-scrollbar {
    display: none;
}


/* --- ESTILO DE CADA ITEM/EVENTO --- */
.timeline-item-h {
    flex: 0 0 300px; /* Largura fixa para cada item */
    /* REMOVIDO: scroll-snap-align, margin (o gap substitui) */
    background-color: #003C63;
    color: white;
    border-radius: 8px;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    position: relative;
}


.timeline-item-h::before {
  display: none;
}

/* Conteúdo do item */
.timeline-year-h, .timeline-content-h h4, .timeline-content-h p {
    color: white;
}
.timeline-year-h {
    font-size: 1.8em;
    font-weight: 700;
    color: #00A9E2;
    margin-bottom: 10px;
}
.timeline-content-h h4 {
    font-size: 1.2em;
    margin-bottom: 10px;
}
.timeline-content-h p {
    font-size: 0.9em;
    line-height: 1.5;
}

/* --- BOTÕES DE NAVEGAÇÃO --- */
/* --- BOTÕES DE NAVEGAÇÃO (PADRONIZADOS) --- */
.timeline-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 60, 99, 0.7); /* Cor padronizada */
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;  /* Tamanho padronizado */
    height: 40px; /* Tamanho padronizado */
    font-size: 20px; /* Tamanho padronizado */
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
}
.timeline-btn:hover {
    background-color: #00A9E2; /* Efeito hover padronizado */
}
.timeline-btn.prev {
    left: -50px;
}
.timeline-btn.next {
    right: -50px;
}
.timeline-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}
.partnerships-section {
    padding: 70px 0;
    background-color: #f8f8f8;
}
.partnerships-logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}
.partnership-logo-link {
    display: block;
    padding: 20px;
    background-color: #003C63;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.partnership-logo-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.partnership-logo-link img {
    max-height: 70px;
    width: auto;
    max-width: 200px;
    filter: brightness(0) invert(1);
}

.statute-section {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}
.statute-link {
    display: inline-block;
    background-color: #003C63;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.2s ease;
}
/* HOVER ATUALIZADO: Muda para azul claro */
.statute-link:hover {
    background-color: #00A9E2;
}

/*
==============================================
ESTILOS PÁGINA "MÃOS NA MASSA"
==============================================
*/


.numbers-section {
    padding: 80px 0;
    background-color: #f8f8f8;
    overflow: hidden;
}

.numbers-section-prosperar{
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    display: flex;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.stat-box {
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    color: white;
}
.stat-box-light {
    background-color: #00A9E2;
}
.stat-box-dark {
    background-color: #003C63;
}
.stat-main {
    display: block;
    font-size: 4em;
    font-weight: 800;
    line-height: 1;
}
.stat-description {
    display: block;
    font-size: 1.2em;
    margin-top: 15px;
}
.stat-box-text {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.stat-box-text p {
    font-size: 1.7em;
    font-weight: 700;
    line-height: 1.4;
}

.cta-section {
    background-color: #003C63;
    padding: 40px 0;
}
.cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.cta-text .section-title {
    color: white;
    margin-bottom: 10px;
}
.cta-text p {
    color: #f0f0f0;
}
.cta-button {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 12px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.2s ease;
}
/* HOVER MANTIDO: Este botão tem um design especial de inversão de cores. */
.cta-button:hover {
    background-color: white;
    color: #003C63;
}


/*
==============================================
ESTILOS SEÇÃO DEPOIMENTOS
==============================================
*/

.testimonials-section {
    padding: 80px 0;
    background-color: #fff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.testimonial-card {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.testimonial-image-wrapper {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden; 
    border: 3px solid #00A9E2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content .testimonial-text {
    color: #555;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
    border-left: 3px solid #f0f0f0;
    padding-left: 20px;
}

.testimonial-content .testimonial-author {
    color: #003C63;
    font-size: 1.3em;
    font-weight: 700;
    margin-bottom: 5px;
}

.testimonial-content .testimonial-role {
    color: #555;
    font-size: 1em;
    font-style: normal;
}

/*
==============================================
ESTILOS PÁGINA "PARCERIA CONTRA O DESPERDÍCIO"
==============================================
*/

.campaign-section{
    padding: 80px 0;
}

.campaign-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    align-items: stretch;
}
.stats-left-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.stat-card {
    padding: 30px;
    border-radius: 20px;
}
.stat-card.yellow-card {
    background-color: #d2d22d;
    color: #003C63;
}
.stat-card.dark-blue-card {
    background-color: #003C63;
    color: white;
}
.stat-card-group {
    display: flex;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.stat-card h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}
.stat-card h4 {
    font-size: 2.2em;
    font-weight: 800;
}
.stat-card p {
    line-height: 1.6;
}
.stat-chart-icon {
    height: 60px;
    width: auto;
}
.large-chart-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
}
.stat-chart-icon-large {
    height: 120px;
    width: auto;
    margin-bottom: 20px;
}

/*
==============================================
ESTILOS PÁGINA "CAMPANHA DE ARRECADAÇÃO"
==============================================
*/

.campaign-numbers-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto;
    gap: 30px;
    grid-template-areas:
        "large-blue small-yellow-1"
        "large-blue small-yellow-2";
}
.campaign-stat-large {
    grid-area: large-blue;
    padding: 40px;
    border-radius: 20px;
}
.campaign-stat-small {
    padding: 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.campaign-stat-large.dark-blue-card {
    background-color: #003C63;
    color: white;
}
.campaign-stat-small.yellow-card {
    background-color: #d2d22d;
    color: #003C63;
}
.campaign-stat-large h3 {
    font-size: 3.5em;
    font-weight: 800;
    color: #d2d22d;
}
.campaign-stat-large h4 {
    font-size: 1.5em;
    margin: 10px 0 20px 0;
}
.campaign-stat-small h4 {
    font-size: 1.8em;
    font-weight: 700;
    line-height: 1.4;
}

.calendar-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.calendar-item {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 5px;
    min-width: 110px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: background-color 0.3s ease;
}

.calendar-item .day {
    font-size: 2.0em;
    font-weight: 700;
    color: #d2d22d;
    line-height: 1;
}

.calendar-item .month {
    font-size: 1em;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
    color: #ffffff;
}

/*
==============================================
ESTILOS PÁGINA "PRODUTOS SOCIAIS"
==============================================
*/

.product-partnership-section {
    padding: 80px 0;
}
.partnership-content {
    display: flex;
    align-items: center;
    gap: 60px;
}
.partnership-text {
    flex: 2;
}
.partnership-text h3 {
    color: #003C63;
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 20px;
}
.partnership-text p {
    color: #555;
    line-height: 1.8;
    font-size: 1.1em;
}
.partnership-logo {
    flex: 1;
    text-align: center;
}
.partnership-logo img {
    max-width: 250px;
    height: auto;
}

/*
==============================================
ESTILOS PÁGINA "RELATÓRIOS" - IMAGENS RETANGULARES
==============================================
*/

.reports-section {
    padding: 80px 0;
}

.reports-section .section-subtitle {
    margin: -20px auto 50px auto;
    color: #555;
    line-height: 1.6;
}

.reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
}

.report-card {
    background-color: #ffffff;
    border: 1px solid #e7e7e7;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.report-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.report-cover {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9; 
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.report-card h4 {
    color: #333;
    font-size: 1.0em;
    line-height: 1.4;
    margin-bottom: 15px;
    flex-grow: 1; 
}

.download-btn {
    display: inline-block;
    background-color: #003C63;
    color: white;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8em;
    text-decoration: none;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.2s ease;
}

/* HOVER ATUALIZADO: Muda para azul claro */
.download-btn:hover {
    background-color: #00A9E2;
}

/*
==============================================
ESTILOS PÁGINA "NOTÍCIAS" (LISTAGEM)
==============================================
*/

.news-page-section {
    padding: 60px 0;
}
.news-page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}
.news-page-header h1 {
    color: #003C63;
    font-size: 2.8em;
}
.search-bar {
    display: flex;
    width: 100%;
    max-width: 350px;
}
.search-bar input {
    width: 100%;
    padding: 12px 15px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-right: none;
    border-radius: 8px 0 0 8px;
}
.search-bar button {
    padding: 0 18px;
    border: 1px solid #003C63;
    background-color: #003C63;
    color: white;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    font-size: 1.1em;
    transition: all 0.2s ease;
}
/* HOVER ATUALIZADO: Muda para azul claro */
.search-bar button:hover {
    background-color: #00A9E2;
    border-color: #00A9E2;
}
.tags-section {
    margin-bottom: 50px;
}
.tags-section h3 {
    color: #003C63;
    font-size: 1.1em;
    margin-bottom: 15px;
}
.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.tags-list a {
    background-color: #f0f0f0;
    color: #555;
    padding: 8px 15px;
    border-radius: 15px;
    font-size: 0.9em;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}
.tags-list a:hover {
    background-color: #003C63;
    color: white;
}
.news-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.news-card {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 1 / 1;
    text-decoration: none;
    color: white;
}
.news-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 60, 99, 0.9) 10%, rgba(0, 60, 99, 0.1) 70%, transparent 100%);
    z-index: 1;
}
.news-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.news-card:hover img {
    transform: scale(1.05);
}
.card-content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    z-index: 2;
}
.card-content-overlay time {
    display: block;
    font-size: 0.9em;
    margin-bottom: 10px;
    opacity: 0.9;
}
.card-content-overlay h2 {
    font-size: 1.4em;
    line-height: 1.4;
}
.load-more-container {
    text-align: center;
    margin-top: 50px;
}
.load-more-btn {
    background-color: #003C63;
    color: white;
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}
/* HOVER ATUALIZADO: Muda para azul claro */
.load-more-btn:hover {
    background-color: #00A9E2;
}


/*
==================================================================
ESTILOS PÁGINA "NOTÍCIA" (INTERNA)
==================================================================
*/

.pagina-noticia .hero-sobre {
    display: none;
}

.article-hero-banner {
    position: relative;
    width: 100%;
    line-height: 0;
}

.article-hero-banner img {
    display: block;
    width: 100%;
    /* max-height: 550px; -- Removido para padronização de altura */
    height: auto;
    object-fit: cover;
}

.article-hero-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 44, 74, 0.9) 10%, rgba(0, 44, 74, 0.1) 60%, transparent 100%);
    z-index: 1;
}

.article-hero-banner .container {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 2;
    padding-bottom: 50px;
}

.article-hero-banner h1 {
    font-size: clamp(2.2em, 5vw, 3.2em);
    line-height: 1.2;
    color: white;
    max-width: 900px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.article-main-section {
    padding: 60px 0;
}

.article-layout {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 60px;
}

.article-header {
    text-align: left;
    padding-bottom: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
}

.article-header h1{
    padding-bottom: 20px;
}

.article-meta {
    display: flex;
    justify-content: left;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px 40px;
    color: #555;
    font-size: 0.95em;
}

.meta-info,
.social-share {
    display: flex;
    align-items: center;
    gap: 15px;
}

.meta-info time,
.meta-info .article-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.meta-info time::before {
    content: '\f073';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #00A9E2;
}

.meta-info .article-category::before {
    content: '\f07c';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #00A9E2;
}

.meta-info time::after {
    content: '•';
    margin-left: 15px;
    color: #ccc;
}

.article-category {
    color: #003C63;
    font-weight: 600;
    text-decoration: none;
}
.article-category:hover {
    text-decoration: underline;
}

.social-share span {
    font-weight: 600;
    color: #333;
}

.social-share a {
    color: #555;
    font-size: 1.2em;
    transition: color 0.3s, transform 0.3s;
}
.social-share a:hover {
    color: #003C63;
    transform: scale(1.1);
}

.article-content h2,
.article-content h3 {
    color: #003C63;
    margin-top: 2.5em;
    margin-bottom: 1em;
}

.article-content p,
.article-content li {
    font-size: 1.1em;
    line-height: 1.9;
    color: #333;
    margin-bottom: 1.5em;
}

.article-content ul,
.article-content ol {
    list-style-position: inside;
    padding-left: 15px;
}
.article-content ul { list-style-type: disc; }
.article-content ol { list-style-type: decimal; }

.article-content a {
    color: #00A9E2;
    text-decoration: underline;
    font-weight: 600;
}

.article-content blockquote {
    margin: 40px 0;
    padding-left: 25px;
    border-left: 4px solid #00A9E2;
    font-style: italic;
    font-size: 1.2em;
    color: #555;
}

.article-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.sidebar-widget {
    background-color: #f8f8f8;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    font-size: 1.2em;
    color: #003C63;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.sidebar-widget.related-posts a {
    display: block;
    color: #003C63;
    font-weight: 600;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
    text-decoration: none;
}
.sidebar-widget.related-posts a:last-child {
    border-bottom: none;
}
.sidebar-widget.related-posts a:hover {
    color: #00A9E2;
}

.related-articles {
    padding: 70px 0;
    background-color: #f8f8f8;
}
.related-articles .related-title {
    text-align: center;
    color: #003C63;
    font-size: 2.2em;
    margin-bottom: 50px;
}
.related-articles .news-grid-container {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/*
==============================================
ESTILOS PÁGINA "FALE CONOSCO"
==============================================
*/

.contact-info-box {
    border-radius: 15px;
    padding: 40px;
    text-align: left;
    max-width: 700px;
    margin: 40px auto;
}

.contact-info-box h2 {
    color: #003C63;
    font-size: 2.2em;
    margin-bottom: 15px;
}

.contact-info-box p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

.contact-email-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #005085;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

.contact-email-link i {
    font-size: 1.2em;
}

.contact-email-link:hover {
    color: #003C63;
    text-decoration: underline;
}

.social-divider {
    margin: 40px 0 20px 0;
    text-align: left;
}

.social-divider h3 {
    font-size: 1.2em;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.social-links {
    display: flex;
    justify-content: left;
    gap: 30px;
}

.social-links a {
    color: #003C63;
    font-size: 2em;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
    color: #d2d22d;
}

.contact-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.contact-form-section {
    padding: 60px 0;
    background-color: #f8f8f8;
}
.contact-form-section h3 {
    font-size: 1.5em;
    color: #003C63;
    margin-bottom: 20px;
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group {
    margin-bottom: 20px;
}
.contact-form-section input,
.contact-form-section textarea {
    width: 100%;
    padding: 15px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-family: "Montserrat", sans-serif;
}
.contact-form-section ::placeholder {
    color: #555;
    opacity: 1;
}
.submit-btn {
    background-color: #003C63;
    color: white;
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1em;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}
/* HOVER ATUALIZADO: Muda para azul claro */
.submit-btn:hover {
    background-color: #00A9E2;
}

/*
==============================================
ESTILOS APRIMORADOS PARA A SEÇÃO FAQ
==============================================
*/

.faq-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.section-header-center {
    text-align: center;
    margin-bottom: 50px;
}

.section-header-center .section-title {
    margin-bottom: 15px;
}

.section-header-center .section-subtitle {
    font-size: 1.1em;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.accordion-item.active {
    border-left: 4px solid #00A9E2;
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 20px 50px 20px 25px;
    font-size: 1.15em;
    font-weight: 600;
    color: #003C63;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: #f5fcff;
}

.accordion-header::before,
.accordion-header::after {
    content: '';
    position: absolute;
    right: 25px;
    top: 50%;
    width: 16px;
    height: 2px;
    background-color: #003C63;
    transition: transform 0.3s ease-out;
}

.accordion-header::before {
    transform: translateY(-50%) rotate(0deg);
}

.accordion-header::after {
    transform: translateY(-50%) rotate(90deg);
}

.accordion-item.active .accordion-header::before {
    transform: translateY(-50%) rotate(180deg);
}

.accordion-item.active .accordion-header::after {
    transform: translateY(-50%) rotate(0deg);
}

.accordion-item.active .accordion-header {
    font-weight: 700;
    color: #00A9E2;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    color: #333;
    font-size: 1em;
}

.accordion-content p, 
.accordion-content ul {
    line-height: 1.7;
    padding: 0 25px 0 25px;
}

.accordion-content ul {
    list-style-position: inside;
    padding-left: 25px;
    margin-top: 15px;
}
.accordion-content ul li {
    margin-bottom: 10px;
}

.accordion-content a {
    color: #00A9E2;
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.3s ease;
}
.accordion-content a:hover {
    color: #00A9E2;;
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
    padding-bottom: 25px;
}

/*
==============================================
RODAPÉ
==============================================
*/

.site-footer {
    background-color: #003C63;
    color: #ffffff;
    padding: 40px 0;
}
.footer-top, .footer-main, .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-top {
    margin-bottom: 30px;
}
.back-to-top-btn {
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s ease;
}
.back-to-top-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}
.footer-social-icons {
    display: flex;
    gap: 15px;
}
.footer-social-icons a i {
    color: #ffffff;
    font-size: 22px;
    transition: color 0.3s;
}
.footer-social-icons a:hover i {
    color: #dddddd;
}
.footer-logo img {
    height: 45px;
}
.footer-privacy a {
    font-size: 14px;
    color: #ffffff;
}
.footer-divider {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 25px 0;
}
.footer-bottom {
    font-size: 13px;
    color: #cccccc;
}
.footer-bottom a {
    color: #cccccc;
}
.footer-bottom a:hover {
    color: #ffffff;
}

/* ==============================================
ESTILOS PARA BANNER DA NOTÍCIA
============================================== */

.article-banner {
    width: 100%;
    margin-bottom: 40px;
    line-height: 0;
}

.article-banner img {
    max-width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
    display: flex;
    display: block;
    height: auto;
    max-height: 550px;
}

.center-img{
    justify-content: center;
    align-items: center;
    text-align: center;
    display: flex;
    object-fit: contain;
}

/* ==============================================
ESTILOS ADICIONAIS PARA CONTEÚDO DE ARTIGOS
============================================== */

.article-content ul {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 1.5em;
}

.article-content h3 {
    margin-top: 2em;
    margin-bottom: 1em;
    font-size: 1.4em;
    color: #003C63;
}

.article-content li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #333;
}

/*
==============================================
ESTILOS PARA O BANNER TEMPORÁRIO
==============================================
*/
.banner-temporario {
    width: 100%;
    aspect-ratio: 16 / 7;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
}

.banner-temporario-conteudo {
    width: 45%;
    height: 100%;
    background-color: #003C63;
    clip-path: ellipse(80% 100% at 0% 50%);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 3% 20% 3% 8%;
}

/*
==============================================
NOVA SEÇÃO: PADRONIZAÇÃO DE BANNERS - PÁGINAS INTERNAS
==============================================
*/

/* DOCUMENTAÇÃO:
  Este seletor agrupa os banners das páginas internas que queremos padronizar.
  - .hero-sobre: É o banner da página "Sobre o Instituto GPA".
  - .article-hero-banner: É o banner que aparece no topo de uma notícia individual.
*/
.hero-sobre,
.article-hero-banner {
    height: 450px; /* Define uma altura fixa para todos os banners internos */
    max-height: 450px; /* Garante que a altura não seja ultrapassada */
    padding: 0; /* Remove paddings que possam interferir na altura */
    display: flex; /* Usa flexbox para ajudar a alinhar o conteúdo interno */
    align-items: center; /* Centraliza o conteúdo verticalmente */
    overflow: hidden; /* Garante que a imagem de fundo não "vaze" para fora do contêiner */
}

/* DOCUMENTAÇÃO:
  Ajuste específico para a imagem dentro do banner de artigo.
  Isto garante que a imagem preencha completamente a nova altura fixa de 450px.
*/
.article-hero-banner img {
    width: 100%;
    height: 100%; /* Faz a imagem ocupar toda a altura do contêiner do banner */
    object-fit: cover; /* 'cover' redimensiona a imagem para cobrir todo o espaço, cortando o mínimo necessário, sem distorcer. */
    max-height: none; /* Remove a regra de 'max-height' que existia antes para não criar conflito. */
}

/* DOCUMENTAÇÃO:
  Ajuste para o conteúdo de texto do banner "Sobre".
  Como removemos o padding do container principal (.hero-sobre), 
  adicionamos um padding aqui para que o texto não fique colado nas bordas.
*/
.hero-sobre .hero-sobre-content {
    padding-left: 8%; /* Adiciona um espaçamento à esquerda para o texto */
}


/*
==============================================
REGRAS DE RESPONSIVIDADE
==============================================
*/

@media (max-width: 992px) {
    .noticia-card {
        flex-basis: calc(50% - 10px);
        min-width: calc(50% - 10px);
    }
    .noticias-btn.prev { left: -15px; }
    .noticias-btn.next { right: -15px; }

    .hero-sobre-content {
        width: 70%;
    }
    .governance-grid {
        grid-template-columns: 1fr;
    }
    .timeline {
        flex-direction: column;
        padding-top: 0;
        gap: 30px;
    }
    .timeline::before, .timeline-item::after {
        display: none;
    }
    .timeline-item {
        width: 100%;
    }
    .timeline-year {
        position: static;
        transform: none;
        text-align: left;
        margin-bottom: 10px;
    }
    .timeline-content {
        margin-top: 0;
        text-align: left;
    }
    
    .campaign-numbers-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "large-blue"
            "small-yellow-1"
            "small-yellow-2";
    }

    .news-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .campaign-numbers-grid {
        flex-direction: column;
    }

    .article-layout {
        grid-template-columns: 1fr;
    }
    .article-sidebar {
        position: static;
        margin-top: 50px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .noticias-btn {
    display: none !important;
}

.statute-link {
    padding: 15px 100px;
}

.timeline-btn{
    display: none !important;
}

    .stat-card-group{
        display: block;
        
    }

    .stat-card {
        margin-bottom: 30px;
    }

    .numbers-section-prosperar{
        display: block;
    }

    .icones-sociais {
        flex-direction: column;
        gap: 20px;
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .logo {
        width: 130px;
    }
    .nav-header .container {
        justify-content: flex-end;
        padding: 15px;
    }
    .hamburger-menu {
        display: flex;
    }
    .ul-header {
        display: none;
    }
    body.menu-open .ul-header {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #003C63;
        z-index: 5;
    }
    .ul-header a {
        font-size: 1.3rem;
    }
    body.menu-open .hamburger-bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    body.menu-open .hamburger-bar:nth-child(2) {
        opacity: 0;
    }
    body.menu-open .hamburger-bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .ul-header > li {
        width: 100%;
        text-align: center;
        flex-wrap: wrap;
    }

    .has-submenu:hover > .submenu {
        display: none;
    }

    .submenu {
        display: none;
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        transition: none;
        background-color: #004c7d;
        padding: 5px 0;
        border-radius: 0;
    }

    .has-submenu.submenu-open > .submenu {
        display: block;
    }

    .submenu li a {
        padding: 15px 20px;
        font-size: 1rem;
        color: #e0e0e0;
    }

    .submenu li a:hover {
        background-color: #005a96;
        color: #ffffff;
    }

    .has-submenu > a {
        position: relative;
    }

    .has-submenu > a::after {
        content: '▼';
        font-size: 0.7em;
        position: absolute;
        right: -25px;
        top: 50%;
        transform: translateY(-50%);
        transition: transform 0.3s ease;
    }
    
    .has-submenu.submenu-open > a::after {
        transform: translateY(-50%) rotate(180deg);
    }
    
    .carousel-container {
        aspect-ratio: 4 / 3;
    }
    .slide-content {
        width: 100%;
        clip-path: none;
        background-color: transparent;
    }
    .slide::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 70%;
        background: linear-gradient(to top, rgba(0,0,0,0.8) 20%, transparent);
        z-index: 1;
    }
    .text-wrapper {
        position: absolute;
        bottom: 30px;
        top: auto;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        padding: 0;
        text-align: center;
    }
    .text-wrapper h2 {
        font-size: 1.5em;
    }
    .text-wrapper .btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .carousel-dots {
        bottom: 10px;
    }

    .frentes-div {
        flex-direction: column;
        gap: 20px;
    }
    .frentes-box {
        padding: 60px 20px;
        min-width: 100%;
    }
    .frentes-box-title-wrapper {
        top: 20px;
    }
    .frentes-box-title {
        font-size: 1.8rem;
    }
    .frentes-box-text {
        font-size: 1rem;
        line-height: 1.6;
    }
    .noticia-card {
        flex-basis: 100%;
        min-width: 100%;
    }
    .newstaller-div {
        flex-direction: column;
        text-align: center;
    }
    .forms-newslatter {
        width: 100%;
    }

    .hero-sobre-content {
        width: 100%;
        clip-path: none;
        padding: 30px;
    }
    .hero-sobre-content h2 {
        font-size: 1.8em;
    }
    
    .partnership-content {
        flex-direction: column;
        text-align: center;
    }

    .news-page-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .search-bar {
        max-width: none;
    }
    
    .article-header h1 {
        font-size: 2em;
    }
    .article-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-intro-grid, .form-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-top, .footer-main, .footer-bottom {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
    .footer-social-icons a {
        margin: 0 10px;
    }
    .footer-main {
        padding-bottom: 20px;
    }
    .testimonials-grid{
        display: block;
    }

    .testimonial-card{
        
        padding: 30px;
    }

    .numbers-grid{
        display: block;
    }

    .stat-box-text, .stat-box-dark{
        margin-bottom: 20px;
    }

    .timeline-container {
        padding-left: 25px;
        padding-right: 25px;
        scroll-padding: 0 25px; 
    }

    .timeline-item-h {
        flex-basis: 85%;
        margin: 0 10px;
    }

    .timeline-btn {
        display: none;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .testimonial-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .testimonial-content .testimonial-text {
        border-left: none;
        padding-left: 0;
        text-align: center;
    }

    .article-header {
        padding: 20px 0;
    }
    .article-meta {
        flex-direction: column;
        gap: 25px;
    }
    .article-sidebar {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .news-grid-container {
        grid-template-columns: 1fr;
    }
}