@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:'Inter';
}
html {
    scroll-behavior: smooth;
}
:root {
    --azul-principal:#22367F;
    --azul-claro:#334AA2;
    --azul-escuro:#1A2A65;
    --branco:#F5F5F5;
    --gray:#424242;
    --gray-claro:#D8D8D8;
    --verde-escuro:#087A34;
    --verde-principal:#038F39;
    --verde-claro:#4DAD4C;
    --verde-mais-claro:#DDEEE4;
}
.text-white {
    color: var(--branco);
}
.text-gray {
    color: var(--gray);
}
.position-center {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
}
.position-center-top {
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    justify-content: space-between;
}
.position-center-column {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 1.2rem;
}
.position-left-column {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 1.9rem;
}
a {
    text-decoration: none;
}
h1 {
    font-weight: 400;
}
h2 {
    font-size: 1.1rem;
    font-weight: 500;
}
p{
    font-size: 1rem;
    font-weight: 300;
}
section {
    min-height: 90.5vh;
    width: 100%;
}
.measure-sections {
    padding: 115px 150px;
}
.measure-text {
    font-size: 16px;
    font-weight: 400;
}
ul{
    list-style: none;
    gap: 3rem;
    color: var(--branco);
}
ul.text{
    list-style: none;
    gap: 3rem;
    color: var(--gray);
    font-size: 0.9rem;
}
ul.text li{
    line-height: 33px;
}
button {
    padding: 10px 16px;
    border-radius: 8px;
    border: none;
    color: var(--branco);
    display: flex;
    align-items: center;
}
header {
    background-color: var(--azul-principal);
    height: 4rem;
    width: 100%;
    padding: 13px 150px;
    position: fixed;
    box-shadow: 0px 4px 10px #0000004d;
    z-index: 999;
    transition: 0.5s ease;
}
header a {
    color: var(--branco);
}
.button-verde {
    background-color: var(--verde-principal);
}
a .button-verde:hover {
    cursor: pointer;
    background-color: var(--verde-escuro);
}
.button-verde-claro {
    background-color: var(--verde-claro);
}
.button-white {
    color: var(--azul-principal);
    background-color: var(--branco);
}
a .button-white:hover {
    cursor: pointer;
    background-color: var(--gray-claro);
}
.button-azul {
    background-color: var(--azul-principal);
}
a .button-azul:hover {
    cursor: pointer;
    background-color: var(--azul-claro);
}
.button-azul-claro {
    background-color: var(--azul-claro);
}
a .button-azul-claro:hover {
    cursor: pointer;
    background-color: var(--azul-escuro);
}
#section_objetive {
    background-color: var(--verde-principal);
}
#box_objective {
    padding-top: 2rem;
    gap: 35px;
    color: var(--branco);
}
.card_objective{
    height: 180px;
    border-radius: 20px;
    padding: 30px;
    gap: 30px;
    background: url("../imgs/objective.svg")  right top no-repeat, var(--verde-claro);
    box-shadow: 0px 3px 20px #00000018;
    transition: height 0.6s ease;
    /* overflow: hidden;
    text-overflow: ellipsis;
    transition: height 0.3s ease; */
}
.value p {
    max-height: 160px;
    overflow: hidden;
    transition: max-height 0.6s ease;
    position: relative;
}

.value:hover {
    height: 550px;
}

.value:hover p {
    max-height: 550px;
}
.card_objective div {
    height: 100%;
    min-width: 105px;
    padding: 22px;
    background-color: var(--verde-principal);
    border-radius: 10px;
    gap: 0.3rem;
}

#section_hero {
    background-image: url('../imgs/hero.svg'); 
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
#logo_hero {
    width: 480px;
}
#section_hero button{
    font-size: 1rem;
    display: flex;
    gap: 1rem;
}
#section_hero i{
    font-size: 1.5rem;
}
#section_hero div {
    display: flex;
    gap: 1rem;
}
#section_aboutus {
    display: flex;
    gap: 10rem;
    background: url("../imgs/aboutus.svg")  right center no-repeat, var(--branco);
    background-size: 71vh;
    line-height: 25px;
}
#box_aboutus {
    width: 400%;
    height: 100%;
}
#section_services{
    background: url("../imgs/services.svg") left bottom no-repeat;
}
.box_services {
    padding-top: 4rem;
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
}
.box_services::-webkit-scrollbar {
  display: none; 
}
.services {
    height: 350px;
    min-width: 243px;
    border-radius: 15px;
    background-color: var(--azul-principal);
    padding: 30px;
    gap: 12px;
    color: var(--branco);
}
.services div{
    padding: 12px;
    background-color: var(--azul-claro);
    border-radius: 6px;
}
.services i{
    font-size: 2rem;
}
.services p{
    height: 219px;
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
}
.button_arrow {
    padding: 10px;
    border-radius: 50px;
}
.button_arrow:hover {
    cursor: pointer;
    background-color: var(--azul-claro);
}
.box_button_arrow {
    gap: 1rem;
}
#section_directors{
    background: url("../imgs/directors.svg") left top no-repeat, var(--branco);
}

