@import url("./css/reset.css");
header{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    max-height: 120px;
    box-shadow: 0 0 5px 5px #dedede50;
}
header .logo-wrapper{
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    width: 250px;
}
header .logo-wrapper img:first-child{
    width: 25%;
}
main .vantagens-wrapper{
    margin: 50px 0;
    width: 100%;
    gap: 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
}
main .vantagens-wrapper .vantagem{
    display: flex;
    flex-flow: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 0 5px 5px #dddddd25;
    max-width: calc(80% / 4);
    min-width: 140px;
    aspect-ratio: 1/1;
}
main .vantagens-wrapper .vantagem img{
    width: 75%;
}
footer{
    padding: 3rem 5%;
    box-shadow: 0 0 5px 5px #999999b3;
}
footer .social-section{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-flow: column;
    gap: 50px;
}
footer .social-section h4{
    font-size: 2rem;
    color: #373435;
}
footer .social-section .social-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 50%;
}
footer .social-section .social-wrapper .icon{
    transition-property: transform;
    transition-timing-function: ease-out;
    transition-duration: 400ms;
}
footer .social-section .social-wrapper .icon:hover{
    transform: scale(1.1);
}
footer .social-section .social-wrapper .icon img{
    width: 50px;
    height: 50px;
}
footer .copy-info{
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;
    margin: 50px;
}
@media screen and (max-width: 768px){
    main .vantagens-wrapper .vantagem img{
        width: 90px;
    }
}
@media screen and (max-width: 425px){
    footer .social-section .social-wrapper .icon img{
        width: 35px;
        height: 35px;
    }
}