@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root{
    --cor0: #FA0001;
    --cor1: #FFEEA6;
    --cor2: #2c436b;
    --cor3: #80A4ED;
    --cor4: #BCD3F2;
    --cor5: #122130;
    --cor6: #1c7c54;
    --cor7: #78787e;

    --fonte-padrao: 'Roboto', Arial, Verdana, Helvetica, sans-serif;
    --fonte-destaque: 'Montserrat', Verdana, Helvetica, cursive;
    --fonte-logo: Arial, Verdana, Helvetica, cursive;
    
}

*{
    margin: 0px;
    padding: 0px;
}

body{
    background-image: url(../img/outros/fundo-tela.jpg);
    font-family: var(--fonte-padrao);
}

button:hover{
    cursor: pointer;
    transition-duration: 0.2s;
}

button a{
    text-decoration: none;
    color: white;
    font-family: var(--fonte-destaque);
    font-weight: 600;
}

main > strong{
    color: var(--cor5);
}

p{
    margin: 10px;
    font-size: 18px;
    line-height: 24px;
}


main p{
    font-size: 19px;
    font-weight: 350;
}

main ul li{
    font-size: 18px;
}

.central{
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.titulo{
    color: var(--cor2);
    font-family: var(--fonte-destaque);
    padding-left: 10px;
}

.titulo-central{
    text-align: center;
    color: var(--cor2);
    font-family: var(--fonte-destaque);
    padding: 10px;
}

.titulo-central h1{
    text-transform: uppercase;
    font-size: 2.5em;
}

.titulo-central h2{
    font-weight: normal;
}

.titulo-curso{
    color: var(--cor2);
    font-family: var(--fonte-destaque);
    text-align: center;
    margin-top: 15px;
    margin-bottom: 10px;
}

hr{
    margin: auto;
    width: 70%;
}

hr.divisoria{
    margin-top: 50px;
    margin-bottom: 60px;
}

hr.hr-titulo{
    margin-top: 20px;
    margin-bottom: 20px;
}

hr.hr-divisao{
    visibility: hidden;
    width: 0;
}

/*HEADER*/
header{
    background-image: linear-gradient(to bottom, var(--cor1), #efdc88);
    min-height: 100px;
    box-shadow: 0px 7px 7px rgba(0, 0, 0, 0.397);
}

.container-header{
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
}

.logo{
    display: flex;
    align-items: center;
    text-align: left;
}
    
.logo > img{
    height: 60px;
}
    
h1#nome-logo{
    color: black;
    padding-left: 20px;
    margin-right: 80px;
    font-size: 1.4em;
    font-family: var(--fonte-logo);
    font-weight: 750;
}
    
.menu{
    text-transform: uppercase;
    text-align: center;
    display: flex;
}

.menu li a{
    padding: 10px;
    border-radius: 3px;
    color:#122130;
    text-decoration: none;
    font-family: var(--fonte-destaque);
    font-weight: bold;
    font-size: 0.9em;
    display: block;
    margin: 0 auto;
    min-width: 40px;
}

.menu li a:hover{
    text-decoration: none;
    transition-duration: 0.2s;
    background:#122130;
    color: #ebebeb;
}

ul.inline li{
display: inline;
margin-right: 10px;
}

button.botao-voluntario{
    background-color: var(--cor6);        
    padding: 8px;
    margin: 10px 12px;
    width: 160px;
    border-radius: 25px; 
}

button.botao-voluntario:hover{
    background-color: #115a3c;
}

.botao-voluntario a{
    text-align: center;
    text-decoration: none;
    font-family: var(--fonte-destaque);
    font-weight: bold;
    color: #ebebeb;
    font-size: 1em;
}

.mobile-menu-icon{
    display: none;
}

.mobile-menu{
    display: none;
}

.open{
    display: block;
}


/*BANNER*/
.banner{
    text-align: center;
    justify-content: center;
    background-image: url(../img/outros/banner.jpg);
    background-size: cover;       /* cobre toda a tela */
    background-repeat: no-repeat; /* não repete */
    background-position: center; 
    width: auto;
    height: 360px;
    color: white!important;
    align-content: center;
    font-size: 28px;
    box-shadow: 0px 7px 7px rgba(0, 0, 0, 0.397);
}

#titulo-banner{
    margin-bottom: 25px;
    font-family: var(--fonte-destaque);
}


/*MAIN*/
main{
    background-color: white;
    max-width: 1300px;
    margin: auto;
    padding: 20px 5px;
    margin-top: 15px;
    margin-bottom: 15px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.523);
    border-radius: 10px;
}


/*FOOTER*/
footer{
    background-color: var(--cor5);
    color: white;
    text-align: center;
    font-size: 0.8em;
    padding: 10px;
    min-width: 1400px;
    margin: auto;
    overflow: auto;
    display:flex;
    justify-content: center;
}

footer h3{
    font-size: 19px;
    font-family: var(--fonte-destaque);
    color: var(--cor4);
    padding-bottom: 10px;
}

footer p{
    font-size: 17px;
    line-height: 25px;
}

.footer-border, #footer-border-meio{
    border-left: 1px solid #78787e;
    visibility: visible;
}

.pix strong, .pix i{
    color: #4bbbab;
}

.container-footer{
    word-wrap: break-word;
    max-width: 300px;
    text-align: center;
    padding: 20px;
}

.linha-footer{
    display: flex;
}



/*CARROSSEL DE CURSOS*/
.cursos{
    display: flex;
    text-align: center;
    font-size: 17px;
}

.cursos ul li{
    margin: 7px 45px;
}

.cursos img{
  width: 300px;   /* largura */
  height: auto;   /* mantém proporção */
}

.carrossel {
    box-shadow: 2px 2px 4px black;
    overflow: hidden;
    height: 440px;
    width: 100%;           /* Agora ocupa tudo */
    max-width: 588px;      /* Mas nunca maior que 588 */
}

