        .ines-carousel-container {
            position: relative;
            width: 80%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 40px 0;
        }
        
        .ines-carousel {
            position: relative;
            width: 80%;
            height: 550px;
            margin: 0 auto;
        }
        
        .carousel-item {
            position: absolute;
            width: 250px;
            height: 300px;
            transition: all 0.5s ease-in-out;
            cursor: pointer;
            opacity: 0;
            z-index: -1;
        }
        
        .carousel-item.visible {
            opacity: 1;
            z-index: 1;
        }
        
        .carousel-item.center {
            z-index: 10;
        }
        
        .carousel-image {
            width: 100%;
            height: 140%;
            object-fit: cover;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }
        
        .carousel-nav {
            position: absolute;
            top: 40%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            border: none;
            border-radius: 50%;
            background: #fff;
            cursor: pointer;
            z-index: 10;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #000;
            font-size: 1.5rem;
            font-weight: 700;
        }
        
        .carousel-nav:hover {
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
        }
        
        .carousel-nav.prev {
            left: -50px;
        }
        
        .carousel-nav.next {
            right: -50px;
        }
        
        .carousel-dots {
            position: absolute;
            bottom: 100px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }
        
        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .dot.active {
            background: #000;
            transform: scale(1.2);
        }
        
        @media (max-width: 768px) {
            .ines-carousel {
                height: 400px;
            }
            
            .carousel-item {
                width: 180px;
                height: 260px;
            }
        }
