:root {
    --primary-dark: #0F1F38;
    --primary-main: #102140;
    --primary-light: #1A365D;
    --accent-neon: #00F3FF;
    --accent-neon-secondary: #FF00E6;
    --accent-success: #00FF9D;
    --accent-warning: #FFD700;
    --accent-danger: #FF006E;
    --neutral-dark: #000000;
    --neutral-medium: #8A9BA8;
    --neutral-light: #CCCCCC;
    --text-white: #FFFFFF;
    --text-blue-gray: #8A9BA8;
}
* {
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}
body {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-main) 100%);
    color: var(--text-white);
    overflow-x: hidden;
    line-height: 1.6;
}
/* Glassmorphism con efecto neon */
.glass {
    background: rgba(15, 31, 56, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 243, 255, 0.3);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2),
                0 0 15px rgba(0, 243, 255, 0.1);
}
.glass-card {
    background: rgba(16, 33, 64, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 243, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.1), transparent);
    transition: 0.5s;
}
.glass-card:hover::before {
    left: 100%;
}
.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
                0 0 25px rgba(0, 243, 255, 0.2);
    border-color: rgba(0, 243, 255, 0.5);
}
/* Navbar Glass con neon */
.navbar {
    background: rgba(15, 31, 56, 0.7) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 243, 255, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1),
                0 0 10px rgba(0, 243, 255, 0.1);
}
.navbar.scrolled {
    background: rgba(15, 31, 56, 0.9) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2),
                0 0 15px rgba(0, 243, 255, 0.15);
}
/* Logo con efecto neon */
.logo h1 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-white);
    line-height: 1.1;
    margin: 0;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
.logo .academy {
    font-size: 0.7em;
    font-weight: 400;
    color: var(--text-blue-gray);
}
/* Buttons con efecto neon */
.btn-glass {
    background: rgba(0, 243, 255, 0.1) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 243, 255, 0.4) !important;
    color: var(--text-white) !important;
    border-radius: 12px;
    padding: 14px 32px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.btn-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.2), transparent);
    transition: 0.5s;
}
.btn-glass:hover::before {
    left: 100%;
}
.btn-glass:hover {
    background: rgba(0, 243, 255, 0.2) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 243, 255, 0.3),
                0 0 15px rgba(0, 243, 255, 0.2);
    color: var(--text-white) !important;
    border-color: rgba(0, 243, 255, 0.6) !important;
}
/* Hero section con efecto neon */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.1), rgba(255, 0, 230, 0.05));
    z-index: 1;
}
.hero > * {
    position: relative;
    z-index: 2;
}
.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-white);
    text-shadow: 0 4px 20px rgba(0,0,0,0.3),
                 0 0 20px rgba(0, 243, 255, 0.3);
}
.hero .lead {
    font-size: 1.4rem;
    color: var(--text-blue-gray);
}
/* Sections */
section {
    padding: 100px 0;
}
.section-title {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-white), var(--accent-neon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
}
.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-blue-gray);
    max-width: 600px;
    margin: 0 auto 4rem;
}
/* Features con efecto neon */
.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 243, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--accent-neon);
    border: 1px solid rgba(0, 243, 255, 0.3);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.2);
    transition: all 0.3s ease;
}
.feature-icon:hover {
    box-shadow: 0 0 25px rgba(0, 243, 255, 0.4);
    transform: scale(1.1);
}
/* Price con efecto neon */
.price-big {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-success);
    text-shadow: 0 0 10px rgba(0, 255, 157, 0.5);
}
/* WhatsApp Float con efecto neon */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background: var(--accent-success);
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 255, 157, 0.5),
                0 0 15px rgba(0, 255, 157, 0.4);
    z-index: 100;
    animation: whatsapp-bounce 2s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
    border: 1px solid rgba(0, 255, 157, 0.3);
}
.whatsapp-float:hover {
    box-shadow: 2px 2px 15px rgba(0, 255, 157, 0.7),
                0 0 25px rgba(0, 255, 157, 0.6);
    transform: scale(1.1);
}
@keyframes whatsapp-bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Footer con efecto neon */
footer {
    background: rgba(15, 31, 56, 0.8);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 243, 255, 0.2);
}
footer a {
    color: var(--text-blue-gray);
    transition: color 0.3s;
    text-decoration: none;
}
footer a:hover {
    color: var(--accent-neon);
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}

/* Efectos de texto neon adicionales */
.neon-text {
    text-shadow: 0 0 10px currentColor,
                 0 0 20px currentColor,
                 0 0 40px currentColor;
}
.neon-border {
    border: 1px solid var(--accent-neon);
    box-shadow: 0 0 10px var(--accent-neon),
                inset 0 0 10px var(--accent-neon);
}

/* Estilos para las nuevas secciones */
.social-link {
    color: var(--text-light);
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    padding: 20px;
    border-radius: 15px;
}

.social-link:hover {
    color: var(--accent-success);
    transform: translateY(-5px);
    background: rgba(255,255,255,0.05);
}

.social-link i {
    transition: all 0.3s ease;
}

.social-link:hover i {
    transform: scale(1.1);
}

.contact-info h5 {
    font-size: 1.1rem;
}

.map-container {
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .section-title { font-size: 2rem; }
    .whatsapp-float { width: 50px; height: 50px; font-size: 25px; bottom: 20px; right: 20px; }
}