@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    overflow-x: none;
}

a{
    text-decoration: none;
}

.cabecalho{
    width: 100%;
    border-bottom: 1px solid #000357;
}

.subnav{
    background-color: #42468C;
    color: white;
    height: 44px;
    width: 100%;
    padding: 8px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navcontato{
    display: flex;
    gap: 25px;
}

.redes{
    display: flex;
    gap: 15px;
}

.redes a{
    color: white;
    font-size: 20px;
}

.navbar{
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 111px;
    padding: 16px 0;
    background-color: white;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

#logo-nav-etp{
    width: 100px;
    height: 75px;
}

.navbar li{
    display: flex;
    gap: 20px;
}

.menuhamburguer{
    display: none;
}

.navbar ul li {
    position: relative;
}

.navbar ul li > a {
    text-decoration: none;
    color: #42468C;
    font-size: 16px;
    padding: 10px;
    display: inline-block;
    font-weight: 600;
}

.navbar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

.modal0 {
    margin-top: -1.5px;
    display: none;
    position: absolute;
    border: 1px solid #ccc;
    background-color: #fff;
    padding: 0px;
    border-radius: 5px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 100;
    width: 200px;
    left: 0px;  /* Alinhar com o título */
    top: 100%; /* Ficar diretamente abaixo do título */
    border-top: 4px solid orange;
}

.modal0 > a{
    font-size: 17px;
    text-decoration: none;
    display: inline-block;
    margin-top: 5px;
    padding-left: 5px;
    width: 100%;
    height: 40px;
    padding-top: 5px;
}

.modal0 a:nth-child(1){
    margin-top: 7px;
}

.modal0.show {
    display: block; /* Mostrar quando a classe 'show' é adicionada */
}

.modal0 p {
    margin: 0;
    font-size: 12px;
    color: #333;
}

.faleconosco{
    background-color: #F26D3D;
    color: #fff;
    border-radius: 1rem;
    padding: 8px 20px;
    border: none;
    font-weight: 600;
    width: 143.35px;
    height: 32px;
    text-wrap: nowrap;
}

/* Mobile Menu*/





.mobmenu{
    background-color: #fff;
    height: 100vh;
    width: 265px;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    display: none;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
    box-sizing: border-box;
}

.mobmenu i.close-icon {
    position: absolute;
    top: 15px;
    right: 10px;
    font-size: 22px;
    cursor: pointer;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none; /* começa oculto */
    z-index: 99; /* deve ser menor do que o z-index do mobmenu para estar por trás dele */
}

.mobmenu i{
    margin-left: auto;
    padding-right: 10px;
    margin-top: 0px;
    font-size: 22px;
    color: #1DAEE4;
}

.mobmenu i:hover{
    color: #255B88;
}

.mobi{
    margin-top: 7px;
    margin-bottom: 40px;
    margin-left: 30px;
    width: 100px;
    height: 75px;
}

.linksmob{
    display: flex;
    flex-direction: column;
}

.linksmob a{
    height: 50px;
    width: 265px;
    padding-top: 13px;
    padding-left: 15px;
    text-decoration: none;
    font-size: 16px;
    color: #42468C;
}

.mobbutton{
    background-color: transparent;
    border: none;
    width: 200px;
    height: 37px;
    margin-left: 28px;
    margin-top: 45px;
    overflow: hidden;
    position: relative; /* Adicionado para posicionar a imagem absolutamente */
    transition: transform 1s ease;
}

.mobbutton img{
    width: auto; /* Alterado para auto */
    min-width: 200px;
    height: auto; /* Alterado para auto */
    max-width: 100%; /* Adicionado para garantir que a imagem não ultrapasse o tamanho do botão */
    max-height: 100%; /* Adicionado para garantir que a imagem não ultrapasse o tamanho do botão */
    position: absolute; /* Adicionado para posicionar a imagem absolutamente */
    top: 50%; /* Adicionado para centralizar verticalmente */
    left: 50%; /* Adicionado para centralizar horizontalmente */
    transform: translate(-50%, -50%); /* Adicionado para centralizar a imagem */
    cursor: pointer;
    transition: opacity 1s ease;
}

.faleconoscorespmobi{
    background-color: #F26D3D;
    border: none;
    color: #42468C;
    padding: 4px;
    border-radius: 1.5rem;
    font-size: 12px;
    cursor: pointer;
    width: 170px;
    height: 30px;
    margin-top: 30px;
    display: block;
    margin-left: 11px;
}

.mobredes{
    margin-left: 28px;
    margin-top: 40px;
    display: flex;
    gap: 10px;
    margin-bottom: 70px;
}

.mobredes i,
.mobmenu i{
    color: #42468C;
}

.mobmenu{
    overflow: auto;
}

.content-box {
    display: none;
    margin-top: 10px;
    padding: 10px;
    background-color: #fff;
}

.content-box a{
    text-decoration: none;
    color: #42468C;
    font-size: 13px;
    padding: 10px;
    display: inline-block;
    font-weight: 600;
}

.toggle-btn {
    display: block;
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #f9f9f9;
    color: #000357;
    border: none;
    cursor: pointer;
    text-align: left;
}

.toggle-btn i{
    font-size: 14px;
    margin-left: 10px;
}

.toggle-btn:focus {
    outline: none;
    background-color: #e3dddd;
}

#btnmobip{
    padding: 0px;
    margin-right: auto;
}


/* Fim - Mobile Menu*/




.overlay25{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent background */
    z-index: 998; /* Behind the modal */
    display: block; /* Overlay is visible */
}

.novidades2025{
    position: fixed;
    width: 1030px;
    margin-top: -30px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.83);
    z-index: 999;
    display: block;
}

.body-novidades2025-modal{
    width: 1030px;
    height: 635px;
    position: relative;
    overflow: hidden;
}

#img-novidades2025-desk{
    width: 100%;
    height: 500px;
    object-fit: cover;
}

#btn-desk{
    position: absolute;
    width: 250px;
    height: 37.2px;
    bottom: 40px;
    object-fit: cover;
    left: 30px;
}

#img-novidades2025-mobile{
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.close-modal25 {
    position: absolute;
    top: 15px;
    left: 17px;
    background-color: transparent;
    border: none;
    color: white;
    cursor: pointer;
    width: 40px;
    height: 40px;
    background-color: #95de21;
}


#img-fechar-modal{
    font-size: 30px;
    color: #42468C;
}








.conteudo1{
    overflow: none;
}

.mobcarrossel{
    display: none;
}

.carrossel {
    height: 700px;
    width: 100%;
    overflow: hidden;
    position: relative;
    background-color: #1DAEE4;
}

.carrossel img {
    height: 700px;
    width: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carrossel img.active {
    opacity: 1;
}

/*

.carrossel{
    height: 700px;
    width: 100%;
    overflow: none;
    background-color: #1DAEE4;
}

.carrossel img{
    height: 700px;
    width: 100%;
    object-fit: cover;
} */

#banner-principal{
    width: 100%;
    height: 100%;
}
/*
#banner2{
    display: none;
}

#banner3{
    display: none;
}  */

.hidden2,
.hidden3{
    display: none;
}



.faixaconteudo1{
    height: 180px;
    background-color: #42468C;
    width: 100%;
    overflow: none;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    gap: 50px;
}

.faixaconteudo1 img{
    height: 350px;
    width: 380px;
    margin-top: 195px;
    padding-left: 95px;
    
}

.meiofaixa{
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.meiofaixa1 p{
    font-weight: 200;
}

.meiofaixa p{
    font-size: 18px;
}

.faleconoscooo{
    color: #fff;
    font-weight: 600;
    border: none;
    background-color: #F26D3D;
    border-radius: 2rem;
    margin-right: 130px;
    width: 210px;
    height: 45px;
}

.meiofaixa span{
    color: #f8c64f;
    font-weight: 500;
}

.faleconoscoresp{
    display: none;
}

#h2resp500{
    display: none;
}

