/* Produtos */
.faleconosco{
    margin: 30px 0;
}
/* Linha de Título */
.faleconosco .titulo{
    margin-bottom: 30px;
    font-size: 22pt;
    line-height: 26pt;
    color: #004138;
}
/* Ajustes Pedir Cartão */
.pedircartao{
    flex-direction: column;
    margin-bottom: 30px;
}
.pedircartao .titulo{
    margin-bottom: 0;
    font-family: "Nunito-Bold";
}
/* Fix Margin */
.fix-margin{
    width: 100%;
    overflow: hidden;
}
.fix-content{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-left: -20px;
}
/* Blocos */
.faleconosco .bloco{
    width: 50%;
    height: 320px;
}
/* Mensagem de erro/envio */
.faleconosco .msg{
    margin-bottom: 30px;
    border-radius: 5px;
    box-sizing: border-box;
    padding: 8px;
    color: #ffffff;
}
.faleconosco .erro{
    background-color: #f00f00;
}
.faleconosco .sucesso{
    background-color: #41ab34;
}
.faleconosco .msg p{
    width: 100%;
    text-align: center;
}
/* Formmulario */
.formulario .coluna{
    display: flex;
    flex-direction: column;
    margin-left: 20px;
    margin-bottom: 50px;
    box-sizing: border-box;
}
.formulario input[type="text"]{
    padding: 20px;
    border: none;
    outline: none;
    border-radius: 30px;
    color: #656565;
    background-color: #f2f2f2;
    font-size: 11pt;
}
.formulario .coluna{
    display: flex;
    justify-content: space-between;
    height: 100%;
}
.formulario textarea{
    height: 100%;
    padding: 20px;
    border: none;
    outline: none;
    border-radius: 30px;
    color: #656565;
    background-color: #f2f2f2;
    font-size: 11pt;
}
/* Botao de Envio */
.faleconosco .botao{
    margin: 40px 0 30px 0;
    justify-content: center;
}
.faleconosco .botao a{
    padding: 10px 20px;
    border-radius: 30px;
    color: #ffffff;
    background-color: #41ab34;
    font-size: 13px;
    -webkit-transition: background-color 250ms linear;
    transition: background-color 250ms linear;
}
.faleconosco .botao a:hover{
    background-color: #004138;
}
@media screen and (max-width:670px) {
    .faleconosco .bloco{
        width: 100%;
        margin-bottom: 30px;
    }
    .botao{
        margin: 10px 0 30px 0;
    }
}