        :root {
            --primary-blue: #0E4F75;
            --primary-blue-dark: #0A3A56;
            --primary-blue-light: #1A6A9C;
            --primary-green: #9DC530;
            --primary-green-dark: #7FA427;
            --primary-green-light: #B4D650;
            --dark: #0F172A;
            --gray-700: #475569;
            --gray-600: #64748B;
            --gray-300: #E2E8F0;
            --white: #FFFFFF;
            --gradient-primary: linear-gradient(135deg, #0E4F75 0%, #1A6A9C 100%);
            --gradient-secondary: linear-gradient(135deg, #9DC530 0%, #B4D650 100%);
            --gradient-mixed: linear-gradient(135deg, #0E4F75 0%, #9DC530 100%);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
            background: var(--dark);
        }

        /* Hero Slider Container */
        .hero-slider-container {
            position: relative;
            width: 100%;
            height: 100vh;
            min-height: 600px;
            overflow: hidden;
            background: var(--dark);
        }

        /* Slides Wrapper */
        .slides-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
        }

        /* Individual Slide */
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slide.active {
            opacity: 1;
            z-index: 5;
        }

        .slide.prev {
            transform: translateX(-100%);
        }

        .slide.next {
            transform: translateX(100%);
        }

        /* Slide Backgrounds */
        .slide-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            filter: brightness(0.7);
            transform: scale(1);
            transition: transform 10s ease-out;
        }

        .slide.active .slide-bg {
            transform: scale(1.1);
        }

        /* Overlay Gradient */
        .slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, 
                rgba(14, 79, 117, 0.95) 0%, 
                rgba(14, 79, 117, 0.7) 40%,
                rgba(157, 197, 48, 0.4) 100%);
            z-index: 1;
        }

        /* Slide Content */
        .slide-content {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            padding: 0 20px;
            text-align: center;
            color: var(--white);
            width: 100%;
        }

        /* Slide Badge */
        .slide-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            padding: 10px 24px;
            border-radius: 50px;
            margin-bottom: 30px;
            font-size: 0.95rem;
            opacity: 0;
            transform: translateY(-20px);
            animation: fadeInDown 0.8s ease forwards;
            animation-delay: 0.2s;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .slide-badge i {
            color: var(--primary-green);
            font-size: 1.1rem;
        }

        /* Slide Title */
        .slide-title {
            font-family: 'Poppins', sans-serif;
            font-size: clamp(2.5rem, 7vw, 5rem);
            font-weight: 800;
            margin-bottom: 24px;
            line-height: 1.1;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease forwards;
            animation-delay: 0.4s;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .highlight {
            color: var(--primary-green);
            display: inline-block;
            position: relative;
        }

        .highlight::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-secondary);
            border-radius: 2px;
            animation: expandWidth 1s ease forwards;
            animation-delay: 0.8s;
            transform: scaleX(0);
        }

        @keyframes expandWidth {
            to {
                transform: scaleX(1);
            }
        }

        /* Slide Subtitle */
        .slide-subtitle {
            font-size: clamp(1.1rem, 2.5vw, 1.5rem);
            font-weight: 400;
            margin-bottom: 40px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease forwards;
            animation-delay: 0.6s;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        /* CTA Buttons Group */
        .cta-group {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease forwards;
            animation-delay: 0.8s;
            margin-bottom: 60px;
        }

        .btn {
            padding: 16px 40px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.05rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: var(--transition);
            cursor: pointer;
            border: none;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn-primary {
            background: var(--gradient-secondary);
            color: var(--primary-blue);
            box-shadow: var(--shadow-lg);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-2xl);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-secondary:hover {
            background: white;
            color: var(--primary-blue);
        }

        .btn-play {
            width: 60px;
            height: 60px;
            padding: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border: 2px solid white;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        /* Features Grid */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease forwards;
            animation-delay: 1s;
        }

        .feature-item {
            text-align: center;
            padding: 20px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: var(--transition);
        }

        .feature-item:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
        }

        .feature-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-green);
            margin-bottom: 8px;
            font-family: 'Poppins', sans-serif;
        }

        .feature-label {
            font-size: 0.95rem;
            opacity: 0.9;
        }

        /* Navigation Arrows */
        .nav-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            z-index: 10;
            color: white;
            font-size: 1.2rem;
        }

        .nav-arrow:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: white;
            transform: translateY(-50%) scale(1.1);
        }

        .nav-arrow.prev {
            left: 30px;
        }

        .nav-arrow.next {
            right: 30px;
        }

        /* Slide Indicators */
        .slide-indicators {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 10;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: var(--transition);
            border: 2px solid transparent;
            position: relative;
        }

        .indicator.active {
            background: var(--primary-green);
            transform: scale(1.2);
            border-color: white;
        }

        .indicator::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 20px;
            height: 20px;
            border: 2px solid var(--primary-green);
            border-radius: 50%;
            opacity: 0;
            animation: none;
        }

        .indicator.active::after {
            animation: indicatorPulse 1.5s infinite;
        }

        @keyframes indicatorPulse {
            0% {
                opacity: 1;
                transform: translate(-50%, -50%) scale(0.5);
            }
            100% {
                opacity: 0;
                transform: translate(-50%, -50%) scale(1.5);
            }
        }

        /* Progress Bar */
        .progress-bar {
            position: absolute;
            bottom: 0;
            left: 0;
            height: 4px;
            background: var(--gradient-secondary);
            transition: width 5s linear;
            z-index: 10;
        }

        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Mobile Optimizations */
        @media (max-width: 768px) {
            .nav-arrow {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }

            .nav-arrow.prev {
                left: 15px;
            }

            .nav-arrow.next {
                right: 15px;
            }

            .slide-title {
                font-size: 2rem;
            }

            .slide-subtitle {
                font-size: 1rem;
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }

            .feature-item {
                padding: 15px;
            }

            .feature-number {
                font-size: 2rem;
            }

            .btn {
                padding: 14px 30px;
                font-size: 0.95rem;
            }

            .cta-group {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 100%;
                max-width: 300px;
            }
        }

        /* Unique Slide Styles */
        .slide-1 .slide-bg {
           /* background-image: url('https://images.unsplash.com/photo-1549317661-bd32c8ce0db2?w=1920&h=1080&fit=crop'); */
		 background-image: url("../img/entregallaves.jpg"); 
        }

        .slide-2 .slide-bg {
            /* background-image: url('https://images.unsplash.com/photo-1580273916550-e323be2ae537?w=1920&h=1080&fit=crop'); */
		 background-image: url("../img/familia.jpg");
        }

        .slide-3 .slide-bg {
            /* background-image: url('https://images.unsplash.com/photo-1552519507-da3b142c6e3d?w=1920&h=1080&fit=crop'); */
			background-image: url("../img/regalo.jpg"); 
        }

        .slide-4 .slide-bg {
            /* background-image: url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?w=1920&h=1080&fit=crop'); */
			background-image: url("../img/montandose.jpg");
        }

        .slide-5 .slide-bg {
            background-image: url('https://images.unsplash.com/photo-1618843479313-40f8afb4b4d8?w=1920&h=1080&fit=crop');
        }

        /* WhatsApp Quick Access */
        .whatsapp-quick {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 30px;
            box-shadow: var(--shadow-xl);
            cursor: pointer;
            transition: var(--transition);
            z-index: 100;
            text-decoration: none;
        }

        .whatsapp-quick:hover {
            transform: scale(1.1);
            box-shadow: var(--shadow-2xl);
        }

        .whatsapp-quick::before {
            content: 'Chatea con nosotros';
            position: absolute;
            right: 70px;
            background: var(--dark);
            color: white;
            padding: 8px 16px;
            border-radius: 8px;
            white-space: nowrap;
            font-size: 14px;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s;
        }

        .whatsapp-quick:hover::before {
            opacity: 1;
        }