.conteudo2{
    margin-top: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.conteudo2 h1{
    color: #42468C;
    font-weight: 700;
    font-size: 26px;
    margin-bottom: 70px;
}

.btns-c1{
    display: none;
}

.conteudo2 span{
    color: #F26D3D;
    font-weight: 700;
}

.sessao1-conteudo2{
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
}

.box-conteudo2{
    
    width: 570px;
    border: 2px solid #42468C;
    border-top-right-radius: .8rem;
    border-top-left-radius: .8rem;
}

.box-header-conteudo2{
    background-color: #42468C;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    border-top-right-radius: .7rem;
    border-top-left-radius: .7rem;
    color: #f8c64f;
    
}

.box-body-conteudo2{
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    
}

.box-body-conteudo2 p{
    color: #42468C;
    font-weight: 500;
    text-align: justify;
}

.box-footer-conteudo2{
    margin-top: 10px;
    padding-bottom: 15px;
    padding-left: 25px;
    display: flex;
    gap: 15px;
}

.btn-footer-conteudo2{
    border: none;
    border-radius: 1rem;
    padding: 8px 30px;
    color: #42468C;
    font-weight: 700;
    
    background-color: #F2C029;
    cursor: pointer;
    transition: 0.5s ease;
}

.btn-footer-conteudo2:hover{
    background-color: #42468C;
    color: #F2C029;
    transition: 0.5s ease;
}

.btn2-footer-conteudo2{
    border: none;
    border-radius: 1rem;
    background-color: #F26D3D;
    color: #fff;
    font-weight: 600;
    padding: 8px 30px;
    cursor: pointer;
}

.box-imgs-conteudo2{
    display: flex;
    gap: 20px;
}

.imgsmob{
    display: none;
}

.box1-imgs-conteudo2{
    
    width: 209px;
    
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.box2-imgs-conteudo2{
    
    width: 209px;
    
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#fotoc2{
    height: 390px;
    width: 438px;
    object-fit: cover;
}

.mtt{
    margin-top: 50px;
}

.mttt{
    margin-top: 80px;
}

#bf1{
    width: 360px;
    height: 290px;
    position: absolute;
    right: 30px;
    margin-top: -120px;
}

.conteudo3{
    margin-top: 70px;
    background-color: #f8ebda;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.conteudo3 h1{
    color: #42468C;
    font-weight: 600;
    margin-top: 70px;
}

.conteudo3 span{
    color: #F17833;
    font-weight: 600;
}

.boxes-video-conteudo3{
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 80px;
}

.box-video-conteudo3{
    width: 380px;
    display: flex;
    flex-direction: column;
    gap: 23px;
    
    border-radius: .5rem;
    padding: 15px;
}

.header-video-conteudo3{
    width: 350px;
    height: 250px;
    background-color: #000357;
    border-radius: .5rem;
    margin-right: 15px;
}

.header-video-conteudo3 iframe {
    width: 100%;
    height: 100%;
    border-radius: .5rem; /* Aplica o border-radius no iframe */
}

.body-video-conteudo3 h2{
    color: #F17833;
    font-weight: 600;
    text-align: start;
}

.body-video-conteudo3 p{
    text-align: start;
    
}

.body-video-conteudo3{
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #42468C;
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 12px;
}

.footer-video-conteudo3{
    display: flex;
    justify-content: space-around;
    align-items: center;
}

#footer-ph-icon{
    width: 134px;
    height: 60px;
    object-fit: cover;
}

#footer-ei-icon{
    width: 150px;
    height: 55px;
    background-color: transparent;
}

#footer-is-icon{
    width: 150px;
    height: 60px;
}

.footer-video-conteudo3 button{
    background-color: #f8c64f;
    border: none;
    color: #42468C;
    padding: 8px 20px;
    border-radius: 1.5rem;
    font-weight: 600;
    cursor: pointer;
}

.footer-video-conteudo3 button:hover{
    background-color: #42468C;
    color: #f8c64f;
    transition: 0.5s ease;
}

.conteudo4{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 70px;
}

.conteudo4 h1{
    color: #42468C;
    font-weight: 600;
    margin-bottom: 15px;
}

#br800{
    display: none;
}

.conteudo4 span{
    color: #F17833;
    font-weight: 600;
}

.conteudo4 h2{
    font-size: 17px;
    color: #42468C;
    font-weight: 600;
}

.box4c{
    width: 100%;
    max-width: 1180px;
}

.boxes-segmentos-conteudo4{
    display: flex;
    justify-content: space-around;
    gap: 24px;
    margin-top: 100px;
}

.box-segmentos-conteudo4{
    width: 290px;

    border-top-right-radius: .6rem;
    border-top-left-radius: .6rem;
    margin-bottom: 90px;
    border: 2px solid #42468C;
}

.header-segmentos-conteudo4{
    width: 289.15px;
    height: 200px;
    background-color: #000357;
    border-top-right-radius: .5rem;
    border-top-left-radius: .5rem;
}

.header-segmentos-conteudo4 img{
    object-fit: cover;
    width: 287.55px;
    height: 200px;
    border-top-right-radius: .5rem;
    border-top-left-radius: .5rem;
    display: none;
    transition: opacity 0.5s ease-in-out;
}

.header-segmentos-conteudo4 img.active {
    display: block;
    opacity: 1;
}

.body-segmentos-conteudo4{
    padding: 15px;
    padding-bottom: 0px;
}

.body-segmentos-conteudo4 h1{
    font-size: 21px;
    color: #F17833;
    font-weight: 600;
}

.body-segmentos-conteudo4 h2{
    font-size: 20px;
    margin-top: -10px;
    margin-bottom: 25px;
}

.body-segmentos-conteudo4 p{
    color: #42468C;
    font-weight: 500;
    font-size: 16px;
    text-align: start;
}

.footer-segmentos-conteudo4{
    display: flex;
    justify-content: space-around;
    margin-top: 35px;
    margin-bottom: 20px;
    
}

.hidden500,
.hidden600,
.hidden700{
    display: none;
}

.mtc{
    margin-top: 30px;
}

.mtcc{
    margin-top: 30px;
}

.mtccc{
    margin-top: 55px;
}

.footerr-segmentos-conteudo4{
    display: flex;
    justify-content: space-around;
    margin-top: 35px;
    margin-bottom: 0px;
}

.btn1-footer-segmentos-conteudo4{
    border: none;
    border-radius: 1.5rem;
    padding: 7px 20px;
    color: #42468C;
    font-weight: 700;
    background-color: #f8c64f;
    cursor: pointer;
    font-size: 12px;
}

.btn1-footer-segmentos-conteudo4:hover{
    background-color: #42468C;
    color: #f8c64f;
    transition: 0.5s ease;
}

.btn2-footer-segmentos-conteudo4{
    border: none;
    border-radius: 1rem;
    background-color: #F17833;
    color: #fff;
    font-weight: 600;
    padding: 7px 20px;
    cursor: pointer;
    font-size: 12px;
}

.conteudo5{
    background-color: #ececf2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.conteudo5 h1{
    color: #000357;
    font-weight: 600;
    margin-top: 80px;
    margin-bottom: 80px;
}

.conteudo5 span{
    color: #F17833;
    font-weight: 600;
}

.conteudo5-container{
    display: flex;
    gap: 20px;
    margin-bottom: 80px;
}

.conteudo5-left-texto{
    width: 550px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.conteudo5-left-texto p{
    color: #000357;
    font-weight: 500;
    text-align: justify;
}

.btn-c5{
    border: none;
    border-radius: 1.5rem;
    padding: 7px 20px;
    color: #42468C;
    font-weight: 700;
    background-color: #f8c64f;
    cursor: pointer;
    font-size: 12px;
    width: 140px;
    height: 29px;
}

.btn-c5:hover{
    background-color: #42468C;
    color: #f8c64f;
    transition: 0.5s ease;
}

.btn-c5resp{
    display: none;
}

#imgproposta{
    width: 500px;
    height: 320px;
    object-fit: cover;
}

.conteudo6{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.conteudo6 h1{
    color: #000357;
    font-weight: 600;
    margin-top: 80px;
    margin-bottom: 80px;
}

.conteudo6 span{
    color: #F17833;
    font-weight: 600;
}

.conteudo6-container{
    display: flex;
    overflow: hidden;
    width: 100%;
    height: 600px;
}

.conteudo6-left{
    background-color:#e2e2ee;
    width: 50%;
    height: 570px;
    display: flex;
    flex-direction: column;
}

.conteudo6-left h2{
    text-align: center;
    color: #000357;
    font-weight: 600;
    font-size: 38px;
    padding-top: 30px;
}

.conteudo6-left-btns{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-top: 50px;
}

.conteudo6-left button{
    width: 450px;
    text-align: start;
    background-color: transparent;
    border: none;
    padding: 22px 10px ;
    cursor: pointer;
    font-size: 18px;
    color: #000357;
    font-weight: 700;
    
}

.conteudo6-left-btns i{
    color: #F17833;
    font-size: 20px;
    padding-right: 10px;
}

.conteudo6-left-btns button.selecionado {
    background-color: white;
    border-top-left-radius: .6rem;
    border-bottom-left-radius: .6rem;
}

#lado-direito{
    width: 50%;
    height: 500px;
    overflow: none;
    
}

