* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

       /* body {
            background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }*/

        .container {
            max-width: 1200px;
            width: 100%;
            text-align: center;
        }

       /* h1 {
            color: white;
            font-size: 2.5rem;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }*/

        .subtitle {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        .carousel-container {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
        }

        .carousel-track {
            display: flex;
            transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            height: 500px;
        }

        .carousel-slide {
            min-width: 100%;
            position: relative;
        }

        .carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .slide-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            color: white;
            padding: 30px 20px 20px;
            text-align: left;
        }

        .slide-title {
            font-size: 1.8rem;
            margin-bottom: 8px;
            font-weight: 700;
        }

        .slide-description {
            font-size: 1.1rem;
            opacity: 0.9;
            line-height: 1.5;
        }

        .indicators {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 10;
        }

        .indicator {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .indicator.active {
            background: white;
            transform: scale(1.2);
            box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
        }

        .indicator:hover {
            background: rgba(255, 255, 255, 0.8);
        }

        .progress-bar {
            position: absolute;
            bottom: 0;
            left: 0;
            height: 4px;
            background: linear-gradient(to right, #ff7e5f, #feb47b);
            width: 0%;
            transition: width 0.1s linear;
            z-index: 10;
        }

        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            z-index: 10;
        }

        .nav-btn {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border: none;
            color: white;
            font-size: 1.5rem;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
        }

        .carousel-container:hover .nav-btn {
            opacity: 1;
        }

        .nav-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        }

        .auto-play-status {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(0, 0, 0, 0.5);
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            z-index: 10;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .status-icon {
            color: #4CAF50;
            animation: pulse 1.5s infinite;
        }

        @keyframes pulse {
            0% { opacity: 0.6; }
            50% { opacity: 1; }
            100% { opacity: 0.6; }
        }

        /* Media Queries para diseño responsive */

        /* Tablets */
        @media screen and (max-width: 1024px) {
            .carousel-track {
                height: 450px;
            }
            
            .slide-title {
                font-size: 1.6rem;
            }
            
            .slide-description {
                font-size: 1rem;
            }
            
            h1 {
                font-size: 2.2rem;
            }
        }

        /* Tablets pequeñas */
        @media screen and (max-width: 768px) {
            .carousel-track {
                height: 400px;
            }
            
            .slide-content {
                padding: 25px 15px 15px;
            }
            
            .slide-title {
                font-size: 1.4rem;
            }
            
            .slide-description {
                font-size: 0.9rem;
            }
            
            .nav-btn {
                width: 45px;
                height: 45px;
                font-size: 1.3rem;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            .subtitle {
                font-size: 1.1rem;
            }
        }

        /* Móviles */
        @media screen and (max-width: 480px) {
            body {
                padding: 1px;
            }
            
            .carousel-track {
                height: 350px;
            }
            
            .slide-content {
                padding: 20px 10px 10px;
            }
            
            .slide-title {
                font-size: 1.2rem;
            }
            
            .slide-description {
                font-size: 0.85rem;
            }
            
            .nav-btn {
                width: 40px;
                height: 40px;
                font-size: 1.1rem;
                opacity: 0.7;
            }
            
            .indicators {
                bottom: 15px;
            }
            
            .indicator {
                width: 10px;
                height: 10px;
            }
            
            h1 {
                font-size: 1.8rem;
            }
            
            .subtitle {
                font-size: 1rem;
                margin-bottom: 20px;
            }
            
            .auto-play-status {
                top: 15px;
                right: 15px;
                font-size: 0.8rem;
                padding: 6px 12px;
            }
        }

        /* Pantallas muy pequeñas */
        @media screen and (max-width: 320px) {
            .carousel-track {
                height: 300px;
            }
            
            .slide-title {
                font-size: 1.1rem;
            }
            
            h1 {
                font-size: 1.6rem;
            }
        }

        /* Pantallas grandes */
        @media screen and (min-width: 1200px) {
            .carousel-container {
                max-width: 1100px;
            }
            
            .carousel-track {
                height: 550px;
            }
            
            .slide-title {
                font-size: 2rem;
            }
            
            .slide-description {
                font-size: 1.2rem;
            }
        }