/* Estilo automático para a página: ouvidoria */
#ouvidoria {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    padding: 100px 0;
    background-image: url(../img/bg-contato.svg);

    h3{
        text-align: center;
        color: var(--azul-texto, #060B35);
    }
    
    h2{
        text-align: center;
        color: var(--azul-texto, #060B35);
        margin: 16px 0 40px;
    }

    .form-ouvidoria {
        border-radius: 20px;
        border: 1px solid var(--traado, #CAD9F0);
        background: var(--branco);
        box-shadow: 0 4px 10px 0 rgba(35, 90, 235, 0.20);
        padding: 32px 30px;

        label{
            font-weight: 500;
            font-size: 18px;
            line-height: 20px;
            letter-spacing: 0px;
            margin-bottom: 8px;
        }
        .form-control {
            font-weight: 500;
            font-size: 15px;
            line-height: 20px;
            border-radius: 30px;
            color: #060B3566;
            height: 60px;
            padding-left: 20px;
        }
        .form-select {
            font-weight: 500;
            font-size: 16px;
            line-height: 20px;
            border-radius: 30px;
            color: #060B3566;
            height: 60px;
        }
        textarea{
            height: auto !important;
            padding: 20px 20px;
        }

        .btn{
            font-weight: 700;
            font-size: 16px;
            line-height: 20px;
            letter-spacing: 0px;
            text-align: center;
            border-radius: 30px;
            padding: 14px 32px;
            margin: 0 10px;
        }

        .form-check{
             label {
                color: var(--azul-texto, #060B35);
                font-size: 16px;
                font-weight: 500;
                line-height: 24px;
                margin: 0;
            }
        }

        .alinhamento-final{
            display: flex;
            justify-content: flex-end;
        }

        .btn-pesquisar{
            background-color: var(--azul-secundrio);
            color: var(--branco);

                &:hover{
                    background-color: #1D4ED2 !important;
                }
        }
        .btn-limpar{
            background-color: #E4F7FD !important;
            color: var(--azul-texto);
            border-radius: 30px;
            
                &:hover{
                    background-color: var(--azul-mais-claro) !important;
                }
        }
    }
    .link-pol{
        text-decoration: underline;
    }
    
    input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
        color: #b4b4b4 !important;
    }
    input::-moz-placeholder { /* Firefox 19+ */
        color: #b4b4b4 !important;
    }
    input:-ms-input-placeholder { /* IE 10+ */
        color: #b4b4b4 !important;
    }
    input:-moz-placeholder { /* Firefox 18- */
        color: #b4b4b4 !important;
    }
    textarea::-webkit-input-placeholder { /* Chrome/Opera/Safari */
        color: #b4b4b4 !important;
    }
    textarea::-moz-placeholder { /* Firefox 19+ */
        color: #b4b4b4 !important;
    }
    textarea:-ms-input-placeholder { /* IE 10+ */
        color: #b4b4b4 !important;
    }
    textarea:-moz-placeholder { /* Firefox 18- */
        color: #b4b4b4 !important;
    }
}

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

}

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

    #cabecalho{
        padding: 24px 16px 40px !important;
    }

    #ouvidoria {
        background-color: var(--azul-mais-claro);
        padding: 40px 15px;
            
        h2{
            text-align: left;
            margin: 20px 0;
        }
        h3{
            text-align: left;
        }

        .form-ouvidoria {
            border: none;
            background: none;
            box-shadow: none;
            padding: 0;
            
            .btn-limpar {
                background-color: var(--azulAcizentado) !important;

            }
        }
    }
}