/* Estilo automático para a página: contato */
#cabecalho {
    background: linear-gradient(180deg, #E7454A 0%, #C73B41 23.14%, #B6363C 46.81%, #8B272C 81.49%);
    padding: 100px 0;
    text-align: center;

    .navegacao{
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: center;
        margin-bottom: 18px;

        li{
            font-weight: 500;
            font-size: 13px;
            line-height: 100%;
            color: #fff;
            list-style-type: none;
            
            img{
                margin: 0 12px;
            }
            
            span{
                
                color: #fff;
                font-weight: 600;
                font-size: 13px;
                line-height: 100%;
                text-align: right;

            }
        }
    }
    h1{
        font-weight: 800;
        font-size: 42px;
        line-height: 160%;
        text-align: center;
        color: #fff;
    }
}


#central{
    padding: 88px 0;

    h2{
        font-weight: 500;
        font-size: 36px;
        line-height: 100%;
        letter-spacing: 0%;
        text-align: center;
        margin-bottom: 70px;
    }

    .card-central {
        background-color: #A63137;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border-radius: 10px;
        padding: 35px 15px;
        min-height: 230px;

        .img-central{
            margin-bottom: 18px;
        }
        .titulo-central{
            font-weight: 600;
            font-size: 18px;
            line-height: 110.00000000000001%;
            color: #fff;
            margin: 8px 0;
        }
        .texto-central{
            font-weight: 400;
            font-size: 13px;
            line-height: 155%;
            text-align: center;
            color: #fff;
        }
    }
}

#formulario {
    padding: 100px 0;
    background-color: #F6F6F6;

    h2{
        font-weight: 500;
        font-size: 36px;
        line-height: 150%;
        color: #111827;
    }

    .text-contato{
        font-weight: 400;
        font-size: 20px;
        line-height: 145%;
        color: #3C3C3B;
    }

    .form-contato{
        label{
            font-weight: 500;
            font-size: 16px;
            line-height: 110.00000000000001%;
            color: #8C2026;
            margin-bottom: 6px;
        }

        .form-control{
            font-weight: 400;
            font-size: 16px;
            line-height: 110.00000000000001%;
            border: 1px solid #E7454A;
            height: 55px;
        }
        .form-select{
            font-weight: 400;
            font-size: 16px;
            line-height: 110.00000000000001%;
            border: 1px solid #E7454A;
            height: 55px;
        }

        textarea{
            height: auto !important;
        }

        .politica-form{
            font-weight: 500;
            font-size: 16px;
            line-height: 110.00000000000001%;
            text-decoration: underline;
            color: #E7454A;

        }

        .alinhar-fim{
            display: flex;
            justify-content: flex-end;

            .btn-enviar {
                font-weight: 500;
                font-size: 16px;
                line-height: 100%;
                border: 1px solid #3C3C3B;
                padding: 19px 32px;
                transition: 300ms all ease-in-out;
                color: #E7454A;

                &:hover{
                    background-color: #E7454A;
                    color: #fff;
                    border: 1px solid transparent;
                }
            }
        }
    }
}


#localizacao{
    padding: 80px 0;

    .titulo-localizacao {
        background: linear-gradient(90deg, #8C2026 0%, #E7454A 100%);
        padding: 20px;
        border-radius: 10px 10px 0 0;
        display: flex;
        align-items: center;

        h2 {
            font-weight: 600;
            font-size: 28px;
            line-height: 100%;
            color: #fff;
            margin: 0;
        }

        .alinhar-fim{
            display: flex;
            justify-content: flex-end;

            .btn-maps{
                font-weight: 400;
                font-size: 16px;
                line-height: 100%;
                color: #fff;
                border: 1px solid #FFFFFF;
                padding: 18px 38px;
                border-radius: 5px;
            }
        }
    }

    iframe{
        width: 100%;
        height: 500px;
    }
}


/* TABLET */
@media (min-width: 768px) and (max-width: 1024px) {
    #central {
        .card-central {
            margin-bottom: 30px;
        }
    }
}

/* MOBILE */
@media all and (max-width: 767px) { 

    #central {
        .card-central {
            margin-bottom: 20px;

            .texto-central {
                font-size: 18px;
            }
        }
    }

    #formulario {
        padding: 100px 15px;

        .alinhar-fim {
            .btn-enviar {
                display: block;
                width: 100%;
            }
        }
    }


    
    #localizacao {
        .titulo-localizacao {
            padding: 40px 20px;
            display: flex;
            align-items: center;
            text-align: center;

            h2 {
                margin-bottom: 30px;
            }
        }

        .titulo-localizacao {
            .alinhar-fim {
                display: flex;
                justify-content: center;
            }
        }
    }

}


input[type="submit"] {
    background: #E7454A !important;
    color: #fff !important;
}