body {
    background-color: #FDFCF7;
    color: #111111;
    -webkit-font-smoothing: antialiased;
}

/* Ocultar barra de rolagem onde necessário */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* =========================================
   Animação do Marquee (Logos)
   ========================================= */

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.animate-marquee {
    display: flex;
    width: max-content;
    animation: marquee 20s linear infinite;
}

/* Pausa a animação quando o mouse passa por cima (Toque premium) */
.animate-marquee:hover {
    animation-play-state: paused;
}

/* Efeito de fade nas bordas da esteira para as logos sumirem suavemente */
.marquee-container {
    position: relative;
}

.marquee-container::before,
.marquee-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 10;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, #FDFCF7 0%, transparent 100%);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, #FDFCF7 0%, transparent 100%);
}