@import url('https://fonts.googleapis.com/css2?family=Alatsi&family=Nokora:wght@100;300;400;700;900&display=swap');

.sobre-nos-1{
    padding:  100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sobre-nos-1 .textos{
    width: 45%;
    padding: 20px;
    margin: 20px;
}

.sobre-nos-1 .textos h1{
    color: #1D1DCA;
    font-size: 50px;
    margin: 0px 10px;;
}

.sobre-nos-1 .textos h3{
    color: #FF1774;
    font-size: 20px;
    margin: 0px 10px;
    font-weight: 400;
}

.sobre-nos-1 .textos p{
    color: #000000;
    font-size: 18px;
    margin: 10px;
}

.sobre-nos-1 .textos button{
  padding: 15px 50px;
  border: none;
  outline: none;
  background-color: #1D1DCA;
  color: #fff;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.25s ease-out;
  margin: 10px;
}

.sobre-nos-1 .textos button:hover {
  transform: translateY(-3px);
  background-color: #82E400;
}

.sobre-nos-1 .textos a {
    text-decoration: none;
    font-size: 18px;
    color: #fff;
}


.sobre-nos-1 .imagem-inicial{
    width: 40%;
    margin: 20px;
    display: flex;
    justify-content: center;
    margin-left: -10px;
}

.sobre-nos-1 .imagem-inicial img{
    width: 100%;
    box-shadow: 20px 20px 0px #82e400; 
}

@media(max-width: 1200px){

    .sobre-nos-1 .textos h1{
        font-size: 45px;
    }

    .sobre-nos-1 .textos h3{
        font-size: 19px;
    }

    .sobre-nos-1 .textos p{
        font-size: 15px;
    }

}

@media(max-width: 1000px){

    .sobre-nos-1 .textos h1{
        font-size: 40px;
    }

    .sobre-nos-1 .textos h3{
        font-size: 16px;
    }

    .sobre-nos-1 .textos p{
        font-size: 12px;
    }

    .sobre-nos-1 .textos button{
        padding: 12px 30px;
    }

    .sobre-nos-1 .textos button{
        font-size: 13px;
    }

}


@media(max-width: 800px){
    
    .sobre-nos-1{
        flex-direction: column-reverse;
        padding: 80px;
    }

    .sobre-nos-1 .textos{
        width: 100%;
    }

    .sobre-nos-1 .imagem-inicial{
        width: 60%;
    }
}

@media(max-width: 600px){
    .sobre-nos-1{
        padding: 60px;
    }
}

@media(max-width: 450px){
    
    .sobre-nos-1{
        padding: 50px;
    }

    .sobre-nos-1 .imagem-inicial{
        width: 80%;
    }

    .sobre-nos-1 .textos .subtitulo{
        font-size: 14px;
    }

    .sobre-nos-1 .textos h1{
        font-size: 40px;
    }
}


/* CTA */

.cta{
    background: url(../img/fundos/fundo2.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.cta h3{
    color: #fff;
    margin: 20px;
    margin-bottom: 0cqmin;
    font-size: 20px;
    padding: 10px;
    text-shadow: 1px 1px 4px #000000c9;
}


.cta button{
  padding: 12px 30px;
  border: none;
  outline: none;
  background-color: #FF1774;
  color: #fff;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.25s ease-out;
  margin: 10px;
  font-size: 15px;
}

.cta button:hover {
  transform: translateY(-3px);
  background-color: #D9A200;
}

.cta a {
    text-decoration: none;
    font-size: 20px;
    color: #fff;
}

@media(max-width: 800px){

    .cta h3{
        width: 60%;
        font-size: 18px;
        text-align: center;
    }

    .cta{
        background: url(../img/fundos/fundo3.svg);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 250px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

}

/* CONTAINER HISTORIA */


#historia{
    scroll-margin-top: 40px;
}

.container-historia{
    margin: 20px auto;
    width: 90%;
    padding: 10px;
}

.titulo-dinamico{
    font-size: 40px;
    display: flex;
    justify-content: center;
}

.titulo-dinamico strong{
    color: #D9A200;
    padding: 0 10px;
    font-weight: 700;
}


.historia{
    font-size: 17px;
    text-align: center;
    padding: 10px;
    width: 90%;
    margin: auto;
}


.valores{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px;
    gap: 50px;
}

.valores .img{
    width: 600px;
    height: 400px;
    max-width: 700px;
    margin-left: 10px;
}

.valores .img img{
    width: 100%;
    height: 100%;
    box-shadow: -20px 20px 0px #D9A200;
    object-fit: cover;
}

@media(max-width: 1125px){

    .valores{
        flex-direction: column;
    }

}

@media(max-width: 775px){

    .valores .img{
        width: 500px;
        height: 350px;
    }
    

}

@media(max-width: 665px){

    .titulo-dinamico{
        font-size: 22px;
    }

    .historia{
        font-size: 15px;
    }

    .valores .img{
        width: 400px;
        height: 300px;
    }

}

@media(max-width: 500px){

    .valores .img{
        width: 300px;
        height: 200px;
    }
    

}

@media(max-width: 470px){

    .titulo-dinamico{
        font-size: 19px;
    }

    .historia{
        font-size: 13px;
    }

}

@media(max-width: 400px){

    .titulo-dinamico{
        font-size: 15px;
    }

    .valores .img{
        width: 250px;
        height: 150px;
    }
    
}

