.clients-carousel {
    margin-top: 0px;
    padding: 40px 20px;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.clients-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    margin-bottom: 40px;
    background: linear-gradient(45deg, #12e19f, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* viewport centralizado */
.carousel-track {
    display: flex;
    gap: 60px;
    align-items: center;

    width: fit-content;
    animation: scrollClients 18s linear infinite;
    will-change: transform;
}


.client-item {
    min-width: 120px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;

    filter: grayscale(1);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-item img {
    height: 60px;
    width: auto;
    display: block;
}

.client-item:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.05);
}

@keyframes scrollClients {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% / 2));
    }
}


.floating-social {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.social-btn {
    width: 55px;
    height: 55px;
    background: #000000;
    border: 2px solid #12e19f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    box-shadow: 0 0 20px rgba(18, 225, 159, 0.3);
    transition: all 0.3s ease;
}

.social-btn i {
    font-size: 22px;
    color: #12e19f;
}

/* Hover geral */
.social-btn:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 0 30px rgba(18, 225, 159, 0.6);
}

/* WhatsApp hover */
.social-btn.whatsapp:hover i {
    color: #12e19f;
}

/* Instagram hover */
.social-btn.instagram:hover i {
    color: #12e19f;
}