.hero-home {
    position: relative;
    min-height: 720px;
    width: 100%;
    margin: 0;
    border-radius: 0 0 32px 32px;
    overflow: hidden;
    background:
        linear-gradient(rgba(0, 75, 128, 0.075), rgba(0, 75, 128, 0.229)),
        url("../img/banner-gpr.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-conteudo {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 850px;
    padding: 40px;
}

.hero-conteudo h1 {
    font-size: 52px;
    margin-bottom: 18px;
    font-weight: 800;
}

.hero-conteudo p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 34px;
}

.hero-botoes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 760px;
    margin: 0 auto;
}

.btn-hero {
    background: white;
    color: #203452;
    padding: 18px 22px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(0,0,0,0.18);
    transition: 0.2s;
}

.btn-hero:hover {
    transform: translateY(-4px);
}

.onda {
    position: absolute;
    left: -5%;
    right: -5%;
    bottom: -80px;
    height: 180px;
    background: #f4f6f8;
    border-radius: 50% 50% 0 0;
    z-index: 1;
}

.home-conteudo {
    max-width: 1120px;
    margin: 70px auto 0 auto;
    padding: 0 20px;
}

.titulo-secao {
    text-align: center;
    margin-bottom: 34px;
}

.titulo-secao span,
.cabecalho-noticias span {
    color: #203452;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}

.titulo-secao h2 {
    color: #203452;
    font-size: 34px;
    margin: 10px 0;
}

.titulo-secao p {
    color: #52616f;
    font-size: 17px;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.6;
}

.cards-resumo {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 48px;
}

.card-resumo {
    background: white;
    padding: 30px;
    border-radius: 22px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    border: 1px solid #e9eef3;
}

.card-resumo h3 {
    color: #203452;
    margin-bottom: 12px;
    font-size: 22px;
}

.card-resumo p {
    color: #52616f;
    line-height: 1.6;
}

.noticias-home {
    margin-top: 20px;
}

.cabecalho-noticias {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 22px;
}

.cabecalho-noticias h2 {
    color: #203452;
    font-size: 32px;
    margin-top: 8px;
}

.cabecalho-noticias a {
    background: #004a80;
    color: white;
    padding: 12px 18px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
}

.lista-noticias {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 20px;
}

.noticia-destaque,
.noticia-menor {
    background: white;
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    border: 1px solid #e9eef3;
}

.noticia-destaque {
    min-height: 230px;
}

.tag-noticia {
    display: inline-block;
    background: #e8eef7;
    color: #203452;
    padding: 7px 12px;
    border-radius: 999px;
    font-weight: bold;
    font-size: 13px;
    margin-bottom: 16px;
}

.noticia-destaque h3,
.noticia-menor h3 {
    color: #203452;
    margin-bottom: 12px;
}

.noticia-destaque p,
.noticia-menor p {
    color: #52616f;
    line-height: 1.6;
    margin-bottom: 18px;
}

.noticia-destaque small {
    color: #7b8794;
}