@import url('https://fonts.googleapis.com/css2?family=Alatsi&family=Nokora:wght@100;300;400;700;900&display=swap');

.inicio{
    width: 100%;
    height: 80vh;
    position: absolute;
    top: 10vh;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.inicio .texto-inicial{
    width: 55%;
    text-align: left;
    color: #ffffff;
    padding: 40px;
    margin: 20px;
    box-sizing: border-box;
}

.inicio .texto-inicial h1{
    font-size: 65px;
    font-family: "alatsi";
    margin: 10px 20px;
}

.inicio .texto-inicial h2{
    font-size: 23px;
    margin: 0 20px;
    color: #46cf1c;
}

.inicio .texto-inicial .h3-inicial{
    margin-top: 30px;
}

.inicio .texto-inicial h3{
    font-size: 20px;
    font-family: "alatsi";
    margin: 10px 20px;
    color: #fff;
    font-weight: 400;
}



.inicio .banner-inicial{
    width: 40%;
    height: 80vh;
    margin-right: 5%;
}

.inicio .banner-container{
    height: 100%;
    position: relative;
}

.inicio .banner-container img{
    width: 90%;
    height: 400px;
    position: absolute;
    top: 15%;
    left: 10%;
    /* left: 50%; */
    /* transform: translate(-50%, -50%); */
    margin: auto;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    border: solid 1px #ffffff88;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    opacity: 0;
    animation: none;
    transition: none;
}

/* .banner-container img.active {
    opacity: 1;
    transition: 2s ease;
} */


.banner-container img.active {
  animation: zoomFade 10s ease-in-out;
}

@keyframes zoomFade {
  0% {
    opacity: 0.3;
    transform: scale(.95);
  }
  10% {
    opacity: 1;
  }
  80% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.05);
  }
}

@media(max-width:1080px){

    .inicio .texto-inicial{
        text-align: center;
        width: 80%;
    }

    .inicio .banner-inicial{
        display: none;
    }
    
    .inicio .texto-inicial h1{
        font-size: 55px;
    }

}

@media(max-width:870px){

    .inicio .texto-inicial h1{
        font-size: 50px;
    }

}

@media(max-width:728px){

    .inicio .texto-inicial h1{
        font-size: 42px;
        margin: 10px 0;
    }
    
    .inicio .texto-inicial {
        padding: 10px;
    }

    .inicio .texto-inicial h2{
        font-size: 20px;
    }

    /*.inicio .texto-inicial h3{*/
    /*    font-size: 13px;*/
    /*}*/

}

.fundo{
    background: #1E1CCF;
    width: 100%;
    height:100vh;
    margin: 0;
    padding: 0;
    z-index: 1;
}

/* QUADRADOS */

