/* ===== FUENTES TECNOLÓGICAS ===== */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700;900&family=Rajdhani:wght@300;400;500;600;700&display=swap');

/* ===== VARIABLES FUTURISTAS ===== */
:root {
    --primary-blue: #2563eb;
    --primary-red: #dc2626;
    --dark-blue: #1e40af;
    --light-blue: #3b82f6;
    --gradient: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    
    --cyber-blue: #00f3ff;
    --neon-pink: #ff00ff;
    --matrix-green: #00ff41;
    --hologram-purple: #8a2be2;
    --tech-dark: #0a0a0a;
    --tech-darker: #050505;
    --grid-color: rgba(0, 243, 255, 0.1);
    
    --bg-dark: #0f172a;
    --bg-card: #1e293b;
    --text-light: #f8fafc;
    --text-gray: #94a3b8;
}

/* ===== RESET Y BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== ANIMACIONES BASE ===== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s both;
}

/* ===== NAVEGACIÓN FUTURISTA ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 243, 255, 0.2);
    z-index: 1000;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--cyber-blue);
    text-shadow: 0 0 10px var(--cyber-blue);
}

.logo-img {
    width: 32px;
    height: 32px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #ccc;
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
}

.nav-link:hover {
    color: var(--cyber-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cyber-blue);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    font-family: 'Rajdhani', sans-serif;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--cyber-blue);
    color: var(--cyber-blue);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline:hover {
    background: var(--cyber-blue);
    color: var(--tech-dark);
    box-shadow: 0 0 20px var(--cyber-blue);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--cyber-blue);
    margin: 3px 0;
    transition: 0.3s;
}

/* ===== HERO FUTURISTA ===== */
.hero-futurist {
    background: linear-gradient(135deg, var(--tech-dark) 0%, var(--tech-darker) 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.cyber-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(0, 243, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 0, 255, 0.1) 0%, transparent 50%);
    animation: floatParticles 15s ease-in-out infinite;
}

@keyframes floatParticles {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, 20px) scale(1.1); }
}

.hero-content-futurist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Texto Hero */
.hero-text-futurist {
    max-width: 600px;
}

.tech-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 243, 255, 0.1);
    border: 1px solid var(--cyber-blue);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--cyber-blue);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--cyber-blue);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title-tech {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.tech-glow {
    color: var(--cyber-blue);
    text-shadow: 0 0 20px var(--cyber-blue), 0 0 40px var(--cyber-blue);
}

.gradient-tech {
    background: linear-gradient(45deg, var(--cyber-blue), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description-tech {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.3rem;
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-description-tech strong {
    color: var(--cyber-blue);
}

/* Stats en Tiempo Real */
.live-stats {
    display: flex;
    gap: 2rem;
    margin: 2.5rem 0;
}

.stat-item-live {
    text-align: center;
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--cyber-blue);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Botones Cyber */
.hero-actions-tech {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-cyber-primary {
    position: relative;
    background: linear-gradient(45deg, var(--cyber-blue), var(--neon-pink));
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: white;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s ease;
}

.btn-cyber-primary:hover .btn-glow {
    left: 100%;
}

.btn-cyber-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 243, 255, 0.3);
}

.btn-cyber-secondary {
    background: transparent;
    border: 2px solid var(--cyber-blue);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--cyber-blue);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-cyber-secondary:hover {
    background: var(--cyber-blue);
    color: var(--tech-dark);
    box-shadow: 0 0 20px var(--cyber-blue);
}

/* Holograma */
.hero-visual-tech {
    position: relative;
}

.hologram-container {
    position: relative;
    perspective: 1000px;
}

.hologram-card {
    background: rgba(0, 243, 255, 0.05);
    border: 1px solid var(--cyber-blue);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transform-style: preserve-3d;
    animation: hologramFloat 6s ease-in-out infinite;
    box-shadow: 0 0 50px rgba(0, 243, 255, 0.2);
}

@keyframes hologramFloat {
    0%, 100% { transform: translateY(0) rotateX(0); }
    50% { transform: translateY(-20px) rotateX(5deg); }
}

.hologram-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.hologram-dots {
    display: flex;
    gap: 0.5rem;
}

.hologram-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--cyber-blue);
    animation: dotPulse 2s infinite;
}

.hologram-dots span:nth-child(2) { animation-delay: 0.2s; }
.hologram-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes dotPulse {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

.data-stream {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stream-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(0, 243, 255, 0.1);
    border-radius: 8px;
    border-left: 3px solid var(--cyber-blue);
    animation: streamFlow 3s infinite;
}

.stream-item:nth-child(2) { animation-delay: 1s; }
.stream-item:nth-child(3) { animation-delay: 2s; }

@keyframes streamFlow {
    0%, 100% { opacity: 0.7; transform: translateX(0); }
    50% { opacity: 1; transform: translateX(10px); }
}

.stream-item i {
    color: var(--cyber-blue);
    font-size: 1.2rem;
}

.stream-item span {
    font-family: 'Rajdhani', sans-serif;
    color: #ccc;
    font-weight: 500;
}

/* Elementos Flotantes */
.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(0, 243, 255, 0.1);
    border: 1px solid var(--cyber-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--cyber-blue);
    animation: floatElement 8s ease-in-out infinite;
}

.el-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.el-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.el-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes floatElement {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -20px) rotate(90deg); }
    50% { transform: translate(0, -40px) rotate(180deg); }
    75% { transform: translate(-20px, -20px) rotate(270deg); }
}