.conteudo-div {
    display: none;
    padding: 30px;
    
}

.conteudo-qualidade {
    background-color: #fff;
}

.header-conteudo6-qualidade{
    display: flex;
    gap: 70px;
}

#imgc6{
    width: 470px;
    height: 250px;
    object-fit: cover;
    background-color: #42468C;
}

#gato-logo{
    width: 190px;
    height: 250px;
}

.conteudo-qualidade p{
    color: #000357;
    font-weight: 500;
    font-size: 16px;
    width: 670px;
    padding-top: 30px;
    text-align: justify;
}

.conteudo-infraestrutura {
    background-color: #fff;
}

.header-conteudo6-infraestrutura{
    display: flex;
    gap: 70px;
}

.conteudo-infraestrutura p{
    color: #000357;
    font-weight: 500;
    font-size: 16px;
    width: 670px;
    padding-top: 30px;
    text-align: justify;
}

.conteudo-receptividade {
    background-color: #fff;
}

.header-conteudo6-receptividade{
    display: flex;
    gap: 70px;
}


.conteudo-receptividade p{
    color: #000357;
    font-weight: 500;
    font-size: 16px;
    width: 670px;
    padding-top: 30px;
    text-align: justify;
}

.conteudo-hibrido {
    background-color: #fff;
}

.header-conteudo6-hibrido{
    display: flex;
    gap: 70px;
}


.conteudo-hibrido p{
    color: #000357;
    font-weight: 500;
    font-size: 16px;
    width: 670px;
    padding-top: 30px;
    text-align: justify;
}

.conteudo-outro {
    background-color: #fff;
}

.header-conteudo6-outro{
    display: flex;
    gap: 70px;
}


.conteudo-outro p{
    color: #000357;
    font-weight: 500;
    font-size: 16px;
    width: 670px;
    padding-top: 30px;
    text-align: justify;
}

.conteudo-socioemocional p{
    color: #000357;
    font-weight: 500;
    font-size: 16px;
    width: 670px;
    padding-top: 30px;
    text-align: justify;
}







.conteudo6-2{
    display: none;
    flex-direction: column;
    align-items: center;
}

.conteudo6-2 h1{
    color: #000357;
    font-weight: 600;
    margin-top: 80px;
    margin-bottom: 80px;
    text-align: center;
    font-size: 27px;
}

.conteudo6-2 span{
    color: #F17833;
    font-weight: 600;
}

.conteudo6-container-2{
    display: flex;
    overflow: hidden;
    width: 100%;
}

.conteudo6-left-2{
    background-color:#fff;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.conteudo6-left-2 h2{
    text-align: center;
    color: #000357;
    font-weight: 600;
    font-size: 38px;
    padding-top: 30px;
}

.conteudo6-left-btns-2{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 50px;
    padding-bottom: 100px;
}

.conteudo6-left-2 button{
    width: 100%;
    text-align: start;
    background-color: #e2e2ee;
    border: none;
    padding: 22px 0px;
    padding-left: 25px;
    cursor: pointer;
    font-size: 18px;
    color: #000357;
    font-weight: 700;
}

.conteudo6-left-btns-2 i{
    color: #F17833;
    font-size: 20px;
    padding-right: 10px;
}

.conteudo6-left-btns-2 button.selecionado {
    background-color: white;
    
}

.conteudo-div-2 {
    display: none;
    padding: 30px;
    width: 100%;
    box-sizing: border-box;
    background-color: #fff;
}

.header-conteudo6-qualidade-2,
.header-conteudo6-infraestrutura-2,
.header-conteudo6-receptividade-2,
.header-conteudo6-hibrido-2,
.header-conteudo6-outro-2,
.header-conteudo6-socioemocional-2 {
    display: flex;
    gap: 70px;
}

#imgc6-2{
    width: 100%;
    object-fit: cover;
    height: 250px;
    background-color: #42468C;
}

.conteudo-qualidade-2 p,
.conteudo-infraestrutura-2 p,
.conteudo-receptividade-2 p,
.conteudo-hibrido-2 p,
.conteudo-outro-2 p,
.conteudo-socioemocional-2 p {
    color: #000357;
    font-weight: 500;
    font-size: 16px;
    width: 100%;
    padding-top: 30px;
    text-align: start;
}











.conteudo7{
    display: flex;
    flex-direction: column;
    align-items: center;
}

#bf2{
    width: 390px;
    height: 300px;
    position: absolute;
    left: 30px;
    margin-top: -30px;
}

.conteudo7 > h1{
    color: #000357;
    font-weight: 600;
    margin-top: 80px;
    margin-bottom: 10px;
}

.conteudo7 span{
    color: #F17833;
    font-weight: 600;
}

.conteudo7 h2{
    color: #000357;
    font-weight: 600;
    font-size: 17px;
}

#imgaulcom{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1.7px solid #000357;
    border-bottom: none;
    border-top-left-radius: .5rem;
    border-top-right-radius: .5rem;
}

.boxes-complementares-conteudo7{
    display: flex;
    justify-content: space-around;
    gap: 24px;
   
}

.box-complementares-conteudo7{
    width: 280px;
    
    border-radius: .5rem;
    margin-bottom: 90px;
    margin-top: 70px;
}

.header-complementares-conteudo7{
    width: 280px;
    height: 165px;
    background-color: #000357;
    border-top-right-radius: .5rem;
    border-top-left-radius: .5rem;
}

.body-complementares-conteudo7{
    padding: 15px;
    border: 1.7px solid #000357;
    border-bottom: none;
}

.body-complementares-conteudo7 h1{
    font-size: 22px;
    color: #F17833;
    font-weight: 600;
    margin-bottom: 25px;
}

.body-complementares-conteudo7 p{
    color: #000357;
    font-weight: 500;
    font-size: 16px;
    text-align: justify;
}

.footer-complementares-conteudo7{
    display: flex;
   
    margin-bottom: 20px;
   
    border: 1.7px solid #000357;
    border-top: none;
}

.btn1-footer-complementares-conteudo7{
    border: none;
    border-radius: 1.5rem;
    padding: 7px 20px;
    color: #42468C;
    font-weight: 700;
    background-color: #f8c64f;
    cursor: pointer;
    font-size: 12px;
    width: 140px;
    height: 29px;
    margin-left: 15px;
    margin-bottom: 15px;
    margin-top: 15px;
}

.btn1-footer-complementares-conteudo7:hover{
    background-color: #42468C;
    color: #f8c64f;
    transition: 0.5s ease;
}

.c7button{
    border: none;
    border-radius: 1rem;
    background-color: #F17833;
    color: #fff;
    font-weight: 600;
    padding: 7px 20px;
    cursor: pointer;
    font-size: 15px;
    width: 300px;
    height: 35px;
}

.c7button:hover{
    background-color: #42468C;
    color: #F17833;
    transition: 0.5s ease;
}

.conteudo8{
    background-color: beige;
    display: flex;
    justify-content: center;
    gap: 70px;
    margin-top: 90px;
}

.conteudo8-container{
    margin-top: 80px;
    margin-bottom: 80px;
    display: flex;
    justify-content: center;
    gap: 70px;
}