/*
.box_image_directors {
    height: 160px;
    width: 40%;
    border-radius: 15px;
    background-color: var(--verde-mais-claro);
}
.card_directors {
    gap: 1rem;
}
*/

.box_image_directors {
  width: 30%;
  border-radius: 15px;
  background-color: var(--verde-mais-claro);
}

.card_directors {
  gap: 1rem;
  align-items: stretch;
  width:100%;
}

.card_text_directors{
    padding: 30px;
    min-height: 148px;
    border-radius: 15px;
    background: url("../imgs/element1_directors.svg")  left bottom no-repeat, url("../imgs/element2_directors.svg") right top no-repeat, var(--azul-principal);
    gap: 12px;
    color: var(--branco);
}
#section_partnerships {
    background-image: url("../imgs/partnerships.svg"); 
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
#box_title_partnerships button{
    font-size: 1rem;
    display: flex;
    gap: 1rem;
}
#box_title_partnerships i{
    font-size: 1rem;
}
#box_partnerships {
    padding-top: 30px;
}
.box_business {
    padding-top: 1.5rem;
    display: flex;
    gap: 1.5rem;
}
.business {
    height: 160px; 
    width: 25%;
    border-radius: 15px;
    background-color: var(--branco);
    overflow: hidden;
    transition: all 0.3s ease;
}
.box_text_business {
    padding: 30px;
    gap: 12px;
}
.box_text_business p {
    width: 100%;
    height: 78px;
    overflow: hidden;
}
.business .img{
    height: 160px;
    width: 100%;
    border-radius: 15px;
    background-color: var(--gray-claro);
}
.business:hover {
    height: 380px;
    width: 25%;
    border-radius: 15px;
    background-color: var(--branco);
}
#section_form {
    display: flex;
    gap: 10rem;
    background: url("../imgs/element_form.svg")  right top no-repeat, var(--branco);
    background-size: auto auto, auto auto, auto;
    line-height: 25px;
}
#section_form .box_form {
    width: 50%;
    height: 100%;
}
.box_location-time {
    gap: 27px;
    margin-top: 55px;
}
.location-time {
    width: 250px;
    padding: 27px;
    background-color: var(--verde-mais-claro);
    border-radius: 15px;
}
.location-time i {
    font-size: 1.8rem;
    color: var(--verde-principal);
}
#section_form form {
    padding: 30px;
    box-shadow: 0px 0px 20px #0000001f;
    border-radius: 20px;
    background-color: var(--branco);   
}
#section_form form input{
    border: none;
    width: 100%;
    border-radius: 8px;
    padding: 18px;
    background-color: var(--verde-mais-claro);
    color: var(--gray);
    text-align: left;
}
#section_form form input:focus {
    outline: 0;
}
#section_form form textarea:focus {
    outline: 0;
} 
#mensagem {
  resize: none;  
  height: 200px;                
  overflow-y: auto;             
  padding: 13px 13px 13px 13px;  
  resize: vertical;             
  line-height: 1.4;             
  background-color: #e6f8ec;  
  border-radius: 12px;
  border: none;
  width: 100%;
  background-color: #DDEEE4;
}
input::placeholder, textarea::placeholder{
    color: var(--gray);
}
#section_form form a {
    width: 100%;
} 
#section_form form button {
    justify-content: center;
    width: 100%;
} 
.decoration-section_form {
    height: 30px;
    width: 33.33%;
}
.green-1{
    background-color: var(--verde-claro) ;
}
.green-2{
    background-color: var(--verde-escuro) ;
}
.green-3{
    background-color: var(--verde-principal) ;
}
#map {
    height: 50.5vh;
}
#banner {
    width: 100%;
    height: 40vh;
    background: url("../imgs/element_banner.svg") left bottom no-repeat, url("../imgs/element_banner_1.svg") right top no-repeat, var(--azul-principal);
    background-size: auto auto, auto auto, auto;
    padding: 50px;
}
#banner p{
    text-align: center;
    padding: 0% 28%;
}
#banner div{
    display: flex;
    gap: 1rem;
}
#banner i{
    font-size: 1.5rem;
}
#banner button{
    font-size: 1rem;
    display: flex;
    gap: 1rem;
}
.box_footer {
    padding: 70px 150px;
    background: url("../imgs/footer.svg") center center no-repeat, var(--branco);
    background-size: 100vh;
}
.box_menu_footer {
    gap: 70px;
}
.box_menu_footer ul{
    gap: 1rem;
    padding-top: 1rem;
}
#rights {
    background-color: var(--verde-principal);
    width: 100%;
    gap: 12px;
    padding: 40px;
}
#rights span {
    gap: 18px;
}
#rights small:first-of-type {
    border-right: 1px solid var(--branco);
    padding-right: 18px;
}
small {
    font-weight: 300;
}
.list-menu a {
    color: var(--gray);
}

@media screen and (max-width: 1279px) {
    header {
    padding: 13px 100px;
    }
    .measure-sections {
    padding: 115px 100px;
    }
    #section_form {
    gap: 8rem;
    }
    .box_footer {
    padding: 70px 100px;
    }
}