#mini-carrossel{
        border: 3px solid var(--cor2);
}


.container-carrossel{
    display: flex;
    transition: transform 0.5s ease-in-out;
    transform: translateX(0);
}

.container-carrossel img{
    object-fit: cover; 
    height: auto; 
    width: 588px;
}


.botao-cursos-div{
    text-align: center;
}



/* SLIDE DE FOTOS */
.container-slider{
    width: 960px;
    height: 550px;
    display: flex;
    margin: auto;
    padding: 20px;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
    z-index: 1; /* só pra garantir uma base */
}

.container-images:hover{
    cursor: zoom-in;
}

.container-images{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 700px;
}

.contador-slide {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 10px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 14px;
    border-radius: 5px;
    font-family: sans-serif;
    z-index: 20; /* AQUI: deixa o contador sempre por cima */
}


.slider{
    opacity: 0;
    transition: opacity .2s;
    position: absolute;
    width: 100%;
    border-radius: 10px;
    border: 3px solid var(--cor2);
    pointer-events: none;
}

.slider.on{
    opacity: 1;
    pointer-events: auto;
}

.prev-button, .next-button{
    width: 50px;
    height: auto;
    border: none;
    background-color: transparent;
    cursor: pointer;
    padding: 0;
    margin: 0;
}

.prev-button img, .next-button img{
    width: 100%;
    height: 100%;
}

.next-button{
    transform: rotate(180deg);
}

.container-slider-mini{
    width: auto;
    height: auto;
    display: flex;
    margin: auto;
    padding: 5px;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.container-images-mini{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 450px;
}

.setas-mini{
    width: 0px;
    height: 0px;
    visibility: hidden;
}

.lightbox {
    display: none;            /* ESSENCIAL */
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
}


.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 5px;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}



/*CRIMES*/
.container{
    width: 1100px;
    margin: auto;
    padding: 20px;
    overflow: auto;
    display:flex;
}

.between{
    justify-content: space-between;
}

.around{
    justify-content: space-around;
}

.center {
    justify-content: center;
}

.justify{
    text-align: justify;
}

.container-box{
    width: 1200px;
    margin: auto;
    overflow: auto;
    display:flex;
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.4);
    border-radius: 20px;
    border: 3px solid var(--cor2);
}

.container-equipe{
    max-width: 1060px;
    margin: auto;
    overflow: auto;
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.4);
    border-radius: 20px;
    border: 3px solid var(--cor2);
}

.container-equipe img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-bottom: 3px solid var(--cor2);
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.4);
}

.container-info{
    display: flex;
    width: auto;
    justify-self: normal;
    justify-content: space-around;
    margin-bottom: 15px;
}

.container-info h3, .container-info h4{
    padding-top:20px;
    padding-bottom:10px;
}

.container-info ul li{
    padding-bottom: 5px;
}

.container-sobre-index{
    max-width: 1000px;
    min-width: auto;
    margin: auto;
    overflow: auto;
    display:flex;
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.4);
    border-radius: 20px;
    border: 3px solid var(--cor2);
    justify-content: center;
    padding-top: 10px;
}

.container-sobre{
    width: 1100px;
    margin: auto;
    padding: 20px;
    overflow: auto;
    display:flex;
    justify-content: center;
}

.curso img{
    height: 100%;
    width: 550px;
    display: block;
    object-fit: cover;
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.4);
}

.curso-info{
    word-wrap: break-word;
    width: 450px;
    padding: 20px 30px;
    height: auto;
}

.curso-info p{
    padding: 5px 0;
}

.cursos-info-index{
    display: grid;
    margin: auto;
    text-align: center;
    justify-content: center;
    margin-top: 10px;
}

.info-cursos{
    word-wrap: break-word;
    width: 400px;
    text-align: justify;
}

.info-sobre-index{
    word-wrap: break-word;
    max-width: 450px;
    text-align: justify;
    margin-left: 60px;
}

.info-sobre{
    word-wrap: break-word;
    max-width: 450px;
    text-align: justify;
    margin: 30px;
    justify-content: space-around;
}

.container-text{
    word-wrap: break-word;
}

.w-1100{
    width: 1100px;
    padding-top: 0px;
}

.w-550{
    width: 550px;
}

.w-450{
    width: 450px;
}

.w-430{
    width: 430px;
}

.w-350{
    width: 350px;
}

.w-250{
    width: 250px;
}

.espaço-info p{
    font-size: 20px;
    padding: 3px 0;
}

.espaço-info{
    max-width: 1100px;
    margin: auto;
    padding: 20px;
    text-align: justify;   
}


/*OUTROS CRIMES*/
#foto-yolanda{
    display: block;
    margin: 0 auto;
    padding: 50px 0;
    max-width: 750px;
    width: auto;
}

.sobre img{
    height: 350px;
    width: auto;
    display: block;
    margin: 0 auto;
    margin-top: 15px;
    padding: 5px;
}

.sobre-index img{
    height: 350px;
    width: auto;
    display: block;
    margin: 0 auto;
    margin-top: 15px;
    padding: 5px;
}

.sobre-img{
    height: 300px;
    width: auto;
    display: block;
    margin: 0 auto;
}

.moldura{
    border-radius: 50%;
    border: 4px solid goldenrod;
    object-fit: cover; /* evita distorção */
        overflow: hidden;
}

.moldura img{
    padding: 0;
    margin: 0;
    object-fit: cover; /* evita distorção */
    overflow: hidden;
}


.sobre h5{
    color: #78787e;
    text-align: center;
    margin-top: 15px;
    font-size: 15px;
}

.sobre-index h5{
    color: #78787e;
    text-align: center;
    margin-top: 15px;
    font-size: 15px;
}

.equipe-info{
    max-width: 450px;
    justify-content: space-around;
}