.conteudo8-left{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.conteudo8-left h1{
    color: #000357;
    font-weight: 600;
    margin-bottom: 45px;
}

.conteudo8-left span{
    color: #F17833;
    font-weight: 600;
}

.boxes-nn{
    display: flex;
    gap: 15px;
}

.box-nmbrs{
    display: flex;
    gap: 25px;
    margin-top: 0px;
}

.fbnmbrs, .sbnmbrs{
    display: flex;
    gap: 25px;
}

.box-n{
    background-color: #F17833;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 205px;
    height: 140px;
    text-align: center;
    border-radius: 1.3rem;
    font-size: 15px;
}

.box-n h1{
    margin-top: 30px;
    color: #fff;
    margin-bottom: 17px;
}

.boxvi1{
    display: flex;
    gap: 20px;
}

.conteudo8-right{
    display: flex;
    gap: 20px;
}

.conteudo8-img{
    border: 5px solid white;
    border-radius: .8rem;
    width: 190px;
    height: 145px;
    background-color: #F17833;
}

.conteudo8-imgs1{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.conteudo8-imgs2{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.conteudo9{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 90px;
    background-color: #f0efef;
}

#brc9{
    display: none;
}

.layerimgresp{
    display: none;
}

.conteudo9 > h1{
    color: #1b1f96;
    font-weight: 600;
    margin-top: 80px;
    margin-bottom: 10px;
    font-size: 26px;
}

.conteudo9 > h2{
    color: #1b1f96;
    font-weight: 500;
    font-size: 17px;
}

.conteudo9-container{
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 80px;
}

.conteudo9-left{
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 530px;
    margin-top: 50px;
}

.conteudo9-left h1{
    color: #F17833;
    font-weight: 600;
    margin-bottom: 10px;
}

.conteudo9-left p{
    color: #42468C;
    font-weight: 500;
    text-align: justify;
}

.box-nae{
    display: flex;
    align-items: center;
    gap: 15px;
}

#layer{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.box-nae i{
    color: #F26D3D;
    font-size: 15px;
}

.conteudo9-left-texto{
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.conteudo9-right{
    margin-top: 50px;
    width: 465px;
    height: 400px;
}

.boxes4b{
    margin-top: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.box1b4, .box2b4{
    display: flex;
    gap: 20px;
}

.carrosselb4{
    display: flex;
    gap: 20px;
}

.box4b{
    display: flex;
    flex-direction: column;
    width: 257px;
    border-top-left-radius: .7rem;
    border-top-right-radius: .7rem;
}

#imgb4b{
    width: 100%;
    height: 170px;
    background-color: #9a9bc9;
    border-top-left-radius: .8rem;
    object-fit: cover;
    border-top-right-radius: .8rem;
    border: 1.7px solid #000357;
    border-bottom: none;
}

.textb4{
    display: flex;
    flex-direction: column;
    justify-content: start;
    padding-left: 8px;
    gap: 13px;
    border: 2.3px solid #42468C;
}

.textb4 h2{
    color: #F17833;
    font-size: 18px;
    margin-top: 7px;
}

.textb4 p{
    color: #42468C;
    font-size: 15px;
}

.btnboxb4{
    width: 120px;
    height: 25px;
    color: #42468C;
    font-size: 10.4px;
    font-weight: 700;
    background-color: #f8c64f;
    border: none;
    border-radius: .8rem;
    margin-top: 22px;
    margin-bottom: 10px;
    cursor: pointer;
}

#mtttt{
    display: none;
}

.btnboxb42{
    width: 120px;
    height: 25px;
    color: #42468C;
    font-size: 10.4px;
    font-weight: 700;
    background-color: #f8c64f;
    border: none;
    border-radius: .8rem;
    margin-top: 3.9px;
    margin-bottom: 10px;
    cursor: pointer;
}

.btnboxb423{
    width: 120px;
    height: 25px;
    color: #42468C;
    font-size: 10.4px;
    font-weight: 700;
    background-color: #f8c64f;
    border: none;
    border-radius: .8rem;
    margin-top: 13.4px;
    margin-bottom: 10px;
    cursor: pointer;
}

.btnboxb4:hover, .btnboxb423:hover, .btnboxb42:hover{
    background-color: #42468C;
    color: #f8c64f;
    transition: 0.5s ease;
}

#overlay3 {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* fundo semi-transparente */
    z-index: 1; /* maior que o z-index do modal */
}

.modal {
    display: none;
    background-color: #fefefe;
    border: 1px solid #888;
    width: 940px;
    height: 520px; /* Adicionado para tornar o conteúdo rolável */
    margin: auto; /* Centralizar o modal horizontalmente */
    position: fixed; /* Posicionamento fixo */
    top: 50%; /* Centralizar verticalmente */
    left: 50%; /* Centralizar horizontalmente */
    transform: translate(-50%, -50%); /* Centralizar precisamente */
    z-index: 2; /* Garantir que o modal esteja acima de outros elementos */
    overflow: hidden;
}

.headermodal {
    position: sticky; /* Tornar o headermodal fixo */
    top: 0; /* Fixar no topo da janela */
    width: 100%;
    height: 170px;
    background-color: #9a9bc9;
}

.modalbody {
    display: flex;
    justify-content: center;
    gap: 70px;
    width: 100%;
    padding: 20px; /* Adicionar algum preenchimento */
    padding-top: 0px;
}
.textmodal{
    margin-top: 40px;
}

.textmodal p{
    color: #42468C;
    margin-top: 15px;
    font-size: 14px;
}

.textmodal h2{
    font-size: 17px;
    width: 380px;
    height: 33px;
    background-color: #42468C;
    color: #F2C029;
    padding-left: 30px;
    padding-top: 6px;
    font-weight: 600;
}

.resptitle{
    display: none;
}

#titlem{
    color: #42468C;
    margin-top: 15px;
    margin-bottom: 40px;
}

#titlemm{
    color: #42468C;
    margin-top: 15px;
    margin-bottom: 70px;
}

#mbb{
    margin-bottom: 70px;
}

#imgmodal{
    width: 270px;
    height: 350px;
    margin-top: 40px;
    object-fit: cover;
}

.close {
    margin-right: auto;
    font-size: 13px;
    font-weight: bold;
    overflow: hidden;
    background-color: #F2C029;
    color: #42468C;
    width: 120px;
    height: 27px;
    padding: 3px;
    border: none;
    margin-top: 30px;
}

#btnmodalfecharmt{
    margin-top: 130px;
}

.close:hover,
.close:focus {
    background-color: #95de21;
    text-decoration: none;
    cursor: pointer;
}











.conteudo10{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.conteudo10 > h1{
    color: #000357;
    font-weight: 600;
    margin-top: 80px;
    margin-bottom: 10px;
}

.conteudo10 span{
    color: #F17833;
    font-weight: 600;
}

.conteudo10 > h2{
    color: #000357;
    font-size: 17px;
    font-weight: 500;
}

.boxes-projetos-conteudo10{
    display: flex;
    justify-content: space-around;
    gap: 24px;
   
}

.box-projetos-conteudo10{
    width: 300px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: .5rem;
    margin-bottom: 90px;
    margin-top: 70px;
}

.header-projetos-conteudo10{
    width: 300px;
    height: 165px;
    background-color: #000357;
    border-top-right-radius: .5rem;
    border-top-left-radius: .5rem;
}

.body-projetos-conteudo10{
    padding: 15px;
}

.body-projetos-conteudo10 h1{
    font-size: 25px;
    color: #F17833;
    font-weight: 600;
    margin-bottom: 25px;
}

.body-projetos-conteudo10 p{
    color: #000357;
    font-weight: 500;
    font-size: 16px;
    text-align: justify;
}

.footer-projetos-conteudo10{
    display: flex;
    margin-top: 25px;
    margin-bottom: 20px;
    margin-left: 15px;
}

.btn1-footer-projetos-conteudo10{
    border: 1px solid #000357;
    border-radius: 1rem;
    padding: 8px 20px;
    color: #000357;
    font-weight: 600;
    background-color: transparent;
    cursor: pointer;
    font-size: 12px;
}

.c10button{
    border: none;
    border-radius: 1rem;
    background-color: #F17833;
    color: #fff;
    font-weight: 600;
    padding: 7px 20px;
    cursor: pointer;
    font-size: 15px;
    width: 370px;
    height: 35px;
    margin-top: 60px;
}

.c10button:hover{
    color: #F17833;
    background-color: #42468C;
    transition: 0.5s ease;
}

.boxes-complementares-conteudo10{
    display: flex;
    gap: 20px;
}

.conteudo11{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btnc11{
    background-color: #F26D3D;
    border: none;
    color: #fff;
    padding: 4px;
    border-radius: 1.5rem;
    font-size: 13px;
    cursor: pointer;
    font-weight: 600;
    width: 210px;
    height: 45px;
    margin-top: 40px;
    transition: .3s ease;
}

.btnc11:hover{
    background-color: #42468C;
    
}

#brsim11{
    display: none;
}

.conteudo11 h1{
    color: #000357;
    font-weight: 600;
    margin-top: 80px;
    margin-bottom: 10px;
}

.conteudo11 span{
    color: #F17833;
    font-weight: 600;
}

.conteudo11 h2{
    color: #000357;
    font-weight: 500;
    font-size: 17px;
}

.conteudo11-container{
    margin-top: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.conteudo11-header-container{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 150px;
}

.icon-header-container-conteudo11{
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000357;
    font-weight: 500;
    font-size: 17px;
    justify-content: center;
}

.icon-header-container-conteudo11 i{
    font-size: 23px;
    position: relative;
    top: 3px;
}

.icon-header-container{
    width: 80px;
    height: 80px;
    border-radius: 100%;
    background-color: #000357;
}

.icon-header-container img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 100%;
}

.conteudo11-body-container{
    display: flex;
    margin-top: 30px;
    margin-bottom: 50px;
}

.conteudo11-imgs1{
    display: flex;
    flex-direction: column;
    margin-right: 5px;
    gap: 4.3px;
}



.conteudo11-imgs2{
    display: flex;
    flex-direction: column;
    gap: 4.4px;
    margin-right: 5px;
}

.conteudo11-imgs3{
    display: flex;
    flex-direction: column;
    gap: 4.4px;
    margin-right: 5px;
}

.conteudo11-imgs4{
    display: flex;
    flex-direction: column;
    gap: 4.4px;
}

#conteudo11-img1{
    width: 187px;
    height: 187px;
    background-color: #00035790;
}

