#contato h2 {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--cinza-claro);
}

#contato_formulario {
    display: flex;
    margin: 150px 0px 180px 0px;
    width: 100%;
    height: 540px;
    background-color: var(--vermelho);
}

.contato_formulario_container {
    display: flex;
    width: 1280px;
    height: 100%;
    margin: auto;
    position: relative;
    overflow: visible;
}

.contato_formulario__info {
    display: flex;
    flex-direction: column;
    width: 45%;
    height: 100%;
    padding: 125px 0px;
    color: white;
    gap: 55px;
}

.contato_formulario__info_tel,.contato_formulario__info_hora {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contato_formulario__info_tel__header,.contato_formulario__info_hora__header {
    display: flex;
    width: fit-content;
    gap: 20px;
}

.contato_formulario__info_tel__header img, .contato_formulario__info_hora__header img{
    width: 28px;
    height: 28px;
}

.contato_formulario__info_tel__header span,.contato_formulario__info_hora__header span {
    font-size: 20px;
    font-weight: 400;
    margin: auto;
}

.contato_formulario__info_social {
    display: flex;
    gap: 25px;
    font-weight: 400;
}

#btnfacebook {
    padding: 7px 20px;
    border-radius: 3px;
    background-color: rgba(25, 118, 210, 1);
    transition: transform 0.8s ease;
}

#btnwhatsapp {
    padding: 7px 20px;
    border-radius: 3px;
    background-color: rgba(37, 211, 102, 1);
    transition: transform 0.8s ease;
}

#btnwhatsapp:hover, #btnfacebook:hover {
    transform: scale(1.1);
}

.contato_formulario__form {
    width: 704px;
    height: 650px;
    background-color: white;
    position: absolute;
    top: -30px;
    transform:translateY(-20px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 55px;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.contato_formulario {
    display: flex;
    flex-direction: column;
}

.contato_formulario__campo {
    margin-bottom: 15px;
}

.contato_formulario__campo input, .contato_formulario__campo textarea {
    width: 100%;
    padding: 10px;
    border: none;
    border-bottom: 2px solid var(--vermelho);
    box-sizing: border-box;
    font-size: 16px;
    outline: none;
}

.contato_formulario__botoes {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

#btnlimpar,#btnenviar {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

#btnlimpar {
    background-color: #f44336;
    color: white;
}

#btnenviar {
    background-color: #4CAF50;
    color: white;
}

#btnlimpar:hover {
    background-color: #d32f2f;
}

#btnenviar:hover {
    background-color: #388e3c;
}