* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #fff;
            background-color: #0a0a2e;
            overflow-x: hidden;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        h1, h2, h3, h4 {
            margin-bottom: 20px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        h1 {
            font-size: 3rem;
            color: #ff00ff;
            text-shadow: 0 0 10px #ff00ff;
        }

        h2 {
            font-size: 2.5rem;
            color: #00ffff;
            text-shadow: 0 0 8px #00ffff;
            text-align: center;
            margin-bottom: 40px;
        }

        h3 {
            font-size: 1.8rem;
            color: #ff00ff;
        }

        h4 {
            font-size: 1.2rem;
            color: #00ffff;
        }

        p {
            margin-bottom: 20px;
            font-size: 1rem;
        }

        a {
            color: #00ffff;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        a:hover {
            color: #ff00ff;
            text-shadow: 0 0 5px #ff00ff;
        }

        .cta-button {
            display: inline-block;
            padding: 12px 30px;
            background: linear-gradient(45deg, #ff00ff, #00ffff);
            color: #fff;
            border: none;
            border-radius: 50px;
            font-weight: bold;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 0, 255, 0.4);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 0, 255, 0.6);
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(10, 10, 46, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
        }

        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo a {
            font-size: 1.8rem;
            font-weight: bold;
            color: #ff00ff;
            text-shadow: 0 0 10px #ff00ff;
        }

        .main-nav ul {
            display: flex;
            list-style: none;
        }

        .main-nav ul li {
            margin-left: 30px;
        }

        .main-nav ul li a {
            color: #fff;
            font-weight: bold;
            text-transform: uppercase;
            position: relative;
        }

        .main-nav ul li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #ff00ff, #00ffff);
            transition: width 0.3s ease;
        }

        .main-nav ul li a:hover::after {
            width: 100%;
        }

        .burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .burger-menu span {
            width: 25px;
            height: 3px;
            background: #fff;
            margin: 3px 0;
            transition: 0.3s;
        }

        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding: 100px 0 50px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('../img/19.webp') no-repeat center center;
            background-size: cover;
            opacity: 0.3;
            z-index: -1;
            animation: parallax 20s linear infinite;
        }

        @keyframes parallax {
            0% {
                transform: translateX(0) translateY(0);
            }
            100% {
                transform: translateX(-20px) translateY(-20px);
            }
        }

        .hero-content {
            max-width: 600px;
            z-index: 1;
            animation: fadeInLeft 1s ease;
        }

        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        .hero-image {
            position: absolute;
            right: 10%;
            top: 50%;
            transform: translateY(-50%);
            width: 40%;
            max-width: 500px;
            z-index: 1;
            animation: fadeInRight 1s ease;
        }

        .hero-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 0 30px rgba(255, 0, 255, 0.5);
        }

        section {
            padding: 80px 0;
            position: relative;
        }

        section:nth-child(even) {
            background: rgba(0, 255, 255, 0.05);
        }

        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .feature {
            background: rgba(255, 0, 255, 0.1);
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 0, 255, 0.2);
        }

        .feature:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(255, 0, 255, 0.3);
            background: rgba(255, 0, 255, 0.2);
        }

        .feature img {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 50%;
            margin-bottom: 20px;
            border: 2px solid #00ffff;
        }

        .class-types {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .class-type {
            background: rgba(0, 255, 255, 0.1);
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 255, 255, 0.2);
        }

        .class-type:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
            background: rgba(0, 255, 255, 0.2);
        }

        .class-type img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 20px;
        }

        .pricing-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .pricing-card {
            background: rgba(10, 10, 46, 0.8);
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 0, 255, 0.3);
            position: relative;
            overflow: hidden;
        }

        .pricing-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #ff00ff, #00ffff);
        }

        .pricing-card.featured {
            transform: scale(1.05);
            box-shadow: 0 0 30px rgba(255, 0, 255, 0.4);
        }

        .pricing-card.featured::after {
            content: 'Más Popular';
            position: absolute;
            top: 15px;
            right: -30px;
            background: #ff00ff;
            color: #fff;
            padding: 5px 40px;
            transform: rotate(45deg);
            font-size: 0.8rem;
        }

        .price {
            font-size: 3rem;
            color: #00ffff;
            margin: 20px 0;
        }

        .pricing-card ul {
            list-style: none;
            margin: 30px 0;
        }

        .pricing-card ul li {
            margin-bottom: 15px;
            position: relative;
            padding-left: 25px;
        }

        .pricing-card ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #00ffff;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 50px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            height: 250px;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .testimonial-slider {
            position: relative;
            overflow: hidden;
            margin-top: 50px;
        }

        .testimonial {
            background: rgba(255, 0, 255, 0.1);
            border-radius: 10px;
            padding: 30px;
            margin-bottom: 30px;
            border: 1px solid rgba(255, 0, 255, 0.2);
        }

        .testimonial-content {
            font-style: italic;
            margin-bottom: 20px;
            position: relative;
            padding: 0 20px;
        }

        .testimonial-content::before {
            content: '"';
            position: absolute;
            left: -10px;
            top: -10px;
            font-size: 3rem;
            color: rgba(255, 0, 255, 0.3);
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .testimonial-author img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin-right: 15px;
            border: 2px solid #00ffff;
        }

        .faq-items {
            margin-top: 50px;
        }

        .faq-item {
            background: rgba(0, 255, 255, 0.1);
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 20px;
            border: 1px solid rgba(0, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            background: rgba(0, 255, 255, 0.2);
        }

        .faq-item h3 {
            margin-bottom: 15px;
            color: #00ffff;
        }

        .disclaimer {
            background: rgba(255, 0, 255, 0.1);
            border-top: 1px solid rgba(255, 0, 255, 0.3);
            border-bottom: 1px solid rgba(255, 0, 255, 0.3);
        }

        .disclaimer .container {
            text-align: center;
            padding: 20px 0;
        }

        footer {
            background: rgba(10, 10, 46, 0.9);
            padding: 50px 0 20px;
            border-top: 1px solid rgba(0, 255, 255, 0.3);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-logo h3 {
            color: #ff00ff;
            text-shadow: 0 0 10px #ff00ff;
        }

        .footer-links h4, .footer-contact h4 {
            color: #00ffff;
            margin-bottom: 20px;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links ul li {
            margin-bottom: 10px;
        }

        .footer-contact p {
            margin-bottom: 5px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 0, 255, 0.2);
            color: rgba(255, 255, 255, 0.7);
        }

        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(10, 10, 46, 0.95);
            padding: 20px 0;
            z-index: 1000;
            border-top: 1px solid rgba(255, 0, 255, 0.3);
            display: none;
        }

        .cookie-banner .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .cookie-banner p {
            margin: 0;
            flex: 1;
        }

        .cookie-accept {
            margin-left: 20px;
        }

        .modal {
            display: none;
            position: fixed;
            z-index: 1001;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            overflow: auto;
        }

        .modal-content {
            background: linear-gradient(135deg, rgba(10, 10, 46, 0.95), rgba(30, 10, 60, 0.95));
            margin: 10% auto;
            padding: 30px;
            border: 1px solid rgba(255, 0, 255, 0.3);
            border-radius: 10px;
            width: 80%;
            max-width: 600px;
            position: relative;
            box-shadow: 0 0 30px rgba(255, 0, 255, 0.5);
        }

        .close-modal {
            position: absolute;
            right: 20px;
            top: 20px;
            font-size: 30px;
            font-weight: bold;
            color: #fff;
            cursor: pointer;
        }

        .close-modal:hover {
            color: #ff00ff;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 5px;
            color: #00ffff;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 10px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 0, 255, 0.3);
            border-radius: 5px;
            color: #fff;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #00ffff;
            box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
        }

        .success-message {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(10, 10, 46, 0.95);
            padding: 30px;
            border-radius: 10px;
            border: 1px solid rgba(0, 255, 255, 0.3);
            box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
            z-index: 1002;
            text-align: center;
            display: none;
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            opacity: 0;
            animation: fadeInUp 1s ease forwards;
        }

        .marquee {
            width: 100%;
            overflow: hidden;
            white-space: nowrap;
            box-sizing: border-box;
            background: rgba(255, 0, 255, 0.1);
            padding: 10px 0;
            margin: 20px 0;
        }

        .marquee-content {
            display: inline-block;
            padding-left: 100%;
            animation: marquee 20s linear infinite;
        }

        @keyframes marquee {
            0% {
                transform: translate(0, 0);
            }
            100% {
                transform: translate(-100%, 0);
            }
        }

        @media (max-width: 768px) {
            .main-nav {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: rgba(10, 10, 46, 0.95);
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                padding-top: 50px;
                transition: left 0.3s ease;
            }

            .main-nav.active {
                left: 0;
            }

            .main-nav ul {
                flex-direction: column;
            }

            .main-nav ul li {
                margin: 15px 0;
            }

            .burger-menu {
                display: flex;
            }

            .burger-menu.active span:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }

            .burger-menu.active span:nth-child(2) {
                opacity: 0;
            }

            .burger-menu.active span:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }

            h1 {
                font-size: 2.5rem;
            }

            h2 {
                font-size: 2rem;
            }

            .hero-image {
                position: static;
                transform: none;
                width: 100%;
                margin-top: 30px;
            }

            .hero {
                flex-direction: column;
                text-align: center;
            }

            .pricing-card.featured {
                transform: none;
            }

            .cookie-banner .container {
                flex-direction: column;
                text-align: center;
            }

            .cookie-accept {
                margin-left: 0;
                margin-top: 15px;
            }
        }

        @media (max-width: 480px) {
            h1 {
                font-size: 2rem;
            }

            h2 {
                font-size: 1.8rem;
            }

            .modal-content {
                width: 95%;
                padding: 20px;
            }
        }

