        /*
        BASE STYLES (copied from previous pages for consistency)
        */
        :root {
            --primary-color: #000;
            --secondary-color: #fff;
            --accent-color: #FFD700;
            --text-color: #333;
            --light-grey: #f4f4f4;
            --dark-grey: #555;
            --header-height: 80px;

            --whatsapp-green: #25D366;
            --gmail-red: #EA4335;
            --google-blue: #4285F4;
            --google-green: #0F9D58;
            --google-yellow: #F4B400;
            --google-red: #DB4437;
            --facebook-blue: #1877F2;
            --instagram-gradient: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);

            --error-color: #dc3545;
            --success-color: #28a745;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: auto;
            /* Fix for custom SPA routing */
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--secondary-color);
            overflow-x: hidden;
        }

        a {
            color: var(--primary-color);
            text-decoration: none;
        }

        ul {
            list-style: none;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Montserrat', sans-serif;
            color: var(--primary-color);
            line-height: 1.2;
            margin-bottom: 0.8em;
        }

        p {
            margin-bottom: 1em;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Hero Section */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--secondary-color);
            text-align: center;
            overflow: hidden;
            margin-top: var(--header-height);
        }

        .hero video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            z-index: -1;
            transform: translate(-50%, -50%);
            object-fit: cover;
            filter: brightness(0.5);
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            z-index: 0;
        }

        .hero-content {
            z-index: 1;
            padding: 20px;
            max-width: 800px;
        }

        .hero-content h1 {
            font-size: 3.5em;
            margin-bottom: 20px;
            color: var(--secondary-color);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        }

        /* Estilo para el texto MBA como el logo */
        .mba-text {
            display: inline-block;
            font-weight: 700;
            letter-spacing: -2px;
            background: linear-gradient(to right, #000, #333, #000);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.6),
                0px 0px 20px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
        }

        .mba-text:hover {
            transform: scale(1.02) translateY(-2px);
            text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.8),
                0px 0px 25px rgba(0, 0, 0, 0.5);
        }

        .hero-content p {
            font-size: 1.2em;
            margin-bottom: 30px;
            color: rgba(255, 255, 255, 0.9);
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
        }

        .btn {
            display: inline-block;
            background-color: var(--accent-color);
            color: var(--primary-color);
            padding: 15px 30px;
            border-radius: 5px;
            font-weight: 600;
            transition: transform 0.3s ease, background-color 0.3s ease;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .btn:hover {
            transform: translateY(-3px);
            background-color: #e6c100;
        }

        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--secondary-color);
            color: var(--secondary-color);
            margin-left: 20px;
            box-shadow: none;
        }

        .btn-outline:hover {
            background-color: rgba(255, 255, 255, 0.1);
            border-color: var(--accent-color);
            color: var(--accent-color);
        }

        /* Contact Buttons Bar (WhatsApp y Gmail/Email) */
        .contact-buttons-bar {
            background-color: var(--secondary-color);
            padding: 30px 0;
            text-align: center;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
            flex-wrap: wrap;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 50;
        }

        .contact-buttons-bar .contact-button {
            display: inline-flex;
            align-items: center;
            padding: 15px 30px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1.1em;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-shadow: none;
            cursor: pointer;
        }

        .contact-buttons-bar .contact-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        .contact-buttons-bar .contact-button i {
            font-size: 1.8em;
            margin-right: 12px;
            transition: transform 0.3s ease;
        }

        .contact-buttons-bar .contact-button:hover i {
            transform: scale(1.1);
        }

        .contact-button.whatsapp-btn {
            background-color: var(--whatsapp-green);
            color: var(--secondary-color);
        }

        .contact-button.whatsapp-btn i {
            color: var(--secondary-color);
        }

        .contact-button.whatsapp-btn:hover {
            background-color: #20b05b;
        }

        .contact-button.gmail-btn {
            background-color: var(--secondary-color);
            color: var(--text-color);
            border: 2px solid var(--light-grey);
        }

        .contact-button.gmail-btn i {
            background: linear-gradient(to right, var(--google-blue) 0%, var(--google-blue) 25%, var(--google-red) 25%, var(--google-red) 50%, var(--google-yellow) 50%, var(--google-yellow) 75%, var(--google-green) 75%, var(--google-green) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            color: var(--gmail-red);
        }

        .contact-button.gmail-btn:hover {
            background-color: var(--light-grey);
        }

        /* Section Styling */
        section {
            padding: 80px 0;
            overflow: hidden;
        }

        section:nth-of-type(even) {
            background-color: var(--light-grey);
        }

        .section-title {
            text-align: center;
            font-size: 2.8em;
            margin-bottom: 60px;
            position: relative;
            padding-bottom: 10px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: 0;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--accent-color);
            border-radius: 2px;
        }

        #features {
            padding-bottom: 100px;
        }

        #features .section-title {
            margin-bottom: 40px;
        }

        /* Features Section */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            text-align: center;
        }

        .feature-item {
            background-color: var(--secondary-color);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .feature-item .icon-wrapper {
            position: relative;
            display: inline-block;
            overflow: hidden;
            width: 80px;
            height: 80px;
            margin-bottom: 20px;
            border-radius: 50%;
            background-color: var(--light-grey);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: auto;
            margin-right: auto;
        }

        .feature-item .icon-wrapper i {
            font-size: 3em;
            transition: transform 0.3s ease, color 0.3s ease;
        }

        .feature-item:nth-child(1) .icon-wrapper i {
            color: #007bff;
        }

        .feature-item:nth-child(2) .icon-wrapper i {
            color: #28a745;
        }

        .feature-item:nth-child(3) .icon-wrapper i {
            color: #dc3545;
        }

        .feature-item:nth-child(4) .icon-wrapper i {
            color: #6f42c1;
        }

        .feature-item:hover .icon-wrapper i {
            transform: scale(1.1);
            color: var(--accent-color);
        }

        .feature-item .icon-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: -75%;
            width: 50%;
            height: 100%;
            background: rgba(255, 255, 255, 0.6);
            transform: skewX(-20deg);
            transition: all 0.7s ease;
        }

        .feature-item:hover .icon-wrapper::before {
            left: 125%;
        }

        .feature-item h3 {
            font-size: 1.5em;
            margin-bottom: 15px;
            color: var(--primary-color);
        }

        .feature-item p {
            font-size: 0.95em;
            color: var(--dark-grey);
        }

        /* Products Grid (General) */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        /* Video Section for products */
        .video-products-section {
            background-color: var(--dark-grey);
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 70vh;
            position: relative;
            overflow: hidden;
        }

        .video-products-section video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            z-index: 0;
            transform: translate(-50%, -50%);
            object-fit: cover;
            filter: brightness(0.7);
        }

        .video-products-section .video-overlay-content {
            z-index: 1;
            color: var(--secondary-color);
            text-align: center;
            padding: 20px;
            max-width: 800px;
        }

        .video-products-section .video-overlay-content h2 {
            color: var(--secondary-color);
            font-size: 3em;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        }

        .video-products-section .video-overlay-content p {
            font-size: 1.2em;
            margin-bottom: 30px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
        }

        /* Testimonials Section */
        .testimonials-slider {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            padding-bottom: 20px;
            justify-content: flex-start;
        }

        .testimonial-card {
            flex: 0 0 calc(33.33% - 30px);
            min-width: 300px;
            max-width: 380px;
            margin: 0 15px;
            scroll-snap-align: center;
            background-color: var(--secondary-color);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .testimonial-card blockquote {
            font-style: italic;
            margin-bottom: 20px;
            color: var(--dark-grey);
            font-size: 1.1em;
        }

        .testimonial-card .author {
            font-weight: 600;
            color: var(--primary-color);
            font-size: 1.05em;
        }

        .testimonial-card .rating {
            color: var(--accent-color);
            margin-top: 10px;
        }

        /* Call to Action Section */
        .cta {
            background-color: var(--primary-color);
            color: var(--secondary-color);
            text-align: center;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .cta h2 {
            color: var(--secondary-color);
            font-size: 3em;
            margin-bottom: 25px;
        }

        .cta p {
            font-size: 1.3em;
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            color: rgba(255, 255, 255, 0.9);
        }

        .cta-actions .btn-outline {
            background-color: transparent;
            border: 2px solid var(--secondary-color);
            color: var(--secondary-color);
            box-shadow: none;
        }

        .cta-actions .btn-outline:hover {
            background-color: rgba(255, 255, 255, 0.1);
            border-color: var(--accent-color);
            color: var(--accent-color);
        }

        /* Responsive Overrides specific to Home */
        @media (max-width: 992px) {
            .hero-content h1 {
                font-size: 3em;
            }

            .testimonial-card {
                flex: 0 0 calc(50% - 30px);
                max-width: 450px;
            }

            .video-products-section {
                min-height: 60vh;
            }

            .video-products-section .video-overlay-content h2 {
                font-size: 2.5em;
            }
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5em;
            }

            .testimonial-card {
                flex: 0 0 90%;
                max-width: unset;
            }

            .video-products-section {
                min-height: 50vh;
            }

            .video-products-section .video-overlay-content h2 {
                font-size: 2em;
            }

            .contact-buttons-bar {
                flex-direction: column;
                gap: 15px;
            }

            .contact-buttons-bar .contact-button {
                width: 90%;
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 1.8em;
            }

            .hero .btn {
                display: block;
                width: 80%;
                margin: 15px auto;
            }

            .video-products-section .video-overlay-content h2 {
                font-size: 1.6em;
            }
        }