.equipe-info h3, .equipe-info h4, .contato{
    color: var(--cor5);
}

.contato{
    padding-top: 20px;
    font-size: large;
}

.contato h3{
    padding-bottom: 5px;
}

.container-aluguel{
    width: 1100px;
    margin: auto;
    padding: 20px;
    overflow: auto;
    display:flex;
    justify-content: space-between;
}

.info-aluguel{
    word-wrap: break-word;
    width: 450px;
    text-align: justify;
}

.container-parceiros{
    width: auto;
    overflow: auto;
    justify-content: center;
    background-image: linear-gradient(to bottom, var(--cor1), #efdc88);
    text-align: center;
    color: #222528;
    border-top: 5px solid var(--cor2);
    font-size: 14px;
}

.parceiros{
    width: auto;
    margin: auto;
    padding: 20px;
    display: flex;
    justify-content: center;
}

.parceiros.desktop { display: flex; }
.parceiros.mobile { display: none; }

.container-parceiros h3{
    margin-top: 20px;
    margin-bottom: 10px;
    font-family: var(--fonte-destaque);
    font-size: 17px;
}

.container-parceiros hr{
    width: 1000px;
}

.container-parceiros img{
    height: 80px;
    width: auto;
    margin-inline: 15px;
}

.container-curso{
    width: 1100px;
    margin: 0 auto;
    display:flex;
    align-items: center;
    justify-content: space-around;
    gap: 10px;
    flex-wrap: wrap;
    padding-block: 30px;
}

.curso{
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.4);
    display: flex;
    width: 1000px;
    height: auto;
    border: 3px solid var(--cor2);
}

.border-divisao{
    align-self: center;
    height: 400px;
    border-right: 2px solid var(--cor2);
    border-radius: 5px;
}

.space{
    margin-top: 30px;
}



/*BOTOES*/
.botao-cursos{
    background: rgb(214, 161, 63);
    padding: 10px 80px;
    border-radius: 3px;
    margin: auto;
    margin-bottom: 10px;
}

.botao-cursos:hover{
    background-color: rgb(174, 129, 45);
}


.botao-espaço{
    background: #289533;
    padding: 10px 30px;
    border-radius: 10px;
    margin: auto;
}

.botao-espaço:hover{
    background-color: #1b5d21;
}

.botao-espaço-div{
    text-align: center;
}


.botao-sobre{
    background: #283695;
    padding: 10px 25px;
    border-radius: 10px;
    margin: auto;
    margin-bottom: 10px;
}

.botao-sobre:hover{
    background-color: #1f296c;
}

#botao-insta{
    background-color: #ee2a7b;
    font-size: 16px;
    padding: 10px 25px;
    border-radius: 20px;
    margin: auto;
}

#botao-insta:hover{
    background-color: #bd2162;
}

#maps{
    text-decoration: none;
    font-size: 18px;
    color: #878df4;
    cursor: pointer;
}



/*MEDIDAS*/
@media (max-width: 1439px){
    footer{
        min-width: auto;
    }

    footer h3{
        font-size: 17px;
    }

    footer p{
        font-size: 15px;
        line-height: 25px;
    }

    .footer-border, #footer-border-meio{
        border-left: 1px solid #78787e;
        visibility: visible;
    }

    .container-footer{
        word-wrap: break-word;
        width: auto;
        max-width: 270px;
        text-align: center;
        padding: 20px 10px;
    }

}


@media (min-width: 1023px) and (max-width: 1134px){ 

        
    h1#nome-logo{
        font-size: 1.2em;
        margin-right: 80px;
    }

    p{
        margin: 10px;
        font-size: 17px;
        line-height: 24px;
    }

    main p{
        font-size: 18px;
        font-weight: 350;
    }

    main ul li{
        font-size: 17px;
    }    

    .cursos-info-index{
        padding-left: 10px;
    }



    /*PAG CURSOS*/
    .titulo-central{
        font-size: 1em;
    }

    h2.titulo-central{
        font-size: 1.5em
    }

    h1.titulo-central{
        font-size: 28px;
    }

    .container-curso{
        width: auto;
    }



    /*PAG SOBRE*/
    .container-sobre-index{
        max-width: 900px;
    }

    .container-sobre{
        width: auto;
        max-width: 1024px;
    }

    /*PAG ESPAÇO*/
    .espaço-info p{
        font-size: 19px;
        text-align: justify;
        margin-bottom: 0;
    }

    .fotos-e-contato{
        margin: auto;
    }

    .container-aluguel{
        display: grid;
        width: auto;
    }

    .info-aluguel{
        width: auto;
    }

    .info-aluguel p{
        font-size: 19px;
    }

    .contato{
        font-size: 1.3em;
    }



    /*FOOTER*/
    footer{
        padding: 5px 0;
        min-width: 800px;
        max-width: auto;
        margin: auto;
        overflow: auto;
        display: grid;
        justify-content: center;
    }

    footer h3{
        font-size: 18px;
        padding-bottom: 3px;
    }

    footer p{
        font-size: 17px;
        line-height: 22px;
    }

    .container-footer{
        max-width: 290px;
        align-self: center;
        padding: 0px 20px;
    }

    .linha-footer{
        margin: 18px 0;
    }

    #footer-border-meio{
        border-left: 0px;
    }

    #maps{
        font-size: 18px;
        text-decoration: underline;
    }
}


