:root {
    --bg-dark: #080810;
    --card-bg: rgba(13, 13, 25, 0.75);
    --primary: #ff007f; /* Magenta neón */
    --secondary: #00f0ff; /* Cyan neón */
    --text-main: #ffffff;
    --text-muted: #d0c0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Banner superior */
.promo-banner {
    background: linear-gradient(90deg, var(--primary), #b0005d);
    color: #fff;
    text-align: center;
    padding: 12px 0;
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(255, 0, 127, 0.5);
    position: relative;
    z-index: 10;
}

/* Contenedor del Logo Superior */
.logo-wrapper {
    position: absolute;
    top: 70px;
    left: 5%;
    z-index: 10;
}

.brand-logo {
    height: 90px;
    filter: drop-shadow(0 0 10px rgba(255, 0, 127, 0.5));
}

/* Hero Section con tu espectacular fondo real */
.hero {
    min-height: 100vh;
    background: linear-gradient(to right, rgba(8, 8, 16, 0.2) 30%, rgba(8, 8, 16, 0.85) 70%), url('hero-bg.jpg') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    padding: 120px 8%;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.11fr 1fr; /* Deja más espacio a la izquierda para tu personaje */
    width: 100%;
    align-items: center;
}

.hero-spacer {
    /* Mantiene vacío el sector izquierdo donde estás tú en la foto */
}

/* Tarjeta de texto con Glassmorphism premium sobre la ciudad */
.hero-content {
    background: var(--card-bg);
    border: 1px solid rgba(255, 0, 127, 0.25);
    padding: 50px 40px;
    border-radius: 16px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), inset 0 0 15px rgba(255, 0, 127, 0.1);
}

h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.highlight {
    color: var(--primary);
    text-shadow: 0 0 15px rgba(255, 0, 127, 0.8);
}

.subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    line-height: 1.6;
}

.badge {
    background: rgba(255, 0, 127, 0.2);
    border: 1px solid var(--primary);
    color: #ff55aa;
    padding: 6px 14px;
    border-radius: 4px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

/* Botones */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.15rem;
    letter-spacing: 0.5px;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: white;
    border: none;
    box-shadow: 0 0 15px rgba(255, 0, 127, 0.5);
    margin-right: 15px;
}

.btn-primary:hover {
    background: #ff1a8c;
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(255, 0, 127, 0.8);
}

.btn-secondary {
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(0, 240, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

/* Precios */
.pricing-section {
    padding: 100px 8%;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-dark), #120c1f);
}

.pricing-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.6rem;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.section-subtitle {
    color: var(--text-muted);
    margin-bottom: 60px;
    font-size: 1.1rem;
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.price-card {
    background: rgba(20, 15, 35, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 45px 30px;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    position: relative;
}

.price-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
    box-shadow: 0 15px 35px rgba(0, 240, 255, 0.15);
}

.price-card.featured {
    border: 2px solid var(--primary);
    background: rgba(30, 15, 40, 0.75);
    box-shadow: 0 0 30px rgba(255, 0, 127, 0.15);
}

.card-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.price-box {
    margin: 30px 0;
}

.price-amount {
    font-size: 3.8rem;
    font-weight: bold;
    font-family: 'Orbitron', sans-serif;
    color: #fff;
    text-shadow: 0 0 10px rgba(255,255,255,0.2);
}

.currency {
    font-size: 1.8rem;
    vertical-align: super;
    color: var(--secondary);
    font-weight: bold;
}

.per-class {
    font-size: 0.95rem;
    color: var(--text-muted);
    display: block;
    margin-top: 5px;
}

.benefits {
    list-style: none;
    text-align: left;
    margin-bottom: 35px;
    color: var(--text-muted);
}

.benefits li {
    margin-bottom: 14px;
    font-size: 1.05rem;
}

.btn-card {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-card:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Calendario */
.calendar-section {
    padding: 80px 8%;
    text-align: center;
    background-color: var(--bg-dark);
}

.calendar-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.4rem;
    margin-bottom: 15px;
}

.calendar-wrapper {
    margin-top: 40px;
    background: rgba(15, 10, 25, 0.8);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgba(0, 240, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* WhatsApp Flotante */
.whatsapp-float {
    position: fixed;
    bottom: 35px;
    right: 35px;
    width: 65px;
    height: 65px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    z-index: 100;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
}

.whatsapp-float img {
    width: 38px;
    height: 38px;
}

footer {
    text-align: center;
    padding: 40px;
    color: rgba(255,255,255,0.3);
    font-size: 0.95rem;
    border-top: 1px solid rgba(255,255,255,0.04);
    background-color: #05050b;
}

/* Responsividad para Dispositivos Móviles */
@media (max-width: 1024px) {
    .hero {
        background: linear-gradient(180deg, rgba(8, 8, 16, 0.4) 0%, rgba(8, 8, 16, 0.95) 100%), url('hero-bg.jpg') no-repeat center center/cover;
        padding-top: 180px;
        min-height: auto;
    }
    .hero-container {
        grid-template-columns: 1fr;
    }
    .hero-spacer {
        display: none;
    }
    .logo-wrapper {
        left: 50%;
        transform: translateX(-50%);
        top: 40px;
    }
    .brand-logo {
        height: 75px;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.1rem; }
    .hero-content { padding: 35px 20px; }
    .hero-buttons .btn {
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }
    .pricing-section h2 { font-size: 2rem; }
}