@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;
}

.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;
    padding-top: 13px;
}

.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: 90%;
    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: -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: 7px 20px;
    border: none;
    font-weight: 600;
    width: 143.35px;
    height: 32px;
    font-size: 13.333px;
}

/* 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;
}

.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*/

.conteudo1{
    z-index: 1;
}

#banner {
    width: 100%;
    overflow: hidden;
}

#banner img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    background-color: aqua;
    vertical-align: initial;
}

.conteudo2 {
    overflow: hidden;
    margin-top: -6px;
    display: flex;
    flex-direction: column;
}

#bgama {
    height: 550px;
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: -150px;
    vertical-align: initial;
}

/* Bootstrap carrossel */

.carousel-inner {
    width: 400px;
    height: 350px;
}

.carousel-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.carousel{
    width: 400px;
    height: 350px;
}

li::marker {
    color: transparent;
}

/* Fim - Bootstrap carrossel */

.conteudo3{
    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;
}

.container-conteudo2{
    display: flex;
    position: relative;
    justify-content: center;
    gap: 40px;
    margin-top: -285px;
}

.container-conteudo2 h1{
    color: #42468C;
    font-size: 34px;
    margin-bottom: 7px;
    margin-left: 20px;
    font-weight: 600;
}

.container-conteudo2 h2{
    color: #42468C;
    font-size: 18px;
    margin-bottom: 60px;
    margin-left: 20px;
}

#brsim{
    display: none;
}

.boxes-fcl{
    display: flex;
    gap: 15px;
    margin-top: 22px;
}

.box-fcl{
    background-color: #42468C;
    color: #F2C029;
    width: 170px;
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
    gap: 17px;
    text-align: center;
}

.box-fcl h3{
    color: #F2C029;
    font-weight: 600;
    font-size: 17px;
    margin-bottom: 0px;
}

.box-fcl p{
    font-size: 14px;
}

.boxesresp{
    display: none;
}

#b-img1{
    width: 50px;
    height: 50px;
}

#b-img2{
    width: 50px;
    height: 45px;
    margin-bottom: 5px;
}

#b-img4{
    width: 50px;
    height: 38px;
    margin-bottom: 5px;
    margin-top: -5px;
}

#b-img5{
    width: 50px;
    height: 50px;
    margin-top: -5px;
}

.cbl1{
    display: flex;
    flex-direction: column;
    margin-top: 30px;
    margin-left: 20px;
}

.text-cbl1{
    display: flex;
    gap: 10px;
    margin-top: 28px;
}

.text-cbl1 i{
    color: #F26D3D;
    font-size: 15px;
}

.text-cbl1 p{
    color: #42468C;
    font-weight: 700;
    font-size: 17px;
    margin-top: -4px;
}

.text-cbl1 span{
    font-weight: 500;
}

.fcl button{
    background-color: #F26D3D;
    color: #fff;
    border-radius: 2rem;
    padding: 8px 20px;
    border: none;
    font-weight: 600;
    width: 230px;
    margin-top: 60px;
}

#imgresp{
    display: none;
}

.fcr{
    display: flex;
    flex-direction: column;
    gap: 35px;
}

#img-fcr{
    width: 400px;
    height: 340px;
    background-color: aliceblue;
    object-fit: cover;
}

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;
}


#gatofooterhidden{
    display: none;
}






@keyframes moveCarousel {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-30%);
    }
}


@media screen and (max-width:1250px){

    .navbar{
        width: 100%;
    }

    .navbar a{
        font-size: 15px;
    }
}

@media screen and (max-width:1110px){

    .navbar ul li > a {
        font-size: 13px;
    }

    /*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*/

    .container-conteudo2{
        display: flex;
        flex-direction: column;
        margin: 0 auto;
    }

    .fcl{
        margin-top: -100px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .fcr{
        align-items: center;
    }


    

    .hidden8{
        display: none;
    }

    .fd-fcl button{
        margin: 0 auto;
    }
}

@media screen and (max-width:1000px){
    

    .cima-right-footer{
        display: none;
    }

    /* 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;
    }

    /* Fim - Footer 900px*/
}

@media screen and (max-width:850px){
    /* Inicio - Footer 850px*/


    #gatofooterhidden{
        display: none;
    }

    /* Fim - Footer 850px*/
}

