/* ===== SEÇÃO CLIENTES ===== */
.clientes {
    overflow: hidden;
}

/* Container do carrossel */
.clientes-carousel {
    width: 100%;
    position: relative;
}

/* Track que desliza (conteúdo duplicado) */
.clientes-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: clientes-scroll 30s linear infinite;
}

/* Pausa animação ao passar o mouse */
.clientes-carousel:hover .clientes-track {
    animation-play-state: paused;
}

/* Card do cliente */
.cliente {
    min-width: 220px;
    background-color: var(--bg-white);
    border-radius: var(--radius);
    padding: 25px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    flex-shrink: 0;
}

.cliente:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

/* Imagem circular do cliente */
.cliente img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 4px solid rgba(81, 126, 1, 0.15);
}

/* Nome do cliente */
.cliente h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

/* Descrição */
.cliente p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.5;
}

/* ===== ANIMAÇÃO – LOOP PERFEITO ===== */
@keyframes clientes-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* ===== RESPONSIVO ===== */
@media (max-width: 991px) {
    .clientes-track {
        gap: 30px;
        animation-duration: 40s;
    }

    .cliente {
        min-width: 200px;
    }
}

@media (max-width: 575px) {
    .clientes-track {
        gap: 25px;
        animation-duration: 45s;
    }

    .cliente img {
        width: 110px;
        height: 110px;
    }

    .cliente h3 {
        font-size: 1.1rem;
    }

    .cliente p {
        font-size: 14px;
    }
}