.clientes-section {
            background-color: #E09200;
            padding: 60px 20px;
            min-height: 400px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            font-family: 'Montserrat', sans-serif;
        }

        .clientes-title {
            color: white;
            font-size: 2.5rem;
            font-weight: 600;
            margin-bottom: 50px;
            text-align: center;
        }

        .carousel-container {
            position: relative;
            width: 100%;
            max-width: 1000px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .carousel-nav {
            background: none;
            border: none;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            padding: 10px;
            transition: opacity 0.3s ease;
            z-index: 10;
        }

        .carousel-nav:hover {
            opacity: 0.7;
        }

        .carousel-nav.prev {
            margin-right: 20px;
        }

        .carousel-nav.next {
            margin-left: 20px;
        }

        .carousel-wrapper {
            overflow: hidden;
            width: 100%;
            max-width: 800px;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s ease;
            gap: 20px;
        }

        .client-card {
            background-color: #C4C4C4;
            min-width: 140px;
            height: 80px;
            border-radius: 8px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            font-weight: 500;
            font-size: 0.9rem;
        }

        .dots-container {
            display: flex;
            gap: 10px;
            margin-top: 40px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .dot.active {
            background-color: white;
        }

        @media (max-width: 768px) {
            .clientes-title {
                font-size: 2rem;
                margin-bottom: 30px;
            }

            .client-card {
                min-width: 120px;
                height: 70px;
                font-size: 0.8rem;
            }

            .carousel-nav {
                font-size: 1.5rem;
                padding: 8px;
            }
        }

        @media (max-width: 480px) {
            .clientes-title {
                font-size: 1.8rem;
            }

            .client-card {
                min-width: 100px;
                height: 60px;
            }

            .carousel-nav.prev {
                margin-right: 10px;
            }

            .carousel-nav.next {
                margin-left: 10px;
            }
        }