/* ==========================================================
   BLOCO — GRANDES MARCAS (CARROSSEL)
========================================================== */

.testimonials-section {
    text-align: center;
    padding: 80px 0 60px;

    background: linear-gradient(
        to bottom,
        #000 0%,
        var(--purpleBlack) 40%,
        var(--purpleDeep) 72%,
        var(--purpleMid) 100%
    );
}

/* TÍTULO */
.testimonials-section h2 {
    margin-bottom: 5px;
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1.3;
    color: #fff;
}

/* SUBTÍTULO COM DEGRADÊ */
.testimonials-section p {
    margin-bottom: 50px;
    font-weight: 700;
    font-size: 1.4rem;

    background: linear-gradient(
        90deg,
        #c563ff 0%,
        #b54bff 40%,
        #9a2aff 80%,
        #fff 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* LOGOS */
.company-logos {
    width: 85%;
    margin: 0 auto;
    overflow: hidden;

    display: flex;
    justify-content: center;
}

.company-logos .logos-wrapper {
    display: flex;
    gap: 85px;
    animation: slide 18s linear infinite;
}

.company-logos img {
    max-height: 85px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: opacity .2s ease, transform .3s ease;
}

.company-logos img:hover {
    opacity: 1;
    transform: scale(1.08);
}

/* animação */
@keyframes slide {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* PONTINHOS */
.testimonials-dots {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.testimonials-dots span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
}

.testimonials-dots span.active {
    background: #fff;
}