@media (min-width: 900px) and (max-width: 1023px){ 
    .logo > img{
        height: 40px;
    }
        
    h1#nome-logo{
        font-size: 1.1em;
        margin-right: 40px;
    }
        
    .menu li a{
        font-size: 0.7em;
        margin: 0 auto;
    }

    a#botao-voluntario{
        font-size: 0.8em;
    }



    .mobile-menu {
        display: none !important;
    }

    .mobile-menu-icon {
        display: none; /* o botão também some em telas grandes */
    }


    
    p{
        margin: 10px;
        font-size: 19px;
        line-height: 24px;
    }


    main p{
        font-size: 19px;
        font-weight: 350;
    }

    main ul li{
        font-size: 18px;
    }

    .container-box{
        width: 1400px;
        margin: auto;
        overflow: auto;
        flex-direction: column;
    }

    .logo > img{
        height: 60px;
    }

    .banner{
        height: 320px;
    }

    .banner h1{
        font-size: 1.4em;
        margin-bottom: 10px;
    }

    .banner h5{
        font-size: 0.8em;
    }

    h1.titulo-central{
        font-size: 26px;
    }

    .cursos{
    font-size: 12px;
    max-width: 600px;
    margin: auto;
    }

    .cursos ul li{
        margin: 15px 0px 15px 60px;
    }

    .cursos img{
    width: 300px;   /* largura */
    height: auto;   /* mantém proporção */
    }


    /*CARROSSEL DE CURSOS*/
    .carrossel{
    overflow: hidden;
    height: auto;
    width: auto;
    }

    .container-carrossel img{
        object-fit: cover;
        height: auto;
        width: 100%;
        margin: auto;
    }

    .cursos-info-index{
    display: grid;
    margin: auto;
    text-align: center;
    justify-content: center;
    margin-top: 10px;
    }

    .info-cursos{
        word-wrap: break-word;
        width: auto;
        text-align: justify;
    }


    /* SLIDE DE FOTOS */
    .container-slider{
        width: auto;
        height: 150px;
        display: flex;
        margin: auto;
        padding: 150px 0;
        align-items: center;
        justify-content: center;
        gap: 0rem;
    }

    .container-images{
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 600px;
    }

    .container-slider .prev-button, .container-slider .next-button{
        width: 0px;
        height: 0px;
        visibility: hidden;
    }

    .container-slider-mini{
        width: auto;
        height: auto;
        display: flex;
        margin: auto;
        padding: 5px;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }

    .container-images-mini{
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 450px;
    }


    .setas-mini{
        width: 200px;
        height: 100px;
        display: flex;
        margin: auto;
        align-items: center;
        justify-content: space-around;
        gap: 0rem;
        visibility: visible;
    }

    .setas-mini .prev-button, .setas-mini .next-button{
        height: 80px;
        width: auto;
    }




    .container-equipe h4{
        font-size: 16px;
        padding-left: 0;
    }

    .container-equipe h3{
        font-size: 16px;
    }

    .container-equipe ul li{
        font-size: 16px;
    }

    .equipe-info{
        width: auto;
        justify-content: space-between;
        padding: 0 15px;
    }
    
    #foto-yolanda{
    width: 100%;
    height: auto;
    }  

    .container-parceiros {
        overflow: hidden;
    }

    .parceiros {
        display: flex;
        gap: 40px;
        width: max-content;
        animation: slideParceiros 18s linear infinite;
        padding: 20px 0;
    }

    .parceiros.desktop { display: none; }
    .parceiros.mobile { display: flex; }

    .container-parceiros img {
        width: auto;
        height: 110px;
    }

    /* animação mais suave, ajustada para o tamanho total do conteúdo */
    @keyframes slideParceiros {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }


    /*PAG CURSOS*/
    .titulo-central{
        font-size: 1em;
    }

    h2.titulo-central{
        font-size: 1.5em
    }

    .container-curso{
        width: auto;
        max-width: 680px;
    }

    .curso{
        display: grid;
        width: auto;
    }

    .curso img{
        object-fit: cover;
        max-height: 370px;
        width: 100%;
    }

    .titulo-curso{
        margin-top: 0px;
        margin-bottom: 10px;
        font-size: 1.5em
    }

    .curso-info{
        word-wrap: break-word;
        width: auto;
        padding: 20px 10px;
        height: auto;
    }

    .border-divisao{
        height:10px;
        width: 0px;
        border: 0;
    }

    hr.hr-divisao{
        visibility: visible;
        width: 70%;
    }


    /*PAG SOBRE*/

    .container-sobre-index{
        width: auto;
        max-width: 900px;
    }

    .container-sobre{
        width: auto;
        padding: 0;
        display:grid;
        justify-content: center;
    }

    .sobre img{
        object-fit: cover;
        height: auto;
        max-width: 400px;
        padding: 0;
        margin-top: 0px;
    }

    .sobre{
        width: auto;
    }

    .titulo{
        font-size: 1.3em;
        margin-top: 25px;
    }

    .info-sobre{
        word-wrap: break-word;
        max-width: 650px;
        text-align: justify;
        margin: 5px;
        justify-content: space-around;
    }


    /*PAG ESPAÇO*/
    .espaço-info p{
        font-size: 19px;
        text-align: justify;
        margin-bottom: 0;
    }

    .fotos-e-contato{
        margin: auto;
    }

    .container-aluguel{
        display: grid;
        width: auto;
    }

    .info-aluguel{
        width: auto;
    }

    .contato{
        font-size: 1.3em;
    }


    /*FOOTER*/
    footer{
        padding: 5px 0;
        min-width: 800px;
        max-width: auto;
        margin: auto;
        overflow: auto;
        display: grid;
        justify-content: center;
    }

    footer h3{
        font-size: 18px;
        padding-bottom: 3px;
    }

    footer p{
        font-size: 17px;
        line-height: 22px;
    }

    .container-footer{
        max-width: 290px;
        align-self: center;
        padding: 0px 20px;
    }

    .linha-footer{
        margin: 18px 0;
    }

    #footer-border-meio{
        border-left: 0px;
    }

    #maps{
        font-size: 18px;
        text-decoration: underline;
    }


    /*BOTOES*/

    .botao-cursos{
        padding: 16px 50px;
        margin: 5px 0 15px;
        font-size: medium;
    }

    .botao-espaço, .botao-sobre{
        padding: 15px 35px;
        font-size: medium;
        display: flex;
        justify-content: center; /* centraliza horizontalmente */
        margin-top: 15px;
    }

    #botao-insta{
        font-size: 18px;
        padding: 14px 22px;
    }
}


