        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', 'Montserrat', sans-serif;
            overflow-x: hidden;
            background: #000;
        }

        .particles-carousel-header {
            position: relative;
            height: 100vh;
            width: 100vw;
            overflow: hidden;
            display: flex;
            align-items: center;
        }

        /* Canvas para partículas con clase única */
        #particlesCarouselCanvas {
            position: absolute;
            top: 0;
            left: 0;
            z-index: 5;
            pointer-events: none;
        }

        .particles-carousel-container {
            width: 100%;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0;
        }

        .particles-carousel-wrapper {
            display: flex;
            width: 100%;
            height: 100vh;
            align-items: stretch;
            justify-content: center;
            gap: 0;
        }

        .particles-carousel-slide {
            position: relative;
            height: 100%;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            flex: 1;
            min-width: 0;
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
        }

        .particles-carousel-slide:hover {
            flex: 3;
            box-shadow: 0 0 50px rgba(255, 255, 255, 0.2), inset 0 0 0 2px rgba(255, 255, 255, 0.3);
            z-index: 10;
        }

        .particles-carousel-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                135deg,
                rgba(0, 0, 0, 0.7) 0%,
                rgba(0, 0, 0, 0.3) 50%,
                rgba(0, 0, 0, 0.7) 100%
            );
            transition: opacity 0.8s ease;
            z-index: 1;
        }

        .particles-carousel-slide:hover::before {
            opacity: 0.4;
        }

        .particles-carousel-slide-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 40px 30px;
            color: white;
            z-index: 6;
            transform: translateY(50%);
            opacity: 0;
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
        }

        .particles-carousel-slide:hover .particles-carousel-slide-content,
        .particles-carousel-slide.particles-carousel-active .particles-carousel-slide-content {
            transform: translateY(0);
            opacity: 1;
        }

        .particles-carousel-slide-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.2rem;
            font-weight: 800;
            margin-bottom: 15px;
            line-height: 1.2;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease 0.2s;
        }

        .particles-carousel-slide:hover .particles-carousel-slide-title,
        .particles-carousel-slide.particles-carousel-active .particles-carousel-slide-title {
            opacity: 1;
            transform: translateY(0);
        }

        .particles-carousel-slide-subtitle {
            font-family: 'Poppins', sans-serif;
            font-size: 1.1rem;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.95);
            line-height: 1.6;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease 0.4s;
        }

        .particles-carousel-slide:hover .particles-carousel-slide-subtitle,
        .particles-carousel-slide.particles-carousel-active .particles-carousel-slide-subtitle {
            opacity: 1;
            transform: translateY(0);
        }

        .particles-carousel-highlight {
            background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1);
            background-size: 300% 300%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: particlesCarouselGradientText 3s ease-in-out infinite;
        }

        @keyframes particlesCarouselGradientText {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        /* Efecto de brillo en hover */
        .particles-carousel-slide::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                45deg,
                transparent 30%,
                rgba(255, 255, 255, 0.1) 50%,
                transparent 70%
            );
            transform: rotate(45deg) translateX(-100%);
            transition: transform 0.8s ease;
            z-index: 3;
            pointer-events: none;
        }

        .particles-carousel-slide:hover::after,
        .particles-carousel-slide.particles-carousel-active::after {
            transform: rotate(45deg) translateX(100%);
        }

        /* Navegación */
        .particles-carousel-nav {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            z-index: 10;
            padding: 10px;
            background: rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(10px);
            border-radius: 25px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .particles-carousel-nav-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .particles-carousel-nav-dot.particles-carousel-active {
            background: #0066cc;
            box-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
            transform: scale(1.3);
        }

        .particles-carousel-nav-dot.particles-carousel-active::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            animation: particlesCarouselAutoPlayProgress 8s linear infinite;
        }

        @keyframes particlesCarouselAutoPlayProgress {
            0% {
                left: -100%;
            }
            100% {
                left: 100%;
            }
        }

        .particles-carousel-nav-dot:hover {
            background: #0066cc;
            box-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
            transform: scale(1.3);
        }

        /* Responsive para tablets */
        @media (max-width: 1024px) {
            .particles-carousel-slide-title {
                font-size: 1.8rem;
            }
            
            .particles-carousel-slide-subtitle {
                font-size: 1rem;
            }
            
            .particles-carousel-slide-content {
                padding: 30px 25px;
            }
        }

        /* Responsive para móviles */
        @media (max-width: 768px) {
            .particles-carousel-wrapper {
                flex-direction: column;
                height: 100vh;
                gap: 0;
            }
            
            .particles-carousel-slide {
                flex: 1;
                height: 20%;
                width: 100%;
                transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            }
            
            .particles-carousel-slide:hover,
            .particles-carousel-slide.particles-carousel-active {
                flex: 2;
                height: 40%;
                z-index: 10;
            }
            
            .particles-carousel-slide-title {
                font-size: 1.4rem;
                margin-bottom: 10px;
            }
            
            .particles-carousel-slide-subtitle {
                font-size: 0.9rem;
            }
            
            .particles-carousel-slide-content {
                padding: 20px 15px;
            }
            
            .particles-carousel-nav {
                bottom: 20px;
                gap: 10px;
                padding: 8px;
            }
            
            .particles-carousel-nav-dot {
                width: 10px;
                height: 10px;
            }
        }

        /* Responsive para móviles pequeños */
        @media (max-width: 480px) {
            .particles-carousel-slide-title {
                font-size: 1.2rem;
            }
            
            .particles-carousel-slide-subtitle {
                font-size: 0.8rem;
            }
            
            .particles-carousel-slide-content {
                padding: 15px 10px;
            }
        }

        /* Animación de entrada */
        .particles-carousel-slide {
            opacity: 0;
            animation: particlesCarouselSlideInUp 0.8s ease forwards;
        }

        .particles-carousel-slide:nth-child(1) { animation-delay: 0.1s; }
        .particles-carousel-slide:nth-child(2) { animation-delay: 0.2s; }
        .particles-carousel-slide:nth-child(3) { animation-delay: 0.3s; }
        .particles-carousel-slide:nth-child(4) { animation-delay: 0.4s; }
        .particles-carousel-slide:nth-child(5) { animation-delay: 0.5s; }

        @keyframes particlesCarouselSlideInUp {
            to {
                opacity: 1;
            }
        }

        /* Landscape en móviles */
        @media (max-width: 768px) and (orientation: landscape) {
            .particles-carousel-wrapper {
                flex-direction: row;
                height: 100vh;
            }
            
            .particles-carousel-slide {
                flex: 1;
                height: 100%;
                width: 20%;
            }
            
            .particles-carousel-slide:hover,
            .particles-carousel-slide.particles-carousel-active {
                flex: 2;
                width: 40%;
                z-index: 10;
            }
            
            .particles-carousel-slide-title {
                font-size: 1.3rem;
            }
            
            .particles-carousel-slide-content {
                padding: 20px 15px;
            }
        }