body {
    display: grid;
    align-items: center;
    justify-items: center;
    background: url(/img/fundo.png)no-repeat center center;
    background-size: cover;
}
html {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
}
.mixtree-grid {
    display: grid;
    gap: 0px;
}
.redes {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 20px;
}
.redes a {
    max-width: 49px;
}
.redes a:hover {
    transform: scale(1.1);
}
a {
    transition: .3s;
}
.whats {
    display: grid;
    justify-items: center;
    gap: 20px;
}

.whats a {
    width: 350px;
    padding: 16px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-align: center;
    background-color: #10213B;
    color: #fff;
}
.whats a:hover {
    background-color: #CB3436;
}

.logo {
    display: grid;
    justify-items: center;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}
.logo img {
    max-width: 300px;
}
.serv {
    background-color: #fff;
    text-align: center;
    padding: 10px;
    display: grid;
    gap: 15px;
    border-radius: 12px;
    color: #10213B;
    font-weight: 500;
    font-size: 1.3rem;
    margin-top: 10px;
}
.serv div {
    display: flex;
    gap: 20px;
    justify-content: center;
}
.serv div img {
    max-width: 120px;
}


@media only screen and (max-width:390px) {

    .whats a {
        width: 200px;
        padding: 15px 0px;
    }
    html {
        font-size: 1rem;
    }
    .logo img {
        max-width: 200px;
    }
    .serv div {
        display: grid;
        gap: 20px;
        justify-items: center;
    }
    .serv div img {
        max-width: 100px;
    }
    .serv {
        font-size: 1rem;
    }
    
}