/* ===== SECCIÓN TECNOLOGÍAS ===== */
.tech-showcase {
    padding: 6rem 0;
    background: var(--tech-darker);
    position: relative;
}

.section-header-tech {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header-tech h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-header-tech p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    color: #ccc;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.tech-card {
    background: rgba(0, 243, 255, 0.05);
    border: 1px solid var(--cyber-blue);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tech-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: left 0.5s ease;
}

.tech-card:hover::before {
    left: 100%;
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 243, 255, 0.2);
}

.tech-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(45deg, var(--cyber-blue), var(--neon-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.tech-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--cyber-blue);
}

.tech-card p {
    font-family: 'Rajdhani', sans-serif;
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.tech-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.tech-features span {
    background: rgba(0, 243, 255, 0.1);
    border: 1px solid var(--cyber-blue);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.8rem;
    color: var(--cyber-blue);
}

/* ===== DEMO INTERACTIVA ===== */
.interactive-demo {
    padding: 6rem 0;
    background: var(--tech-dark);
    position: relative;
}

.demo-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.demo-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.demo-content p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 3rem;
}

.demo-widget {
    background: rgba(0, 243, 255, 0.05);
    border: 1px solid var(--cyber-blue);
    border-radius: 15px;
    padding: 2rem;
    max-width: 400px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

.widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 243, 255, 0.3);
}

.widget-header h4 {
    font-family: 'Orbitron', sans-serif;
    color: var(--cyber-blue);
    margin: 0;
}

.widget-controls {
    display: flex;
    gap: 0.5rem;
}

.control-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cyber-blue);
    opacity: 0.6;
}

.efficiency-meter {
    width: 100%;
    height: 40px;
    background: rgba(0, 243, 255, 0.1);
    border-radius: 20px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    position: relative;
}

.meter-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--cyber-blue), var(--neon-pink));
    border-radius: 20px;
    width: 0;
    transition: width 2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.efficiency-value {
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    color: white;
    font-size: 0.9rem;
    position: absolute;
    right: 10px;
}

.widget-text {
    font-family: 'Rajdhani', sans-serif;
    color: #ccc;
    font-size: 0.9rem;
}

/* ===== CTA FINAL ===== */
.cta-futurist {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--tech-dark) 0%, var(--tech-darker) 100%);
    position: relative;
    overflow: hidden;
}

.cyber-grid-inverted {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: gridMoveInverted 15s linear infinite;
}

@keyframes gridMoveInverted {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-30px, -30px); }
}

.cta-content-futurist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-text h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-text p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2rem;
}

.cta-features-tech {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-tech {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    color: #ccc;
}

.feature-tech i {
    color: var(--cyber-blue);
    font-size: 1.2rem;
}

.cta-action-tech {
    text-align: center;
}

.btn-cyber-large {
    position: relative;
    background: linear-gradient(45deg, var(--cyber-blue), var(--neon-pink));
    border: none;
    padding: 1.5rem 3rem;
    border-radius: 12px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: white;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.btn-glow-large {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    transition: left 0.7s ease;
}

.btn-cyber-large:hover .btn-glow-large {
    left: 100%;
}

.btn-cyber-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 243, 255, 0.4);
}

.cta-note-tech {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    color: #888;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--tech-darker);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(0, 243, 255, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--cyber-blue);
    font-family: 'Orbitron', sans-serif;
}