#conteudo11-img2{
    width: 378.5px;
    height: 378.5px;
    background-color: #00035790;
}

.troca{
    display: flex;
    gap: 4px;
}




.c4{
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.c4-bc{
    display: flex;
    margin: 0px auto 20px auto;
    
}

.visible2{
    display: flex;
    width: 100%;
}

.visible3{
    display: flex;
    width: 100%;
}

.c4-imgs1{
    display: flex;
    flex-direction: column;
    margin-right: 5px;
    gap: 4.3px;
}

.c4-imgs2{
    display: flex;
    flex-direction: column;
    gap: 4.3px;
    margin-right: 5px;
}

.c4-imgs3{
    display: flex;
    flex-direction: column;
    gap: 4.4px;
    margin-right: 5px;
}

.c4-imgs4{
    display: flex;
    flex-direction: column;
    gap: 4.4px;
    
}

#c4-img1,
.instafeed-item-small,
.instafeed-item-small img{
    width: 248.5px;
    height: 248.5px;
    background-color: #20234F;
    object-fit: cover;
    overflow: hidden;
}

.troca{
    display: flex;
    gap: 4px;
    
}

.gridresp{
    display: flex;
    gap: 4px;
}

#c4-img2,
.instafeed-item-large,
.instafeed-item-large img{
    width: 500.5px;
    height: 500.5px;
    background-color: #20234F;
    object-fit: cover;
    overflow: hidden;
}

.custom-flex1 {
    display: flex;
    flex-direction: column;
    margin-right: 5px;
}

.custom-flex2 {
    display: flex;
    flex-direction: column;
    gap: 4.3px;
    margin-right: 5px;
}

.custom-flex3 {
    display: flex;
    flex-direction: column;
    gap: 4.4px;
    margin-right: 5px;
}

.custom-flex4 {
    display: flex;
    flex-direction: column;
    gap: 4.4px;
}









.container-conteudo12{
    display: none;
}

.conteudo12{
    background-color: beige;
    display: flex;
    align-items: center;
}

#bf3{
    width: 300px;
    height: 320px;
    position: absolute;
    left: 30px;
    margin-top: -420px;
}

.container-conteudo12{
    display: flex;
    margin: 120px auto;
    gap: 30px;
}

.box-depoimento{
    width: 410px;
    height: 300px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: .4em;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
}

.box-depoimento > p{
    text-align: center;
    margin-top: 15px;
    width: 90%;
}

.header-box-depoimento{
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

.header-box-depoimento p{
    font-size: 20px;
    font-weight: 500;
}

#img-depoimento{
    width: 80px;
    height: 80px;
    border-radius: 100%;
    background-color: gray;
}

.conteudo13{
    background-color: #e2e2ee;
    margin-top: 150px;
}

.parceiros{
    padding: 50px;
    display: flex;
    justify-content: center;
    gap: 100px;
}

#parceiro-ph{
    width: 150px;
    height: 65px;
    margin-top: 30px;
    margin-bottom: 30px;
}

#parceiroo{
    width: 165px;
    height: 62px;
    margin-top: 30px;
    margin-bottom: 30px;
}

footer{
    background-color: #42468C;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.container-footer{
    margin: 60px auto;
}

.cima-footer{
    display: flex;
    gap: 100px;
    align-items: center;
    justify-content: center;
}

.cima-left-footer{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
}

.cima-left-footer img{
    width: 130px;
    height: 100px;
}

.redes2{
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.redes2 i{
    font-size: 28px;
    color: #fff;
}

.cima-right-footer{
    display: flex;
    gap: 35px;
    margin-top: 60px;
}

.cima-right-footer a{
    color: #F17833;
    text-decoration: none;
    font-size: 14px;
}

.aescola h2{
    color: #fff;
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 10px;
    font-size: 14px;
}

.aescola{
    display: flex;
    flex-direction: column;
    
    gap: 10px;
}


.aescola2 h2{
    margin-bottom: 26px;
    color: #fff;
    font-size: 20px;
    font-weight: 400;
}

.left-baixo-footer{
    display: flex;
    flex-direction: column;
}

.baixo-footer{
    margin-top: 100px;
    display: flex;
    justify-content: space-between;
}

.left1-baixo-footer{
    display: flex;
    gap: 25px;
    color: #fff;
    margin-bottom: 25px;
}

.left1-baixo-footer p{
    display: flex;
    align-items: center;
    gap: 5px;
}

.left2-baixo-footer{
    display: flex;
    
    gap: 40px;
}

.left2-baixo-footer a{
    color: #F2C029;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.a-footer{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px;
}


@keyframes moveCarousel {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-30%);
    }
}




@media screen and (max-width:1515px){

    /* Início - Grid Fotos */

    .c4{
        width: 100%;
        margin-left: 0px;
        margin: 80px auto 0px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .c4-bc{
        width: 960px;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .visible3{
        width: 50%;
    }

    .c4-imgs1,
    .c4-imgs3{
        max-width: 316px;
        
        width: 66.6%;
        gap: 4px;
    }

    .visible2{
        margin: 0px auto;
        display: flex;
        width: 50%;
    }

    #c4-img2,
    .instafeed-item-large,
    .instafeed-item-large img{
        max-height: 316px;
        width: 100%;
        min-height: auto;
        max-width: 316px;
        
    }

    #c4-img1,
    .instafeed-item-small,
    .instafeed-item-small img{
        max-height: 156px;
        width: 100%;
        min-height: auto;
        max-width: 156px;
        
    }

    .troca{
        display: flex;
        gap: 4px;
    }

    .c4-imgs2,
    .c4-imgs4{
        max-width: 156px;
        width: 33.3% ;
        gap: 4px;
    }





    /* Fim - Grid Fotos */
    
    
    }


    #gatofooterhidden{
        display: none;
    }


    @keyframes scroll-content {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }





@media screen and (max-width:1350px){
    .faixaconteudo1{
        height: 210px;
    }

    .faixaconteudo1 > button {
        margin-right: 70px;
        min-width: 210px;
    }
}

@media screen and (max-width:1270px){
/*
    #banner-principal{
        display: none;
    }



    #banner2{
        display: block;
        height: 550px;
    } */

    .carrossel{
        height: 550px;
    }

    .hidden2{
        display: block;
    }

    .hidden2 img{
        height: 550px;
    }

    .hidden1,
    .hidden3{
        display: none;
    }
}

@media screen and (max-width:1250px){

    .navbar{
        width: 100%;
    }

    .navbar a{
        font-size: 15px;
    }

    .navbar ul{
        gap: 0px;
    }

    .hidden500{
        display: block;
    }

    .conteudo4{
        box-sizing: border-box;
        flex-wrap: nowrap;
        width: 100%;
    }

    .boxes-segmentos-conteudo4{
        width: calc((290px + 5px) * 4);
        box-sizing: border-box;
        
    }

    .box4c{
        width: 100%;
        margin-left: auto;
        overflow-x: auto;
        overflow: auto;
        max-width: 1170px;
        margin-top: 25px;
        margin-right: 0px;
        display: block;
    }

    .boxes-segmentos-conteudo4{
        display: flex;
        justify-content: flex-start; /* Inicia os itens do início do container */
        gap: 25px;
        width: calc((290px + 5px) * 4); /* Calcula a largura total dos elementos e espaços */
        flex-grow: 4;
        position: relative;
        margin-bottom: 60px;
        -webkit-overflow-scrolling: touch;
        margin-left: auto;
        padding-left: 50px;
    }
}


@media screen and (max-width:1190px){
    .boxes-video-conteudo3{
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .boxvi1{
        display: flex;
        gap: 20px;
    }
}


@media screen and (max-width:1150px){

    .hidden700{
        display: block;
    }

    .navbar{
        width: 100%;
    }

    .navbar a{
        font-size: 15px;
    }
    
    .conteudo5{
        width: 100%;
    }

    .conteudo5-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-bottom: 80px;
        width: 85%;
    }

    .conteudo5-left-texto {
        width: 90%;
        max-width: 550px;
        align-items: center;
        justify-content: center;
        display: flex;
        flex-direction: column;
        gap: 30px;
        margin: 0 auto;
    }

    .conteudo5-left-texto p{
        width: 100%;
    }

    .conteudo5-left-texto br{
        display: none;
    }

    .conteudo5-right-video{
        width: 100%;
        max-width: 550px;
    }

    #imgproposta{
        width: 100%;
        
        margin-top: 50px;
    }

    .btn-c5{
        display: none;
    }

    .btn-c5resp{
        display: block;
        border: none;
        border-radius: 1.5rem;
        padding: 7px 20px;
        color: #42468C;
        font-weight: 700;
        background-color: #f8c64f;
        cursor: pointer;
        font-size: 12px;
        width: 140px;
        height: 29px;
        margin: 0 auto;
    }


    .conteudo10 > h2 {
        color: #000357;
        font-size: 17px;
        font-weight: 500;
        margin-bottom: 60px;
    }

    .boxes4b{
        width: 100%;
        margin-left: auto;
        overflow-x: auto;
        margin-top: 25px;
        margin-right: 0px;
        display: block;
    }
    
    .boxes-complementares-conteudo10{
        display: flex;
        justify-content: flex-start; /* Inicia os itens do início do container */
        gap: 25px;
        width: calc((290px + 5px) * 4); /* Calcula a largura total dos elementos e espaços */
        flex-grow: 4;
        position: relative;
        margin-bottom: 60px;
        -webkit-overflow-scrolling: touch;
        margin-left: auto;
        padding-left: 50px;
        
    }
    
}






