  .custom-carousel-wrapper * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', 'Roboto', sans-serif;
        }
        
        .custom-carousel-wrapper {
            /* background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); */
             min-height: 10vh;/* tamaño cntenedor */
            display: flex;
            justify-content: center;
            align-items: center;
            /* padding: 20px; */
        }
        
        .custom-carousel-container-main {
            max-width: 80%;
            width: 100%;
            background: white;
            border-radius: 15px;
            /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); */
            /* padding: 30px; */
            position: relative;
        }
        
        .custom-carousel-title {
            text-align: left;
            padding-left: 50px;
            padding-top: 50px;
            /* color: #2c3e50; */
            margin-bottom: 25px;
            font-weight: 5vb;
        }
        
        .custom-carousel-outer {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            margin: 0 auto;
            /* padding: 0 30px; */
        }
        
        .custom-carousel-inner {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .custom-carousel-slide {
            flex: 0 0 calc(100% / 3);
            display: flex;
            padding: 15px;
        }
        
        .custom-carousel-card {
            background: white;
            border-radius: 10px;
            /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08); */
            /* padding: 20px; */
            width: 100%;
            height: 100%;
            transition: transform 0.3s, box-shadow 0.3s;
            display: flex;
            align-items: center;     /* vertical */
        }
        
        .custom-carousel-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }
        
        .custom-carousel-circle {
            min-width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
            flex-shrink: 0;


  
        }
        
        .custom-carousel-content {
            color: #34495e;
        }
        
        .custom-carousel-content h3 {
            font-size: 18px;
            margin-bottom: 8px;
            color:rgb(145, 187, 36);
        }
        
        .custom-carousel-content p {
            font-size: 14px;
            line-height: 1.5;
        }
        
        .custom-carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: white;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            /* box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2); */
            transition: all 0.3s;
            z-index: 10;
            border: none;
        }
        
        .custom-carousel-btn:hover {
            background: #f8f9fa;
            transform: translateY(-50%) scale(1.05);
        }
        
        .custom-carousel-btn-prev {
            left: 10px;
        }
        
        .custom-carousel-btn-next {
            right: 10px;
        }
        
        .custom-carousel-dots {
            display: flex;
            justify-content: center;
            margin-top: 25px;
        }
        
        .custom-carousel-dot {
            width: 12px;
            height: 12px;
            background: #ddd;
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .custom-carousel-dot.active {
            background: #3498db;
        }
        
        @media (max-width: 900px) {
            .custom-carousel-slide {
                flex: 0 0 50%;
            }
        }
        
        @media (max-width: 600px) {
            .custom-carousel-slide {
                flex: 0 0 100%;
            }
            
            .custom-carousel-btn {
                width: 40px;
                height: 40px;
            }
            
            .custom-carousel-btn-prev {
                left: 5px;
            }
            
            .custom-carousel-btn-next {
                right: 5px;
            }
            
            .custom-carousel-outer {
                padding: 0 20px;
            }
        }