/* TELA DE CONTATO */
.contato-container {
    display: flex;
    justify-content: center;
    gap: 0;
    flex-direction: column;
    max-width: 100%;
    margin: auto;
}


#contato-titulo {
    display: flex;
    justify-content: space-between;
    border-radius: 15px 15px 0 0;
    padding: 10px;
}

#contato-titulo h1{
    flex: 1;
    text-align: center;
    padding: 20px;
}

input {
    background-color: #cecece;
}

#contato-titulo button{
    margin-right: 10px;
}

#contato-content {
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 80%;
    border-radius: 0 0 15px 15px;
    /* background-color: #dfdfdf; */
    padding: 10px;
}

.contato-input {
    border: none;
    border-radius: 15px;
    padding: 10px;
    height: 20%;
    background-color: #cecece;
}

.contato-enviar {
    border: solid 1px #898989;
    background-color: #dfdfdf;
    color: #898989;
    padding: 5px;
    border-radius: 15px;
    transition: all 0.2s;
}
.contato-enviar:hover {
    background-color:#1B657A;
    color: white;
}

.contato-enviar-whatsapp {
    border: none;
    background-color: #00CD15;
    color: white;
    padding: 5px;
    border-radius: 15px;
    transition: all 0.2s;
}
#divisor {
    display: flex;
    flex-direction: row;
    align-items: center;
    color:#898989;
}
#divisor hr {
    flex: 0 0 33.33%;
    height: 1px;

    border:#898989 1px solid;
}

.contato-title {
    font-size: 24px;
    margin: 0;
}

#btn-fechar-contato {
    background-color: #A8A8A8;
    border: none;
    color: white;
    cursor: pointer;
}

.required {
    color: red;
    margin-left: 3px;
  }

@media (min-width:850px) {
    .contato-container {
        max-width: 50%;
    }
}