.quadrados{
    position: absolute;
    top: 20;
    left: 0;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.quadrados li{
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    animation: animate 25s linear infinite;
    bottom: -150px;
    
}

.quadrados li:nth-child(1){
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}


.quadrados li:nth-child(2){
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.quadrados li:nth-child(3){
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.quadrados li:nth-child(4){
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.quadrados li:nth-child(5){
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.quadrados li:nth-child(6){
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.quadrados li:nth-child(7){
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.quadrados li:nth-child(8){
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.quadrados li:nth-child(9){
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.quadrados li:nth-child(10){
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}



@keyframes animate {

    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100%{
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }

}

/* CONTAINER 1 */

.container1{
    margin-top: 70px;
    margin-bottom: 70px;
    text-align: center;
}

.container1 .cards-iniciais{
    display: flex;
    justify-content: center;
    flex-direction: row;
    width: 90%;
    margin: auto;
    flex-wrap: wrap;
}

.container1 .card{
    width: 280px;
    height: 150px;
    background-color: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    margin: 20px;
    border-radius: 0px 50px 50px 50px;
    transition: all .3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container1 .card:hover {
  transform: translateY(-10px);
}

.container1 .card .content{
    width: 80%;
    height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.container1 .card .content .icon{
    margin: 0px 10px 15px 10px;
}


/* CONTAINER 2 */

.container2{
    display: flex;
    align-items: center;
    padding: 20px;
    width: 80%;
    margin: auto;
    margin-bottom: 30px;
}

.container2 .galeria{
    width: 100%;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3%;
}

.container2 .galeria .img{
    width: 30%;
    height: 85%;
    background-color: #46cf1c;
    /* background: url(../img/galeria/criancas-entrando-na-escola3.jpg); */
    /* background-repeat: no-repeat; */
    /* background-size: 100%; */
    object-fit: cover;
}

/* .container2 .galeria .img{
    width: 80%;
    height: 85%;
    background-color: #46cf1c;
    background: url(../img/galeria/criancas-entrando-na-escola3.jpg);
    background-repeat: no-repeat;
    background-size: 100%;
    object-fit: cover;
} */


.container2 .galeria .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.container2 .galeria .img1{
    transform: translateY(10px);
}

.container2 .galeria .img2{
    transform: translateY(-15px);
}

.container2 .galeria .img3{
    transform: translateY(13px);
}

.container2 .galeria .img4{
    transform: translateY(-20px);
}

.container2 .texto{
    width: 100%;
    text-align: center;
    font-size: 17px;
    padding: 10px 20px;
    margin: auto;
    line-height: 23px;
    /* text-indent: 30px; */
}

.container2 .texto p{
    margin: 5px;
}

/* CONTAINER 2 - RESPONSIVIDADE */

@media (max-width: 1066px) {

    .container2{
        flex-direction: column;
    }

    .container2 .texto p{
        text-align: center;
    }
}

@media (max-width: 700px){

    .container2 .galeria{
        height: 350px;
    }

}

@media (max-width: 500px){

    .container2 .galeria{
        height: 250px;
    }

    .container2 .texto{
        font-size: 16px;
        padding: 0;
        margin: 0;
    }

}


/* CONTAINER 3 */

.container3{
    margin: 30px;
    font-family: "alatsi";
}

.container3 .carousel-wrapper {
    overflow: hidden;
    border-radius: 20px;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.container3 .carousel-track {
    display: flex;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.container3 .carousel-track .blue{
    color: #1E1CCF;
}

.container3 .carousel-track .pink{
    color: #FF1774;
}

.container3 .carousel-track .green{
    color: #46cf1c;
}

.container3 .carousel-track .yellow{
    color: #D9A200;
}

.container3 .carousel-item {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    width: 270px;
    margin: 10px;
    padding: 30px 20px;
    background: #fff;
    border-radius: 15px;
    text-align: center;
    font-size: 15px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
}

.container3 .carousel-item span{
    font-size: 70px;
    text-align: center;
    font-weight: 500;
}

@keyframes scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media(max-width: 800px){

    .container3 .carousel-item {
        width: 200px;
        font-size: 16px;
    }

    .container3 .carousel-item span{
        font-size: 50px;
    }

}

@media(max-width: 500px){

    .container3 .carousel-item {
        padding: 20px 10px;
    }

}

/* CONTAINER 4 */

.container4
{
    width: 96%;
    height: 250px;
    background: url(../img/fundos/fundo.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin: 20px 0px;
    padding: 2%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container4
 .content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 10px;
}


.container4
 .text{
    text-align: center;
    width: 100%;
    color: #ffffff;
    font-weight: 500;
    font-size: 20px;
    line-height: 25px;
    margin: 20px;
    text-shadow: 1px 1px 4px #000000c9;
}

.container4
 .buttons{
    width: 50%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 10px;
    margin: 10px;
}

@media(max-width: 1000px){

    .container4
    {
        height: 300px;
    }
}

@media(max-width: 550px){

    .container4
     .text{
        font-size: 17px;
    }

}

@media(max-width: 500px){

    .container4
     .buttons{
        width: 250px;
     }

}



.container4
 .buttons button{
    height: 50px;
    width: 50px;
    cursor: pointer;
    border: 0px;
    background-color: #46cf1c;
    padding: 7px;
    border-radius: 5px;
}


.container4
 .buttons button:hover{
    background-color: #D9A200;
    transition: .2s;
}

.container4
 .buttons button:active{
    background-color: #FF1774;
        transition: .1s;
}

.container4
 .buttons img{
    height: 90%;
    margin: auto;
}

.container4
 .buttons .faleConosco-btn button{
    width: 170px;
    font-size: 18px;
    color: #fff;
}

.container4
 .buttons .faleConosco-btn a{
    text-decoration: none;
    font-size: 18px;
    color: #fff;
}


@media(max-width:400px){
    
    .container4 .text{
        margin-bottom: 0;
    }

    .container4 .buttons button{
        height: 40px;
        width: 40px;
    }

    .container4 .buttons .faleConosco-btn button{
        width: 140px;
        font-size: 13px;
    }

    .container4 .buttons .faleConosco-btn button a{
        font-size: 14px;
    }

}

/* CONTAINER 5  */

.container5{
    padding: 10px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.container5 .cards{
    width: 90%;
    margin: auto;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.container5 .cards .card{
    width: 300px;
    height: 130px;
    padding: 10px;
    background-color: #ffffff;
    color: #000;
    margin: 15px;
    border-radius: 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s ease-in-out;
}

.container5 .card:hover{
    transform: translateY(-7px);
}

.container5 .cards .card img{
    width: 130px;
    height: 130px;
    border-radius: 10px;
    object-fit: cover;
}

.container5 .cards .card .text{
    margin: 10px;
    width: 220px;
}

.container5 .cards .card h3{
    margin: 10px;
    font-size: 19px;
    color: #1E1CCF;
    font-family: "alatsi";
}

.container5 .cards .card p{
    margin: 10px;
    font-size: 15px;
}

@media(max-width:500px){

    .container5 .cards .card{
        width: 300px;
        height: 110px;
    }

    .container5 .cards .card img{
        width: 110px;
        height: 110px;
    }

    .container5 .cards .card .text{
        width: 170px;
    }

    .container5 .cards .card h3{
        font-size: 14px;
    }
    
    .container5 .cards .card p{
        font-size: 12px;
    }
}

.button-verMais button {
  padding: 15px 40px;
  border: none;
  outline: none;
  background-color: #1E1CCF;
  color: #fff;
  font-size: 15px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.25s ease-out;
  margin: auto;
}

.btn-verMais1 button:hover{
  transform: translateY(-3px);
  background-color: #46cf1c;
}

.button-verMais{
    display: flex;
    justify-content: center;
}

/* CONTAINER 6 */

.container6{
    padding: 30px;
}

.container6 .cards{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container6 .card{
    width: 270px;
    height: 240px;
    padding: 15px;
    margin: 10px;
    gap: 7px;
    background-color: #fff;
    color: #000000;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
    transition: all .3s ease-in-out;
}

.container6 .card:hover{
    transform: translateY(-10px);
}

.container6 .superior{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.container6 .superior img{
    width: 100px;
}

.container6 .superior h1{
    font-size: 22px;
    font-weight: 500;
    color: #1E1CCF;
    font-family: "alatsi";
    line-height: 17px;
}

.container6 .inferior ul{
    font-size: 15px;
    text-align: center;
    padding: 0;
    margin: auto;
    width: 90%;
    list-style-type: none;
}

.container6 .inferior li{
    margin: 10px;
}

.btn-verMais2 button:hover{
  transform: translateY(-3px);
  background-color: #FF1774;
}

@media(max-width:500px){

    .container6 .card{
        width: 200px;
        height: 180px;
    }

    .container6 .superior h1{
        font-size: 18px;
    }

    .container6 .inferior ul{
        font-size: 13px;
    }

    .container6 .superior img{
        width: 80px;
    }

}

/* CONTAINER 7 */

.faq-container {
  max-width: 700px;
  margin: auto;
  padding: 30px;
  height: 500px;
}

.faq-container h2 {
  text-align: center;
  font-size: 40px;
  margin-bottom: 30px;
  color: #1E1CCF;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-question {
  width: 100%;
  padding: 15px;
  text-align: left;
  background: none;
  border: none;
  outline: none;
  display: flex;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  color: #34495e; 
  transition: all 0.3s;
}

.container7 .seta{
    width: 15px;
    height: 15px;
    background: url(../img/geral/setaAzul.png);
    background-position: center;
    background-size: 100%;
    margin-right: 15px;
    transition: all .3s;
}


.faq-question:hover {
    background-color: #f0f0f0;
}

.faq-question:hover .seta{
    background: url(../img/geral/setaRosa.png);
    background-position: center;
    background-size: 100%;
    transform: translateX(10px);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 0 15px 15px;
  margin: 0;
  color: #555;
}

@media(max-width:500px){
    .faq-container {
      height: 600px;
    }

}