* {margin: 0; padding: 0;
  border: 0; box-sizing: border-box;}

.foto
{
    background-image: url('imagens/fale-conosco.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    
}
.titulo
{
    margin: 0;
    padding-top: 8%;
    padding-bottom: 8%;
    text-align: center;
    font-size: clamp(2.5rem, 4vw, 4rem);
    color: white;
}

.fale-conosco
{
    margin-top: 3%;
    margin-left: 5%;
    margin-right: 5%;
}
.fale-conosco-container
{
    width: 100%;
    display:flex;
}

.fale-conosco-titulo
{
    width: 100%;
    margin: 0;
    margin-left: 15px;
    padding-top: 5px;
    text-transform: uppercase;
    font-size: clamp(2rem, 2.5vw, 2.5rem);
    font-weight: bold;
}
.fale-conosco-texto
{
    margin-top: 1%;
    padding-bottom: 3%;
    margin-left: 65px;
    padding-right: 5%;
    font-family: Tahoma, sans-serif;
    font-size: clamp(1.5rem, 1.7vw, 1.8rem);
    text-align: justify;
}

.formulario-container
{
    display: flex;
    padding-top: 5%;
}
.texto
{
    width: 50%;
    padding-right: 2%;
    padding-left: 10%;
    
}
.texto ul
{
    list-style: none;
}
.texto ul i 
{
    color: hsl(45, 2%, 52%);
}
.texto ul li a
{
    text-decoration: none;
    color: black;
}
.texto-informacoes
{
    padding-bottom: 1%;
    font-weight: bold;
    font-size: 17px;
    color: hsl(52, 54%, 44%);
}
.redes-sociais 
{
    padding-top: 5%;
    
}
.redes-sociais a
{
    font-size: 26px;
    color: hsl(52, 54%, 44%);
    display:inline; 
    margin: 0 25px 10px 0;
    text-align: center;
}
.redes-sociais a :hover 
{
    color: rgb(215, 207, 168);
}

#aviso-atencao
{
    padding-top: 10%;
    font-size: 14px;
    text-align: justify;
}

.formulario
{
    width: 50%;
    padding-left: 2%;
    padding-right: 10%;
    
}

.campo_formulario
{
    border: 1px solid hsl(52, 54%, 44%);
    border-radius: 5px;
    height: 50px;
    width: 100%;
    outline: 0;
    box-sizing: border-box;
    margin-bottom: 10px;
    padding-left: 3%;
}
.campo_formulario:focus
{
    background-color: rgb(226, 224, 215);
}

#campo_mensagem
{
    margin-bottom: 0;
    height: 150px;
    resize: vertical;
}
#campo_mensagem:focus
{
    background-color: rgb(226, 224, 215);
}
#contador
{
    font-size: 11px;
}

#btn_enviar_formulario
{
    margin-top: 6%;
    margin-bottom: 5%;
    border-radius: 5px;
    height: 50px;
    width: 100%;
    background-color: rgb(226, 224, 215);
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
}

#btn_enviar_formulario:hover
{
    background-color:  hsl(52, 54%, 44%);
}


@media(max-width: 800px)
{
    .formulario-container
    {
        display: block;
    }
    .texto
    {
        width: 100%;
        
        padding-right: 10%;
    }
    .formulario
    {
        width: 100%;
        padding-left: 10%;
    }
}