    :root {
        --primary: #6C63FF;
        --primary-light: #42C6FF;
        --secondary: #FF6584;
        --dark: #1a1a2e;
        --light: #f8f9fa;
        --bg-secondary: #f5f7ff;
        --text-light: #6c757d;
        --radius: 15px;
        --shadow: 0 10px 30px rgba(0,0,0,0.1);
        --shadow-hover: 0 15px 40px rgba(0,0,0,0.15);
        --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        --font-heading: 'Montserrat', sans-serif;
        --video-glow: 0 0 30px rgba(108, 99, 255, 0.6);
    }

    /* Hero Section con Video */
    .hero-section {
        position: relative;
        height: 100vh;
        min-height: 800px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        overflow: hidden;
        isolation: isolate;
    }

    .hero-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -1;
    }

    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
        z-index: 1;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        max-width: 1200px;
        width: 90%;
        text-align: center;
        padding: 2rem;
    }

    .main-headline {
        font-family: var(--font-heading);
        font-size: 4.5rem;
        font-weight: 800;
        margin-bottom: 1.5rem;
        line-height: 1.1;
        text-shadow: 0 5px 15px rgba(0,0,0,0.3);
        animation: fadeInDown 0.8s ease-out;
        background: linear-gradient(to right, white, #f0f0ff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .hero-subtitle {
        font-size: 1.8rem;
        max-width: 800px;
        margin: 0 auto 3rem;
        font-weight: 300;
        opacity: 0.9;
        animation: fadeInUp 1s ease-out 0.3s forwards;
        opacity: 0;
        text-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }

    .cta-buttons {
        display: flex;
        gap: 2rem;
        justify-content: center;
        flex-wrap: wrap;
        animation: fadeInUp 1s ease-out 0.6s forwards;
        opacity: 0;
    }

    .primary-cta {
        background: white;
        color: var(--primary);
        border: none;
        padding: 1.2rem 3rem;
        border-radius: 50px;
        font-size: 1.2rem;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        box-shadow: 0 15px 35px rgba(0,0,0,0.2);
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .primary-cta:hover {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    }

    .secondary-cta {
        background: transparent;
        color: white;
        border: 3px solid rgba(255,255,255,0.4);
        padding: 1.2rem 2.5rem;
        border-radius: 50px;
        font-size: 1.2rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        backdrop-filter: blur(5px);
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .secondary-cta:hover {
        background: rgba(255,255,255,0.15);
        border-color: white;
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

    /* Sección de Importancia */
    .importance-section {
        padding: 8rem 1rem;
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
        color: white;
        position: relative;
        overflow: hidden;
    }

    .importance-container {
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
    }

    .importance-title {
        font-size: 3.5rem;
        text-align: center;
        margin-bottom: 5rem;
        position: relative;
        display: inline-block;
        left: 50%;
        transform: translateX(-50%);
        font-family: var(--font-heading);
    }

    .importance-title::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--primary);
        border-radius: 2px;
        transform: scaleX(0);
        transform-origin: left;
        animation: titleUnderline 1.5s ease-in-out 0.5s forwards;
    }

    .importance-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 3rem;
    }

    .importance-card {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: 20px;
        padding: 3rem 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        transition: all 0.5s ease;
        border: 1px solid rgba(255, 255, 255, 0.1);
        opacity: 0;
        transform: translateY(50px);
    }

    .importance-card:nth-child(1) {
        animation: fadeInUpCard 1s ease-out 0.3s forwards;
    }

    .importance-card:nth-child(2) {
        animation: fadeInUpCard 1s ease-out 0.6s forwards;
    }

    .importance-card:nth-child(3) {
        animation: fadeInUpCard 1s ease-out 0.9s forwards;
    }

    .importance-card:hover {
        transform: translateY(-10px) !important;
        background: rgba(108, 99, 255, 0.2);
        box-shadow: 0 15px 40px rgba(108, 99, 255, 0.3);
    }

    .importance-icon {
        font-size: 3rem;
        margin-bottom: 1.5rem;
        color: var(--primary);
        display: inline-block;
        transform: scale(0);
        animation: iconPop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 1.2s forwards;
    }

    .importance-card-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        font-weight: 700;
        background: linear-gradient(to right, #fff, #e0e0ff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .importance-card-content {
        line-height: 1.8;
        font-size: 1.1rem;
        opacity: 0.9;
    }

    .floating-tech-logo {
        position: absolute;
        width: 200px;
        height: 200px;
        opacity: 0.1;
        animation: floatLogo 15s ease-in-out infinite;
    }

    .floating-tech-logo:nth-child(1) {
    top: 5%;
    left: 10%;
    animation-delay: 0s;
    }
    .floating-tech-logo:nth-child(3) {
        top: 40%;
        left: 70%;
        animation-delay: 4s;
    }

    .floating-tech-logo:nth-child(2) {
        bottom: 1%;
        left: 5%;
        animation-delay: 8s;
    }

    /* Video Destacado */
    .featured-video-section {
        padding: 8rem 2rem;
        background: var(--bg-secondary);
        position: relative;
    }

    .section-header {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 5rem;
    }

    .section-title {
        font-size: 2.8rem;
        color: var(--dark);
        margin-bottom: 1.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        font-family: var(--font-heading);
    }

    .title-icon {
        color: var(--primary);
    }

    .section-subtitle {
        color: var(--text-light);
        font-size: 1.2rem;
        line-height: 1.6;
    }

    .video-feature-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        max-width: 1200px;
        margin: 0 auto;
        align-items: center;
    }

    .video-feature-player {
        position: relative;
        border-radius: var(--radius);
        overflow: hidden;
        box-shadow: var(--video-glow);
        transform: perspective(1000px) rotateY(-10deg);
        transition: all 0.5s ease;
    }

    .video-feature-player:hover {
        transform: perspective(1000px) rotateY(0);
        box-shadow: 0 0 50px rgba(108, 99, 255, 0.8);
    }

    .video-feature-player video {
        width: 100%;
        display: block;
    }

    .play-icon-overlay {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80px;
        height: 80px;
        background: rgba(255,255,255,0.9);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        color: var(--primary);
        cursor: pointer;
        opacity: 0;
        transition: all 0.3s ease;
    }

    .video-feature-player:hover .play-icon-overlay {
        opacity: 1;
    }

    .video-feature-content {
        padding: 2rem;
    }

    .video-feature-title {
        font-size: 2.5rem;
        color: var(--dark);
        margin-bottom: 1.5rem;
        line-height: 1.3;
        font-family: var(--font-heading);
    }

    .video-feature-description {
        color: var(--text-light);
        line-height: 1.7;
        margin-bottom: 2rem;
        font-size: 1.1rem;
    }

    .video-cta-button {
        background: var(--primary);
        color: white;
        border: none;
        padding: 1rem 2rem;
        border-radius: 50px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 0.8rem;
        box-shadow: 0 10px 20px rgba(108, 99, 255, 0.3);
    }

    .video-cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(108, 99, 255, 0.4);
    }

    /* Carrusel de Videos */
    .video-carousel-section {
        padding: 8rem 2rem;
        background: white;
    }

    .video-carousel-container {
        max-width: 1400px;
        margin: 3rem auto 0;
        position: relative;
    }

    .video-carousel {
        display: flex;
        gap: 2rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 2rem;
    }

    .video-carousel::-webkit-scrollbar {
        height: 8px;
    }

    .video-carousel::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .video-carousel::-webkit-scrollbar-thumb {
        background: var(--primary);
        border-radius: 10px;
    }

    .carousel-video-item {
        min-width: 400px;
        scroll-snap-align: start;
        position: relative;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
    }

    .carousel-video-item:hover {
        transform: translateY(-10px);
        box-shadow: var(--video-glow);
    }

    .carousel-video-item video {
        width: 100%;
        display: block;
    }

    .video-info-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
        color: white;
        padding: 1.5rem;
    }

    .video-item-title {
        font-size: 1.3rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
    }

    .video-item-duration {
        font-size: 0.9rem;
        opacity: 0.8;
    }

    .carousel-nav-buttons {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-top: 2rem;
    }

    .carousel-nav-button {
        width: 50px;
        height: 50px;
        background: white;
        border: none;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        color: var(--primary);
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .carousel-nav-button:hover {
        background: var(--primary);
        color: white;
        transform: scale(1.1);
    }

    /* Servicios */
    .services-section {
        padding: 8rem 1rem;
        background: var(--bg-secondary);
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 3rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    .service-card {
        background: white;
        border-radius: var(--radius);
        padding: 3rem 2rem;
        box-shadow: var(--shadow);
        transition: var(--transition);
        text-align: center;
        border-top: 5px solid var(--primary);
    }

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-hover);
    }

    .service-icon {
        width: 80px;
        height: 80px;
        background: var(--primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        font-size: 2rem;
        color: white;
        box-shadow: 0 10px 20px rgba(108, 99, 255, 0.3);
    }

    .service-title {
        font-size: 1.5rem;
        color: var(--dark);
        margin-bottom: 1rem;
        font-weight: 700;
    }

    .service-description {
        color: var(--text-light);
        line-height: 1.6;
    }

    /* Contacto */
    .contact-section {
        padding: 8rem 2rem;
        background: white;
    }

    .contact-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 5rem;
        max-width: 1200px;
        margin: 0 auto;
        align-items: center;
    }

    .contact-visual {
        position: relative;
        height: 500px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .floating-element {
        width: 300px;
        height: 300px;
        background: var(--primary);
        border-radius: 30px;
        position: absolute;
        animation: float 8s ease-in-out infinite;
        filter: blur(60px);
        opacity: 0.3;
    }

    .floating-element:nth-child(1) {
        top: 0;
        left: 0;
        animation-delay: 0s;
    }

    .floating-element:nth-child(2) {
        bottom: 0;
        right: 0;
        animation-delay: 2s;
        background: var(--secondary);
    }

    .contact-image {
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: 400px;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 30px 60px rgba(0,0,0,0.2);
        transform: rotate(-5deg);
        transition: var(--transition);
    }

    .contact-image:hover {
        transform: rotate(0) scale(1.05);
    }

    .contact-image img {
        width: 100%;
        height: auto;
        display: block;
    }

    .future-form {
        background: white;
        border-radius: 20px;
        padding: 3rem;
        box-shadow: 0 30px 60px rgba(0,0,0,0.1);
        position: relative;
        overflow: hidden;
    }

    .future-form::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 5px;
        height: 100%;
        background: var(--primary);
    }

    .form-title {
        font-size: 2.5rem;
        color: var(--dark);
        margin-bottom: 2rem;
        font-weight: 700;
        background: linear-gradient(to right, var(--primary), var(--primary-light));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-family: var(--font-heading);
    }

    .form-group {
        margin-bottom: 2rem;
        position: relative;
    }

    .form-group label {
        display: block;
        margin-bottom: 0.8rem;
        font-weight: 600;
        color: var(--dark);
    }

    .form-control {
        width: 100%;
        padding: 1.2rem;
        border: 2px solid #eee;
        border-radius: 10px;
        font-size: 1rem;
        transition: var(--transition);
        background: rgba(245, 245, 245, 0.5);
    }

    .form-control:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.2);
        outline: none;
        background: white;
    }

    .submit-btn {
        background: var(--primary);
        color: white;
        border: none;
        padding: 1.2rem 2.5rem;
        border-radius: 10px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: var(--transition);
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.8rem;
        box-shadow: 0 10px 20px rgba(108, 99, 255, 0.2);
    }

    .submit-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(108, 99, 255, 0.3);
    }

    /* Footer */


    .social-icon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(255,255,255,0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
    }

    .social-icon:hover {
        background: var(--primary);
        transform: translateY(-3px);
    }

    .footer-heading {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
        font-weight: 600;
    }

    .footer-links {
        list-style: none;
        padding: 0;
    }

    .footer-link {
        margin-bottom: 1rem;
    }

    .footer-link a {
        color: rgba(255,255,255,0.8);
        text-decoration: none;
        transition: var(--transition);
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .footer-link a:hover {
        color: white;
        transform: translateX(5px);
    }

    .footer-bottom {
        margin-top: 4rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(255,255,255,0.1);
        font-size: 0.9rem;
        opacity: 0.7;
    }

    /* Animaciones */
    @keyframes float {
        0%, 100% { transform: translateY(0) rotate(0deg); }
        50% { transform: translateY(-20px) rotate(5deg); }
    }

    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes titleUnderline {
        0% { transform: scaleX(0); }
        100% { transform: scaleX(1); }
    }

    @keyframes fadeInUpCard {
        0% { opacity: 0; transform: translateY(50px); }
        100% { opacity: 1; transform: translateY(0); }
    }

    @keyframes iconPop {
        0% { transform: scale(0); }
        80% { transform: scale(1.2); }
        100% { transform: scale(1); }
    }

    @keyframes floatLogo {
        0%, 100% { transform: translateY(0) rotate(0deg); }
        50% { transform: translateY(-30px) rotate(10deg); }
    }

    /* Responsive */
    @media (max-width: 1200px) {
        .main-headline {
            font-size: 3.8rem;
        }

        .video-feature-container {
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        .video-feature-player {
            transform: none;
            max-width: 800px;
            margin: 0 auto;
        }
    }

    @media (max-width: 992px) {
        .main-headline {
            font-size: 3.2rem;
        }

        .hero-subtitle {
            font-size: 1.5rem;
        }

        .section-title {
            font-size: 2.4rem;
        }

        .video-feature-title {
            font-size: 2rem;
        }

        .importance-title {
            font-size: 2.8rem;
        }
    }

    @media (max-width: 768px) {
        .main-headline {
            font-size: 2.8rem;
        }

        .hero-subtitle {
            font-size: 1.3rem;
        }

        .cta-buttons {
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }

        .primary-cta,
        .secondary-cta {
            width: 100%;
            max-width: 300px;
            justify-content: center;
        }

        .carousel-video-item {
            min-width: 320px;
        }

        .contact-container {
            grid-template-columns: 1fr;
        }

        .contact-visual {
            height: 300px;
            order: -1;
        }

        .importance-title {
            font-size: 2.2rem;
            margin-bottom: 3rem;
        }
    }

    @media (max-width: 576px) {
        .main-headline {
            font-size: 2.2rem;
        }

        .hero-subtitle {
            font-size: 1.1rem;
        }

        .section-title {
            font-size: 2rem;
            flex-direction: column;
            gap: 0.5rem;
        }

        .video-feature-title {
            font-size: 1.8rem;
        }

        .future-form {
            padding: 2rem;
        }

        .form-title {
            font-size: 2rem;
        }

        .importance-title {
            font-size: 1.8rem;
        }

        .importance-card-title {
            font-size: 1.5rem;
        }
    }