@media (min-width: 670px) and (max-width: 900px){

    p{
        margin: 10px;
        font-size: 19px;
        line-height: 24px;
    }


    main p{
        font-size: 19px;
        font-weight: 350;
    }

    main ul li{
        font-size: 18px;
    }

    .container-box{
        width: 1400px;
        margin: auto;
        overflow: auto;
        flex-direction: column;
        box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.4);
        border-radius: 20px;
        border: 3px solid var(--cor2);
    }

    nav, #voluntario{
        display: none;
    }

    .mobile-menu{
        background-image: linear-gradient(to bottom, rgb(28, 58, 100), #182a3c);
        color: var(--cor4);
        justify-content: center;
    }

    .voluntario-menu{
        text-align: center;
    }

    .mobile-menu-icon{
        display: block;
    }

    .mobile-menu-icon button{
        background-color: var(--cor5);
        border-radius: 5px;
        box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.467);
    }

    .mobile-menu ul{
        display: flex;
        flex-direction: column;
        text-align: center;
        padding-bottom: 0.5em;
    }

    .mobile-menu ul.inline li{
    margin-right: 0px;
    }

    .mobile-menu .nav-item{
        font-size: 1em;
        display: block;
        padding-top: 1.3em;
        color: white;
        box-shadow: 0px 1px 1px black;
    }

    .mobile-menu button.botao-voluntario{
        width: 85%;
        border-radius: 10px;
        padding: 15px 0;
    }


    header{
        min-height: 50px;
    }

    .logo{
        margin-bottom: 5px;
        margin-top: 5px;
    }

    .logo > img{
        height: 60px;
    }
        
    h1#nome-logo{
        font-size: 1.3em;
        margin-right: 0px;
    }

    .banner{
        height: 280px;
    }

    .banner h1{
        font-size: 1.2em;
        margin-bottom: 10px;
    }

    .banner h5{
        font-size: 0.7em;
    }


    h1.titulo-central{
        font-size: 22px;
    }

    .cursos{
    font-size: 12px;
    max-width: 600px;
    margin: auto;
    }

    .cursos ul li{
        margin: 15px 0px 15px 60px;
    }

    .cursos img{
    width: 300px;   /* largura */
    height: auto;   /* mantém proporção */
    }


    /*CARROSSEL DE CURSOS*/
    .carrossel{
    box-shadow: 2px 2px 4px black;
    overflow: hidden;
    height: auto;
    width: auto;
    }

    .container-carrossel img{
        object-fit: cover;
        height: auto;
        width: 100%;
        margin: auto;
    }

    .cursos-info-index{
    display: grid;
    margin: auto;
    text-align: center;
    justify-content: center;
    margin-top: 10px;
    }

    .info-cursos{
        word-wrap: break-word;
        width: auto;
        text-align: justify;
    }


    /* SLIDE DE FOTOS */
    .container-slider{
        width: auto;
        height: 150px;
        display: flex;
        margin: auto;
        padding: 150px 0;
        align-items: center;
        justify-content: center;
        gap: 0rem;
    }

    .container-images{
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 600px;
    }

    .container-slider .prev-button, .container-slider .next-button{
        width: 0px;
        height: 0px;
        visibility: hidden;
    }

    .container-slider-mini{
        width: auto;
        height: auto;
        display: flex;
        margin: auto;
        padding: 5px;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }

    .container-images-mini{
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 450px;
    }


    .setas-mini{
        width: 200px;
        height: 100px;
        display: flex;
        margin: auto;
        align-items: center;
        justify-content: space-around;
        gap: 0rem;
        visibility: visible;
    }

    .setas-mini .prev-button, .setas-mini .next-button{
        height: 80px;
        width: auto;
    }

    .container{
        padding: 4px;
    }

    .container-sobre-index{
        width: auto;
        max-width: 620px;
        margin: auto;
        overflow: hidden;
        display:grid;
        box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.4);
        border-radius: 20px;
        border: 3px solid var(--cor2);
        justify-content: space-around;
        padding-top: 10px;
    }

    .info-sobre-index{
        max-width: 550px;
        margin-left: 0px;
        margin-top: 20px;
    }

    .info-sobre{
        width: auto;
        margin: 0px;
        padding: 5px 15px;
        max-width: 600px;
    }

    .container-sobre-index p{
        width: auto;
    }

    .moldura{
        padding: 2px;
        margin: auto;
    }

    .container-equipe h4{
        font-size: 14px;
        padding-left: 0;
    }

    .container-equipe h3{
        font-size: 15px;
    }

    .container-equipe ul li{
        font-size: 15px;
    }

    .equipe-info{
        width: auto;
        justify-content: space-between;
        padding: 0 15px;
    }
    
    #foto-yolanda{
    width: 100%;
    height: auto;
    }  

    .container-parceiros {
        overflow: hidden;
    }

    .parceiros {
        display: flex;
        gap: 40px;
        width: max-content;
        animation: slideParceiros 18s linear infinite;
        padding: 20px 0;
    }

    .parceiros.desktop { display: none; }
    .parceiros.mobile { display: flex; }

    .container-parceiros img {
        width: auto;
        height: 110px;
    }

    /* animação mais suave, ajustada para o tamanho total do conteúdo */
    @keyframes slideParceiros {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }


    /*PAG CURSOS*/
    .titulo-central{
        font-size: 1em;
    }

    h2.titulo-central{
        font-size: 1.5em
    }

    .container-curso{
        width: auto;
        max-width: 620px;
    }

    .curso{
        display: grid;
        width: auto;
    }

    .curso img{
        object-fit: cover;
        max-height: 330px;
        width: 100%;
    }

    .titulo-curso{
        margin-top: 0px;
        margin-bottom: 10px;
        font-size: 1.5em
    }

    .curso-info{
        word-wrap: break-word;
        width: auto;
        padding: 20px 10px;
        height: auto;
    }

    .border-divisao{
        height:10px;
        width: 0px;
        border: 0;
    }

    hr.hr-divisao{
        visibility: visible;
        width: 70%;
    }


    /*PAG SOBRE*/
    .container-sobre{
        width: auto;
        padding: 0;
        display:grid;
        justify-content: center;
    }

    .sobre img{
        object-fit: cover;
        height: auto;
        max-width: 400px;
        padding: 0;
        margin-top: 0px;
    }

    .sobre{
        width: auto;
    }

    .titulo{
        font-size: 1.3em;
        margin-top: 25px;
    }
    

    /*PAG ESPAÇO*/
    .espaço-info p{
        font-size: 19px;
        text-align: justify;
        margin-bottom: 0;
    }

    .fotos-e-contato{
        margin: auto;
    }

    .container-aluguel{
        display: grid;
        width: auto;
    }

    .info-aluguel{
        width: auto;
    }

    .contato{
        font-size: 1.2em;
    }


    /*FOOTER*/
    footer{
        padding: 5px 0;
        min-width: 320px;
        max-width: auto;
        margin: auto;
        overflow: auto;
        display: grid;
        justify-content: center;
    }

    footer h3{
        font-size: 17px;
        padding-bottom: 3px;
    }

    footer p{
        font-size: 16px;
        line-height: 22px;
    }

    .container-footer{
        max-width: 250px;
        align-self: center;
        padding: 0px 20px;
    }

    .linha-footer{
        margin: 18px 0;
    }

    #footer-border-meio{
        border-left: 0px;
    }

    #maps{
        font-size: 17px;
        text-decoration: underline;
    }


    /*BOTOES*/

    .botao-cursos{
        padding: 16px 50px;
        margin: 5px 0 15px;
        font-size: medium;
    }

    .botao-espaço, .botao-sobre{
        padding: 15px 35px;
        font-size: medium;
        display: flex;
        justify-content: center; /* centraliza horizontalmente */
        margin-top: 15px;
    }

    #botao-insta{
        font-size: 17px;
        padding: 14px 22px;
    }
}