@media screen and (max-width:1110px){

    .navbar ul li > a {
        font-size: 13px;
    }

    .meiofaixa h1{
        text-wrap: nowrap;
        font-size: 28px;
    }

    .faixaconteudo1 img {
        height: 140px;
        width: 130px;
        margin-top: 0px;
        padding-left: 10px;
    }
    
    .sessao1-conteudo2{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }

    .btns-c1{
        display: flex;
        gap: 10px;
        margin-bottom: 30px;
    }

    .btns-c1 button{
        padding: 5px 15px;
        border-top: none;
        border-left: none;
        border-right: none;
        border-bottom: 2.4px solid #000357;
        background-color: transparent;
        color: #000357;
        font-weight: 700;
    }

    .box-footer-conteudo2{
        padding-left: 0px;
        margin-top: 25px;
        margin-bottom: 20px;
    }

    .box-conteudo2{
        width: 90%;
        max-width: 750px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .conteudo2 h1 {
        font-size: 24px;
    }

    .box-body-conteudo2 p{
        text-align: start;
    }

    .box-header-conteudo2{
        width: 100%;
    }


    .box-imgs-conteudo2{
        display: none;
    }

    .imgsmob{
        width: 90%;
        display: flex;
        justify-content: center;
        align-items: center;
        display: block;
        margin: 0 auto;
    }

    #imgmob{
        width: 100%;
        height: 400px;
        object-fit: cover;
    }

    .btn-footer-conteudo2 {
        border: none;
        border-radius: 1rem;
        width: 110px;
        height: 30px;
        color: #42468C;
        font-weight: 700;
        background-color: #F2C029;
        cursor: pointer;
        padding: 0px;
        font-size: 13.5px;
    }

    .btn2-footer-conteudo2 {
        border: none;
        border-radius: 1rem;
        background-color: #F26D3D;
        color: #000357;
        font-weight: 600;
        padding: 0px;
        cursor: pointer;
        text-wrap: nowrap;
        font-size: 13.5px;
        width: 154px;
        height: 30px;
    }


    

        .sessao1-conteudo2 {
            display: none;

        }
        .sessao1-conteudo2.active {
            display: flex;
        }



        
    #brc9{
        display: block;
    }

    .conteudo9 > h1{
        text-align: center;
        font-size: 24px;
    }

    .conteudo9 > h2{
        text-align: center;
        font-size: 19px;
        
        font-weight: 600;
    }

    .layerimgresp{
        display: block;
        width: 80%;
        margin-top: 70px;
        max-width: 530px;
    }

    #layer{
        width: 100%;
        height: auto;
    }

    .conteudo9-right{
        display: none;
    }

    .conteudo9-container{
        flex-direction: column;
        margin-top: 0px;
    }

    .conteudo9-container{
        width: 85%;
    }

    .conteudo9-left-texto{
        width: 100%;
    }

    .conteudo9-left{
        width: 100%;
    }

    .conteudo9-left p {
        text-align: start;
    }

    .box-nae br{
        display: none;
    }




    .conteudo11{
        width: 100%;
    }

    

    .conteudo11 h2 {
        color: #000357;
        font-weight: 600;
        font-size: 17px;
        text-align: center;
    }

    #brsim11{
        display: block;
    }
    
    

    .conteudo11-container{
        width: 100%;
    }

    /*

    .boxh11c{
        width: 100%;
        margin-left: auto;
        overflow-x: auto;
        margin-top: 25px;
        margin-right: 0px;
        display: block;
    }

    .conteudo11-header-container{
        display: flex;
        justify-content: flex-start;
        gap: 25px;
        width: calc((250px + 5px) * 3); 
        flex-grow: 4;
        position: relative;
        margin-bottom: 60px;
        -webkit-overflow-scrolling: touch;
        margin-left: 100px;
        padding-left: 50px;
    }

    .icon-header-container-conteudo11 {
        flex-shrink: 0;
        position: relative;
    }  */

    .conteudo11-header-container{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    /*Inicio Footer 1110px*/

    .cima-footer {
        display: flex;
        gap: 50px;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .cima-right-footer{
        margin-top: 0px;
    }

    .left1-baixo-footer {
        display: flex;
        gap: 25px;
        flex-direction: column;
        color: #fff;
        margin-bottom: 25px;
    }

    #gatofooterhidden{
        display: block;
        width: 380px;
        height: 350px;
        position: relative;
        margin-top: -150px;
        margin-left: 40px;
    }

    /*Fim Footer 1110px*/
   
}





@media screen and (max-width:1050px){

     /* Início - Estilização do header */

     .navbar {
        justify-content: space-between;
        gap: 0px;
        padding: 16px 32px;
        width: 100%;
    }

    .subnav{
        display: none;
    }

    .navbar li,
    .faleconosco{
        display: none;
    }

    .menuhamburguer{
        display: block;
        border: none;
        background-color: transparent;
    }

    .menuhamburguer img{
        width: 33px;
        height: 22px;
        cursor: pointer;
    }

    /* Fim - Estilização Header*/

    
    .conteudo6{
        display: none;
    }

    .conteudo6-2{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    

    .header-conteudo6-qualidade-2,
    .header-conteudo6-infraestrutura-2,
    .header-conteudo6-receptividade-2,
    .header-conteudo6-hibrido-2,
    .header-conteudo6-outro-2,
    .header-conteudo6-socioemocional-2,
    .conteudo-div-2 p{
        max-width: 550px;
        width: 90%;
        margin: 0 auto;
    }

    .conteudo6-left-btns-2{
        align-items: center;
    }

    

    .modal {
        max-width: 600px;
        width: 85%;
        height: 550px; /* Adicionado para tornar o conteúdo rolável */
        overflow: auto;
    }
    
    .headermodal {
        position: sticky; /* Tornar o headermodal fixo */
        top: -3px; /* Fixar no topo da janela */
        width: 100%;
        height: 170px;
        background-color: #9a9bc9;
    }

    .hidden{
        display: none;
    }

    #hiddenn{
        display: none;
    }

    #titlem, #titlemm{
        display: none;
    }

    .modalbody{
        flex-direction: column;
        width: 100%;
        gap: 30px;
    }

    #mttt, #mtt, #mbb{
        display: none;
    }

    .resptitle{
        display: block;
        margin-top: 40px;
    }

    .resptitle p{
        color: #42468C;
        margin-top: 10px;
    }

    #mtttt{
        display: block;
        font-size: 17px;
        max-width: 380px;
        width: 100%;
        height: 33px;
        background-color: #42468C;
        color: #F2C029;
        padding-left: 15px;
        padding-top: 6px;
        font-weight: 600;
        margin: 40px auto 0;
    }

    .resptitle p{
        text-align: center;
    }

    .textmodal{
        width: 95%;
        margin: 0px auto 40px;
    }

    #imgmodal{
        margin: 0px auto 0px;
    }

    .textmodal:nth-child(1){
        order: 2;
    }

    .textmodal br{
        display: none;
    }

    .textmodal h2 {
        padding-left: 15px;
    }


}