/* menu hamburguer */

#nav-menu {
    display: flex;
}
#nav-menu button {
    background: none;
    border: none;
    cursor: pointer;
}
#button-menu {
    display: none;
}
.nav-menuMobile {
    display: none;
    
}

/* página benefícios e estrutura (html1 e html2)*/

#section_benefits_structure {
    background-image: url('../imgs/background_image.svg'); 
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/* página notícias (html3)*/

#section_news {
    background-image: url('../imgs/background_image.svg'); 
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 500px !important;
    gap: 8rem;
}
#section_news .container_box_news {
    width: 100%;
}
#section_news .box_news {
    width: 100%;
    min-height: 20rem;
    background-color: var(--azul-principal);
    border-radius: 15px;
}
.section_more_news {
    width: 100%;
}
.box_more_news {
    gap: 1.5rem;
    width: 100%;
}
.news {
    min-height: 360px; 
    width: 25%;
    border-radius: 15px;
    background-color: var(--azul-principal);
    overflow: hidden;
    transition: all 0.3s ease;
}
.news .img{
    height: 160px;
    width: 100%;
    border-radius: 15px;
    background-color: var(--gray-claro);
}
.box_text_news{
    height: 200px;
    padding: 30px;
    gap: 12px;
    justify-content: space-between;
}
.box_text_news h2{
    width: 100%;
    height: 60px;
    text-overflow: ellipsis;
    overflow: hidden;
}
.box_news_text h1{
   width: 100%;
    height: 54px;
    text-overflow: ellipsis;
    overflow: hidden;
}
.box_news_text {
    height: 312px;
    gap: 1.5rem;
    margin:30px ;
}
.box_news_text .summary {
    width: 100%;
    height: 60px;
    text-overflow: ellipsis;
    overflow: hidden;
}
.box_news_text span {
    background-color: var(--azul-claro);
    padding: 7px 10px;
    border-radius: 5px;
}
.box_news_text button{
   gap: 0.4rem;
}
.box_news_image {
    width: 50%;
    min-height:24rem;
    border-radius: 15px;
    background-color: var(--gray-claro);
}
.box_pagination {
    gap: 2rem;
}
.box_pagination button{
    background: none;
    cursor: pointer;
    padding: 0;
}
.box_pagination button i{
    font-size: 1.7rem;
    color: var(--gray);
}
.box_pagination p{
    font-size: 1.3rem;
}
.box_pagination .active_page{
    background-color: var(--gray-claro);
    padding: 7px 15px;
    border-radius: 5px;
}

/* página notícia clicada (html3.1)*/

#section_main_news {
    background-image: url('../imgs/background_image.svg'); 
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.return_button_news {
    width: 100%;
}
.return_button_news button{
    color: var(--gray);
    font-size: 1.5rem;
    cursor: pointer;
}
#section_main_news span{
   gap: 1rem;
   font-size: 1.3rem;
}
#section_main_news h1{
   text-align: left;
}
.image_main_news {
    width: 100%;
    height: 550px;
    border-radius: 15px;
    background-color: var(--gray-claro);
    margin: 50px 0px;
}

/*página documentos (html4)*/

#section_document {
    background-image: url("../imgs/background_image.svg"); 
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 500px !important;
}
.tab-content.active {
    display: block;
}
.tab-content {
    display: none;
    padding: 20px 0;
}
#section_document div {
    width: 100%;
}
.tab-container-documents {
    width: 100%;
    min-height: 10rem;
}
.tab-container-documents a {
    background-color: white;
    padding: 20px;
    border-radius: 0.5rem;
    width: 100%;
    transition: 0.3s ease;
    cursor: pointer;
    margin-top: 1rem;
    box-shadow: 0px 0px 60px #00000015;
}
.tab-container-documents a * {
    color: var(--gray);
}
.tab-container-documents a:hover * {
    color: var(--branco);
}
.tab-container-documents a:hover {
    background-color: var(--azul-claro);
}
.tab-container-documents span {
    gap: 1rem;
}
.tab-container-documents a i {
    font-size: 2rem;
}
.tab-container-documents small {
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 1rem;
    
    font-weight: 400;
}
.tabs {
    justify-content: space-between;
    align-items: center;
    background-color: var(--azul-principal);
    display: flex;
    border-radius: 0.5rem;
    list-style: none;
    padding: 10px;
    gap:0;
    width: 100%;
}
.tab-link {
    color: #fff;
    padding: 10px 18px;
    cursor: pointer;
    border-radius: 5px;
}
.tab-link.active, .tab-link:hover {
    background-color: var(--azul-claro);
    color: #ffffff;
}

/*Paginação --------------------------------------------------------------------------------------*/
.paginacao {
    text-align: center;
    margin: 30px 0;
}

.paginacao .page-numbers {
    display: inline-block;
    margin: 0 8px;  /* espaçamento entre números */
    padding: 10px 15px;
    background: #eee;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
}

.paginacao .page-numbers:hover {
    background: #ccc;
}

.paginacao .current {
    background: #334AA2;
    font-weight: bold;
    color: #fff !important;
}