/* ============================================
   GYM-ROBOT-WARRIOR - MASTER STYLESHEET
   Futuristic Android Warrior Design System
   ============================================ */

/* ===== VARIABLES CSS ===== */
:root {
    /* Colores primarios */
    --cyan: #00f0ff;
    --cyan-dark: #0099aa;
    --cyan-glow: rgba(0, 240, 255, 0.3);
    --red: #ff0040;
    --red-dark: #aa0028;
    --red-glow: rgba(255, 0, 64, 0.3);
    --purple: #b000ff;
    --purple-glow: rgba(176, 0, 255, 0.3);
    --gold: #ffd700;
    --gold-glow: rgba(255, 215, 0, 0.3);
    
    /* Fondos */
    --bg-primary: #0a0a0f;
    --bg-secondary: #0d0d15;
    --bg-tertiary: #12121f;
    --bg-card: rgba(15, 15, 25, 0.85);
    --bg-card-hover: rgba(20, 20, 35, 0.95);
    
    /* Texto */
    --text-primary: #ffffff;
    --text-secondary: #a0a0b8;
    --text-muted: #5a5a7a;
    
    /* Bordes */
    --border-color: rgba(0, 240, 255, 0.15);
    --border-glow: rgba(0, 240, 255, 0.4);
    
    /* Fuentes */
    --font-display: 'Orbitron', sans-serif;
    --font-heading: 'Rajdhani', sans-serif;
    --font-body: 'Exo 2', sans-serif;
    
    /* Transiciones */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: default;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== CUSTOM CURSOR ===== */
.custom-cursor {
    width: 12px;
    height: 12px;
    border: 2px solid var(--cyan);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease;
}

@media (max-width: 768px) {
    .custom-cursor, .cursor-follower { display: none; }
}

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-container {
    text-align: center;
}

.cyber-loader {
    width: 100px;
    height: 100px;
    position: relative;
    margin: 0 auto 30px;
}

.loader-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid transparent;
}

.loader-ring:nth-child(1) {
    border-top-color: var(--cyan);
    animation: spin 1.5s linear infinite;
}

.loader-ring:nth-child(2) {
    border-right-color: var(--red);
    animation: spin 2s linear infinite reverse;
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
}

.loader-ring:nth-child(3) {
    border-bottom-color: var(--purple);
    animation: spin 1s linear infinite;
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
}

.loader-core {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--cyan);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px var(--cyan), 0 0 40px var(--cyan-glow);
    animation: pulse 1s ease-in-out infinite;
}

.loader-text {
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--cyan);
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.loader-text span {
    display: inline-block;
    animation: glitchText 3s infinite;
}

.loader-bar {
    width: 200px;
    height: 3px;
    background: rgba(0, 240, 255, 0.1);
    border-radius: 2px;
    margin: 0 auto;
    overflow: hidden;
}

.loader-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--cyan), var(--purple));
    border-radius: 2px;
    animation: loadBar 2s ease-in-out forwards;
}

@keyframes loadBar {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

/* ===== PARTICLES CANVAS ===== */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition-normal);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    box-shadow: 0 0 20px var(--cyan-glow);
    animation: logoGlow 3s ease-in-out infinite;
}

.logo-text {
    font-family: var(--font-display);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 2px;
}

.logo-gym { color: var(--text-primary); font-size: 18px; }
.logo-separator { color: var(--text-muted); font-size: 18px; }
.logo-robot { color: var(--cyan); font-size: 18px; }
.logo-warrior { color: var(--red); font-size: 18px; }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 8px 14px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-normal);
    color: var(--text-secondary);
    position: relative;
    overflow: hidden;
}

.nav-link i {
    font-size: 12px;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--cyan);
    transition: var(--transition-normal);
    transform: translateX(-50%);
}

.nav-link:hover, .nav-link.active {
    color: var(--cyan);
    background: rgba(0, 240, 255, 0.05);
}

.nav-link:hover::before, .nav-link.active::before {
    width: 60%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger-line {
    width: 28px;
    height: 2px;
    background: var(--cyan);
    transition: var(--transition-normal);
    border-radius: 2px;
}

.nav-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 60px;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(0, 240, 255, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(255, 0, 64, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 0%, rgba(176, 0, 255, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.hero-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
    animation: gridMove 20s linear infinite;
}

.hero-scanline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 240, 255, 0.01) 2px,
        rgba(0, 240, 255, 0.01) 4px
    );
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    flex: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 30px;
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--cyan);
    margin-bottom: 30px;
}