@media screen and (max-width:1000px){

    #banner2{
        height: 420px;
    }

    .hidden2 img{
        height: 420px;
    }

    .carrossel{
        height: 420px;
    }

    .hidden600{
        display: block;
    }


    .faixaconteudo1{
        height: 200px;
        gap: 15px;
    }

    

    .faleconoscoresp{
        background-color: #F26D3D;
        border: none;
        color: #fff;
        padding: 4px;
        border-radius: 1.5rem;
        font-size: 12px;
        font-weight: 600;
        cursor: pointer;
        width: 170px;
        height: 30px;
        margin-top: 10px;
        display: block;
    }

    .meiofaixa{
        margin-top: -10px;
    }

    .meiofaixa1 p{
        font-size: 14px;
    }

    .meiofaixa h1{
        font-size: 14px;
    }

    .meiofaixa > p{
        font-size: 11px;
    }

    .hidden{
        display: none;
    }




    .box7c{
        width: 100%;
        margin-left: auto;
        overflow-x: auto;
        margin-top: 25px;
        margin-right: 0px;
        display: block;
    }

    .boxes-complementares-conteudo7{
        display: flex;
        justify-content: flex-start; /* Inicia os itens do início do container */
        gap: 25px;
        width: calc((290px + 5px) * 3); /* Calcula a largura total dos elementos e espaços */
        flex-grow: 4;
        position: relative;
        margin-bottom: 60px;
        -webkit-overflow-scrolling: touch;
        margin-left: auto;
        padding-left: 50px;
    }

    .box-complementares-conteudo7 {
        flex-shrink: 0;
        position: relative;
    }


    .box-complementares-conteudo7 {
       
        margin-bottom: 0px;
        
    }

    .conteudo7 > button {
        margin-top: 40px;
    }

    #bf2 {
        width: 323px;
        height: 249px;
        position: absolute;
        left: 30px;
        margin-top: -50px;
    }

    .conteudo7 > h1 {
        margin-top: 210px;
        text-align: center;
        font-size: 25px;
    }


    #bf1 {
        width: 240px;
        height: 200px;
        position: absolute;
        right: 15px;
        margin-top: -110px;
    }


    /* Início - Grid Fotos */

    .c4{
        width: 100%;
        margin-left: 0px;
        margin: 80px auto 0px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .c4-bc{
        max-width: 960px;
        width: 100%;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .visible3{
        width: 50%;
    }

    .c4-imgs1,
    .c4-imgs3{
        max-width: 316px;
        
        width: 66.6%;
        gap: 4px;
    }

    .visible2{
        margin: 0px auto;
        display: flex;
        width: 50%;
    }

    #c4-img2,
    .instafeed-item-large,
    .instafeed-item-large img{
        max-height: 316px;
        width: 100%;
        min-height: auto;
        max-width: 316px;
        
    }

    #c4-img1,
    .instafeed-item-small,
    .instafeed-item-small img{
        max-height: 156px;
        width: 100%;
        min-height: auto;
        max-width: 156px;
        
    }

    .troca{
        display: flex;
        gap: 4px;
    }

    .c4-imgs2,
    .c4-imgs4{
        max-width: 156px;
        width: 33.3% ;
        gap: 4px;
    }

    /* Fim - Grid Fotos */


     /* Inicio - Footer 1000px*/

     .container-footer{
        margin: 60px auto;
        width: 85%;
    }
    
    .cima-footer{
        display: flex;
        gap: 100px;
        align-items: inherit;
        flex-direction: column;
    }
    
    .cima-left-footer{
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 20px;
        margin-bottom: 50px;
    }

    .cima-right-footer {
        display: flex;
        gap: 35px;
        margin-top: 0px;
        flex-direction: column;
    }

    .left1-baixo-footer {
        display: flex;
        gap: 25px;
        flex-direction: column;
        color: #fff;
        margin-bottom: 25px;
    }

    #gatofooterhidden{
        display: block;
        width: 380px;
        height: 350px;
        position: relative;
        margin-top: -150px;
        margin-left: 40px;
    }

    .baixo-footer{
        justify-content: inherit;
    }


    /* Fim - Footer 1000px*/
}

@media screen and (max-width:900px){

    /* Inicio - Footer 900px*/
    #gatofooterhidden{
        margin-left: 0px;
    }

    #img-novidades2025-desk{
        display: none;
    }

    .novidades2025{
        width: 90%;
        max-width: 500px;
        height: 700px;
    }

    #img-novidades2025-mobile{
        display: block;
        height: 700px;
        width: 100%;
    }

    /* Fim - Footer 900px*/
}

@media screen and (max-width:850px){
    .conteudo11-header-container{
        margin-left: 0px;
    }

    .visible3{
        display: none;
    }

    .visible2{
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #c4-img2,
    .instafeed-item-large,
    .instafeed-item-large img{
        max-height: 380px;
        width: 100%;
        min-height: auto;
        max-width: 380px;
        
    }

    #c4-img1,
    .instafeed-item-small,
    .instafeed-item-small img{
        max-height: 187px;
        width: 100%;
        min-height: auto;
        max-width: 187px;
        
    }

    /* Inicio - Footer 850px*/


    #gatofooterhidden{
        display: none;
    }

    /* Fim - Footer 850px*/
}


@media screen and (max-width:800px){
    .boxvi1 {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    #bf1 {
        width: 240px;
        height: 200px;
        position: absolute;
        right: 15px;
        margin-top: -110px;
    }

    .conteudo3{
        margin-top: 140px;
    }

    .conteudo3 h1 {
        margin-top: 90px;
    }

    .conteudo4 > h2{
        text-align: center;
    }

    #br800{
        display: block;
    }




   

}


@media screen and (max-width:750px){
/*
    #banner2{
        display: none;
    } */

    .hidden3{
        display: block;
    }

    .hidden2{
        display: none;
    }

    .hidden3 img{
        height: 1000px;
        width: 100%;
    }

    #banner3{
        display: block;
        height: 1000px;
        width: 100%;
    }

    .carrossel{
        height: 1000px;
    }

    .conteudo7{
        width: 100%;
    }


    .conteudo8{
        width: 100%;
    }

    .conteudo8-container{
        width: 100%;
    }

    .conteudo8-left > h1 {
        
        font-size: 26px;
    }

    .conteudo8-left{
        width: 100%;
    }

    

    .fbnmbrs,
    .box-nmbrs{
        flex-direction: column;
    }
}

@media screen and (max-width:630px){
    #banner3{
        display: block;
        height: 870px;
        width: 100%;
    }

    .hidden3 img{
        height: 870px;
        width: 100%;
    }

    .carrossel{
        height: 870px;
    }
}

@media screen and (max-width:550px){

    .hidden1,
    .hidden2,
    .hidden3{
        display: none; /* Esconde esses carrosséis */
    }

    .mobcarrossel{
        display: block;
    }

    .faixaconteudo1{
        margin-top: -5px;
    }
    
    #banner4,
    #banner5,
    #banner6,
    #banner7{
        width: 100%;
        height: 100%;
        display: none;
    }

    

}