@media screen and (max-width:800px){

    #bgama{
        object-fit: cover;
    }

    .fcl{
        margin-top: -150px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }


    
}

@media screen and (max-width:600px){
    .fcl{
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .fcl h1,
    .fcl h2{
        width: 85%;
        margin-right: auto;
    }

    .fcl h1{
        font-size: 26px;
        margin-bottom: 10px;
    }

    .fcl h2{
        font-size: 17px;
        margin-bottom: 80px;
    }

    #brnao{
        display: none;
    }

    #brsim{
        display: block;
    }

    .boxes-fcl{
        display: none;
    }

    .boxesresp{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 15px;
        overflow: hidden;
    }

    .cboxresp{
        display: flex;
        margin: 0 auto;
        justify-content: center;
        align-items: center;
        gap: 15px;
        width: 100%;
    }

    #none{
        display: none;
    }



    .cbl1 {
        display: flex;
        flex-direction: column;
        margin-top: 30px;
        margin-left: 20px;
        width: 90%;
    }

    .text-cbl1 i {
        padding: 5px;
    }

    .text-cbl1 p {
        font-size: 16px;
    }

    #imgresp{
        width: 100%;
        max-width: 350px;
        height: 250px;
        margin: 50px auto 20px;
    }
}



@media screen and (max-width:500px){


    /* Início - Estilização do header */

    .navbar {
        justify-content: space-between;
        gap: 0px;
        padding: 16px 32px;
        width: 90%;
    }

    .subnav{
        display: none;
    }

    .navbar ul,
    .faleconosco{
        display: none;
    }

    .menuhamburguer{
        display: block;
        border: none;
        background-color: transparent;
    }

    .menuhamburguer img{
        width: 33px;
        height: 22px;
        cursor: pointer;
    }

    /* Fim - Estilização Header*/

    .conteudo2{
        margin-bottom: 70px;
    }

    #bgama {
        height: 500px;
        width: 100%;
        overflow: hidden;
        position: relative;
        margin-top: -150px;
        object-fit: cover;
        object-position: left;
    }

    .container-conteudo2{
        flex-direction: column;
        margin: -285px auto 0px;
        gap: 80px;
    }

    .fcl{
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-top: 0px;
    }

    .fcl h1,
    .fcl h2{
        width: 85%;
        margin-right: auto;
    }

    .fcl h1{
        font-size: 26px;
        margin-bottom: 10px;
    }

    .fcl h2{
        font-size: 17px;
        margin-bottom: 80px;
    }

    #brnao{
        display: none;
    }

    #brsim{
        display: block;
    }

    .boxes-fcl{
        display: none;
    }

    .boxesresp{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 15px;
        overflow: hidden;
    }

    .cboxresp{
        display: flex;
        margin: 0 auto;
        justify-content: center;
        align-items: center;
        gap: 15px;
        width: 100%;
    }

    #none{
        display: none;
    }

    /* Bootstrap carrossel */

.carousel-inner {
    max-width: 400px;
    width: 85%;
    height: 350px;
}

.carousel-item img {
    max-width: 400px;
    width: 85%;
    height: 350px;
    object-fit: cover;
}

.carousel{
    max-width: 400px;
    width: 85%;
    height: 350px;
}

li::marker {
    color: transparent;
}

/* Fim - Bootstrap carrossel */

    .cbl1 {
        display: flex;
        flex-direction: column;
        margin-top: 30px;
        margin-left: 20px;
        width: 90%;
    }

    .text-cbl1 i {
        padding: 5px;
    }

    .text-cbl1 p {
        font-size: 16px;
    }

    #imgresp{
        width: 100%;
        max-width: 350px;
        height: 250px;
        margin: 50px auto 20px;
    }



    .parceiros{
        gap: 40px;
    }
}







@media screen and (max-width:400px){

    #imgresp{
        max-width: 320px;
    }

    .box-fcl {
        width: 155px;
        height: 250px;
    }
    
    #b-img5 {
        width: 50px;
        height: 50px;
        margin-top: 0px;
    }
    
    .box-fcl p {
        font-size: 12.5px;
    }
    
    #b-img4 {
        margin-top: 5px;
    }
    
    .box-fcl h3{
        font-size: 16px;
    }

}