.hero-badge i {
    animation: pulse 1.5s ease-in-out infinite;
}

.hero-title {
    margin-bottom: 24px;
}

.title-line {
    display: block;
    overflow: hidden;
}

.glitch-text {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(50px, 10vw, 110px);
    line-height: 1;
    letter-spacing: -2px;
    position: relative;
    display: inline-block;
    color: var(--text-primary);
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
}

.glitch-text.neon-blue {
    color: var(--cyan);
    text-shadow: 0 0 20px var(--cyan-glow), 0 0 40px var(--cyan-glow), 0 0 80px rgba(0, 240, 255, 0.1);
}

.glitch-text.neon-red {
    color: var(--red);
    text-shadow: 0 0 20px var(--red-glow), 0 0 40px var(--red-glow), 0 0 80px rgba(255, 0, 64, 0.1);
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.glitch-text:hover::before {
    animation: glitch1 0.3s linear;
    opacity: 0.8;
    color: var(--cyan);
    left: 2px;
    text-shadow: -2px 0 var(--red);
}

.glitch-text:hover::after {
    animation: glitch2 0.3s linear;
    opacity: 0.8;
    color: var(--red);
    left: -2px;
    text-shadow: 2px 0 var(--cyan);
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(18px, 2.5vw, 26px);
    color: var(--text-secondary);
    margin-bottom: 40px;
    min-height: 35px;
}

.typing-text {
    border-right: 2px solid var(--cyan);
    padding-right: 4px;
    animation: blink-caret 0.75s step-end infinite;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    color: var(--cyan);
    text-shadow: 0 0 20px var(--cyan-glow);
    line-height: 1;
}

.stat-number::after {
    content: '+';
    font-size: 0.6em;
    color: var(--red);
}

.stat-label {
    font-family: var(--font-display);
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-top: 6px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, var(--cyan), transparent);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
}

.btn-primary {
    background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
    color: var(--bg-primary);
    box-shadow: 0 0 20px var(--cyan-glow), inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px var(--cyan-glow), 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--cyan);
    border: 1px solid var(--cyan);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(0, 240, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--cyan-glow);
}

.cyber-btn .btn-glitch {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
}

.cyber-btn:hover .btn-glitch {
    animation: btnShine 0.6s ease;
}

/* Hero Robot Image */
.hero-robot-image {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    max-width: 600px;
    z-index: 3;
    opacity: 0.25;
}

.robot-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--cyan-glow) 0%, transparent 70%);
    filter: blur(60px);
    z-index: -1;
}

.robot-img {
    width: 100%;
    filter: saturate(1.2) contrast(1.1);
    animation: float 6s ease-in-out infinite;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--cyan), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

.hero-scroll-indicator span {
    font-family: var(--font-display);
    font-size: 9px;
    letter-spacing: 3px;
    color: var(--text-muted);
}

/* ===== SECTIONS COMMON ===== */
.section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-bg-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0, 240, 255, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--cyan);
    margin-bottom: 16px;
    padding: 6px 16px;
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 20px;
    background: rgba(0, 240, 255, 0.05);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.title-accent {
    color: var(--cyan);
    text-shadow: 0 0 20px var(--cyan-glow);
}

.title-underline {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--cyan), var(--red));
    margin: 0 auto 16px;
    border-radius: 2px;
    position: relative;
}

.underline-glow {
    position: absolute;
    width: 20px;
    height: 100%;
    background: white;
    border-radius: 2px;
    animation: underlineGlow 3s ease-in-out infinite;
    filter: blur(2px);
}

.section-desc {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== ABOUT SECTION ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.cyber-frame {
    border: 1px solid var(--border-color);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.1);
}

.about-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.image-frame:hover .about-img {
    transform: scale(1.05);
}

.frame-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border-color: var(--cyan);
    border-style: solid;
    z-index: 2;
}

.frame-corner.top-left { top: 10px; left: 10px; border-width: 2px 0 0 2px; }
.frame-corner.top-right { top: 10px; right: 10px; border-width: 2px 2px 0 0; }
.frame-corner.bottom-left { bottom: 10px; left: 10px; border-width: 0 0 2px 2px; }
.frame-corner.bottom-right { bottom: 10px; right: 10px; border-width: 0 2px 2px 0; }

