.form-container {
    height: 100%;
}

.col-contato-container {
    height: 88vh;
}

.col {
    max-width: 400px;
    height: auto;
    padding: 1rem;
}

.col-custom {
    padding-right: 5rem;
}

.row {
    padding-left: 16px;
    --bs-gutter-x: 0;
}

.btn {
    border-radius: 12px;
    box-shadow: 1px 1px 2px #888;
}

button:hover {
    color: #555;
    font-weight: bold;
}

#contact-form {
    color: #555;
    font-size: 1rem;
}

textarea {
    resize: none;
}


.instagram-link {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 120px;
    right: 40px;
    background-color: #fff;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 1px 1px 2px #888;
    z-index: 1000;
}

.fa-instagram {
    margin-top: 16px;
}

.whatsapp-link {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #fff;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 1px 1px 2px #888;
    z-index: 1000;
}

.fa-whatsapp {
    margin-top: 16px;
}

.whatsapp-link .fa-brands {
    color: #949494;
}

.instagram-link .fab {
    color: #949494;
}

.whatsapp-link .fa-brands:hover,
.msg:hover {
    color: #5a5a5a;
}

.instagram-link .fab:hover {
    color: #5a5a5a;
}

.form-control,
.form-control:focus {
    box-shadow: 1px 1px 2px #888;

}

.msg {
    right: 105px;
    background: #fff;
    color: #555;
    position: fixed;
    width: 180px;
    bottom: 55px;
    text-align: center;
    font-size: 1rem;
    line-height: 31px;
    height: 31px;
    border-radius: 100px;
    z-index: 100;
    box-shadow: 1px 1px 2px #888;
}

.msg-insta {
    right: 105px;
    background: #fff;
    color: #555;
    position: fixed;
    width: 150px;
    bottom: 135px;
    text-align: center;
    font-size: 1rem;
    line-height: 31px;
    height: 31px;
    border-radius: 100px;
    z-index: 100;
    box-shadow: 1px 1px 2px #888;
}

.social-container .msg-insta {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.social-container:hover .msg-insta {
    opacity: 1;
}

@media screen and (max-width: 767.98px) {
    .whatsapp-link {
        position: unset;
        display: inline-block;
        margin-left: 15px;
    }

    .instagram-link {
        position: unset;
        display: inline-block;
        margin-right: 15px;
    }

    .social-query {
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }

    .col {
        max-width: none;
    }

    .button-center {
        display: flex;
        justify-content: center;
    }
}