 
        /* Contenedor principal */
         .vw {
            width:100%; 
            background-color: var(--grismasclaro);
        }
        
        .anchogeneral {
            background-color: transparent;
            width:100%;
            max-width:1100px;
            height: auto;
            padding:10px;
            margin: auto;
        }
        
        .displayflex {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: flex-center;
        }
        
        .left-content {
            flex: 1;
            min-width: 300px;
        }
        
        .left-content h2{
            padding-bottom:10px;
            color:var(--principal);
        }
        
        
        .swiper-container {
            flex:1;
            min-width: 350px;
            max-width: 100%;
            overflow: hidden;
        }
        
        /* Estilos para el carrusel principal */
        .swiper {
            width: 100%;
            height: 400px;
            max-width: 600px;
        }
        
        .swiper-slide {
            text-align: center;
            display: flex;
            justify-content: center;
            align-items: center;
            background: #ffffff;
        }
        
        .swiper-slide img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }
        
        /* Estilos para las miniaturas */
        .thumbnail-wrapper {
            display: flex;
            gap: 8px;
            margin-top: 15px;
            padding: 10px 5px;
            max-width: 600px;
            overflow-x: auto;
            scrollbar-width: thin;
            scrollbar-color: var(--principal) #f1f1f1;
        }
        
        .thumbnail-wrapper::-webkit-scrollbar {
            height: 8px;
        }
        
        .thumbnail-wrapper::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 4px;
        }
        
        .thumbnail-wrapper::-webkit-scrollbar-thumb {
            background: var(--principal);
            border-radius: 4px;
        }
        
        .thumbnail {
            width: 80px;
            height: 60px;
            object-fit: cover;
            cursor: pointer;
            border: 2px solid transparent;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }
        
        .thumbnail.active, .thumbnail:hover {
            border-color: var(--principal);
            transform: scale(1.05);
        }
        
        /* Controles de navegación */
        .swiper-button-next, .swiper-button-prev {
            color: var(--principal);
        }
    
      
        
        /* Responsive */
        @media (max-width: 768px) {
            .displayflex {
                flex-direction: column;
                align-items: start;
            }
            
            .swiper {
                height: 300px;
            }
            
            .thumbnail {
                width: 60px;
                height: 45px;
            }
            
            .left-content h1 {
                font-size: 1.7rem;
            }
            
            .left-content h2 {
                font-size: 1.3rem;
            }
        }
        
        @media (max-width: 480px) {
            .swiper {
                height: 250px;
            }
            
            .thumbnail {
                width: 50px;
                height: 38px;
            }
            
            .left-content h1 {
                font-size: 1.5rem;
            }
            
            .left-content h2 {
                font-size: 1.2rem;
            }
            
            .left-content p {
                font-size: 1rem;
            }
        }