@media (max-width: 669px) { 

    p{
        margin: 10px;
        font-size: 18px;
    }


    main p{
        font-size: 18px;
        font-weight: 350;
    }

    main ul li{
        font-size: 18px;
    }

    .container-box{
        width: 1400px;
        margin: auto;
        overflow: auto;
        flex-direction: column;
        box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.4);
        border-radius: 20px;
        border: 3px solid var(--cor2);
    }

    nav, #voluntario{
        display: none;
    }

    .mobile-menu{
        background-image: linear-gradient(to bottom, rgb(28, 58, 100), #182a3c);
        color: var(--cor4);
        justify-content: center;
    }

    .voluntario-menu{
        text-align: center;
    }

    .mobile-menu-icon{
        display: block;
    }

    .mobile-menu-icon button{
        background-color: var(--cor5);
        border-radius: 5px;
        box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.467);
    }

    .mobile-menu ul{
        display: flex;
        flex-direction: column;
        text-align: center;
        padding-bottom: 0.5em;
    }

    .mobile-menu ul.inline li{
    margin-right: 0px;
    }

    .mobile-menu .nav-item{
        font-size: 1em;
        display: block;
        padding-top: 1.3em;
        color: white;
        box-shadow: 0px 1px 1px black;
    }

    .mobile-menu button.botao-voluntario{
        width: 85%;
        border-radius: 10px;
    }


    header{
        min-height: 50px;
    }

    .logo{
        margin-bottom: 3px;
        margin-top: 3px;
    }

    .logo > img{
        height: 60px;
    }
        
    h1#nome-logo{
        font-size: 1.2em;
        margin-right: 0px;
    }

    .banner{
        height: 260px;
    }

    .banner h1{
        font-size: 0.9em;
        margin-bottom: 10px;
    }

    .banner h5{
        font-size: 0.6em;
    }


    h1.titulo-central{
        font-size: 21px;
    }

    .cursos{
    font-size: 12px;
    max-width: 480px;
    margin: auto;
    }

    .cursos ul li{
        margin: 7px 45px;
    }

    .cursos img{
    width: 300px;   /* largura */
    height: auto;   /* mantém proporção */
    }


    /*CARROSSEL DE CURSOS*/
    .carrossel{
    box-shadow: 2px 2px 4px black;
    overflow: hidden;
    height: auto;
    width: auto;
    }

    .container-carrossel img{
        object-fit: cover;
        height: auto;
        width: 100%;
        margin: auto;
    }

    .cursos-info-index{
    display: grid;
    margin: auto;
    text-align: center;
    justify-content: center;
    margin-top: 10px;
    }

    .info-cursos{
        word-wrap: break-word;
        width: auto;
        text-align: justify;
    }


    /* SLIDE DE FOTOS */
    .container-slider{
        width: auto;
        height: 150px;
        display: flex;
        margin: auto;
        padding: 100px 0;
        align-items: center;
        justify-content: center;
        gap: 0rem;
    }

    .container-images{
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 500px;
    }

    .container-slider .prev-button, .container-slider .next-button{
        width: 0px;
        height: 0px;
        visibility: hidden;
    }

    .container-slider-mini{
        width: auto;
        height: auto;
        display: flex;
        margin: auto;
        padding: 5px;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }

    .container-images-mini{
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 450px;
    }


    .setas-mini{
        width: 200px;
        height: 100px;
        display: flex;
        margin: auto;
        align-items: center;
        justify-content: space-around;
        gap: 0rem;
        visibility: visible;
    }

    .setas-mini .prev-button, .setas-mini .next-button{
        height: 70px;
        width: auto;
    }

    .container{
        padding: 4px;
    }

    .container-sobre-index{
        width: auto;
        max-width: 480px;
        margin: auto;
        overflow: hidden;
        display:grid;
        box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.4);
        border-radius: 20px;
        border: 3px solid var(--cor2);
        justify-content: space-around;
        padding-top: 10px;
    }

    .info-sobre-index{
        max-width: auto;
        margin-left: 0px;
    }

    .info-sobre{
        width: auto;
        margin: 0px;
        padding: 5px;
    }

    .container-sobre-index p{
        width: auto;
    }

    .moldura{
        padding: 2px;
        margin: auto;
    }

    .container-equipe h4{
        font-size: 13px;
        padding-left: 0;
    }

    .container-equipe h3{
        font-size: 13px;
    }

    .container-equipe ul li{
        font-size: 13px;
    }

    .equipe-info{
        width: auto;
        justify-content: space-between;
        padding: 0 15px;
    }
    
    #foto-yolanda{
    width: 100%;
    height: auto;
    }  

    .container-parceiros {
        overflow: hidden;
    }

    .parceiros {
        display: flex;
        gap: 40px;
        width: max-content;
        animation: slideParceiros 18s linear infinite;
        padding: 20px 0;
    }

    .parceiros.desktop { display: none; }
    .parceiros.mobile { display: flex; }

    .container-parceiros img {
        width: auto;
        height: 100px;
    }

    /* animação mais suave, ajustada para o tamanho total do conteúdo */
    @keyframes slideParceiros {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }


    /*PAG CURSOS*/
    .titulo-central{
        font-size: 0.9em;
    }

    h2.titulo-central{
        font-size: 1.5em
    }

    .container-curso{
        width: auto;
        max-width: 480px;
    }

    .curso{
        display: grid;
        width: auto;
    }

    .curso img{
        object-fit: cover;
        max-height: 280px;
        width: 100%;
    }

    .titulo-curso{
        margin-top: 0px;
        margin-bottom: 10px;
        font-size: 1.5em
    }

    .curso-info{
        word-wrap: break-word;
        width: auto;
        padding: 20px 10px;
        height: auto;
    }

    .border-divisao{
        height:10px;
        width: 0px;
        border: 0;
    }

    hr.hr-divisao{
        visibility: visible;
        width: 70%;
    }


    /*PAG SOBRE*/
    .container-sobre{
        width: auto;
        padding: 0;
        display:grid;
        justify-content: center;
    }

    .sobre img{
        object-fit: cover;
        height: auto;
        max-width: 400px;
        padding: 0;
        margin-top: 0px;
    }

    .sobre{
        width: auto;
    }

    .titulo{
        font-size: 1.3em;
        margin-top: 25px;
    }
    

    /*PAG ESPAÇO*/
    .espaço-info p{
        font-size: 17px;
        text-align: justify;
        margin-bottom: 0;
    }

    .fotos-e-contato{
        margin: auto;
    }

    .container-aluguel{
        display: grid;
        width: auto;
    }

    .info-aluguel{
        width: auto;
    }

    .contato{
        font-size: 1em;
    }


    /*FOOTER*/
    footer{
        font-size: 0.em;
        padding: 5px 0;
        min-width: 320px;
        max-width: auto;
        margin: auto;
        overflow: auto;
        display: grid;
        justify-content: center;
    }

    footer h3{
        font-size: 15px;
        padding-bottom: 3px;
    }

    footer p{
        font-size: 13px;
        line-height: 16px;
    }

    .container-footer{
        max-width: 200px;
        text-align: center;
        padding: 0px 8px;
    }

    .linha-footer{
        margin: 18px 0;
    }

    #footer-border-meio{
        border-left: 0px;
    }

    #maps{
        font-size: 14px;
        text-decoration: underline;
    }


    /*BOTOES*/

    .botao-cursos{
        padding: 16px 40px;
        margin: 5px 0 15px;
        font-size: medium;
    }

    .botao-espaço, .botao-sobre{
        padding: 15px 30px;
        font-size: medium;
        display: flex;
        justify-content: center; /* centraliza horizontalmente */
        margin-top: 15px;
    }

    #botao-insta{
        font-size: 14px;
        padding: 12px 18px;
    }
}


