
        :root {
            --primary: #6e45e2;
            --secondary: #88d3ce;
            --dark: #1a1a2e;
            --light: #ffffff;
            --accent: #f05d5e;
            --gray: #f5f5f7;
            --dark-gray: #6c757d;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark);
            background: var(--gray);
            line-height: 1.6;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        .fixed-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(26, 26, 46, 0.9);
            backdrop-filter: blur(10px);
            padding: 15px 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .fixed-header.scrolled {
            padding: 10px 0;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .logo {
            margin-left: 20px;
        }

        .logo img {
            height: 70px;
            width: 100px;
        }

        .main-nav ul {
            display: flex;
            list-style: none;
        }

        .main-nav li {
            margin: 0 15px;
        }

        .main-nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        .main-nav a:hover {
            color: var(--secondary);
        }

        .cta-button {
            margin-right: 20px;
        }

        .btn {
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            border: none;
            font-size: 16px;
        }

        .btn-gradient {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
        }

        .btn-gradient:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(110, 69, 226, 0.4);
        }

        .btn-primary {
            background: var(--primary);
            color: white;
        }

        .btn-primary:hover {
            background: #5d38c7;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(110, 69, 226, 0.4);
        }

        /* Hero Section */
        .hero-section {
            position: relative;
            height: 100vh;
            min-height: 600px;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, var(--dark), #16213e);
            color: white;
            overflow: hidden;
            margin-top: 70px;
        }

        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .hero-video video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(26, 26, 46, 0.7);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 0 20px;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .subtext {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 600px;
        }

        .highlight {
            color: var(--secondary);
            font-weight: 600;
        }

        .guarantee-badge {
            display: inline-flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.1);
            padding: 10px 15px;
            border-radius: 30px;
            margin-top: 20px;
            backdrop-filter: blur(5px);
        }

        .guarantee-badge i {
            margin-right: 10px;
            color: var(--secondary);
        }

        /* Academies Section */
        .academies-section {
            padding: 100px 0;
            background: white;
        }

        .section-title {
            text-align: center;
            margin-bottom: 15px;
            font-size: 2.5rem;
        }

        .section-subtitle {
            text-align: center;
            color: var(--dark-gray);
            max-width: 700px;
            margin: 0 auto 50px;
            font-size: 1.1rem;
        }

        .academy-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .academy-card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
            padding: 30px;
            border: 1px solid #eee;
        }

        .academy-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }

        .card-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: white;
            font-size: 24px;
        }

        .academy-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .academy-card p {
            color: var(--dark-gray);
            margin-bottom: 20px;
        }

        .job-guarantee {
            display: block;
            background: rgba(110, 69, 226, 0.1);
            color: var(--primary);
            border-left: 3px solid var(--primary);
            padding: 10px 15px;
            font-size: 0.9rem;
            border-radius: 0 5px 5px 0;
            margin-top: 20px;
        }

        /* Why Us Section */
        .why-us-section {
            padding: 100px 0;
            background: var(--gray);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .benefit-item {
            text-align: center;
            padding: 30px 20px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.03);
        }

        .benefit-item i {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .benefit-item h3 {
            margin-bottom: 15px;
            font-size: 1.3rem;
        }

        .benefit-item p {
            color: var(--dark-gray);
        }

        .value-proposition {
            max-width: 800px;
            margin: 60px auto 0;
            padding: 30px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            text-align: center;
            position: relative;
            border: 2px dashed var(--secondary);
        }

        .value-proposition h3 {
            color: var(--primary);
            margin-bottom: 15px;
        }

        .value-proposition p {
            font-style: italic;
            font-size: 1.1rem;
        }

        /* Testimonials */
        .testimonials-section {
        padding: 100px 0;
        background: linear-gradient(135deg, #f9f9ff 0%, #f0f2ff 100%);
        position: relative;
        overflow: hidden;
    }

    .section-header {
        text-align: center;
        margin-bottom: 60px;
    }

        .testimonial-slider {
            display: flex;
            overflow-x: auto;
            gap: 30px;
            padding: 30px 0;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
        }

        .testimonial-card {
            flex: 0 0 80%;
            scroll-snap-align: start;
            background: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border-radius: 12px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .testimonial-photo {
            height: 200px;
            background-size: cover;
            background-position: center;
        }

        .testimonial-content {
            padding: 30px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .testimonial-content p {
            font-style: italic;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .student-info {
            margin-top: auto;
        }

        .student-info strong {
            display: block;
            font-size: 1.1rem;
        }

        .student-info span {
            color: var(--dark-gray);
            font-size: 0.9rem;
        }

        .salary-badge {
            display: inline-block;
            background: var(--primary);
            color: white;
            padding: 3px 10px;
            border-radius: 30px;
            font-size: 0.8rem;
            margin-top: 10px;
        }

        .employment-stats {
            display: flex;
            justify-content: space-around;
            margin-top: 50px;
            flex-wrap: wrap;
            gap: 20px;
        }

        .stat-item {
            text-align: center;
            min-width: 150px;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 5px;
        }

        .stat-label {
            color: var(--dark-gray);
            font-size: 0.9rem;
        }

        /* Final CTA */
        .final-cta {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--dark), #16213e);
            color: white;
            text-align: center;
        }

        .final-cta h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .final-cta p {
            max-width: 700px;
            margin: 0 auto 30px;
            font-size: 1.2rem;
        }

        .final-cta strong {
            color: var(--secondary);
        }

        .cta-footer {
            margin-top: 30px;
        }

        .cta-footer i {
            margin-right: 10px;
            color: var(--secondary);
        }

        /* Footer */
        .main-footer {
            background: var(--dark);
            color: white;
            padding: 80px 0 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }

        .footer-about img {
            height: 40px;
            margin-bottom: 20px;
        }

        .footer-about p {
            color: rgba(255,255,255,0.7);
            margin-bottom: 20px;
        }

        .social-icons {
            display: flex;
            gap: 15px;
        }

        .social-icons a {
            color: white;
            font-size: 1.2rem;
            transition: color 0.3s;
        }

        .social-icons a:hover {
            color: var(--secondary);
        }

        .footer-links h4 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: var(--secondary);
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: white;
        }

        .footer-newsletter h4 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: var(--secondary);
        }

        .footer-newsletter p {
            color: rgba(255,255,255,0.7);
            margin-bottom: 20px;
        }

        .newsletter-form {
            display: flex;
        }

        .newsletter-form input {
            flex-grow: 1;
            padding: 12px 15px;
            border: none;
            border-radius: 30px 0 0 30px;
            font-family: 'Poppins', sans-serif;
        }

        .newsletter-form button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 30px 30px 0;
            cursor: pointer;
            transition: background 0.3s;
        }

        .newsletter-form button:hover {
            background: #5d38c7;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding: 20px 0;
            text-align: center;
        }

        .footer-legal {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 15px;
            flex-wrap: wrap;
        }

        .footer-legal a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s;
        }

        .footer-legal a:hover {
            color: white;
        }

        .copyright {
            color: rgba(255,255,255,0.5);
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .hero-content h1 {
                font-size: 2.8rem;
            }
            
            .testimonial-card {
                flex: 0 0 90%;
            }
        }

        @media (max-width: 768px) {
            .fixed-header {
                flex-direction: column;
                padding: 15px 0;
            }
            
            .logo {
                margin: 0 0 15px 0;
            }
            
            .main-nav ul {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .main-nav li {
                margin: 5px 10px;
            }
            
            .cta-button {
                margin: 15px 0 0 0;
            }
            
            .hero-content h1 {
                font-size: 2.2rem;
            }
            
            .subtext {
                font-size: 1rem;
            }
            
            .section-title {
        font-size: 2.5rem;
        color: #1a1a2e;
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
    }

    .section-title:after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #6e45e2 0%, #88d3ce 100%);
        border-radius: 2px;
    }
    .section-subtitle {
        color: #6c757d;
        max-width: 700px;
        margin: 0 auto;
        font-size: 1.1rem;
    }
    
    .testimonial-container {
        position: relative;
        max-width: 1200px;
        margin: 0 auto 80px;
    }
    
    .testimonial-slider {
        display: flex;
        gap: 30px;
        padding: 20px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        margin-bottom: 30px;
    }
    
    .testimonial-slider::-webkit-scrollbar {
        display: none;
    }
    
    .testimonial-card {
        flex: 0 0 calc(33.333% - 20px);
        scroll-snap-align: start;
        background: white;
        border-radius: 16px;
        box-shadow: 0 15px 40px rgba(110, 69, 226, 0.1);
        padding: 30px;
        transition: transform 0.3s, box-shadow 0.3s;
        display: flex;
        flex-direction: column;
    }
    
    .testimonial-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(110, 69, 226, 0.15);
    }
    
    .testimonial-rating {
        color: #ffc107;
        margin-bottom: 20px;
    }
    
    .testimonial-content {
        flex-grow: 1;
        margin-bottom: 25px;
    }
    
    .testimonial-text {
        font-size: 1rem;
        line-height: 1.7;
        color: #4a4a4a;
        font-style: italic;
        position: relative;
        padding-left: 20px;
    }
    
    .testimonial-text:before {
        content: '"';
        position: absolute;
        left: 0;
        top: -10px;
        font-size: 3rem;
        color: rgba(110, 69, 226, 0.1);
        font-family: serif;
        line-height: 1;
    }
    
    .testimonial-author {
        display: flex;
        align-items: center;
        margin-top: auto;
    }
    
    .author-photo {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background-size: cover;
        background-position: center;
        margin-right: 15px;
        border: 3px solid #6e45e2;
    }
    
    .author-info {
        flex-grow: 1;
    }
    
    .author-info strong {
        display: block;
        font-size: 1.1rem;
        color: #1a1a2e;
    }
    
    .author-info span {
        font-size: 0.9rem;
        color: #6c757d;
    }
    
    .author-badge {
        display: inline-flex;
        align-items: center;
        background: rgba(110, 69, 226, 0.1);
        color: #6e45e2;
        padding: 4px 10px;
        border-radius: 30px;
        font-size: 0.8rem;
        margin-top: 5px;
    }
    
    .author-badge i {
        margin-right: 5px;
        font-size: 0.7rem;
    }
    
    .slider-controls {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }
    
    .slider-prev, .slider-next {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: white;
        border: none;
        color: #6e45e2;
        font-size: 1rem;
        cursor: pointer;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transition: all 0.3s;
    }
    
    .slider-prev:hover, .slider-next:hover {
        background: #6e45e2;
        color: white;
    }
    
    .slider-dots {
        display: flex;
        gap: 10px;
    }
    
    .slider-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: #e0e0e0;
        cursor: pointer;
        transition: all 0.3s;
    }
    
    .slider-dot.active {
        background: #6e45e2;
        transform: scale(1.2);
    }
    
    .stats-section {
        text-align: center;
        margin-top: 60px;
    }
    
    .stats-title {
        font-size: 1.5rem;
        color: #1a1a2e;
        margin-bottom: 40px;
    }
    
    .employment-stats {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .stat-item {
        text-align: center;
        min-width: 180px;
    }
    
    .stat-number {
        font-size: 3rem;
        font-weight: 700;
        background: linear-gradient(135deg, #6e45e2 0%, #88d3ce 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 10px;
    }
    
    .stat-label {
        color: #6c757d;
        font-size: 1rem;
    }
    
    @media (max-width: 992px) {
        .testimonial-card {
            flex: 0 0 calc(50% - 15px);
        }
    }
    
    @media (max-width: 768px) {
        .testimonial-card {
            flex: 0 0 100%;
        }
        
        .section-title {
            font-size: 2rem;
        }
        
        .stat-item {
            min-width: 140px;
        }
        
        .stat-number {
            font-size: 2.5rem;
        }
    }
            
            .value-proposition {
                padding: 20px;
            }
            
            .testimonial-card {
                flex: 0 0 95%;
            }
        }

        @media (max-width: 576px) {
            .hero-section {
                min-height: 500px;
            }
            
            .hero-content {
                text-align: center;
            }
            
            .btn {
                padding: 8px 20px;
                font-size: 14px;
            }
            
            .academy-cards {
                grid-template-columns: 1fr;
            }
            
            .employment-stats {
                flex-direction: column;
                align-items: center;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
            
            .newsletter-form input {
                border-radius: 30px;
                margin-bottom: 10px;
            }
            
            .newsletter-form button {
                border-radius: 30px;
                padding: 12px;
            }
        }
         .academy-card-link {
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .academy-card {
            /* Mantén todos tus estilos actuales */
            cursor: pointer; /* Cambia el cursor a mano al pasar sobre la tarjeta */
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .academy-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }


        /* Estilos generales y del modal */
        :root {
            --primary: #6e45e2;
            --secondary: #88d3ce;
            --dark: #1a1a2e;
            --light: #ffffff;
            --accent: #f05d5e;
            --gray: #f5f5f7;
            --dark-gray: #6c757d;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark);
            background: var(--gray);
            line-height: 1.6;
        }

        /* Estilos del modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 1001;
            overflow-y: auto;
        }

        .modal-content {
            background-color: white;
            margin: 5% auto;
            padding: 40px;
            border-radius: 12px;
            width: 90%;
            max-width: 600px;
            box-shadow: 0 10px 50px rgba(0, 0, 0, 0.2);
            position: relative;
            animation: modalopen 0.5s;
        }

        @keyframes modalopen {
            from {opacity: 0; transform: translateY(-50px);}
            to {opacity: 1; transform: translateY(0);}
        }

        .close-modal {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 24px;
            color: var(--dark-gray);
            cursor: pointer;
            transition: color 0.3s;
        }

        .close-modal:hover {
            color: var(--primary);
        }

        .modal-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .modal-logo {
            height: 60px;
            margin-bottom: 20px;
        }

        .modal-title {
            font-size: 1.8rem;
            color: var(--dark);
            margin-bottom: 10px;
        }

        .modal-subtitle {
            color: var(--dark-gray);
            font-size: 1rem;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--dark);
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-family: 'Poppins', sans-serif;
            font-size: 16px;
            transition: border-color 0.3s, box-shadow 0.3s;
        }

        .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(110, 69, 226, 0.2);
            outline: none;
        }

        .btn-submit {
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(110, 69, 226, 0.4);
        }

        .modal-footer {
            text-align: center;
            margin-top: 20px;
            font-size: 0.9rem;
            color: var(--dark-gray);
        }

        /* Estilos responsivos */
        @media (max-width: 768px) {
            .modal-content {
                margin: 10% auto;
                padding: 30px 20px;
                width: 95%;
            }
            
            .modal-title {
                font-size: 1.5rem;
            }
        }
    