        .service-image-wrapper img {
            width: 100%;
            height: auto;
        }

        /* Desktop carousel - 4 imagens por vez */
        .desktop-carousel {
            display: block;
        }

        .mobile-carousel {
            display: none;
        }

        .carousel-inner img {
            /* height: 300px; */
            object-fit: cover;
        }

        /* Estilo para desktop - 4 colunas */
        .desktop-carousel .carousel-item img {
            /* height: 400px; */
            object-fit: cover;
        }

        /* Controles do carousel */
        .carousel-control-prev,
        .carousel-control-next {
            width: 10%;
        }

        .arrow-icon {
            background-color: rgba(0, 0, 0, 0.7);
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
        }

        /* Indicadores personalizados */
        .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            margin: 0 5px;
        }

        /* Media query para mobile */
        @media (max-width: 768px) {
            .desktop-carousel {
                display: none;
            }
            
            .mobile-carousel {
                display: block;
            }

            .mobile-carousel .carousel-inner img {
                /* height: 250px; */
                object-fit: cover;
            }

            .arrow-icon {
                width: 35px;
                height: 35px;
                font-size: 16px;
            }
        }

        /* Container personalizado */
        .carousel-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }