/* ==========================================
   BANNER
========================================== */

.banner-contato {

    position: relative;

    min-height: 300px;

    display: flex;

    align-items: center;

    background:
        linear-gradient(
            rgba(0, 0, 0, .78),
            rgba(0, 0, 0, .78)
        ),
        url('../imagens/banner-contato.jpg')
        center center / cover no-repeat;

    border-left: 25px solid #fdbb00;

}


.banner-contato-conteudo {

    color: #fff;

}


.banner-contato-conteudo span {

    color: #fdbb00;

    font-size: 14px;

    font-weight: bold;

}


.banner-contato-conteudo h1 {

    margin: 15px 0;

    font-size: 38px;

    font-weight: 700;

}


.banner-contato-conteudo p {

    max-width: 450px;

    margin-top: 15px;

    font-size: 16px;

    line-height: 1.6;

}


.linha-amarela {

    width: 55px;

    height: 3px;

    background: #fdbb00;

}


/* ==========================================
   SEÇÃO DE CONTATO
========================================== */

.secao-contato {

    padding: 70px 0;

    background: #f7f7f7;

}


/* ==========================================
   INFORMAÇÕES
========================================== */

.informacoes-contato {

    padding-right: 30px;

}


.subtitulo-contato {

    color: #fdbb00;

    font-size: 13px;

    font-weight: bold;

    letter-spacing: .5px;

}


.informacoes-contato h2 {

    margin: 12px 0 20px;

    color: #222;

    font-size: 30px;

    line-height: 1.3;

}


.informacoes-contato > p {

    margin-bottom: 30px;

    color: #777;

    font-size: 14px;

    line-height: 1.8;

}


/* ==========================================
   ITEM DE CONTATO
========================================== */

.contato-item {

    display: flex;

    align-items: center;

    margin-bottom: 22px;

}


.contato-icone {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 48px;

    height: 48px;

    margin-right: 15px;

    background: #222;

}


.contato-icone i {

    color: #fdbb00;

    font-size: 20px;

}


.contato-item span {

    display: block;

    margin-bottom: 4px;

    color: #999;

    font-size: 10px;

    font-weight: bold;

}


.contato-item strong {

    display: block;

    color: #333;

    font-size: 14px;

    font-weight: normal;

}


/* ==========================================
   FORMULÁRIO
========================================== */

.formulario-contato {

    padding: 35px;

    background: #fff;

    border: 1px solid #eeeeee;

    box-shadow: 0 5px 20px rgba(0,0,0,.04);

}


.titulo-formulario {

    margin-bottom: 25px;

}


.titulo-formulario span {

    color: #fdbb00;

    font-size: 12px;

    font-weight: bold;

}


.titulo-formulario h2 {

    margin: 8px 0 0;

    color: #222;

    font-size: 24px;

}


/* ==========================================
   CAMPOS
========================================== */

.campo-formulario {

    margin-bottom: 20px;

}


.campo-formulario label {

    display: block;

    margin-bottom: 8px;

    color: #444;

    font-size: 12px;

    font-weight: bold;

}


.input-icone {

    position: relative;

}


.input-icone i {

    position: absolute;

    top: 50%;

    left: 15px;

    transform: translateY(-50%);

    color: #fdbb00;

    font-size: 15px;

}


.input-icone input,
.input-icone textarea {

    width: 100%;

    padding: 13px 15px 13px 42px;

    border: 1px solid #e5e5e5;

    outline: none;

    color: #555;

    font-size: 13px;

    transition: .3s;

}


.input-icone input {

    height: 46px;

}


.input-icone input:focus,
.input-icone textarea:focus {

    border-color: #fdbb00;

}


.input-icone textarea {

    min-height: 130px;

    resize: vertical;

}


.textarea-icone i {

    top: 20px;

    transform: none;

}


/* ==========================================
   BOTÃO
========================================== */

.btn-enviar-contato {

    display: inline-flex;

    align-items: center;

    gap: 20px;

    padding: 14px 22px;

    border: 1px solid #fdbb00;

    background: #fdbb00;

    color: #fff;

    font-size: 12px;

    font-weight: bold;

    transition: .3s;

}


.btn-enviar-contato i {

    font-size: 12px;

}


.btn-enviar-contato:hover {

    background: #222;

    border-color: #222;

}