.parceiros-h1 {
    font-family: 'Rubik-Bold';
    font-size: 35px;
    color: #0A043C;
    text-align: center;
}
.parceiros p {
    font-family: 'Rubik-Regular';
    font-size: 18px;
    color: #707070;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

button{
    font-family: 'Rubik-Medium';
    border: none;
    border-radius: 6px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}
.button-fdr{
    background-color: #00828A;
    color: #fff;
    width: 260px;
    height: 60px;
    text-decoration: none;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.4s ease 0s;
}
.button-fdr:hover {
    width: 270px;
    letter-spacing: 0px;
    -webkit-box-shadow: 0px 5px 40px -10px rgba(0, 131, 138, 0.66);
    -moz-box-shadow: 0px 5px 40px -10px rgba(0, 131, 138, 0.66);
    box-shadow: 5px 40px -10px rgba(0, 131, 138, 0.66);
}

/*MENU DESKTOP*/
@media only screen and (min-width: 1190px) {
    .parceiros li{
        list-style: none;
        margin-bottom: 20px;
        box-shadow: 0px #16161633;
        width: 220px;
        height: 220px;
        background-color: #fff;
        display: grid;
        align-items: center;
        justify-content: center;
        transition: box-shadow .3s;
        border: 0px solid #ccc;
    }

    .parceiros img{
        width: 180px;
        height: auto;
        margin-top: 65px;
    }
    .parceiros span{
        font-family: 'Rubik-Regular';
        margin-bottom: 50px;
        text-align: center;
        display: none;
        color: #0A043C;
        padding: 0 15px;
    }

    li:hover > span {
        display: block;
    }

    .parceiros li:hover {
        box-shadow: 0 0 11px rgba(33,33,33,.2); 
    }
}


@media only screen and (max-width: 1189px) {
    .parceiros-h1 {
        font-size: 30px;
        font-family: 'Rubik-Bold';
    }
    .parceiros li{
        list-style: none;
        box-shadow: 0px 10px 20px #16161633;
        width: 237px;
        height: 240px;
        background-color: #fff;
        display: grid;
        align-items: center;
        justify-content: space-around;
        margin: 40px 10px;
    }
    .parceiros span{
        font-family: 'Rubik-Regular';
        margin-bottom: 50px;
        text-align: center;
        display: block;
        color: #0A043C;
        padding: 0 15px;
    }
    .parceiros img{
        width: 146px;
        height: 62px;
        margin-top: 65px;
    }

    .logo-texto-interna{
        font-family: 'Rubik-Medium';
        font-size: 18px;
        color: #fff;
        text-align: center;
        text-transform: uppercase;
        margin-top: 12px;
    }
}