.about-heading {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--cyan);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.about-text {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-text strong {
    color: var(--cyan);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: var(--bg-card);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.feature-item:hover {
    border-color: var(--cyan);
    background: rgba(0, 240, 255, 0.05);
    transform: translateY(-2px);
}

.feature-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.2), rgba(0, 240, 255, 0.05));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    font-size: 18px;
}

.feature-info h4 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.feature-info p {
    font-size: 12px;
    color: var(--text-muted);
}

/* ===== FACILITIES SECTION ===== */
.facilities-section {
    background: var(--bg-secondary);
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.facility-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-normal);
    position: relative;
}

.facility-card:hover {
    border-color: var(--cyan);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 30px var(--cyan-glow);
}

.card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.facility-card:hover .card-image img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 40%, rgba(10, 10, 15, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.facility-card:hover .card-overlay {
    opacity: 1;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 240, 255, 0.2);
    border: 2px solid var(--cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--cyan);
    backdrop-filter: blur(10px);
}

.card-scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--cyan);
    box-shadow: 0 0 10px var(--cyan);
    opacity: 0;
    transition: var(--transition-normal);
}

.facility-card:hover .card-scan-line {
    opacity: 1;
    animation: scanLine 2s linear infinite;
}

.card-content {
    padding: 24px;
}

.card-content h3 {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.card-content p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    font-family: var(--font-display);
    font-size: 9px;
    letter-spacing: 1px;
    padding: 4px 12px;
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 20px;
    color: var(--cyan);
}

/* ===== PRICING SECTION ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: flex-start;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px 24px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--cyan);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.pricing-card .card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(0, 240, 255, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition-normal);
    pointer-events: none;
}

.pricing-card:hover .card-glow {
    opacity: 1;
}

.featured-badge {
    position: absolute;
    top: 16px;
    right: -30px;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    color: white;
    font-family: var(--font-display);
    font-size: 9px;
    letter-spacing: 1px;
    padding: 6px 40px;
    transform: rotate(35deg);
    font-weight: 700;
}

.titan-badge {
    background: linear-gradient(135deg, var(--gold), #ff8c00);
}

.pricing-card.featured {
    border-color: var(--cyan);
    box-shadow: 0 0 30px var(--cyan-glow);
    transform: scale(1.02);
}

.pricing-card.featured:hover {
    transform: scale(1.02) translateY(-10px);
}

.pricing-card.annual-card {
    border-color: rgba(255, 215, 0, 0.3);
}

.pricing-card.annual-card:hover {
    border-color: var(--gold);
    box-shadow: 0 0 30px var(--gold-glow), 0 20px 60px rgba(0, 0, 0, 0.4);
}

.pricing-header {
    text-align: center;
    margin-bottom: 24px;
}

.plan-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.2), rgba(0, 240, 255, 0.05));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--cyan);
    border: 1px solid rgba(0, 240, 255, 0.2);
}

.titan-icon {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 140, 0, 0.05));
    color: var(--gold);
    border-color: rgba(255, 215, 0, 0.3);
}

.plan-name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.plan-level {
    font-family: var(--font-display);
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--text-muted);
}

.price {
    text-align: center;
    margin-bottom: 24px;
    padding: 16px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.currency {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--cyan);
    vertical-align: top;
}

.annual-card .currency {
    color: var(--gold);
}

.amount {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 900;
    letter-spacing: -1px;
}

.annual-card .amount {
    color: var(--gold);
    text-shadow: 0 0 20px var(--gold-glow);
}

.period {
    font-family: var(--font-display);
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.savings-badge {
    text-align: center;
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: 1px;
    color: var(--gold);
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
    display: inline-block;
    width: 100%;
}

.plan-features {
    list-style: none;
    margin-bottom: 24px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 13px;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.plan-features li i {
    font-size: 14px;
    color: var(--cyan);
    min-width: 20px;
}

.plan-features li.disabled {
    opacity: 0.35;
}

.plan-features li.disabled i {
    color: var(--text-muted);
}

.pricing-footer {
    text-align: center;
}

.btn-plan {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 11px;
    background: rgba(0, 240, 255, 0.1);
    color: var(--cyan);
    border: 1px solid rgba(0, 240, 255, 0.3);
}

.btn-plan:hover {
    background: var(--cyan);
    color: var(--bg-primary);
    box-shadow: 0 0 30px var(--cyan-glow);
}

.btn-plan i {
    font-size: 18px;
}

.btn-featured {
    background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
    color: var(--bg-primary);
    border: none;
}

.btn-featured:hover {
    box-shadow: 0 0 40px var(--cyan-glow);
    transform: translateY(-2px);
}

.btn-titan {
    background: rgba(255, 215, 0, 0.1);
    color: var(--gold);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.btn-titan:hover {
    background: var(--gold);
    color: var(--bg-primary);
    box-shadow: 0 0 30px var(--gold-glow);
}

/* ===== SCHEDULE SECTION ===== */
.schedule-section {
    background: var(--bg-secondary);
}