@media screen and (max-width:500px){

    .close-modal25 {
        position: absolute;
        top: 15px;
        left: 0px;
        
    }


    .novidades2025{
        width: 90%;
        max-width: 500px;
        height: 700px;
        margin-top: 50px;
    }

    #img-novidades2025-mobile{
        display: block;
        height: 700px;
        width: 100%;
        object-fit: contain;
    }

    

    .hidden{
        display: none;
    }



    .conteudo3{
        margin-top: 140px;
    }

    .header-video-conteudo3 {
        width: 100%;
        height: 250px;
        background-color: #000357;
        border-radius: .5rem;
        margin-right: 15px;
    }

    .box-video-conteudo3 {
        width: 355px;
        display: flex;
        flex-direction: column;
        gap: 23px;
        border-radius: .5rem;
        padding: 15px;
    }

        #bf1 {
            width: 240px;
            height: 200px;
            position: absolute;
            right: 15px;
            margin-top: -110px;
        }

        .conteudo3 h1 {
            color: #42468C;
            font-weight: 600;
            margin-top: 90px;
            font-size: 24px;
        }


    .boxes-video-conteudo3{
        flex-direction: column;
        gap: 60px;
    }

    .box4c{
        width: 100%;
        margin-left: auto;
        overflow-x: auto;
        margin-top: 25px;
        margin-right: 0px;
        display: block;
    }

    .boxes-segmentos-conteudo4{
        display: flex;
        justify-content: flex-start; /* Inicia os itens do início do container */
        gap: 25px;
        width: calc((290px + 5px) * 4); /* Calcula a largura total dos elementos e espaços */
        flex-grow: 4;
        position: relative;
        margin-bottom: 60px;
        -webkit-overflow-scrolling: touch;
        margin-left: auto;
        padding-left: 50px;
    }

    

    .conteudo4 > h1 {
        font-size: 26px;
    }

    .conteudo4 > h2 {
        font-size: 17px;
        color: #42468C;
        font-weight: 600;
        text-align: center;
        width: 90%;
    }

    #br800{
        display: none;
    }

    .conteudo5{
        width: 100%;
    }

    .conteudo5 > h1 {
        color: #000357;
        font-weight: 600;
        margin-top: 80px;
        margin-bottom: 80px;
        font-size: 26px;
        text-align: center;
    }

    .conteudo5-container {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 80px;
        width: 85%;
    }

    .conteudo5-left-texto{
        width: 100%;
    }

    .conteudo5-left-texto br{
        display: none;
    }

    .conteudo5-left-texto p{
        text-align: start;
    }

    .conteudo5-right-video{
        width: 100%;
    }

    #imgproposta{
        width: 100%;
    }

    


    .box7c{
        width: 100%;
        margin-left: auto;
        overflow-x: auto;
        margin-top: 25px;
        margin-right: 0px;
        display: block;
    }

    .boxes-complementares-conteudo7{
        display: flex;
        justify-content: flex-start; /* Inicia os itens do início do container */
        gap: 25px;
        width: calc((290px + 5px) * 3); /* Calcula a largura total dos elementos e espaços */
        flex-grow: 4;
        position: relative;
        margin-bottom: 60px;
        -webkit-overflow-scrolling: touch;
        margin-left: auto;
        padding-left: 50px;
    }

    .box-complementares-conteudo7 {
        flex-shrink: 0;
        position: relative;
    }


    .box-complementares-conteudo7 {
       
        margin-bottom: 0px;
        
    }

    .conteudo7 > button {
        margin-top: 40px;
    }


    .conteudo6{
        display: none;
    }

    .conteudo6-2{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .header-conteudo6-qualidade-2,
    .header-conteudo6-infraestrutura-2,
    .header-conteudo6-receptividade-2,
    .header-conteudo6-hibrido-2,
    .header-conteudo6-outro-2,
    .header-conteudo6-socioemocional-2,
    .conteudo-div-2 p{
        width: 100%;
        margin: 0 auto;
    }

    #bf2 {
        width: 323px;
        height: 249px;
        position: absolute;
        left: 30px;
        margin-top: -50px;
    }

    .conteudo7 > h1 {
        margin-top: 210px;
        text-align: center;
        font-size: 25px;
    }



    .boxes4b{
        width: 100%;
        margin-left: auto;
        overflow-x: auto;
        margin-top: 25px;
        margin-right: 0px;
        display: block;
    }


    .box-nae br{
        display: none;
    }

    .conteudo9-container{
        width: 85%;
    }

    .conteudo9-left-texto{
        width: 100%;
    }

    .conteudo9-left{
        width: 100%;
    }

    .conteudo9-left p {
        text-align: start;
    }

    .conteudo9-right{
        width: 100%;
    }

    .boxes-complementares-conteudo10{
        display: flex;
        justify-content: flex-start; /* Inicia os itens do início do container */
        gap: 25px;
        width: calc((290px + 5px) * 4); /* Calcula a largura total dos elementos e espaços */
        flex-grow: 4;
        position: relative;
        margin-bottom: 60px;
        -webkit-overflow-scrolling: touch;
        margin-left: auto;
        padding-left: 50px;
    }

    .box-complementares-conteudo7{
        flex-shrink: 0;
        position: relative;
    }

    #brc9{
        display: block;
    }

    .conteudo9 > h1{
        text-align: center;
        font-size: 24px;
    }

    .conteudo9 > h2{
        text-align: center;
        font-size: 19px;
        
        font-weight: 600;
    }

    .layerimgresp{
        display: block;
        width: 80%;
        margin-top: 40px;
    }

    #layer{
        width: 100%;
        height: auto;
    }

    .conteudo9-right{
        display: none;
    }

    .conteudo9-container{
        flex-direction: column;
        margin-top: 0px;
    }


    .conteudo10 > h1 {
        font-size: 26px;
    }

    .conteudo10 > button {
        border: none;
        border-radius: 1rem;
        background-color: #F17833;
        color: #42468C;
        font-weight: 600;
        padding: 7px 20px;
        cursor: pointer;
        font-size: 14.5px;
        width: 350px;
        height: 34px;
        margin-top: 60px;
        text-wrap: nowrap;
    }

    #h2resp500{
        display: block;
        font-size: 17px;
        font-weight: 600;
    }

    .conteudo8{
        width: 100%;
    }

    .conteudo8-container{
        width: 100%;
    }

    .conteudo8-left > h1 {
        
        font-size: 26px;
    }

    .conteudo8-left{
        width: 100%;
    }

    

    .box-complementares-conteudo7 {
        flex-shrink: 0;
        position: relative;
    }



    .conteudo11{
        width: 100%;
    }

    

    .conteudo11 h2 {
        color: #000357;
        font-weight: 600;
        font-size: 17px;
        text-align: center;
    }

    #brsim11{
        display: block;
    }
    
    

    .conteudo11-container{
        width: 100%;
    }

    /*
    .boxh11c{
        width: 100%;
        margin-left: auto;
        overflow-x: auto;
        margin-top: 25px;
        margin-right: 0px;
        display: block;
    }

    .conteudo11-header-container{
        display: flex;
        justify-content: flex-start; 
        gap: 25px;
        width: calc((250px + 5px) * 3); 
        flex-grow: 4;
        position: relative;
        margin-bottom: 60px;
        -webkit-overflow-scrolling: touch;
        margin-left: auto;
        padding-left: 50px;
    }

    .icon-header-container-conteudo11 {
        flex-shrink: 0;
        position: relative;
    } */

    .conteudo11{
        width: 100%;
    }

    .icon-header-container{
        width: 70px;
        height: 70px;
        object-fit: cover;
    }

    .icon-header-container-conteudo11 p{
        font-size: 15px;
    }


    .conteudo11-body-container{
        width: 100%;
        
    }
   

    


    /* Início - Grid Fotos */

    .c4{
        width: 100%;
        margin-left: 0px;
        margin: 80px auto 0px;
    }

    .c4-bc{
        width: 100%;
        
    }

    .c4-imgs1{
        max-width: 316px;
        margin-left: 4px;
        width: 66.6%;
        gap: 4px;
    }

    .visible2{
        margin: 0px auto;
        display: flex;
        width: 100%;
        
    }

    #c4-img2,
    .instafeed-item-large,
    .instafeed-item-large img{
        max-height: 316px;
        width: 100%;
        min-height: auto;
        max-width: 316px;
        
    }

    #c4-img1,
    .instafeed-item-small,
    .instafeed-item-small img{
        max-height: 156px;
        width: 100%;
        min-height: auto;
        max-width: 156px;
        
    }

    .troca{
        display: flex;
        gap: 4px;
    }

    .c4-imgs2{
        max-width: 156px;
        width: 33.3% ;
        gap: 4px;
    }




    .c4-imgs3{
        display: none;
    }

    .c4-imgs4{
        display: none;
    }

    /* Fim - Grid Fotos */




    
    

    .hidden{
        display: none;
    }










    /* Footer */

    .container-footer{
        width: 100%;
    }

    footer{
        background-color: #42468C;
        display: flex;
        align-items: center;
        flex-direction: column;
        width: 100%;
    }
    
    .container-footer{
        margin: 60px auto;
        width: 85%;
    }
    
    .cima-footer{
        display: flex;
        gap: 100px;
        align-items: inherit;
        flex-direction: column;
    }
    
    .cima-left-footer{
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 20px;
        margin-bottom: 50px;
    }

    .cima-right-footer {
        display: flex;
        gap: 35px;
        margin-top: 0px;
        flex-direction: column;
    }

    .left1-baixo-footer {
        display: flex;
        gap: 25px;
        flex-direction: column;
        color: #fff;
        margin-bottom: 25px;
    }

    .parceiros{
        gap: 40px;
    }
    
}


@media screen and (max-width:400px){
    #mtttt{
        font-size: 14px;
        padding-top: 8px;
    }

    .meiofaixa h1 {
        font-size: 12.4px;
    }
}