/* =========================================
   SEÇÃO 9 — DEPOIMENTOS
========================================= */

.testimonials-section {
    position: relative;

    overflow: hidden;

    /* padding: 110px 0; */

    background: #eaf9f7;

    color: #0f1b26;
}


/* =========================================
   CABEÇALHO
========================================= */

.testimonials-eyebrow {
    color: #008679;
}


.testimonials-title {
    margin-bottom: 18px;

    color: #0f1b26;
}


.testimonials-intro {
    max-width: 650px;

    margin: 0 auto;

    color: #617077;

    font-size: 16px;
    line-height: 1.7;
}


/* =========================================
   SLIDER
========================================= */

.testimonials-slider-wrap {
    position: relative;

    margin-top: 65px;
}


.testimonials-swiper {
    overflow: visible;

    padding: 10px 0 25px;
}


/* =========================================
   SLIDE
========================================= */

.testimonials-swiper .swiper-slide {
    height: auto;

    display: flex;

    transition:
        opacity .35s ease,
        transform .35s ease;
}


/* =========================================
   CARD
========================================= */

.testimonial-card {
    width: 100%;

    display: flex;
    flex-direction: column;

    padding: 32px;

    background: #ffffff;

    border: 1px solid rgba(15, 27, 38, .06);

    border-radius: 16px;

    box-shadow:
        0 12px 35px rgba(15, 27, 38, .06);

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}


.testimonial-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 20px 45px rgba(15, 27, 38, .09);
}


/* =========================================
   CLIENTE
========================================= */

.testimonial-client {
    /* display: flex;
    align-items: center;

    gap: 14px; */

    margin-bottom: 0px;
    text-align: center;
}


.testimonial-avatar {
    width: 52px;
    height: 52px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    border-radius: 50%;

    background: #eaf9f7;

    border: 2px solid rgba(2, 190, 178, .20);
}


.testimonial-avatar img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


.testimonial-name {
    display: block;

    color: #0f1b26;

    font-size: 15px;
    font-weight: 700;
}


.testimonial-company {
    display: block;

    margin-top: 3px;

    color: #7a878c;

    font-size: 12px;
}


/* =========================================
   DEPOIMENTO
========================================= */

.testimonial-quote {
    position: relative;

    flex-grow: 1;
}


.testimonial-quote-icon {
    display: block;

    margin-bottom: 5px;

    color: #02beb2;

    font-size: 42px;

    line-height: .8;
}


.testimonial-quote p {
    margin: 0;

    color: #394950;

    font-size: 17px;
    line-height: 1.65;

    font-weight: 500;
}


/* =========================================
   RODAPÉ DO CARD
========================================= */

.testimonial-footer {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-top: 35px;
}


.testimonial-line {
    width: 28px;
    height: 2px;

    background: #02beb2;
}


.testimonial-project {
    color: #89959a;

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: .08em;
}


/* =========================================
   CONTROLES
========================================= */

.testimonials-controls {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 20px;

    margin-top: 25px;
}


.testimonial-nav {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid rgba(0, 134, 121, .25);

    border-radius: 50%;

    background: transparent;

    color: #008679;

    font-size: 17px;

    cursor: pointer;

    transition:
        background .3s ease,
        color .3s ease,
        border-color .3s ease;
}


.testimonial-nav:hover {
    background: #02beb2;

    border-color: #02beb2;

    color: #0f1b26;
}


/* =========================================
   PAGINAÇÃO
========================================= */

.testimonials-pagination {
    position: static;

    width: auto !important;

    display: flex;
    align-items: center;

    gap: 6px;
}


.testimonials-pagination .swiper-pagination-bullet {
    width: 7px;
    height: 7px;

    margin: 0 !important;

    opacity: 1;

    background: rgba(0, 134, 121, .20);

    transition:
        width .3s ease,
        background .3s ease;
}


.testimonials-pagination .swiper-pagination-bullet-active {
    width: 22px;

    border-radius: 10px;

    background: #02beb2;
}


/* =========================================
   RESPONSIVO
========================================= */

@media (max-width: 991.98px) {

    .testimonials-section {
        padding: 90px 0;
    }

    .testimonials-slider-wrap {
        margin-top: 50px;
    }

}


@media (max-width: 767.98px) {

    .testimonials-section {
        padding: 75px 0;
    }

    .testimonial-card {
        padding: 28px;
    }

    .testimonial-quote p {
        font-size: 16px;
    }

}


@media (max-width: 575.98px) {

    .testimonials-section {
        padding: 65px 0;
    }

    .testimonials-slider-wrap {
        margin-top: 40px;
    }

    .testimonial-card {
        padding: 25px;
    }

    .testimonial-client {
        margin-bottom: 28px;
    }

}