        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --azul-principal: #0047AB;
            --azul-oscuro: #002366;
            --azul-claro: #4169E1;
            --amarillo-principal: #FFD700;
            --amarillo-oscuro: #FFA500;
            --verde: #28a745;
            --rojo: #DC3545;
            --gris: #495057;
            --gris-claro: #f8f9fa;
            --blanco: #ffffff;
            --negro: #212529;
            --morado: #7B2CBF;
            --naranja: #F77F00;
            --cyan: #06AED5;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--negro);
            overflow-x: hidden;
        }

        /* Navbar */
        nav {
            background: var(--blanco);
            padding: 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
            border-bottom: 3px solid var(--amarillo-principal);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.8rem 3rem;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo-img {
            height: 70px;
            width: auto;
            object-fit: contain;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 0.3rem;
            flex: 1;
            justify-content: flex-end;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            color: var(--azul-oscuro);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            padding: 1rem 1.3rem;
            display: block;
            transition: all 0.3s;
            border-radius: 8px;
        }

        .nav-link:hover {
            background: var(--amarillo-principal);
            color: var(--azul-oscuro);
            transform: translateY(-2px);
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--blanco);
            min-width: 280px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
            border-radius: 12px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.3s;
            padding: 1rem 0;
            margin-top: 0.5rem;
            border-top: 3px solid var(--amarillo-principal);
        }

        .nav-item:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-menu a {
            display: block;
            padding: 0.75rem 1.5rem;
            color: var(--azul-oscuro);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            transition: all 0.3s;
            border-left: 3px solid transparent;
        }

        .dropdown-menu a:hover {
            background: var(--gris-claro);
            border-left-color: var(--amarillo-principal);
            padding-left: 2rem;
        }

        .mobile-toggle {
            display: none;
            font-size: 1.8rem;
            color: var(--azul-principal);
            cursor: pointer;
            padding: 0.5rem;
        }

        /* Hero Básicos */
        .hero-basicos {
            margin-top: 90px;
            height: 60vh;
            background: linear-gradient(135deg, rgba(123,44,191,0.9), rgba(247,127,0,0.85)), 
                        url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?w=1600&h=900&fit=crop');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .hero-basicos::before {
            content: '🎯';
            position: absolute;
            font-size: 15rem;
            top: -50px;
            right: -50px;
            opacity: 0.1;
            animation: float 6s ease-in-out infinite;
        }

        .hero-basicos::after {
            content: '🎵';
            position: absolute;
            font-size: 10rem;
            bottom: -30px;
            left: -30px;
            opacity: 0.1;
            animation: float 8s ease-in-out infinite;
        }

        .hero-content {
            text-align: center;
            color: white;
            z-index: 2;
            padding: 2rem;
        }

        .hero-content h1 {
            font-size: 4rem;
            font-weight: 800;
            text-shadow: 2px 2px 20px rgba(0,0,0,0.3);
            margin-bottom: 1rem;
        }

        .hero-content .subtitle {
            font-size: 1.4rem;
            opacity: 0.95;
            font-weight: 300;
        }

        /* Contenido Principal */
        .main-content {
            padding: 6rem 2rem;
            background: white;
        }

        .content-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .content-image {
            width: 100%;
            height: 500px;
            border-radius: 25px;
            background: url('https://images.unsplash.com/photo-1427504494785-3a9ca7044f45?w=800&h=800&fit=crop');
            background-size: cover;
            background-position: center;
            box-shadow: 0 20px 60px rgba(123,44,191,0.3);
            position: relative;
            overflow: hidden;
        }

        .content-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(123,44,191,0.1), rgba(247,127,0,0.1));
        }

        .content-text {
            padding: 2rem;
        }

        .content-label {
            display: inline-block;
            background: linear-gradient(135deg, var(--morado), var(--naranja));
            color: white;
            padding: 0.6rem 1.8rem;
            border-radius: 30px;
            font-weight: 700;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 2rem;
        }

        .content-text h2 {
            font-size: 3rem;
            background: linear-gradient(135deg, var(--morado), var(--naranja));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 2rem;
            font-weight: 800;
            line-height: 1.2;
        }

        .content-text p {
            font-size: 1.1rem;
            color: var(--gris);
            line-height: 1.9;
            text-align: justify;
            margin-bottom: 1.5rem;
        }

        .content-text p:last-of-type {
            font-weight: 600;
            color: var(--azul-oscuro);
        }

        /* Características */
        .caracteristicas-section {
            background: var(--gris-claro);
            padding: 5rem 2rem;
        }

        .caracteristicas-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: 3rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--morado), var(--naranja));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: var(--gris);
            margin-bottom: 4rem;
        }

        .caracteristicas-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 3rem;
        }

        .caracteristica-card {
            background: white;
            padding: 3rem 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.4s;
            border-top: 5px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .caracteristica-card:nth-child(1) {
            border-top-color: var(--morado);
        }

        .caracteristica-card:nth-child(2) {
            border-top-color: var(--naranja);
        }

        .caracteristica-card:nth-child(3) {
            border-top-color: var(--cyan);
        }

        .caracteristica-card:nth-child(4) {
            border-top-color: var(--amarillo-principal);
        }

        .caracteristica-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            opacity: 0.05;
            transition: all 0.4s;
        }

        .caracteristica-card:nth-child(1)::before {
            background: var(--morado);
        }

        .caracteristica-card:nth-child(2)::before {
            background: var(--naranja);
        }

        .caracteristica-card:nth-child(3)::before {
            background: var(--cyan);
        }

        .caracteristica-card:nth-child(4)::before {
            background: var(--amarillo-principal);
        }

        .caracteristica-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }

        .caracteristica-card:hover::before {
            top: -30%;
            right: -30%;
        }

        .caracteristica-icon {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            display: block;
        }

        .caracteristica-card h3 {
            font-size: 1.6rem;
            color: var(--azul-principal);
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .caracteristica-card p {
            color: var(--gris);
            line-height: 1.8;
            font-size: 1.05rem;
        }

        /* Destacados */
        .destacados-section {
            padding: 5rem 2rem;
            background: white;
        }

        .destacados-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .destacados-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .destacado-card {
            background: var(--gris-claro);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }

        .destacado-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .destacado-image {
            height: 200px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .destacado-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, transparent, rgba(0,0,0,0.3));
        }

        .destacado-card:nth-child(1) .destacado-image {
            background-image: url('https://images.unsplash.com/photo-1517486808906-6ca8b3f04846?w=400&h=300&fit=crop');
        }

        .destacado-card:nth-child(2) .destacado-image {
            background-image: url('https://images.unsplash.com/photo-1529390079861-591de354faf5?w=400&h=300&fit=crop');
        }

        .destacado-card:nth-child(3) .destacado-image {
            background-image: url('https://images.unsplash.com/photo-1511671782779-c97d3d27a1d4?w=400&h=300&fit=crop');
        }

        .destacado-content {
            padding: 2rem;
        }

        .destacado-content h3 {
            font-size: 1.4rem;
            color: var(--azul-principal);
            margin-bottom: 0.8rem;
            font-weight: 700;
        }

        .destacado-content p {
            color: var(--gris);
            line-height: 1.7;
            font-size: 0.95rem;
        }

        /* Banner Banda Latina */
        .banda-section {
            background: linear-gradient(135deg, var(--morado), var(--naranja));
            padding: 4rem 2rem;
            position: relative;
            overflow: hidden;
        }

        .banda-section::before {
            content: '🎺';
            position: absolute;
            font-size: 20rem;
            opacity: 0.1;
            right: -50px;
            top: 50%;
            transform: translateY(-50%) rotate(-15deg);
        }

        .banda-container {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
            color: white;
            position: relative;
            z-index: 2;
        }

        .banda-container h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.2);
        }

        .banda-container p {
            font-size: 1.2rem;
            line-height: 1.8;
            opacity: 0.95;
        }

        /* Footer */
        footer {
            background: var(--negro);
            color: white;
            padding: 3rem 2rem 1.5rem;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            color: var(--amarillo-principal);
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .footer-section p {
            color: rgba(255,255,255,0.8);
            margin-bottom: 0.8rem;
            line-height: 1.8;
            font-size: 0.95rem;
        }

        .footer-section a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            display: block;
            margin-bottom: 0.6rem;
            transition: all 0.3s;
        }

        .footer-section a:hover {
            color: var(--amarillo-principal);
            padding-left: 10px;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
            align-items: center;
        }

        .social-link {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            color: white;
            text-decoration: none;
            position: relative;
            overflow: hidden;
            flex-shrink: 0;
        }

        .social-link.facebook {
            background: #1877f2;
        }

        .social-link.instagram {
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
        }

        .social-link:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 25px rgba(0,0,0,0.3);
        }

        .social-link svg {
            width: 24px;
            height: 24px;
            fill: white;
            flex-shrink: 0;
            display: block;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.6);
            font-size: 0.9rem;
        }

        /* Animaciones */
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(5deg); }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .nav-menu {
                display: none;
            }

            .mobile-toggle {
                display: block;
            }

            .content-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .caracteristicas-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .destacados-grid {
                grid-template-columns: 1fr;
            }

            .footer-container {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .hero-basicos {
                height: 50vh;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .content-text h2 {
                font-size: 2rem;
            }

            .content-text p {
                font-size: 1rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .banda-container h2 {
                font-size: 2rem;
            }

            .footer-container {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 2rem;
            }

            .content-image {
                height: 350px;
            }
        }

        .nav-menu.active {
            display: flex;
            flex-direction: column;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: white;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            padding: 1rem 0;
            z-index: 999;
        }

        .nav-menu.active .nav-item {
            width: 100%;
        }

        .nav-menu.active .nav-link {
            padding: 1rem 2rem;
            border-radius: 0;
        }

        .nav-menu.active .dropdown-menu {
            position: static;
            opacity: 1;
            visibility: visible;
            transform: none;
            box-shadow: none;
            border: none;
            border-left: 3px solid var(--amarillo-principal);
            margin: 0;
            padding: 0.5rem 0;
            background: var(--gris-claro);
            display: none;
        }

        .nav-menu.active .nav-item.active .dropdown-menu {
            display: block;
        }
