.section-img{
    align-items: center;
}
.section1{
    flex-direction: column;
    background: url(https://github.com/ZeDio/Visao-Educada/blob/main/Imgs/criancasComCelular.jpg?raw=true);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 90vh;
    border-radius: 0px 0px 20vh 0px;
    margin-top: 90px;
}

.section1 a{
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bolder;
    padding: 5px 15px 5px 15px;
    border: 2px solid white;
    border-radius: 25px;
    max-width: 600px;
    margin: 40px;
    background-color: transparent;
    backdrop-filter: blur(7px);
    animation: flutua 5s ease-in-out infinite;
    transition: 0.5s ease-in-out;
}
.section1 .a:hover{
    color: black;
    background-color: white;
    animation: flutua 5s ease-in-out infinite;
    transition: 0.5s ease-in-out;
}

.contato-to{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}
.contato{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 30px;
    padding: 10px;
    border-radius: 0px 40px;
    position: relative;
    width: 120px;
    height: 120px;
    overflow: hidden;
    transition: 0.5s ease-in-out;
}
.contato:hover{
    width: 200px;
    height: 250px;
    transition: 0.5s ease-in-out;
}
.contato img{
    width: 100px;
    margin-bottom: 20px;
}
.contato h1{
    text-align: center;
    font-size: 36px;
    margin-bottom: 5px;
}
a, a:hover{
    color: white;
}
.text-contato{
    width: 190px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    text-align: center;
    position: absolute;
    bottom: -200px;
    transition: 0.5s ease-in-out;
}
.contato:hover .text-contato{
    bottom: 0px;
    transition: 0.5s ease-in-out;
    height: 150px;
}
@media screen and (max-width: 600px){
    .contato-to{
      flex-direction: column;
    }
}