/* =========================================
   DEPOIMENTOS - AJUSTE FINAL
   ========================================= */


/* TÍTULO */
#testimonials .titulo-categoria.vitrine-depoimento {
    margin-bottom: 20px !important;
}


/* SLIDE */
#testimonials article.slick-slide {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 15px 20px !important;

    box-sizing: border-box;
    text-align: center;
}


/* FOTO */
#testimonials article.slick-slide figure {
    margin: 0 auto 16px auto !important;
    padding: 0 !important;
}


#testimonials article.slick-slide figure img {
    width: 260px !important;
    height: 260px !important;
    max-width: 260px !important;
    max-height: 260px !important;

    object-fit: cover !important;

    display: block;
    margin: 0 auto !important;

    border-radius: 20px !important;

    border: 1px solid rgba(0, 0, 0, 0.07);

    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.11);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


/* EFEITO AO PASSAR O MOUSE */
#testimonials article.slick-slide:hover figure img {
    transform: translateY(-4px);

    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
}


/* REMOVE O UNDEFINED */
#testimonials article.slick-slide strong {
    display: none !important;
}


/* REMOVE O H3 VAZIO GERADO PELO TEMA */
#testimonials article.slick-slide h3:empty {
    display: none !important;
    margin: 0 !important;
    padding: 0 !important;
}


/* TEXTO */
#testimonials article.slick-slide p {
    color: #555 !important;

    font-size: 16px !important;
    line-height: 1.55 !important;
    font-weight: 400 !important;

    max-width: 350px;

    margin: 0 auto !important;
    padding: 0 !important;

    text-align: center;
}


/* =========================================
   CELULAR
   ========================================= */

@media (max-width: 767px) {

    #testimonials article.slick-slide {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    #testimonials article.slick-slide figure img {
        width: 230px !important;
        height: 230px !important;
        max-width: 230px !important;
        max-height: 230px !important;
    }

    #testimonials article.slick-slide p {
        font-size: 15px !important;
        max-width: 290px;
    }
}