.container {
    background-image: url('../img/backgroundfom.webp');
    background-size: cover;
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.container-form{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;   
    gap: 15px;
    max-width: 50vw;
}

.email-section {
    display: flex;
    align-items: center;
    max-width: 60vw;
}

.barra {
    width: 120px;
    height: 3px;
    background-color: #8D141A;
}

.titulo {
    color: #8D141A;
    text-align: center;
    max-width: 80%;
}

.formulario {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 05px;

}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 40vw;
    padding: 10px;
    border: solid 1px #dedede;
    border-radius: 0px;
    color: #d1d1d1;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 300;
    background-color: #f5f5f5;
}

textarea {
    resize: vertical;
}

button.enviarMensg {
    width: 50%;
    padding: 20px;
    border: none;
    border-radius: 5px;
    background-color: #8D141A;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

button.enviarMensg:hover {
    background-color: #6c0e13;
}

.imagem img {
    border-radius: 5px;
    height: 100%;
    width: 400px;
}

.botaoWhatsapp{
    display: none;
}





@media (max-width: 700px) {
    .container-form{
        flex-direction: column;
    }

    .barra {
        display: none;
    }
    .email-section {
        display: flex;
        align-items: center;
        max-width: 85vw;
    }

    .titulo{
        text-align: left;
        font-size: 20px;
        max-width: 100%;
    }

    .container-form{
       max-width: 100vw;
    }

    .formulario{
        width: 100%;
    }

    .form-group input{
        width: 85vw;
    }
    
    .form-group textarea{
        width: 85vw;
    }

    .enviarMensg{
        width: 50vw;
    }

    .botaoWhatsapp{
        display: unset;
        margin-top: 10px;
        width: 85vw;
    }

    .botaoWhatsappDesk{
        display: none;
    }

    .imagem img {
        border-radius: 5px;
        height: 100%;
        width: 85vw;
    }

}