/* Estilo automático para a página: sac */
#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;
    }
}


#form-sac{
    padding: 80px 0;

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

    .text-sac{
        font-weight: 400;
        font-size: 19px;
        line-height: 160%;
        text-align: center;
        color: #3C3C3B;
        margin: 20px 0 30px;
        
        span{
            font-weight: 500;
            color: #A63137;
        }

    }

    .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;
                }
            }
        }

        
        .anexar-file {
            padding-top: 18px;
            padding-left: 20px;
        }
        
    }
}


/* TABLET */
@media (min-width: 768px) and (max-width: 1024px) {
    
}

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

    #form-sac {
        h2 {
            text-align: center;
        }
        .form-contato {
            padding: 5px 20px;

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


    }
}


input[type="submit"] {
    background: #E7454A !important;
    color: #fff !important;
}
.pt-17{
    padding-top: 17px !important;
}