/* Estilos doa página fale-conosco.ejs */
/* Parte de enviar */
div#area-form-and-questions {
    display: flex;
    justify-content: space-between;
    /* flex-direction: row-reverse; */
    padding-bottom: 50px;
}

section#form {
    display: flex;
    flex-direction: column;
    width: 45%;
}

section#form h2 {
    /* text-align: left; */
    margin: 0;
}

section#form p {
    /* text-align: center !important; */
}

section#form h2#prefer {
    text-align: center;
    font-size: 24px;
    margin: 24px 0;
}

section#form p {
    text-align: left;
}

section#form form {
    display: flex;
    flex-direction: column;
}

/* Perguntas frequentes */
div#common-questions {
    width: 45%;
}

div#common-questions h2 {
    /* text-align: left; */
}

div#questions {
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

div#questions h4 {
    color: #FFFFFF;
}

div#questions section span.answer {
    display: flex;
    flex-direction: column;
    height: 0;
    padding: 0 15px;
    overflow: hidden;
    color: #000;
    transition: .2s;
    border-left: 1px solid #782C31;
    border-right: 1px solid #782C31;
    border-bottom: none;
}

div#questions section span.answer p {
    line-height: 25px;
}

div#questions section div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: #8D494B;
    border-bottom: 1px solid #FFFFFF;
}

div#questions section div h4 {
    font-weight: bold;
}

div#questions section div i {
    transition: .4s;
    color: #FFFFFF;
}

div#questions section div i.turn {
    transform: rotate(180deg);
}

div#questions section span.show {
    padding: 15px;
    height: auto;
    border-top: none;
    border-bottom: 1px solid #8D494B;
}

/* Área nossa localização */
section#area-our-localization {
    padding: 30px 0;
}

section#area-our-localization h2 {
    margin-bottom: 30px;
}

div#informations {
    display: flex;
    justify-content: space-between;
}

div#informations iframe,
div#informations div {
    width: 47%;
}

div#informations div p {
    line-height: 25px;
}