      /* Reset completo */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        body {
            font-family: 'Arial', sans-serif;
            background: #000;
            color: #fff;
        }

        /* Contenedor principal - OCUPA TODA LA PANTALLA */
        .fullscreen-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            overflow: hidden;
            z-index: 1;
        }

        /* Slider principal */
        .slider {
            width: 100%;
            height: 100%;
            position: relative;
        }

        /* Slides - CADA UNO OCUPA TODA LA PANTALLA */
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            z-index: 1;
        }

        /* Slide activo */
        .slide.active {
            opacity: 1;
            z-index: 2;
        }

        /* Imágenes de fondo - EXTRA GRANDES */
        .slide-1 {
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
                       url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&auto=format&fit=crop&w=2560&q=80')
                       center/cover no-repeat;
        }

        .slide-2 {
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
                       url('https://images.unsplash.com/photo-1439066615861-d1af74d74000?ixlib=rb-4.0.3&auto=format&fit=crop&w=2560&q=80')
                       center/cover no-repeat;
        }

        .slide-3 {
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
                       url('https://images.unsplash.com/photo-1493246507139-91e8fad9978e?ixlib=rb-4.0.3&auto=format&fit=crop&w=2560&q=80')
                       center/cover no-repeat;
        }

        .slide-4 {
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
                       url('https://images.unsplash.com/photo-1519681393784-d120267933ba?ixlib=rb-4.0.3&auto=format&fit=crop&w=2560&q=80')
                       center/cover no-repeat;
        }

        .slide-5 {
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
                       url('https://images.unsplash.com/photo-1470071459604-3b5ec3a7fe05?ixlib=rb-4.0.3&auto=format&fit=crop&w=2560&q=80')
                       center/cover no-repeat;
        }

        /* Contenido centrado */
        .slide-content {
            max-width: 1200px;
            padding: 40px;
            background: rgba(0, 0, 0, 0.7);
            border-radius: 20px;
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
            transform: scale(0.95);
            transition: all 0.8s ease;
        }

        .slide.active .slide-content {
            transform: scale(1);
        }

        .slide h2 {
            font-size: 4.5rem;
            margin-bottom: 25px;
            /* background: linear-gradient(90deg, #ff7e5f, #feb47b); */
            background: linear-gradient(90deg, #b3003b, #b3003b);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 5px 20px rgba(0,0,0,0.5);
            font-weight: 800;
            letter-spacing: 1px;
        }

        .slide p {
            font-size: 1.8rem;
            line-height: 1.6;
            margin-bottom: 30px;
            opacity: 0.9;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Indicadores */
        .indicators {
            position: absolute;
            bottom: 50px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 20px;
            z-index: 10;
        }

        .indicator {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            position: relative;
        }

        .indicator:hover {
            background: rgba(255, 255, 255, 0.7);
            transform: scale(1.3);
        }

        .indicator.active {
            background: #fff;
            transform: scale(1.3);
            box-shadow: 0 0 25px rgba(255, 255, 255, 0.8);
        }

        /* Efecto de anillo en indicadores */
        .indicator.active::before {
            content: '';
            position: absolute;
            top: -6px;
            left: -6px;
            right: -6px;
            bottom: -6px;
            border: 2px solid rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); opacity: 1; }
            100% { transform: scale(1.5); opacity: 0; }
        }

        /* Contador */
        .slide-counter {
            position: absolute;
            top: 40px;
            right: 40px;
            font-size: 1.3rem;
            background: rgba(0, 0, 0, 0.7);
            padding: 12px 25px;
            border-radius: 30px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            font-weight: 600;
            z-index: 10;
        }

        /* Botones de navegación */
        .nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.6);
            color: white;
            border: none;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            font-size: 28px;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0.7;
        }

        .nav-btn:hover {
            background: rgba(0, 0, 0, 0.8);
            opacity: 1;
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
        }

        .prev-btn {
            left: 40px;
        }

        .next-btn {
            right: 40px;
        }

        /* Barra de progreso */
        .progress-bar {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: rgba(255, 255, 255, 0.1);
            z-index: 10;
        }

        .progress {
            height: 100%;
            width: 0%;
             background: linear-gradient(90deg, #b3003b, #b3003b);
            /* background: linear-gradient(90deg, #ff7e5f, #feb47b); */
            transition: width 0.1s linear;
        }

        /* Título principal */
        .main-title {
            position: absolute;
            top: 40px;
            left: 40px;
            font-size: 2.2rem;
            font-weight: 800;
            z-index: 10;
            background: linear-gradient(90deg, #b3003b, #b3003b);
            /* background: linear-gradient(90deg, #ff7e5f, #feb47b); */
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 3px 15px rgba(0,0,0,0.3);
        }

        /* Efecto de partículas (opcional) */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .slide h2 {
                font-size: 3.5rem;
            }
            
            .slide p {
                font-size: 1.5rem;
            }
            
            .slide-content {
                max-width: 90%;
                padding: 30px;
            }
        }

        @media (max-width: 768px) {
            .slide h2 {
                font-size: 2.5rem;
            }
            
            .slide p {
                font-size: 1.2rem;
            }
            
            .slide-content {
                padding: 25px;
            }
            
            .nav-btn {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }
            
            .prev-btn {
                left: 20px;
            }
            
            .next-btn {
                right: 20px;
            }
            
            .slide-counter {
                top: 20px;
                right: 20px;
                font-size: 1rem;
                padding: 8px 16px;
            }
            
            .main-title {
                top: 20px;
                left: 20px;
                font-size: 1.8rem;
            }
            
            .indicators {
                bottom: 30px;
            }
            
            .indicator {
                width: 14px;
                height: 14px;
            }
        }

        @media (max-width: 480px) {
            .slide h2 {
                font-size: 2rem;
            }
            
            .slide p {
                font-size: 1rem;
            }
            
            .slide-content {
                padding: 20px;
            }
            
            .nav-btn {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
        }

        /* Animación de entrada para toda la página */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .fullscreen-container {
            animation: fadeIn 1s ease-out;
        }

        /* Efecto de brillo sutil en imágenes */
        .slide::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, transparent 40%, rgba(255,255,255,0.05) 100%);
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .slide.active::after {
            opacity: 0.5;
        }