body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f0f0f0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
        }

        .partner-section {
            width: 100%;
            background-color: #fff;
            padding: 40px 0;
            text-align: center;
        }

        .partner-section h2 {
            margin-bottom: 30px;
            color: #333;
        }

        .logo-carousel {
            overflow: hidden;
            width: 100%;
        }

        .logo-track {
            display: flex;
            animation: scroll 45s linear infinite;
        }

        .logo-track img {
            height: 80px; /* Altura fixa */
            width: auto; /* Largura automática para manter a proporção */
            max-width: 150px; /* Largura máxima para evitar logos muito grandes */
            object-fit: contain; /* Garante que a imagem se ajuste sem ser esticada */
            margin: 0 40px;
            filter: grayscale(100%);
            opacity: 0.6;
            transition: opacity 0.3s ease, filter 0.3s ease;
        }

        .logo-track img:hover {
            filter: grayscale(0%);
            opacity: 1;
        }
        
        @media (max-width: 768px) {
            .logo-track img {
                height: 50px;
                max-width: 100px;
                margin: 0 20px;
            }
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }