 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: #000;
            overflow-x: hidden;
        }

        .acuecar-premium-slider {
            position: relative;
            width: 100%;
            height: 60vh;
            max-height: 700px;
            overflow: hidden;
            background: #000;
        }

        .acuecar-slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            visibility: hidden;
            transition: opacity 2s cubic-bezier(0.4, 0, 0.2, 1), visibility 2s;
        }

        .acuecar-slide.acuecar-active {
            opacity: 1;
            visibility: visible;
            z-index: 1;
        }

        .acuecar-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transform: scale(1);
            transition: transform 7s ease-out;
        }

        .acuecar-slide.acuecar-active img {
            transform: scale(1.08);
        }

        .acuecar-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(ellipse at top, rgba(0, 62, 120, 0.2) 0%, transparent 60%),
                radial-gradient(ellipse at bottom, rgba(0, 0, 0, 0.8) 0%, transparent 60%),
                linear-gradient(180deg, 
                    rgba(0, 0, 0, 0.4) 0%, 
                    transparent 40%, 
                    transparent 60%, 
                    rgba(0, 0, 0, 0.7) 100%
                );
            z-index: 2;
        }

        .acuecar-content-wrapper {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 3;
        }

        .acuecar-slide-content {
            text-align: center;
            color: white;
            max-width: 1400px;
            padding: 0 50px;
            opacity: 0;
            transform: translateY(60px);
            transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .acuecar-active .acuecar-slide-content {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.5s;
        }

        .acuecar-slide-label {
            display: inline-block;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: #6EC1E4;
            margin-bottom: 25px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
        }

        .acuecar-active .acuecar-slide-label {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.7s;
        }

        .acuecar-slide-label::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 2px;
            background: linear-gradient(90deg, transparent, #6EC1E4, transparent);
        }

        .acuecar-slide-title {
            font-size: 5.5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 30px;
            text-shadow: 
                0 0 40px rgba(0, 0, 0, 0.5),
                0 10px 30px rgba(0, 0, 0, 0.3);
            letter-spacing: -2px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
            background: linear-gradient(180deg, #ffffff 0%, #e0e0e0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .acuecar-active .acuecar-slide-title {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.9s;
        }

        .acuecar-slide-subtitle {
            font-size: 1.6rem;
            font-weight: 300;
            line-height: 1.6;
            margin-bottom: 45px;
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
            color: rgba(255, 255, 255, 0.9);
        }

        .acuecar-active .acuecar-slide-subtitle {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 1.1s;
        }

        .acuecar-slide-hashtag {
            font-size: 3rem;
            font-weight: 700;
            color: #6EC1E4;
            text-shadow: 
                0 0 30px rgba(110, 193, 228, 0.4),
                0 5px 20px rgba(0, 0, 0, 0.5);
            letter-spacing: 1px;
            opacity: 0;
            transform: scale(0.9);
            transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .acuecar-active .acuecar-slide-hashtag {
            opacity: 1;
            transform: scale(1);
            transition-delay: 0.9s;
        }

        .acuecar-cta-button {
            display: inline-block;
            margin-top: 20px;
            padding: 18px 45px;
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: white;
            background: linear-gradient(135deg, #6EC1E4 0%, #0066A1 100%);
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
            transform: translateY(20px);
            box-shadow: 
                0 10px 30px rgba(110, 193, 228, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
        }

        .acuecar-active .acuecar-cta-button {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 1.3s;
        }

        .acuecar-cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 
                0 15px 40px rgba(110, 193, 228, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
            border-color: rgba(255, 255, 255, 0.6);
        }

        /* Controles Premium */
        .acuecar-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border: 1px solid rgba(255, 255, 255, 0.18);
            color: white;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            font-size: 28px;
            font-weight: 300;
            box-shadow: 
                0 8px 32px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }

        .acuecar-nav:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.3);
            transform: translateY(-50%) scale(1.1);
            box-shadow: 
                0 12px 40px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
        }

        .acuecar-nav:active {
            transform: translateY(-50%) scale(1.05);
        }

        .acuecar-prev {
            left: 50px;
        }

        .acuecar-next {
            right: 50px;
        }

        /* Indicadores Premium */
        .acuecar-indicators {
            position: absolute;
            bottom: 50px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 10;
            background: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 12px 20px;
            border-radius: 50px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .acuecar-indicator {
            width: 12px;
            height: 12px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            border: 2px solid transparent;
        }

        .acuecar-indicator:hover {
            background: rgba(255, 255, 255, 0.5);
            transform: scale(1.2);
        }

        .acuecar-indicator.acuecar-active {
            background: #6EC1E4;
            width: 40px;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(110, 193, 228, 0.6);
        }

        .acuecar-indicator.acuecar-active::after {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            border-radius: 10px;
            border: 2px solid rgba(110, 193, 228, 0.4);
            animation: acuecarPulse 2s ease-in-out infinite;
        }

        @keyframes acuecarPulse {
            0%, 100% {
                transform: scale(1);
                opacity: 1;
            }
            50% {
                transform: scale(1.3);
                opacity: 0;
            }
        }

        /* Efectos de luz ambiental */
        .acuecar-ambient-light {
            position: absolute;
            width: 100%;
            height: 100%;
            z-index: 2;
            pointer-events: none;
            opacity: 0.6;
        }

        .acuecar-light-beam {
            position: absolute;
            width: 2px;
            height: 150px;
            background: linear-gradient(180deg, 
                transparent 0%, 
                rgba(110, 193, 228, 0.8) 50%, 
                transparent 100%
            );
            filter: blur(2px);
            animation: acuecarBeamMove 15s ease-in-out infinite;
        }

        @keyframes acuecarBeamMove {
            0%, 100% { 
                transform: translateY(-150px) translateX(0); 
                opacity: 0;
            }
            10%, 90% {
                opacity: 1;
            }
            50% { 
                transform: translateY(100vh) translateX(50px); 
            }
        }

        /* Barra de progreso */
        .acuecar-progress-bar {
            position: absolute;
            bottom: 0;
            left: 0;
            height: 3px;
            background: linear-gradient(90deg, #6EC1E4, #0066A1);
            z-index: 10;
            transform-origin: left;
            animation: acuecarProgress 7s linear forwards;
            box-shadow: 0 0 10px rgba(110, 193, 228, 0.8);
        }

        @keyframes acuecarProgress {
            from { width: 0%; }
            to { width: 100%; }
        }

        /* Burbujas de agua */
        .acuecar-floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            z-index: 2;
            pointer-events: none;
            overflow: hidden;
        }

        .acuecar-float-element {
            position: absolute;
            background: radial-gradient(circle, rgba(110, 193, 228, 0.6) 0%, transparent 70%);
            border-radius: 50%;
            filter: blur(1px);
        }

        .acuecar-bubbles-container {
            position: absolute;
            width: 100%;
            height: 100%;
            z-index: 2;
            pointer-events: none;
            overflow: hidden;
        }

        .acuecar-bubble {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(
                circle at 30% 30%,
                rgba(255, 255, 255, 0.8) 0%,
                rgba(110, 193, 228, 0.4) 30%,
                rgba(110, 193, 228, 0.2) 60%,
                transparent 100%
            );
            box-shadow: 
                inset 0 0 20px rgba(255, 255, 255, 0.5),
                0 0 20px rgba(110, 193, 228, 0.3);
            animation: acuecarBubbleRise linear infinite;
            opacity: 0;
        }

        .acuecar-bubble::before {
            content: '';
            position: absolute;
            top: 10%;
            left: 15%;
            width: 40%;
            height: 40%;
            border-radius: 50%;
            background: radial-gradient(
                circle at 50% 50%,
                rgba(255, 255, 255, 0.8) 0%,
                transparent 60%
            );
            filter: blur(2px);
        }

        .acuecar-bubble::after {
            content: '';
            position: absolute;
            bottom: 15%;
            right: 20%;
            width: 25%;
            height: 25%;
            border-radius: 50%;
            background: radial-gradient(
                circle at 50% 50%,
                rgba(255, 255, 255, 0.6) 0%,
                transparent 70%
            );
            filter: blur(1px);
        }

        @keyframes acuecarBubbleRise {
            0% {
                transform: translateY(0) translateX(0) scale(0);
                opacity: 0;
            }
            5% {
                opacity: 0.8;
                transform: scale(1);
            }
            90% {
                opacity: 0.8;
            }
            100% {
                transform: translateY(-120vh) translateX(var(--drift)) scale(0.8);
                opacity: 0;
            }
        }

        @keyframes acuecarBubbleWobble {
            0%, 100% {
                transform: translateX(0);
            }
            25% {
                transform: translateX(10px);
            }
            75% {
                transform: translateX(-10px);
            }
        }

        /* Scroll indicator */
        .acuecar-scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.75rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            animation: acuecarScrollBounce 2s ease-in-out infinite;
        }

        .acuecar-scroll-indicator::after {
            content: '';
            width: 1px;
            height: 40px;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), transparent);
        }

        @keyframes acuecarScrollBounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(10px); }
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .acuecar-slide-title {
                font-size: 4rem;
            }
            .acuecar-slide-subtitle {
                font-size: 1.4rem;
            }
        }

        @media (max-width: 768px) {
            .acuecar-premium-slider {
                height: 60vh;
                max-height: 500px;
            }

            .acuecar-slide-content {
                padding: 0 30px;
            }

            .acuecar-slide-label {
                font-size: 0.75rem;
                letter-spacing: 3px;
            }

            .acuecar-slide-title {
                font-size: 2.5rem;
                letter-spacing: -1px;
            }

            .acuecar-slide-subtitle {
                font-size: 1.1rem;
                margin-bottom: 30px;
            }

            .acuecar-slide-hashtag {
                font-size: 2rem;
            }

            .acuecar-cta-button {
                padding: 14px 35px;
                font-size: 0.9rem;
            }

            .acuecar-nav {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }

            .acuecar-prev {
                left: 20px;
            }

            .acuecar-next {
                right: 20px;
            }

            .acuecar-indicators {
                bottom: 30px;
                padding: 10px 16px;
            }

            .acuecar-indicator {
                width: 8px;
                height: 8px;
            }

            .acuecar-indicator.acuecar-active {
                width: 28px;
            }

            .acuecar-scroll-indicator {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .acuecar-slide-title {
                font-size: 2rem;
            }

            .acuecar-slide-subtitle {
                font-size: 1rem;
            }

            .acuecar-slide-hashtag {
                font-size: 1.6rem;
            }
        }