@media (max-width: 429px){ 

    p{
    margin: 10px;
    font-size: 16px;
    }


    main p{
        font-size: 16px;
        font-weight: 350;
    }

    main ul li{
        font-size: 16px;
    }

    .container-box{
    width: 1400px;
    margin: auto;
    overflow: auto;
    flex-direction: column;
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.4);
    border-radius: 20px;
    border: 3px solid var(--cor2);
    }

    header{
        min-height: 50px;
    }

    .mobile-menu-icon button{
        height: 30px;
        width: auto;
    }

    .mobile-menu-icon img{
        height: 30px;
    }

    .logo{
        margin-bottom: 0px;
    }

    .logo > img{
        height: 36px;
        margin-right: 0px;
    }
        
    h1#nome-logo{
        font-size: 0.9em;
        padding-left: 8px;
        margin-right: 0px;
    }
        
    .menu li a{
        font-size: 0.9em;
        padding-inline: 4px;
        border-radius: 3px;
        margin: 0 auto;
    }

    .mobile-menu ul.inline li{
        font-size: 0.7em;
    }

    .menu li a:hover{
        text-decoration: none;
        transition-duration: 0.2s;
        background:#122130;;
        color: #ebebeb;
    }
    
    .botao-voluntario a{
        font-size: 0.7em;
    }

    .mobile-menu button.botao-voluntario{
        width: 75%;
        padding: 8px;
    }

    h1.titulo-central{
        font-size: large;
    }

    .cursos{
    font-size: 12px;
    }

    .cursos ul li{
        margin: 7px 45px;
    }

    .cursos img{
    width: 300px;   /* largura */
    height: auto;   /* mantém proporção */
    }


    /*CARROSSEL DE CURSOS*/
    .carrossel{
    box-shadow: 2px 2px 4px black;
    overflow: hidden;
    height: auto;
    width: auto;
    }

    .container-carrossel img{
        object-fit: cover;
        height: auto;
        width: 100%;
    }

    .cursos-info-index{
    display: grid;
    margin: auto;
    text-align: center;
    justify-content: center;
    margin-top: 10px;
    }

    .info-cursos{
        word-wrap: break-word;
        width: auto;
        text-align: justify;
    }


    /* SLIDE DE FOTOS */
    .container-slider{
        width: auto;
        height: 150px;
        display: flex;
        margin: auto;
        padding: 70px 0;
        align-items: center;
        justify-content: center;
        gap: 0rem;
    }

    .container-images{
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 500px;
    }

    .slider{
        opacity: 0;
        transition: opacity .2s;
        position: absolute;
        width: 100%;
        border-radius: 10px;
        border: 3px solid var(--cor2);
        pointer-events: none;
    }

    .slider.on{
        opacity: 1;
        pointer-events: auto;
    }

    .container-slider .prev-button, .container-slider .next-button{
        width: 0px;
        height: 0px;
        visibility: hidden;
    }

    .container-slider-mini{
        width: auto;
        height: auto;
        display: flex;
        margin: auto;
        padding: 5px;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }

    .container-images-mini{
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 450px;
    }


    .setas-mini{
        width: 200px;
        height: 100px;
        display: flex;
        margin: auto;
        align-items: center;
        justify-content: space-around;
        gap: 0rem;
        visibility: visible;
    }

    .setas-mini .prev-button, .setas-mini .next-button{
        height: 70px;
        width: auto;
    }

    .container{
        padding: 4px;
    }

    .container-sobre-index{
        width: auto;
        margin: 0;
        overflow: hidden;
        display:grid;
        box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.4);
        border-radius: 20px;
        border: 3px solid var(--cor2);
        justify-content: space-around;
        padding-top: 10px;
    }

    .info-sobre-index{
        max-width: 300px;
        margin-left: 0px;
    }

    .info-sobre{
        width: auto;
        margin: 0px;
    }

    .container-sobre-index p{
        width: auto;
    }

    img.moldura{
        padding: px;
        margin: 10px;
    }

    .container-equipe h4{
        font-size: 12px;
        padding-left: 0;
    }

    .container-equipe h3{
        font-size: 12px;
    }

    .container-equipe ul li{
        font-size: 12px;
    }

    .equipe-info{
        width: auto;
        justify-content: space-between;
        padding: 0 15px;
    }
    
    #foto-yolanda{
    width: 310px;
    height: auto;
    }  

    .container-parceiros {
        overflow: hidden;
    }

    .parceiros {
        display: flex;
        gap: 40px;
        width: max-content;
        animation: slideParceiros 18s linear infinite;
        padding: 20px 0;
    }

    .parceiros.desktop { display: none; }
    .parceiros.mobile { display: flex; }

    .container-parceiros img {
        width: auto;
        height: 70px;
    }

    /* animação mais suave, ajustada para o tamanho total do conteúdo */
    @keyframes slideParceiros {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }


    /*PAG CURSOS*/
    .titulo-central{
        font-size: 0.7em;
    }

    h2.titulo-central{
        font-size: 1.3em
    }

    .container-curso{
        width: auto;
    }

    .curso{
        display: grid;
        width: auto;
    }

    .curso img{
        object-fit: cover;
        max-height: 280px;
        width: 100%;
    }

    .titulo-curso{
        margin-top: 0px;
        margin-bottom: 10px;
        font-size: 1.3em
    }

    .curso-info{
        word-wrap: break-word;
        width: auto;
        padding: 20px 10px;
        height: auto;
    }

    .border-divisao{
        height:10px;
        width: 0px;
        border: 0;
    }

    hr.hr-divisao{
        visibility: visible;
        width: 70%;
    }


    /*PAG SOBRE*/
    .container-sobre{
        width: auto;
        margin: auto;
        padding: 0;
        overflow: auto;
        display:grid;
        justify-content: center;
    }

    .sobre img{
        object-fit: cover;
        height: auto;
        max-width: 270px;
        padding: 0;
        margin-top: 0px;
    }

    .sobre p{
        width: auto;
    }

    .titulo{
        font-size: 1.3em;
        margin-top: 25px;
    }
    

    /*PAG ESPAÇO*/
    .espaço-info p{
        font-size: 15px;
        text-align: justify;
        margin-bottom: 0;
    }

    .container-aluguel{
        display: grid;
        width: auto;
    }

    .info-aluguel{
        width: auto;
    }

    .contato{
        font-size: 0.9em;
    }


    /*FOOTER*/
    footer{
        font-size: 0.3em;
        padding: 5px 0;
        min-width: 320px;
        max-width: auto;
        margin: auto;
        overflow: auto;
        display: grid;
        justify-content: center;
    }

    footer h3{
        font-size: 11px;
        padding-bottom: 3px;
    }

    footer p{
        font-size: 10px;
        line-height: 16px;
    }

    .container-footer{
        max-width: 155px;
        text-align: center;
        padding: 0px 0;
    }

    .linha-footer{
        margin: 12px 0;
    }

    #footer-border-meio{
        border-left: 0px;
    }

    #maps{
        font-size: 11px;
        text-decoration: underline;
    }


    /*BOTOES*/
    .botao-cursos{
        padding: 12px 40px;
        margin-bottom: 10px;
    }

    .botao-espaço, .botao-sobre{
        padding: 12px 20px;
        font-size: 12px;
        display: flex;
        justify-content: center; /* centraliza horizontalmente */
    }

    #botao-insta{
        font-size: 11px;
        padding: 10px 15px;
    }

}