.footer-section p,
.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
}

.footer-section a:hover {
    color: var(--cyber-blue);
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 243, 255, 0.2);
    color: #888;
    font-family: 'Rajdhani', sans-serif;
}

/* ===== MODAL ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: var(--tech-dark);
    margin: 5% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    border: 1px solid var(--cyber-blue);
    box-shadow: 0 20px 60px rgba(0, 243, 255, 0.3);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(0, 243, 255, 0.2);
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-family: 'Orbitron', sans-serif;
    color: var(--cyber-blue);
}

.close-modal {
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-gray);
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.close-modal:hover {
    color: var(--cyber-blue);
}

.modal-body {
    padding: 2rem;
}

/* Formulario */
.prueba-form .form-group {
    margin-bottom: 1.5rem;
}

.prueba-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-weight: 500;
    font-family: 'Rajdhani', sans-serif;
}

.prueba-form input,
.prueba-form select,
.prueba-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(0, 243, 255, 0.05);
    border: 1px solid var(--cyber-blue);
    border-radius: 8px;
    color: var(--text-light);
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.prueba-form input:focus,
.prueba-form select:focus,
.prueba-form textarea:focus {
    outline: none;
    border-color: var(--cyber-blue);
    box-shadow: 0 0 0 3px rgba(0, 243, 255, 0.1);
}