.schedule-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.schedule-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.schedule-tab {
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 1px;
    padding: 10px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-normal);
    font-weight: 600;
}

.schedule-tab.active, .schedule-tab:hover {
    background: rgba(0, 240, 255, 0.1);
    border-color: var(--cyan);
    color: var(--cyan);
    box-shadow: 0 0 15px var(--cyan-glow);
}

.schedule-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 40px;
}

.schedule-row {
    display: grid;
    grid-template-columns: 120px 1fr 120px;
    gap: 16px;
    align-items: center;
    padding: 14px 16px;
    border-radius: 10px;
    transition: var(--transition-normal);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.schedule-row:last-child {
    border-bottom: none;
}

.schedule-row:hover {
    background: rgba(0, 240, 255, 0.05);
}

.schedule-time {
    font-family: var(--font-display);
    font-size: 13px;
    color: var(--cyan);
    font-weight: 600;
}

.schedule-class {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
}

.schedule-trainer {
    font-size: 12px;
    color: var(--text-muted);
    text-align: right;
    font-family: var(--font-display);
}

.schedule-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.info-card {
    text-align: center;
    padding: 24px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: var(--transition-normal);
}

.info-card:hover {
    border-color: var(--cyan);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.info-icon {
    font-size: 28px;
    color: var(--cyan);
    margin-bottom: 12px;
}

.info-card h4 {
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.info-time {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
}

/* ===== TRAINERS SECTION ===== */
.trainers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.trainer-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-normal);
}

.trainer-card:hover {
    transform: translateY(-8px);
    border-color: var(--cyan);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 20px var(--cyan-glow);
}

.trainer-image {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.trainer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.trainer-card:hover .trainer-image img {
    transform: scale(1.1);
}

.trainer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 50%, rgba(10, 10, 15, 0.95) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    opacity: 0;
    transition: var(--transition-normal);
}

.trainer-card:hover .trainer-overlay {
    opacity: 1;
}

.trainer-socials {
    display: flex;
    gap: 12px;
}

.trainer-socials a {
    width: 40px;
    height: 40px;
    background: rgba(0, 240, 255, 0.15);
    border: 1px solid var(--cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    font-size: 16px;
    transition: var(--transition-normal);
}

.trainer-socials a:hover {
    background: var(--cyan);
    color: var(--bg-primary);
}

.trainer-rank {
    position: absolute;
    top: 16px;
    left: 16px;
    font-family: var(--font-display);
    font-size: 9px;
    letter-spacing: 2px;
    padding: 4px 12px;
    background: rgba(0, 240, 255, 0.2);
    border: 1px solid var(--cyan);
    border-radius: 4px;
    color: var(--cyan);
    backdrop-filter: blur(10px);
}

.trainer-info {
    padding: 24px;
}

.trainer-info h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.trainer-specialty {
    font-size: 14px;
    color: var(--cyan);
    margin-bottom: 16px;
    font-family: var(--font-heading);
    font-weight: 600;
}

.trainer-stats {
    display: flex;
    gap: 16px;
}

.t-stat {
    font-size: 12px;
    color: var(--text-muted);
    font-family: var(--font-display);
}

.t-stat span {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 16px;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: var(--bg-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-card {
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 16px;
    transition: var(--transition-normal);
}

.contact-card:hover {
    border-color: var(--cyan);
    transform: translateX(8px);
}

.contact-icon {
    font-size: 24px;
    color: var(--cyan);
    margin-bottom: 12px;
}

.contact-card h4 {
    font-family: var(--font-display);
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.contact-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-card a {
    color: var(--cyan);
}

.contact-card a:hover {
    text-shadow: 0 0 10px var(--cyan-glow);
}

.contact-socials {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-link {
    width: 48px;
    height: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--text-secondary);
    transition: var(--transition-normal);
}

.social-link:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.social-link.whatsapp:hover {
    border-color: #25D366;
    color: #25D366;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.3);
}

/* Contact Form */
.cyber-form {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
}

.form-header {
    margin-bottom: 24px;
}

.form-header h3 {
    font-family: var(--font-display);
    font-size: 16px;
    letter-spacing: 2px;
    color: var(--cyan);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: var(--font-display);
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 14px;
    color: var(--text-muted);
    font-size: 14px;
    z-index: 2;
    transition: var(--transition-normal);
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    width: 100%;
    padding: 14px 14px 14px 42px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 14px;
    transition: var(--transition-normal);
    outline: none;
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 15px var(--cyan-glow);
}

.input-wrapper input:focus + i,
.input-wrapper:focus-within i {
    color: var(--cyan);
}

.textarea-wrapper {
    align-items: flex-start;
}

.textarea-wrapper i {
    top: 14px;
}

.input-wrapper textarea {
    resize: vertical;
    min-height: 100px;
}

.input-wrapper select {
    appearance: none;
    cursor: pointer;
}

.input-wrapper select option {
    background: var(--bg-primary);
    color: var(--text-primary);
}

.btn-submit {
    width: 100%;
    justify-content: center;
    font-size: 13px;
    padding: 16px;
}

.btn-submit i {
    font-size: 20px;
}

/* ===== WHATSAPP FLOATING ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition-normal);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: pulseRing 2s ease-out infinite;
}

/* ===== MODAL ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.cyber-modal {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    max-width: 480px;
    width: 100%;
    overflow: hidden;
    animation: modalSlideIn 0.3s ease;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: rgba(0, 240, 255, 0.05);
    border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
    font-family: var(--font-display);
    font-size: 13px;
    letter-spacing: 2px;
    color: var(--cyan);
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition-normal);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.modal-close:hover {
    color: var(--red);
    background: rgba(255, 0, 64, 0.1);
}

.modal-body {
    padding: 32px 24px;
}

.modal-plan-info {
    text-align: center;
    margin-bottom: 24px;
}

.modal-icon {
    font-size: 40px;
    color: var(--cyan);
    margin-bottom: 12px;
    animation: pulse 2s ease-in-out infinite;
}

.modal-plan-info h4 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.modal-price {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 900;
    color: var(--cyan);
    text-shadow: 0 0 20px var(--cyan-glow);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-primary);
    padding: 60px 0 30px;
    position: relative;
    border-top: 1px solid var(--border-color);
}

.footer-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 240, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 16px;
}

.footer-logo i {
    color: var(--cyan);
    font-size: 24px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.footer-links h4 {
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--cyan);
    margin-bottom: 16px;
}

.footer-links a, .footer-links p {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    transition: var(--transition-normal);
}

.footer-links a:hover {
    color: var(--cyan);
    transform: translateX(4px);
}

.highlight-text {
    color: var(--cyan) !important;
    font-weight: 600;
}

.footer-bottom {
    text-align: center;
    position: relative;
}

.footer-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
    margin-bottom: 20px;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

/* ===== SCROLL ANIMATIONS ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 100px 30px 30px;
        transition: right 0.4s ease;
        border-left: 1px solid var(--border-color);
        gap: 4px;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-link {
        font-size: 14px;
        padding: 14px 16px;
        width: 100%;
        border-radius: 10px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-img {
        height: 350px;
    }
    
    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trainers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .hero-robot-image {
        opacity: 0.15;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }
    
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .facilities-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .schedule-info {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trainers-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .schedule-row {
        grid-template-columns: 90px 1fr 80px;
        gap: 10px;
        padding: 12px 10px;
    }
    
    .schedule-time { font-size: 11px; }
    .schedule-class { font-size: 14px; }
    .schedule-trainer { font-size: 10px; }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-socials {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .glitch-text {
        font-size: clamp(40px, 14vw, 70px);
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .schedule-tabs {
        gap: 4px;
    }
    
    .schedule-tab {
        padding: 8px 12px;
        font-size: 10px;
    }
    
    .schedule-info {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
}