.btn-full {
    width: 100%;
    padding: 1rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .hero-content-futurist {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-title-tech {
        font-size: 3rem;
    }
    
    .live-stats {
        justify-content: center;
    }
    
    .cta-content-futurist {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .floating-element {
        display: none;
    }
    
    /* ===== MENÚ MÓVIL FUNCIONAL ===== */
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem 0;
        transition: left 0.3s ease;
        border-top: 1px solid rgba(0, 243, 255, 0.2);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(0, 243, 255, 0.1);
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .btn-outline {
        margin: 1rem 2rem;
        width: calc(100% - 4rem);
        text-align: center;
    }
    
    /* Animación del toggle (hamburguesa a X) */
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .nav-toggle span {
        transition: all 0.3s ease;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1000;
    }
    
    /* Prevenir scroll cuando el menú está abierto */
    body.menu-open {
        overflow: hidden;
    }
}

@media (max-width: 768px) {
    .hero-title-tech {
        font-size: 2.2rem;
    }
    
    .hero-description-tech {
        font-size: 1.1rem;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .demo-widget {
        margin: 0 1rem;
    }
    
    .hero-actions-tech {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions-tech .btn-cyber-primary,
    .hero-actions-tech .btn-cyber-secondary {
        width: 250px;
    }
    
    .live-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .container {
        padding: 0 1rem;
    }
}

/* ===== ANIMACIONES DE SCROLL ===== */
.hero-futurist,
.tech-showcase,
.interactive-demo,
.cta-futurist {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.hero-futurist.visible,
.tech-showcase.visible,
.interactive-demo.visible,
.cta-futurist.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Medidor animado cuando es visible */
.meter-fill.animated {
    width: 97%;
}

/* Estilos para páginas legales */
.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 2rem;
}

.legal-header h1 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.last-updated {
    color: #7f8c8d;
    font-style: italic;
}

.legal-content section {
    margin-bottom: 2.5rem;
}

.legal-content h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.legal-content h3 {
    color: #34495e;
    margin: 1.5rem 0 0.5rem 0;
    font-size: 1.2rem;
}

.legal-content p {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #555;
}

.legal-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.legal-content strong {
    color: #2c3e50;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-container {
        padding: 1rem;
        margin: 1rem;
    }
    
    .legal-header h1 {
        font-size: 1.8rem;
    }
}

/* ===== FIXES ESPECÍFICOS PARA MÓVIL ===== */
@media (max-width: 768px) {
    /* Prevenir scroll horizontal */
    html, body {
        max-width: 100%;
        overflow-x: hidden;
        position: relative;
    }
    
    /* Container fixes */
    .container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 15px !important;
        margin: 0 auto !important;
    }
    
    /* Hero section fixes */
    .hero-futurist {
        min-height: auto;
        padding: 100px 0 50px;
    }
    
    .hero-title-tech {
        font-size: 2rem !important;
        line-height: 1.2 !important;
        word-wrap: break-word;
    }
    
    .hero-description-tech {
        font-size: 1rem !important;
        line-height: 1.4 !important;
        padding: 0 10px;
    }
    
    /* Pricing grid fixes */
    .pricing-grid-futurist {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        padding: 0 10px;
    }
    
    .pricing-card-futurist {
        padding: 1.5rem 1rem !important;
        margin: 0 5px !important;
        width: calc(100% - 10px) !important;
        box-sizing: border-box;
    }
    
    .pricing-card-futurist.featured {
        transform: none !important;
    }
    
    .price-futurist .amount {
        font-size: 2.5rem !important;
    }
    
    /* Comparison table scroll */
    .comparison-table-futurist {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 10px;
    }
    
    .comparison-header-futurist,
    .comparison-row-futurist {
        min-width: 600px; /* Para scroll horizontal */
    }
    
    /* Botones responsivos */
    .btn-cyber-primary,
    .btn-cyber-secondary,
    .btn-cyber-large {
        width: 100% !important;
        padding: 1rem 1.5rem !important;
        font-size: 1rem !important;
        margin: 5px 0 !important;
    }
    
    .hero-actions-tech {
        flex-direction: column;
        width: 100%;
        padding: 0 10px;
    }
    
    /* Stats en columna */
    .live-stats {
        flex-direction: column;
        gap: 1rem;
        padding: 0 20px;
    }
    
    .stat-item-live {
        width: 100%;
    }
    
    /* Garantías en columna */
    .guarantees-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
        padding: 0 10px;
    }
    
    /* Ajustes de texto general */
    body {
        font-size: 14px;
        line-height: 1.4;
    }
    
    h1, h2, h3 {
        word-wrap: break-word;
        hyphens: auto;
    }
    
    /* Fix para elementos que se salen */
    * {
        max-width: 100%;
    }
    
    /* Padding sections */
    .hero-futurist,
    .tech-showcase,
    .interactive-demo,
    .cta-futurist {
        padding: 3rem 0 !important;
    }
    
    /* Holograma más pequeño */
    .hologram-card {
        padding: 1.5rem 1rem !important;
        margin: 0 10px;
    }
    
    .stream-item {
        font-size: 0.9rem;
        padding: 0.5rem;
    }
}

/* Para móviles muy pequeños */
@media (max-width: 480px) {
    .container {
        padding: 0 10px !important;
    }
    
    .hero-title-tech {
        font-size: 1.8rem !important;
    }
    
    .hero-description-tech {
        font-size: 0.9rem !important;
        padding: 0 5px;
    }
    
    .price-furist .amount {
        font-size: 2rem !important;
    }
    
    .pricing-card-futurist {
        padding: 1rem 0.5rem !important;
        margin: 0 2px !important;
        width: calc(100% - 4px) !important;
    }
    
    .features-list-futurist li {
        font-size: 0.85rem;
    }
    
    .section-header-tech h2 {
        font-size: 2rem !important;
    }
}

/* Fix global para prevenir overflow */
* {
    box-sizing: border-box;
}

img, video, iframe {
    max-width: 100%;
    height: auto;
}

/* Asegurar que los contenedores principales sean responsive */
.hero-content-futurist,
.pricing-grid-futurist,
.guarantees-grid,
.footer-content {
    width: 100%;
}

/* Fix específico para la tabla de comparación en móvil */
@media (max-width: 768px) {
    .comparison-table-futurist {
        display: block;
        width: 100%;
    }
    
    .comparison-header-futurist,
    .comparison-row-futurist {
        display: flex;
        flex-direction: column;
        min-width: auto;
    }
    
    .feature-column,
    .plan-column {
        text-align: left;
        padding: 0.5rem;
        border-bottom: 1px solid rgba(0, 243, 255, 0.1);
    }
}

/* Loading optimizado para móvil */
@media (max-width: 768px) {
    .cyber-grid,
    .cyber-grid-inverted,
    .floating-particles {
        animation: none; /* Mejor rendimiento en móvil */
    }
}

/* ===== FIX PARA SELECT EN BLANCO ===== */
.prueba-form select {
    color: #f8fafc !important; /* Color de texto claro */
    background-color: rgba(0, 243, 255, 0.05) !important;
}

.prueba-form select option {
    color: #0a0a0a !important; /* Color oscuro para las opciones */
    background-color: white !important;
}

.prueba-form select:invalid {
    color: #94a3b8 !important; /* Color gris para placeholder */
}

/* Asegurar que sea visible en todos los navegadores */
.prueba-form select:focus {
    color: #f8fafc !important;
    background-color: rgba(0, 243, 255, 0.1) !important;
}
/* ===== FIX PARA MODAL EN MÓVIL ===== */
@media (max-width: 768px) {
    .modal-content {
        margin: 5% auto !important;
        width: 95% !important;
        max-height: 90vh !important;
        overflow-y: auto !important;
    }
    
    .modal-body {
        padding: 1.5rem !important;
    }
    
    .prueba-form .form-group {
        margin-bottom: 1rem !important;
    }
    
    .prueba-form input,
    .prueba-form select,
    .prueba-form textarea {
        padding: 1rem !important; /* Más grande para móvil */
        font-size: 16px !important; /* Prevenir zoom en iOS */
    }
    
    /* Asegurar que el botón sea siempre visible */
    .btn-full {
        position: sticky !important;
        bottom: 0 !important;
        background: var(--tech-dark) !important;
        border-top: 1px solid rgba(0, 243, 255, 0.2) !important;
        padding: 1.5rem !important;
        margin-top: 1rem !important;
        z-index: 1000 !important;
    }
    
    /* Mejorar scroll del modal */
    .modal-body {
        padding-bottom: 100px !important; /* Espacio para el botón sticky */
    }
}

/* Para móviles muy pequeños */
@media (max-width: 480px) {
    .modal-content {
        margin: 2% auto !important;
        width: 98% !important;
    }
    
    .modal-header {
        padding: 1rem 1.5rem !important;
    }
    
    .modal-body {
        padding: 1rem !important;
        padding-bottom: 80px !important;
    }
    
    .prueba-form input,
    .prueba-form select,
    .prueba-form textarea {
        padding: 0.875rem !important;
    }
}
/* ===== FIXES ESPECÍFICOS PARA FORMULARIO ===== */

/* Fix para select en blanco */
.prueba-form select {
    color: #525b64 !important;
    background-color: rgba(0, 243, 255, 0.05) !important;
    appearance: menulist !important; /* Forzar apariencia nativa */
}

.prueba-form select option {
    color: #0a0a0a !important;
    background-color: rgb(175, 45, 45) !important;
    padding: 10px !important;
}

.prueba-form select:invalid {
    color: #94a3b8 !important;
}

/* Fix para modal en móvil */
@media (max-width: 768px) {
    .modal-content {
        margin: 5% auto !important;
        width: 95% !important;
        max-height: 90vh !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }
    
    .modal-body {
        padding: 1.5rem !important;
        padding-bottom: 120px !important; /* Espacio para botón */
    }
    
    .prueba-form .form-group {
        margin-bottom: 1.2rem !important;
    }
    
    .prueba-form input,
    .prueba-form select,
    .prueba-form textarea {
        padding: 1rem !important;
        font-size: 16px !important; /* Prevenir zoom iOS */
        min-height: 50px !important; /* Tamaño táctil mínimo */
    }
    
    /* Botón sticky en móvil */
    .btn-full {
        position: sticky !important;
        bottom: 0 !important;
        background: var(--tech-dark) !important;
        border-top: 1px solid rgba(0, 243, 255, 0.3) !important;
        padding: 1.2rem !important;
        margin: 1rem -2rem -2rem -2rem !important;
        width: calc(100% + 4rem) !important;
        font-size: 1.1rem !important;
        min-height: 60px !important;
        z-index: 1000 !important;
    }
}

/* Para móviles muy pequeños */
@media (max-width: 480px) {
    .modal-content {
        margin: 1% auto !important;
        width: 98% !important;
        border-radius: 10px !important;
    }
    
    .modal-header {
        padding: 1rem 1.2rem !important;
    }
    
    .modal-header h2 {
        font-size: 1.3rem !important;
    }
    
    .modal-body {
        padding: 1rem 1.2rem !important;
        padding-bottom: 100px !important;
    }
    
    .prueba-form input,
    .prueba-form select,
    .prueba-form textarea {
        padding: 0.875rem !important;
        font-size: 16px !important; /* Importante para iOS */
    }
    
    .btn-full {
        padding: 1rem !important;
        min-height: 55px !important;
        margin: 1rem -1.2rem -1.2rem -1.2rem !important;
        width: calc(100% + 2.4rem) !important;
    }
}

/* Mejorar usabilidad del select */
.prueba-form select:focus {
    border-color: var(--cyber-blue) !important;
    box-shadow: 0 0 0 3px rgba(0, 243, 255, 0.2) !important;
    outline: none !important;
}
