
        * { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth;}
        
        :root {
            --bg-dark: #05070a;
            --bg-card: rgba(15, 17, 23, 0.92);
            --neon-cyan: #00f7ff;
            --neon-magenta: #ff44ee;
            --neon-blue: #0066ff;
            --neon-purple: #9d00ff;
            --text-primary: #eef2ff;
            --text-secondary: #ccd6f0;
            --metal-gradient: linear-gradient(135deg, #1a1f2e 0%, #0d1117 50%, #1a1f2e 100%);
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background: var(--bg-dark);
            color: var(--text-primary);
            overflow-x: hidden;
            scroll-behavior: smooth;
        }
        a{
            list-style: none;
            text-decoration: none;
            color: #eef2ff;
        }

       /* SPLASH SCREEN */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #0a0f1f, #010101);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    backdrop-filter: blur(3px);
    transition: opacity 1.2s cubic-bezier(0.23, 1, 0.32, 1), visibility 0.3s;
    visibility: visible;
}

.splash-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.splash-content {
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
    padding: 20px;
}

/* Imagen con animación principal */
.splash-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
    animation: pulseIcon 1.8s infinite alternate ease-in-out;
    filter: drop-shadow(0 0 15px cyan);
}

/* Logo más pequeño para móvil */
.splash-logo {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;  /* Reducido de 4rem a 2rem */
    font-weight: 900;
    background: linear-gradient(135deg, #c0ffee, #00e0ff, #ff66cc);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 3px;  /* Reducido */
    text-shadow: 0 0 15px cyan;
    margin-top: 10px;
}

/* Subtítulo más pequeño */
.splash-sub {
    font-size: 0.8rem;  /* Reducido de 1.2rem a 0.8rem */
    letter-spacing: 2px;  /* Reducido */
    color: #aaf0ff;
    margin-top: 0.8rem;
    border-right: 2px solid cyan;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    white-space: nowrap;
    overflow: hidden;
    animation: blinkCursor 0.8s step-end infinite, typing 2s steps(30) 0.5s forwards;
    padding-right: 5px;
}

/* Texto "CARGANDO..." más pequeño en móvil */
.splash-content > div:last-child {
    font-size: 0.9rem;
    margin-top: 25px !important;
    color: #88aaff;
}

/* Animaciones */
@keyframes pulseIcon {
    0% { 
        transform: scale(1); 
        filter: drop-shadow(0 0 5px cyan);
    }
    100% { 
        transform: scale(1.15); 
        filter: drop-shadow(0 0 25px cyan, 0 0 10px #ff44ee);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes blinkCursor {
    0%, 100% { border-color: cyan; }
    50% { border-color: transparent; }
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

/* Media query para tablets y móviles pequeños */
@media (max-width: 768px) {
    .splash-icon {
        width: 90px;
        height: 90px;
    }
    
    .splash-logo {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
    
    .splash-sub {
        font-size: 0.7rem;
        letter-spacing: 1.5px;
        white-space: normal; /* Permite que el texto se rompa si es muy largo */
        word-break: keep-all;
    }
    
    .splash-content > div:last-child {
        font-size: 0.8rem;
        margin-top: 20px !important;
    }
}

/* Para móviles muy pequeños */
@media (max-width: 480px) {
    .splash-icon {
        width: 75px;
        height: 75px;
        margin-bottom: 15px;
    }
    
    .splash-logo {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }
    
    .splash-sub {
        font-size: 0.65rem;
        letter-spacing: 1px;
    }
}

        /* CANVAS METÁLICO */
        #metal-particles-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            pointer-events: none;
            background: #03060c;
        }

        .main-content {
            opacity: 0;
            transition: opacity 1.2s ease;
        }
        .main-content.visible {
            opacity: 1;
        }

        /* HEADER */
        .glass-nav {
            background: rgba(5, 7, 10, 0.85);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0,247,255,0.3);
            box-shadow: 0 0 15px rgba(0,247,255,0.1);
            position: fixed;
            top: 0; left: 0; width: 100%;
            z-index: 1000;
            padding: 1rem 3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo { font-size: 1.6rem; font-weight: 800; font-family: 'Orbitron', monospace; }
        .logo span:first-child { color: white; text-shadow: 0 0 5px cyan;}
        .logo span:last-child { color: var(--neon-cyan); text-shadow: 0 0 8px var(--neon-cyan);}
        
        .nav-links { display: flex; gap: 2rem; }
        .nav-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            position: relative;
            transition: color 0.3s;
        }
        .nav-links a:hover { color: var(--neon-cyan); text-shadow: 0 0 5px cyan;}
        .nav-links a::after {
            content: ''; position: absolute;
            bottom: -6px; left: 0; width: 0; height: 2px;
            background: var(--neon-cyan);
            transition: width 0.3s;
            box-shadow: 0 0 8px var(--neon-cyan);
        }
        .nav-links a:hover::after { width: 100%; }

        #liveClock {
            background: rgba(0,247,255,0.12);
            border: 1px solid rgba(0,247,255,0.5);
            padding: 6px 16px;
            border-radius: 40px;
            color: var(--neon-cyan);
            font-family: monospace;
            font-weight: bold;
            box-shadow: 0 0 8px rgba(0,247,255,0.3);
        }

        /* HERO */
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 8rem 2rem 4rem;
            position: relative;
            background: radial-gradient(circle at 30% 20%, rgba(0,247,255,0.08), transparent 60%),
                        radial-gradient(circle at 70% 80%, rgba(255,68,238,0.05), transparent 50%);
        }
        .hero-badge {
            display: inline-block;
            padding: 8px 20px;
            border: 1px solid var(--neon-cyan);
            border-radius: 50px;
            color: var(--neon-cyan);
            font-size: 0.85rem;
            margin-bottom: 1.5rem;
            animation: pulseNeon 2s infinite;
            box-shadow: 0 0 5px cyan;
        }
        @keyframes pulseNeon {
            0%, 100% { box-shadow: 0 0 5px rgba(0,247,255,0.3); border-color: cyan;}
            50% { box-shadow: 0 0 25px rgba(0,247,255,0.7); border-color: #ff44ee;}
        }
        .hero h1 {
            font-size: clamp(2.5rem, 4vw, 5rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }
        .hero h1 span { color: var(--neon-cyan); text-shadow: 0 0 12px cyan; }
        .hero p {
            font-size: 1.2rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin-bottom: 2.5rem;
        }
        .btn-solid {
            background: linear-gradient(135deg, #00f7ff, #0099cc);
            color: var(--bg-dark);
            padding: 14px 36px;
            border-radius: 50px;
            font-weight: 700;
            width: 80%;
            margin-bottom: 10px;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            transition: all 0.3s;
            box-shadow: 0 0 15px rgba(0,247,255,0.5);
        }
        .btn-solid:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 30px rgba(0,247,255,0.8);
        }
        .btn-neon {
            background: transparent;
            color: var(--neon-cyan);
            padding: 14px 36px;
            border-radius: 50px;
            width: 80%;
            margin-bottom: 10px;
            font-weight: 600;
            border: 2px solid var(--neon-cyan);
            cursor: pointer;
            font-size: 1rem;
            transition: all 0.3s;
        }
        .btn-neon:hover {
            background: var(--neon-cyan);
            color: var(--bg-dark);
            box-shadow: 0 0 25px var(--neon-cyan);
        }

        /* CARRUSEL CLIENTES */
        .clients-carousel {
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(10px);
            padding: 2rem 0;
            border-top: 1px solid rgba(0,247,255,0.2);
            border-bottom: 1px solid rgba(0,247,255,0.2);
            overflow: hidden;
            white-space: nowrap;
            position: relative;
            z-index: 5;
        }
        .clients-track {
            display: inline-block;
            animation: scrollClients 50s linear infinite;
        }
        .client-name {
            display: inline-block;
            color: var(--neon-cyan);
            font-family: 'Orbitron', monospace;
            font-weight: bold;
            font-size: 1.2rem;
            margin: 0 25px;
            letter-spacing: 2px;
            text-shadow: 0 0 5px cyan;
        }
        @keyframes scrollClients {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* SEPARADORES */
        .neon-divider-custom {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin: 3rem 0;
            position: relative;
            z-index: 5;
        }
        .neon-divider-custom .line {
            height: 3px;
            width: 120px;
            background: linear-gradient(90deg, transparent, cyan, #ff44ee, transparent);
            box-shadow: 0 0 10px cyan;
        }
        .neon-divider-custom i {
            font-size: 2rem;
            color: cyan;
            filter: drop-shadow(0 0 8px cyan);
        }

        /* SECCIÓN SOBRE MÍ - NUEVA (con estilo cyberpunk) */
        .about-section { padding: 4rem 2rem; max-width: 1200px; margin: 0 auto; }
        .about-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 3rem; align-items: center; background: rgba(15, 17, 23, 0.6); backdrop-filter: blur(10px); border-radius: 30px; padding: 2rem; border: 1px solid rgba(0,247,255,0.3); box-shadow: 0 0 30px rgba(0,247,255,0.1); }
        .about-avatar { text-align: center; }
        .about-avatar-img { width: 200px; height: 200px; border-radius: 50%; object-fit: cover; border: 3px solid var(--neon-cyan); box-shadow: 0 0 30px rgba(0,247,255,0.3); }
        .about-name { font-family: 'Orbitron', monospace; font-size: 1.8rem; color: var(--neon-cyan); margin-top: 1rem; }
        .about-stats { display: flex; gap: 1.5rem; margin: 1.5rem 0; flex-wrap: wrap; }
        .stat-item { background: rgba(0,247,255,0.1); padding: 0.8rem 1.5rem; border-radius: 50px; border: 1px solid rgba(0,247,255,0.3); text-align: center; }
        .stat-number { font-size: 1.8rem; font-weight: 800; color: var(--neon-cyan); font-family: 'Orbitron', monospace; }
        @media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; text-align: center; } .nav-links { display: none; } .glass-nav { padding: 1rem; } }


        /* PLANES */
        .planes-section {
            padding: 4rem 2rem;
            background: rgba(0,0,0,0.3);
            backdrop-filter: blur(5px);
        }
        .planes-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            max-width: 1300px;
            margin: 0 auto;
        }
        .plan-card {
            background: var(--bg-card);
            border-radius: 30px;
            border: 1px solid rgba(0,247,255,0.3);
            padding: 2rem;
            width: 300px;
            text-align: center;
            transition: all 0.3s;
            backdrop-filter: blur(10px);
        }
        .plan-card:hover {
            transform: translateY(-10px);
            border-color: var(--neon-cyan);
            box-shadow: 0 0 30px rgba(0,247,255,0.3);
        }
        .plan-card h3 {
            font-family: 'Orbitron', monospace;
            font-size: 1.8rem;
            color: var(--neon-cyan);
            margin-bottom: 1rem;
        }
        .plan-price {
            font-size: 2.5rem;
            font-weight: 800;
            margin: 1rem 0;
        }
        .plan-price span {
            font-size: 1rem;
            color: var(--text-secondary);
        }
        .plan-card ul {
            list-style: none;
            margin: 1.5rem 0;
        }
        .plan-card li {
            padding: 0.5rem 0;
            color: var(--text-secondary);
        }
        .plan-card li i {
            color: var(--neon-cyan);
            margin-right: 8px;
        }
        .plan-btn {
            background: transparent;
            border: 2px solid var(--neon-cyan);
            color: var(--neon-cyan);
            padding: 10px 30px;
            border-radius: 50px;
            font-weight: bold;
            cursor: pointer;
            transition: 0.3s;
            width: 100%;
        }
        .plan-btn:hover {
            background: var(--neon-cyan);
            color: black;
            box-shadow: 0 0 20px cyan;
        }

        /* CATEGORÍAS Y TARJETAS */
        .category-section {
            position: relative;
            padding: 6rem 2rem;
            overflow: hidden;
        }
        .category-bg {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background-size: cover;
            background-position: center;
            filter: blur(10px) brightness(0.2);
            transform: scale(1.1);
            z-index: 0;
        }
        .category-overlay {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(to bottom, rgba(5,7,10,0.4), rgba(5,7,10,0.9));
            z-index: 1;
        }
        .category-content {
            position: relative;
            z-index: 2;
            max-width: 1400px;
            margin: 0 auto;
        }
        .category-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        .category-icon {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            display: inline-block;
            animation: floatIcon 3s ease-in-out infinite;
        }
        @keyframes floatIcon {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-12px); }
        }
        .category-title {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #fff, #00f7ff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 2rem;
        }
        .portfolio-card {
            background: var(--bg-card);
            border-radius: 24px;
            border: 1px solid rgba(0,247,255,0.2);
            overflow: hidden;
            transition: all 0.4s;
            backdrop-filter: blur(12px);
        }
        .portfolio-card:hover {
            transform: translateY(-12px) scale(1.02);
            border-color: var(--neon-cyan);
            box-shadow: 0 25px 40px -12px rgba(0,247,255,0.4);
        }
        /* Estilos para imágenes reales en tarjetas */
.portfolio-card .card-image {
    position: relative;
    overflow: hidden;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .card-image {
    transform: scale(1.05);
}

.portfolio-card .card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,247,255,0.15) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.image-overlay {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    border-radius: 30px;
    padding: 6px 14px;
    border: 1px solid rgba(0,247,255,0.4);
    z-index: 2;
}

.image-emoji {
    font-size: 1.3rem;
    filter: drop-shadow(0 0 4px cyan);
}

.card-icon-float {
    position: absolute;
    top: -28px;
    right: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    background: linear-gradient(135deg, #1a1f2e, #0d1117);
    border: 2px solid var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0,247,255,0.3);
    z-index: 3;
}
        .card-image {
            height: 160px;
            background: linear-gradient(135deg, #1a1f2e, #0a0d18);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
        }
        .card-body {
            padding: 1.5rem;
            position: relative;
        }
        
        .card-body h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
        .card-body p { font-size: 0.85rem; color: var(--text-secondary); }
        .card-footer {
            display: flex;
            justify-content: space-between;
            margin-top: 1rem;
        }
        .card-tag {
            font-size: 0.7rem;
            padding: 4px 12px;
            border-radius: 50px;
            background: rgba(255,159,67,0.2);
            color: #ff9f43;
        }
        .card-btn {
            padding: 6px 16px;
            border-radius: 50px;
            background: rgba(255,159,67,0.1);
            color: #ff9f43;
            border: 1px solid rgba(255,159,67,0.4);
            cursor: pointer;
        }

        /* REDES SOCIALES */
        .social-section {
            text-align: center;
            padding: 3rem 2rem;
            background: rgba(0,0,0,0.3);
            backdrop-filter: blur(5px);
            border-top: 1px solid rgba(0,247,255,0.2);
            border-bottom: 1px solid rgba(0,247,255,0.2);
        }
        .social-icons {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 1.5rem;
        }
        .social-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: rgba(0,247,255,0.1);
            border: 2px solid var(--neon-cyan);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--neon-cyan);
            transition: all 0.3s;
            text-decoration: none;
        }
        .social-icon:hover {
            transform: translateY(-8px) scale(1.1);
            background: var(--neon-cyan);
            color: black;
            box-shadow: 0 0 30px cyan;
        }

        /* TESTIMONIOS */
        .testimonios-section {
            padding: 4rem 2rem;
            background: rgba(0,0,0,0.4);
        }
        .testimonial-card {
            background: rgba(15, 17, 23, 0.8);
            border-radius: 30px;
            padding: 2rem;
            text-align: center;
            border: 1px solid rgba(0,247,255,0.3);
            margin: 20px;
        }
        .testimonial-img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, cyan, #ff44ee);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-size: 2.5rem;
        }
        .testimonial-text {
            font-style: italic;
            color: var(--text-secondary);
            margin: 1rem 0;
        }
        .testimonial-name {
            font-weight: bold;
            color: var(--neon-cyan);
            font-family: 'Orbitron', monospace;
        }
        .swiper-pagination-bullet-active { background: cyan !important; }
        .swiper-button-next, .swiper-button-prev { color: cyan !important; }

        /* FORMULARIO CONTACTO */
        .contact-form-metal {
            background: rgba(0, 10, 20, 0.75);
            backdrop-filter: blur(15px);
            border-radius: 40px;
            padding: 2rem;
            margin: 3rem 0;
            border: 1px solid rgba(0, 255, 255, 0.5);
        }
        input, textarea {
            width: 100%;
            padding: 14px 20px;
            background: #0e1a24;
            border: 1px solid #2c5f6e;
            border-radius: 60px;
            color: white;
            margin-bottom: 1rem;
            font-family: 'Montserrat', sans-serif;
        }
        textarea { border-radius: 30px; resize: vertical; }
        input:focus, textarea:focus {
            outline: none;
            border-color: cyan;
            box-shadow: 0 0 12px cyan;
        }
        .btn-submit-neon {
            background: linear-gradient(95deg, #00a6c4, #6a11cb);
            border: none;
            padding: 12px 30px;
            border-radius: 40px;
            font-weight: bold;
            color: white;
            cursor: pointer;
            width: 100%;
            transition: 0.3s;
        }
        .btn-submit-neon:hover {
            transform: scale(1.02);
            box-shadow: 0 0 22px cyan;
        }
        .error-msg { color: #ff6a6a; font-size: 0.8rem; margin-top: -0.5rem; margin-bottom: 0.5rem; }

        /* MODALES */
        .modal-generic {
            display: none;
            position: fixed;
            z-index: 10001;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.85);
            backdrop-filter: blur(8px);
            align-items: center;
            justify-content: center;
        }
        .modal-generic-content {
            background: rgba(10, 15, 25, 0.95);
            backdrop-filter: blur(15px);
            padding: 2rem;
            border: 2px solid var(--neon-cyan);
            border-radius: 30px;
            width: 90%;
            max-width: 500px;
            max-height: 80vh;
            overflow-y: auto;
        }
        .close-modal {
            float: right;
            font-size: 28px;
            color: cyan;
            cursor: pointer;
        }
        .close-modal:hover { color: #ff44ee; }

  /* ============================================
   CHATBOT V3.3 - CSS COMPLETO CORREGIDO
   ============================================ */

/* Botón Flotante */
.chatbot-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a1f2e 0%, #0d1117 100%);
    border: 3px solid var(--neon-cyan);
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    box-shadow: 0 0 20px rgba(0,247,255,0.4);
    animation: chatbotPulse 3s infinite;
}

/* Imagen dentro del botón - OCUPA CASI TODO EL BOTÓN */
.chatbot-btn img {
    width: 85% !important;
    height: 85% !important;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(0,247,255,0.6));
    transition: all 0.3s;
    border-radius: 50%;
}

/* Badge de horas - FUERA DEL BOTÓN, CENTRADO ARRIBA */
.chatbot-hours-badge {
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 0.5rem;
    font-weight: 800;
    font-family: 'Orbitron', monospace;
    background: rgba(0,247,255,0.2);
    border: 1.5px solid var(--neon-cyan);
    color: var(--neon-cyan);
    backdrop-filter: blur(8px);
    white-space: nowrap;
    z-index: 1001;
    box-shadow: 0 0 15px rgba(0,247,255,0.3);
    letter-spacing: 0.5px;
}

/* Badge en modo emergencia */
.chatbot-btn.emergency-mode .chatbot-hours-badge {
    background: rgba(231, 76, 60, 0.95);
    border-color: #ff6b6b;
    color: white;
    text-shadow: 0 0 5px rgba(0,0,0,0.3);
    animation: badgePulse 1.5s infinite;
}

/* Animación del badge en emergencia */
@keyframes badgePulse {
    0%, 100% { 
        transform: translateX(-50%) scale(1);
        box-shadow: 0 0 15px rgba(255,107,107,0.6);
    }
    50% { 
        transform: translateX(-50%) scale(1.08);
        box-shadow: 0 0 25px rgba(255,107,107,0.9);
    }
}

/* Indicador de estado online (punto) */
.chatbot-status-indicator {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 14px;
    height: 14px;
    background: #00ff88;
    border-radius: 50%;
    border: 2px solid #0d1117;
    box-shadow: 0 0 10px #00ff88;
    z-index: 3;
    animation: statusPulse 2s infinite;
}

/* Modo emergencia - indicador rojo */
.chatbot-btn.emergency-mode .chatbot-status-indicator {
    background: #ff6b6b;
    box-shadow: 0 0 10px #ff6b6b;
}

/* Animación pulso estado */
@keyframes statusPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

/* Animación pulso del botón */
@keyframes chatbotPulse {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(0,247,255,0.4);
    }
    50% { 
        box-shadow: 0 0 40px rgba(0,247,255,0.7);
    }
}

/* Animación pulso emergencia */
@keyframes emergencyPulse {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(255,107,107,0.4);
    }
    50% { 
        box-shadow: 0 0 40px rgba(255,107,107,0.7);
    }
}

/* Hover del botón */
.chatbot-btn:hover {
    transform: scale(1.08);
    border-color: var(--neon-magenta);
    box-shadow: 0 0 30px rgba(255,68,238,0.5);
}

.chatbot-btn:hover img {
    filter: drop-shadow(0 0 8px rgba(255,68,238,0.8));
}

.chatbot-btn:active {
    transform: scale(0.95);
}

/* Botón en modo emergencia */
.chatbot-btn.emergency-mode {
    border-color: #ff6b6b;
    animation: emergencyPulse 3s infinite;
}

.chatbot-btn.emergency-mode:hover {
    border-color: #ff4757;
    box-shadow: 0 0 40px rgba(255, 71, 87, 0.6);
}

/* ============================================
   VENTANA DEL CHATBOT
   ============================================ */

.chatbot-window {
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 400px;
    height: 90vh;
    background: linear-gradient(135deg, rgba(10, 15, 25, 0.98) 0%, rgba(5, 8, 15, 0.99) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid var(--neon-cyan);
    border-radius: 24px 24px 0 0;
    display: none;
    flex-direction: column;
    z-index: 1000;
    box-shadow: 0 0 60px rgba(0,247,255,0.2), 0 -5px 30px rgba(0,0,0,0.5);
    overflow: hidden;
    transform-origin: bottom right;
    animation: chatbotAppear 0.3s ease-out;
}

@keyframes chatbotAppear {
    from { 
        opacity: 0; 
        transform: translateY(50px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

/* RESPONSIVE MÓVIL - VENTANA 100% DE LA PANTALLA */
@media (max-width: 600px) {
    .chatbot-window {
        width: 100vw;
        height: 100vh;
        max-width: 100%;
        bottom: 0;
        right: 0;
        border-radius: 0;
        border: none;
        border-top: 2px solid var(--neon-cyan);
    }
    
    .chatbot-btn {
        width: 60px;
        height: 60px;
        bottom: 15px;
        right: 15px;
    }
    
    .chatbot-hours-badge {
        top: -25px;
        padding: 4px 10px;
        font-size: 0.40rem;
    }
}

/* Header del Chatbot */
.chatbot-header {
    background: linear-gradient(135deg, rgba(0, 166, 196, 0.95) 0%, rgba(106, 17, 203, 0.95) 100%);
    padding: 15px 20px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid rgba(0,247,255,0.3);
    flex-shrink: 0;
}

.chatbot-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Avatar en el header */
.chatbot-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(0,0,0,0.3);
    border: 2px solid var(--neon-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.chatbot-avatar-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

/* Texto del header */
.chatbot-header-text h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    margin: 0;
    text-shadow: 0 0 10px rgba(0,247,255,0.5);
}

.chatbot-header-text span {
    font-size: 0.7rem;
    opacity: 0.9;
    color: #aaffff;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Botón cerrar */
.chatbot-close-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.chatbot-close-btn:hover {
    background: rgba(255,68,238,0.3);
    transform: rotate(90deg);
}

/* Área de Mensajes */
.chatbot-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: rgba(0, 10, 20, 0.5);
}

/* Scrollbar */
.chatbot-messages::-webkit-scrollbar {
    width: 5px;
}
.chatbot-messages::-webkit-scrollbar-track {
    background: rgba(0,247,255,0.05);
    border-radius: 3px;
}
.chatbot-messages::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--neon-cyan), var(--neon-purple));
    border-radius: 3px;
}

/* Mensaje del Bot */
.bot-message {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    max-width: 90%;
    animation: messageSlide 0.3s ease-out;
}

.bot-avatar-inline {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0,247,255,0.1);
    border: 1.5px solid rgba(0,247,255,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bot-avatar-inline img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.bot-message-content {
    flex: 1;
    background: linear-gradient(135deg, rgba(0,247,255,0.12) 0%, rgba(0,102,255,0.08) 100%);
    border: 1px solid rgba(0,247,255,0.3);
    color: white;
    padding: 8px 12px;
    border-radius: 15px;
    border-bottom-left-radius: 4px;
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Mensaje del Usuario */
.user-message {
    max-width: 85%;
    padding: 8px 14px;
    border-radius: 15px;
    font-size: 0.85rem;
    line-height: 1.4;
    background: linear-gradient(135deg, rgba(0,166,196,0.9) 0%, rgba(106,17,203,0.9) 100%);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
    animation: messageSlide 0.3s ease-out;
}

.message-time {
    font-size: 0.6rem;
    opacity: 0.6;
    margin-top: 4px;
    display: block;
    text-align: right;
}

@keyframes messageSlide {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Indicador de escritura */
.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 8px 12px;
    align-self: flex-start;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: var(--neon-cyan);
    border-radius: 50%;
    animation: typingBounce 1.4s infinite ease-in-out both;
    box-shadow: 0 0 10px var(--neon-cyan);
}

.typing-indicator span:nth-child(1) { animation-delay: -0.32s; }
.typing-indicator span:nth-child(2) { animation-delay: -0.16s; }

@keyframes typingBounce {
    0%, 80%, 100% { transform: scale(0); opacity: 0.5; }
    40% { transform: scale(1); opacity: 1; }
}

/* Botones Rápidos */
.quick-buttons {
    padding: 10px 15px;
    overflow-x: auto;
    white-space: nowrap;
    border-top: 1px solid rgba(0,247,255,0.2);
    border-bottom: 1px solid rgba(0,247,255,0.2);
    background: rgba(0,10,20,0.5);
    display: flex;
    gap: 8px;
    flex-shrink: 0;
    scrollbar-width: none;
}

.quick-buttons::-webkit-scrollbar { display: none; }

.quick-btn {
    background: linear-gradient(135deg, rgba(0,247,255,0.15) 0%, rgba(0,102,255,0.1) 100%);
    border: 1px solid rgba(0,247,255,0.4);
    color: var(--neon-cyan);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    white-space: nowrap;
}

.quick-btn:hover {
    background: var(--neon-cyan);
    color: black;
    transform: translateY(-2px);
}

/* Acciones del Chatbot */
.chatbot-actions {
    display: flex;
    gap: 10px;
    padding: 8px 15px;
    justify-content: center;
    background: rgba(0,10,20,0.5);
    flex-shrink: 0;
}

.chatbot-action-btn {
    background: transparent;
    border: 1px solid rgba(0,247,255,0.3);
    color: var(--neon-cyan);
    padding: 5px 12px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.7rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.chatbot-action-btn:hover {
    background: rgba(0,247,255,0.2);
    border-color: var(--neon-cyan);
}

/* Input Area */
.chatbot-input {
    display: flex;
    padding: 12px 15px;
    border-top: 2px solid rgba(0,247,255,0.3);
    background: linear-gradient(0deg, rgba(0,10,20,0.9) 0%, rgba(5,8,15,0.95) 100%);
    gap: 10px;
    flex-shrink: 0;
}

.chatbot-input input {
    flex: 1;
    padding: 10px 15px;
    border-radius: 30px;
    border: 1px solid rgba(0,247,255,0.3);
    background: rgba(14, 26, 36, 0.8);
    color: white;
    margin: 0;
    font-size: 0.85rem;
}

.chatbot-input input:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0,247,255,0.2);
}

.chatbot-input input::placeholder {
    color: rgba(200,220,255,0.4);
}

.chatbot-input button {
    background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-blue) 100%);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: black;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.chatbot-input button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0,247,255,0.5);
}



/* ============================================
   MODAL EMERGENCIA - ESTILOS ADICIONALES
   ============================================ */

#emergencyModal .modal-generic-content {
    border: 2px solid #ff6b6b;
    box-shadow: 0 0 40px rgba(255, 107, 107, 0.3);
}

#emergencyModal input:focus,
#emergencyModal textarea:focus,
#emergencyModal select:focus {
    outline: none;
    border-color: #ff6b6b;
    box-shadow: 0 0 12px rgba(255, 107, 107, 0.3);
}

/* Animación de pulso para estado cerrado */
@keyframes emergencyPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 107, 107, 0.4), inset 0 0 20px rgba(255, 107, 107, 0.1); }
    50% { box-shadow: 0 0 40px rgba(255, 107, 107, 0.7), inset 0 0 30px rgba(255, 107, 107, 0.2); }
}

.chatbot-btn.emergency-mode {
    border-color: #ff6b6b;
    animation: emergencyPulse 3s infinite;
}

.chatbot-btn.emergency-mode::before {
    background: linear-gradient(45deg, transparent 30%, rgba(255, 107, 107, 0.1) 50%, transparent 70%);
}

.chatbot-btn.emergency-mode:hover {
    border-color: #ff4757;
    box-shadow: 0 0 40px rgba(255, 71, 87, 0.6);
}

        footer {
            background: var(--bg-dark);
            border-top: 1px solid rgba(0,247,255,0.3);
            padding: 4rem 2rem 2rem;
        }
        .footer-links a {
            display: block;
            color: var(--text-secondary);
            text-decoration: none;
            margin-bottom: 0.75rem;
            cursor: pointer;
        }
        .footer-links a:hover { color: var(--neon-cyan); }
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.05);
            font-size: 0.85rem;
        }
        @media (max-width: 768px) {
            .nav-links { display: none; }
            .glass-nav { padding: 1rem; }
        }

        /* ============================================
   SECCIÓN DESCARGAR APP / PWA
   ============================================ */

.app-download-section {
    position: relative;
    padding: 6rem 2rem;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.app-download-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0,247,255,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255,68,238,0.06) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><rect width="60" height="60" fill="none" stroke="rgba(0,247,255,0.03)" stroke-width="1"/></svg>');
    z-index: 0;
}

.app-download-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(5,7,10,0.8) 0%, rgba(5,7,10,0.6) 100%);
    z-index: 1;
}

.app-download-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.app-download-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    border: 1px solid var(--neon-cyan);
    border-radius: 50px;
    color: var(--neon-cyan);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
    background: rgba(0,247,255,0.05);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff88;
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.app-download-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.app-download-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.app-download-title span {
    color: var(--neon-cyan);
    text-shadow: 0 0 20px rgba(0,247,255,0.5);
}

.app-download-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 500px;
}

.app-download-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.app-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(0,247,255,0.05);
    border: 1px solid rgba(0,247,255,0.15);
    border-radius: 12px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: all 0.3s;
}

.app-feature:hover {
    background: rgba(0,247,255,0.1);
    border-color: var(--neon-cyan);
    transform: translateX(5px);
}

.app-feature i {
    color: var(--neon-cyan);
    font-size: 1.1rem;
}

.app-download-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.btn-install-app {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
    color: var(--bg-dark);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 0 30px rgba(0,247,255,0.4);
    width: fit-content;
}

.btn-install-app:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 50px rgba(0,247,255,0.6);
}

.btn-install-ios {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: transparent;
    color: var(--neon-cyan);
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--neon-cyan);
    cursor: pointer;
    transition: all 0.3s;
    width: fit-content;
}

.btn-install-ios:hover {
    background: var(--neon-cyan);
    color: var(--bg-dark);
    box-shadow: 0 0 25px var(--neon-cyan);
}

.app-install-hint {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(255,159,67,0.1);
    border: 1px solid rgba(255,159,67,0.3);
    border-radius: 12px;
    color: #ff9f43;
    font-size: 0.85rem;
    max-width: 400px;
}

.app-install-hint.visible {
    display: flex;
}

.app-download-meta {
    color: var(--text-secondary);
    font-size: 0.8rem;
    opacity: 0.7;
}

.app-download-meta i {
    color: var(--neon-cyan);
    margin-right: 6px;
}

/* Phone Mockup */
.app-download-mockup {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: linear-gradient(135deg, #1a1f2e, #0d1117);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 
        0 0 60px rgba(0,247,255,0.2),
        0 25px 50px rgba(0,0,0,0.5),
        inset 0 0 30px rgba(0,247,255,0.05);
    border: 2px solid rgba(0,247,255,0.3);
    position: relative;
    transform: rotateY(-15deg) rotateX(5deg);
    transition: transform 0.5s;
    animation: floatPhone 6s ease-in-out infinite;
}

.phone-mockup:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.02);
}

@keyframes floatPhone {
    0%, 100% { transform: rotateY(-15deg) rotateX(5deg) translateY(0); }
    50% { transform: rotateY(-15deg) rotateX(5deg) translateY(-20px); }
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: #000;
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.phone-content {
    text-align: center;
    padding: 2rem;
}

.phone-app-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 30px rgba(0,247,255,0.4);
}

.phone-app-name {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.3rem;
}

.phone-app-tagline {
    color: var(--neon-cyan);
    font-size: 0.85rem;
    margin-bottom: 2rem;
}

.phone-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
}

.phone-stat {
    text-align: center;
}

.phone-stat-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0,247,255,0.5);
}

.phone-stat-label {
    font-size: 0.7rem;
    color: var(--text-secondary);
}

.phone-reflection {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, transparent 100%);
    border-radius: 32px 32px 0 0;
    pointer-events: none;
}

.mockup-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0,247,255,0.2) 0%, transparent 70%);
    filter: blur(60px);
    z-index: -1;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

@media (max-width: 900px) {
    .app-download-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .app-download-desc {
        margin-left: auto;
        margin-right: auto;
    }
    .app-download-features {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    .app-download-actions {
        align-items: center;
    }
    .app-download-mockup {
        order: -1;
        margin-bottom: 2rem;
    }
    .phone-mockup {
        transform: none;
        animation: floatPhoneMobile 6s ease-in-out infinite;
    }
    @keyframes floatPhoneMobile {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-15px); }
    }
}

/* Animaciones para PWA */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ============================================
   SECCIÓN GTC - GESTIÓN TOTAL DE CLIENTES
   ============================================ */

.gtc-section {
    position: relative;
    padding: 6rem 2rem;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a1a 0%, #05050a 100%);
}

.gtc-bg-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 40%, rgba(255,68,238,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0,247,255,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.gtc-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.gtc-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(255,68,238,0.2), rgba(157,0,255,0.2));
    border: 1px solid rgba(255,68,238,0.5);
    border-radius: 50px;
    color: #ff44ee;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(5px);
}

.gtc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.gtc-title {
    margin-bottom: 1.5rem;
}

.gtc-title-line {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    font-family: 'Orbitron', monospace;
    background: linear-gradient(135deg, #ff44ee, #9d00ff, #00f7ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
    text-shadow: 0 0 20px rgba(255,68,238,0.3);
}

.gtc-title-sub {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: 2px;
}

.gtc-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.gtc-highlight {
    color: #ff44ee;
    text-shadow: 0 0 10px rgba(255,68,238,0.5);
}

.gtc-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,68,238,0.2);
    border-bottom: 1px solid rgba(255,68,238,0.2);
}

.gtc-stat {
    text-align: center;
}

.gtc-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #ff44ee;
    font-family: 'Orbitron', monospace;
    text-shadow: 0 0 15px rgba(255,68,238,0.5);
}

.gtc-stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.gtc-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.gtc-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255,68,238,0.05);
    border: 1px solid rgba(255,68,238,0.15);
    border-radius: 12px;
    transition: all 0.3s;
}

.gtc-feature:hover {
    background: rgba(255,68,238,0.1);
    border-color: #ff44ee;
    transform: translateX(5px);
}

.gtc-feature i {
    font-size: 1.5rem;
    color: #ff44ee;
}

.gtc-feature h4 {
    font-size: 0.9rem;
    margin-bottom: 4px;
    color: white;
}

.gtc-feature p {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin: 0;
}

.gtc-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.gtc-btn-primary {
    background: linear-gradient(135deg, #ff44ee, #9d00ff);
    color: white;
    padding: 14px 32px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(255,68,238,0.4);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.gtc-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 35px rgba(255,68,238,0.6);
}

.gtc-btn-secondary {
    background: transparent;
    border: 2px solid #ff44ee;
    color: #ff44ee;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.gtc-btn-secondary:hover {
    background: rgba(255,68,238,0.1);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255,68,238,0.3);
}

.gtc-trust {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.gtc-trust i {
    color: #00ff88;
}

/* Mockup del Software */
.gtc-mockup {
    position: relative;
}

.gtc-mockup-window {
    background: rgba(10, 15, 25, 0.95);
    border: 1px solid rgba(255,68,238,0.3);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 30px rgba(255,68,238,0.2);
    transform: rotateY(-5deg) rotateX(5deg);
    transition: all 0.5s;
}

.gtc-mockup-window:hover {
    transform: rotateY(0deg) rotateX(0deg);
    border-color: #ff44ee;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 50px rgba(255,68,238,0.4);
}

.gtc-mockup-header {
    background: linear-gradient(135deg, #1a1f2e, #0d1117);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,68,238,0.2);
}

.gtc-mockup-dots {
    display: flex;
    gap: 6px;
}

.gtc-mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff5f56;
}

.gtc-mockup-dots span:nth-child(2) { background: #ffbd2e; }
.gtc-mockup-dots span:nth-child(3) { background: #27c93f; }

.gtc-mockup-title {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-family: 'Orbitron', monospace;
}

.gtc-mockup-icons {
    display: flex;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.gtc-mockup-content {
    padding: 20px;
}

.gtc-mockup-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.gtc-mockup-card {
    background: rgba(0,0,0,0.3);
    padding: 12px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255,68,238,0.1);
}

.gtc-mockup-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: #ff44ee;
}

.gtc-mockup-label {
    font-size: 0.7rem;
    color: var(--text-secondary);
}

.gtc-mockup-trend {
    font-size: 0.7rem;
    font-weight: 600;
}

.gtc-mockup-trend.up { color: #00ff88; }
.gtc-mockup-trend.stable { color: #ffbd2e; }

.gtc-mockup-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 120px;
    margin-bottom: 20px;
    padding: 10px;
    background: rgba(0,0,0,0.2);
    border-radius: 10px;
}

.gtc-chart-bar {
    flex: 1;
    background: linear-gradient(180deg, #ff44ee, #9d00ff);
    border-radius: 4px;
    transition: height 0.3s;
    min-height: 20px;
}

.gtc-mockup-table {
    background: rgba(0,0,0,0.2);
    border-radius: 10px;
    padding: 10px;
}

.gtc-table-row {
    display: flex;
    justify-content: space-between;
    padding: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.8rem;
}

.gtc-table-row .status {
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}

.status.success { background: rgba(0,255,136,0.2); color: #00ff88; }
.status.warning { background: rgba(255,189,46,0.2); color: #ffbd2e; }

.gtc-mockup-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255,68,238,0.1) 0%, transparent 70%);
    filter: blur(40px);
    z-index: -1;
    pointer-events: none;
}

@media (max-width: 900px) {
    .gtc-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .gtc-features {
        grid-template-columns: 1fr;
    }
    
    .gtc-buttons {
        flex-direction: column;
    }
    
    .gtc-mockup-window {
        transform: none;
    }
}

/* ============================================
   SOCIAL MEDIA & BRANDING SECTION
   ============================================ */

.social-branding-section {
    position: relative;
    padding: 6rem 2rem;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a1a 0%, #050510 100%);
}

.social-branding-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0,247,255,0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255,68,238,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.social-branding-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.social-branding-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

.social-branding-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0,247,255,0.1);
    border: 1px solid var(--neon-cyan);
    border-radius: 50px;
    padding: 6px 18px;
    color: var(--neon-cyan);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.pulse-dot-social {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    display: inline-block;
    animation: pulseDot 2s infinite;
}

.social-branding-header {
    text-align: center;
    margin-bottom: 3rem;
}

.social-branding-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    font-family: 'Orbitron', monospace;
}

.social-branding-title span {
    color: var(--neon-cyan);
    text-shadow: 0 0 20px rgba(0,247,255,0.5);
}

.social-branding-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* Grid de servicios */
.social-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.social-service-card {
    background: rgba(15, 17, 23, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0,247,255,0.2);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.3s;
}

.social-service-card:hover {
    transform: translateY(-8px);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 30px rgba(0,247,255,0.2);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0,247,255,0.2), rgba(255,68,238,0.2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0,247,255,0.3);
}

.social-service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: white;
}

.social-service-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    margin: 1rem 0;
}

.service-features li {
    padding: 0.4rem 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.service-features li i {
    color: #00ff88;
    margin-right: 8px;
    font-size: 0.8rem;
}

.service-btn {
    width: 100%;
    background: transparent;
    border: 1px solid var(--neon-cyan);
    color: var(--neon-cyan);
    padding: 10px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
}

.service-btn:hover {
    background: var(--neon-cyan);
    color: black;
    box-shadow: 0 0 15px var(--neon-cyan);
}

/* Mockup */
.social-mockup-container {
    background: rgba(0,0,0,0.4);
    border-radius: 30px;
    padding: 2rem;
    margin-bottom: 4rem;
    border: 1px solid rgba(0,247,255,0.2);
}

.social-mockup-header {
    text-align: center;
    margin-bottom: 2rem;
}

.mockup-badge {
    display: inline-block;
    background: rgba(255,68,238,0.2);
    border: 1px solid #ff44ee;
    border-radius: 50px;
    padding: 4px 16px;
    font-size: 0.75rem;
    color: #ff44ee;
    margin-bottom: 1rem;
}

.social-mockup-header h3 {
    font-size: 1.5rem;
    color: white;
}

.social-mockup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.mockup-card {
    background: rgba(10, 15, 25, 0.9);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.mockup-label {
    font-size: 0.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.mockup-card.before .mockup-label { color: #ff6b6b; }
.mockup-card.after .mockup-label { color: #00ff88; }

.mockup-profile {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.mockup-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.mockup-avatar.blur {
    background: #333;
    filter: blur(4px);
}

.mockup-info {
    flex: 1;
}

.mockup-name {
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.mockup-name.blur {
    width: 80%;
    height: 16px;
    background: #333;
    filter: blur(3px);
}

.mockup-bio {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.mockup-bio.blur {
    width: 100%;
    height: 12px;
    background: #333;
    filter: blur(2px);
}

.mockup-posts {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.mockup-post {
    flex: 1;
    height: 80px;
    background: #1a1f2e;
    border-radius: 12px;
}

.mockup-post.blur {
    background: #333;
    filter: blur(3px);
}

.neon-post {
    background: linear-gradient(135deg, rgba(0,247,255,0.2), rgba(255,68,238,0.2));
    border: 1px solid rgba(0,247,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--neon-cyan);
}

.mockup-text {
    margin-top: 1rem;
    font-size: 0.8rem;
    text-align: center;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Paquetes de precios */
.social-pricing {
    text-align: center;
    margin-bottom: 4rem;
}

.social-pricing h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-family: 'Orbitron', monospace;
}

.pricing-grid-social {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.pricing-card-social {
    background: rgba(15, 17, 23, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(0,247,255,0.2);
    transition: all 0.3s;
}

.pricing-card-social.featured {
    border: 2px solid #ff44ee;
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(255,68,238,0.2);
}

.pricing-card-social:hover {
    transform: translateY(-5px);
}

.pricing-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.pricing-card-social h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--neon-cyan);
    margin-bottom: 1rem;
}

.price span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.pricing-card-social ul {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.pricing-card-social li {
    padding: 0.4rem 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.pricing-card-social button {
    width: 100%;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
    border: none;
    padding: 12px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.pricing-card-social.featured button {
    background: linear-gradient(135deg, #ff44ee, #9d00ff);
    color: white;
}

.pricing-card-social button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0,247,255,0.4);
}

/* CTA */
.social-cta {
    background: linear-gradient(135deg, rgba(0,247,255,0.1), rgba(255,68,238,0.1));
    border-radius: 30px;
    padding: 3rem;
    text-align: center;
    border: 1px solid rgba(0,247,255,0.3);
}

.social-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.social-cta p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.social-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-social {
    background: linear-gradient(135deg, #25d366, #128c7e);
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    color: white;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary-social:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(37,211,102,0.4);
}

.btn-secondary-social {
    background: transparent;
    border: 2px solid var(--neon-cyan);
    color: var(--neon-cyan);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary-social:hover {
    background: var(--neon-cyan);
    color: black;
    box-shadow: 0 0 20px var(--neon-cyan);
}

@media (max-width: 768px) {
    .social-mockup-grid {
        grid-template-columns: 1fr;
    }
    
    .social-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Estilos para versión "Coming Soon" */
.social-service-card.coming-soon {
    opacity: 0.85;
    position: relative;
    overflow: hidden;
}

.social-service-card.coming-soon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,247,255,0.05), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    to { left: 100%; }
}

.coming-badge {
    position: absolute;
    top: -2px;
    right: -1px;
    background: rgba(255,68,238,0.9);
    color: white;
    font-size: 0.6rem;
    padding: 3px 8px;
    border-radius: 20px;
    white-space: nowrap;
    font-weight: 600;
}

.service-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    filter: grayscale(0.2);
}

.service-btn.disabled:hover {
    transform: none;
    background: transparent;
    color: var(--neon-cyan);
}

/* Pre-registro */
.social-preregistro {
    background: linear-gradient(135deg, rgba(0,247,255,0.08), rgba(255,68,238,0.08));
    border-radius: 30px;
    padding: 2rem;
    margin: 3rem 0;
    border: 1px solid rgba(0,247,255,0.3);
}

.preregistro-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.preregistro-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.preregistro-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.form-row input, .form-row select {
    flex: 1;
    min-width: 180px;
}

.prereg-btn {
    background: linear-gradient(135deg, #ff44ee, #9d00ff);
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    color: white;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.prereg-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(255,68,238,0.5);
}

.prereg-status {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    text-align: center;
}

/* Roadmap */
.social-roadmap {
    background: rgba(0,0,0,0.4);
    border-radius: 30px;
    padding: 2rem;
    margin: 3rem 0;
}

.social-roadmap h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.roadmap-timeline {
    max-width: 600px;
    margin: 0 auto;
}

.roadmap-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.roadmap-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 40px;
    width: 2px;
    height: calc(100% - 10px);
    background: linear-gradient(180deg, var(--neon-cyan), transparent);
}

.roadmap-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: 2px solid var(--neon-cyan);
    flex-shrink: 0;
    z-index: 1;
    background: #0a0f1f;
}

.roadmap-dot.done {
    background: #00ff88;
    border-color: #00ff88;
    box-shadow: 0 0 10px #00ff88;
}

.roadmap-dot.current {
    background: var(--neon-cyan);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px var(--neon-cyan);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 5px var(--neon-cyan); }
    50% { box-shadow: 0 0 20px var(--neon-cyan); }
}

.roadmap-content {
    flex: 1;
}

.roadmap-content h4 {
    margin-bottom: 0.3rem;
    color: white;
}

.roadmap-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.progress-bar {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    height: 8px;
    margin: 0.5rem 0 0.3rem;
    overflow: hidden;
}

.progress-fill {
    background: linear-gradient(90deg, var(--neon-cyan), #ff44ee);
    border-radius: 10px;
    height: 100%;
}

.progress-text {
    font-size: 0.7rem;
    color: var(--neon-cyan);
}

/* CTA Realista */
.social-cta-real {
    background: linear-gradient(135deg, rgba(0,247,255,0.1), rgba(0,0,0,0.5));
    border-radius: 30px;
    padding: 3rem;
    text-align: center;
    border: 1px solid rgba(0,247,255,0.3);
    margin-top: 2rem;
}

.social-cta-real h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.social-cta-real p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }
    
    .prereg-btn {
        width: 100%;
    }
    
    .social-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ============================================
   SECCIÓN MB CARTELERÍA
   ============================================ */

.mb-carteleria-section {
    position: relative;
    padding: 6rem 2rem;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0f 0%, #050508 100%);
}

.mb-carteleria-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(255,170,0,0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255,102,0,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.mb-carteleria-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.mb-carteleria-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

.mb-carteleria-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,170,0,0.15);
    border: 1px solid #ffaa00;
    border-radius: 50px;
    padding: 6px 18px;
    color: #ffaa00;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.pulse-dot-mb {
    width: 8px;
    height: 8px;
    background: #ffaa00;
    border-radius: 50%;
    display: inline-block;
    animation: pulseDotMB 2s infinite;
}

@keyframes pulseDotMB {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.mb-carteleria-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mb-carteleria-title {
    margin-bottom: 1.5rem;
}

.mb-carteleria-title span:first-child {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    font-family: 'Orbitron', monospace;
    background: linear-gradient(135deg, #ffaa00, #ff6600);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
}

.mb-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: 2px;
}

.mb-carteleria-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.mb-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.mb-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255,170,0,0.05);
    border: 1px solid rgba(255,170,0,0.15);
    border-radius: 12px;
    transition: all 0.3s;
}

.mb-feature:hover {
    background: rgba(255,170,0,0.1);
    border-color: #ffaa00;
    transform: translateX(5px);
}

.mb-feature i {
    font-size: 1.5rem;
    color: #ffaa00;
}

.mb-feature h4 {
    font-size: 0.9rem;
    margin-bottom: 4px;
    color: white;
}

.mb-feature p {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin: 0;
}

.mb-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.mb-btn-primary {
    background: linear-gradient(135deg, #ffaa00, #ff6600);
    color: #0a0a0f;
    padding: 14px 32px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.mb-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 35px rgba(255,170,0,0.5);
}

.mb-btn-secondary {
    background: transparent;
    border: 2px solid #ffaa00;
    color: #ffaa00;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.mb-btn-secondary:hover {
    background: rgba(255,170,0,0.1);
    transform: translateY(-2px);
}

/* Mockup MB */
.mb-carteleria-mockup {
    position: relative;
}

.mb-mockup-window {
    background: rgba(10, 15, 25, 0.95);
    border: 1px solid rgba(255,170,0,0.3);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 30px rgba(255,170,0,0.2);
    transform: rotateY(-5deg) rotateX(5deg);
    transition: all 0.5s;
}

.mb-mockup-window:hover {
    transform: rotateY(0deg) rotateX(0deg);
    border-color: #ffaa00;
}

.mb-mockup-header {
    background: linear-gradient(135deg, #1a1f2e, #0d1117);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,170,0,0.2);
}

.mb-mockup-dots {
    display: flex;
    gap: 6px;
}

.mb-mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff5f56;
}

.mb-mockup-dots span:nth-child(2) { background: #ffbd2e; }
.mb-mockup-dots span:nth-child(3) { background: #27c93f; }

.mb-mockup-title {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-family: 'Orbitron', monospace;
}

.mb-mockup-icons {
    display: flex;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.mb-mockup-content {
    padding: 20px;
}

.mb-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.mb-gallery-item {
    background: rgba(0,0,0,0.3);
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255,170,0,0.15);
    transition: all 0.3s;
}

.mb-gallery-item:hover {
    border-color: #ffaa00;
    background: rgba(255,170,0,0.05);
}

.mb-gallery-icon {
    font-size: 2rem;
    color: #ffaa00;
    margin-bottom: 8px;
}

.mb-gallery-text {
    font-size: 0.8rem;
    color: white;
}

.mb-gallery-text small {
    font-size: 0.65rem;
    color: var(--text-secondary);
}

.mb-stats {
    display: flex;
    justify-content: space-around;
    padding-top: 15px;
    border-top: 1px solid rgba(255,170,0,0.2);
}

.mb-stat {
    text-align: center;
}

.mb-stat-number {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
    color: #ffaa00;
    font-family: 'Orbitron', monospace;
}

.mb-stat-label {
    font-size: 0.7rem;
    color: var(--text-secondary);
}

.mb-mockup-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255,170,0,0.1) 0%, transparent 70%);
    filter: blur(40px);
    z-index: -1;
    pointer-events: none;
}

.mb-divider {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,170,0,0.2);
}

.mb-divider span {
    color: #ffaa00;
    font-size: 0.8rem;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

@media (max-width: 900px) {
    .mb-carteleria-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mb-features {
        grid-template-columns: 1fr;
    }
    
    .mb-buttons {
        flex-direction: column;
    }
    
    .mb-mockup-window {
        transform: none;
    }
}

/* Estilos para el logo */
.mb-badge-logo {
    height: 24px;
    width: auto;
    margin-right: 8px;
    vertical-align: middle;
}

.mb-title-logo {
    height: 40px;
    width: auto;
    display: inline-block;
    margin-right: 12px;
    vertical-align: middle;
}

.mb-logo-large {
    max-width: 180px;
    height: auto;
    display: block;
    margin: 0 auto 20px;
}

.mb-info-logo {
    max-width: 150px;
    height: auto;
    margin: 20px 0;
}

.mb-logo-container {
    text-align: center;
    margin: 20px 0;
}

.mb-brand-logo-center {
    text-align: center;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    margin-bottom: 20px;
}

.mb-logo-caption {
    font-size: 12px;
    opacity: 0.7;
    margin-top: 8px;
}

/* ============================================
   MENÚ INFERIOR CON SCROLL HORIZONTAL (MÓVIL)
   ============================================ */

/* Contenedor principal del menú inferior - solo visible en móvil */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(5, 7, 10, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 247, 255, 0.3);
    z-index: 998;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.bottom-nav.visible {
    transform: translateY(0);
}

/* Contenedor con scroll horizontal */
.bottom-nav-container {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    scrollbar-width: thin;
    scrollbar-color: var(--neon-cyan) rgba(0, 247, 255, 0.1);
    -webkit-overflow-scrolling: touch;
}

/* Ocultar scrollbar en Chrome/Safari pero mantener funcionalidad */
.bottom-nav-container::-webkit-scrollbar {
    height: 3px;
}

.bottom-nav-container::-webkit-scrollbar-track {
    background: rgba(0, 247, 255, 0.05);
    border-radius: 3px;
}

.bottom-nav-container::-webkit-scrollbar-thumb {
    background: var(--neon-cyan);
    border-radius: 3px;
}

/* Lista de navegación */
.bottom-nav-list {
    display: inline-flex;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    margin: 0;
    list-style: none;
}

/* Cada ítem del menú */
.bottom-nav-item {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    padding: 0.5rem 0.75rem;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 247, 255, 0.15);
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.bottom-nav-item i {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 0.2rem;
    transition: all 0.2s;
}

.bottom-nav-item span {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.2s;
}

/* Hover y active */
.bottom-nav-item:hover {
    border-color: var(--neon-cyan);
    background: rgba(0, 247, 255, 0.1);
    transform: translateY(-2px);
}

.bottom-nav-item:active {
    transform: translateY(0);
}

/* ítem activo (sección actual) */
.bottom-nav-item.active {
    background: linear-gradient(135deg, rgba(0, 247, 255, 0.2), rgba(0, 102, 255, 0.1));
    border-color: var(--neon-cyan);
    box-shadow: 0 0 12px rgba(0, 247, 255, 0.3);
}

.bottom-nav-item.active i {
    color: var(--neon-cyan);
    text-shadow: 0 0 8px var(--neon-cyan);
}

.bottom-nav-item.active span {
    color: var(--neon-cyan);
    text-shadow: 0 0 5px var(--neon-cyan);
}

/* Indicador de scroll (opcional) */
.scroll-indicator {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: linear-gradient(90deg, transparent, rgba(0, 247, 255, 0.2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 8px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.scroll-indicator i {
    color: var(--neon-cyan);
    font-size: 0.8rem;
    animation: scrollHint 1.5s infinite;
}

@keyframes scrollHint {
    0%, 100% { transform: translateX(0); opacity: 0.5; }
    50% { transform: translateX(4px); opacity: 1; }
}

/* Mostrar indicador solo cuando hay scroll */
.bottom-nav-container.show-scroll + .scroll-indicator {
    opacity: 1;
}

/* Ajustes para el chatbot (no interfieren) */
.chatbot-btn {
    bottom: 80px !important; /* Subir el botón del chat para que no tape el menú */
    z-index: 999;
}

/* Ajuste para móvil cuando el menú está visible */
@media (max-width: 768px) {
    body {
        padding-bottom: 70px; /* Espacio para el menú inferior */
    }
    
    .chatbot-btn {
        bottom: 85px !important;
    }
    
    /* Ajuste para modales */
    .modal-generic-content {
        margin-bottom: 70px;
    }
}

/* Ocultar en desktop */
@media (min-width: 769px) {
    .bottom-nav {
        display: none;
    }
    
    .chatbot-btn {
        bottom: 25px !important;
    }
}

/* ============================================
   SECCIÓN MEMORA - PRODUCTO PROPIO
   ============================================ */

.memora-section {
    position: relative;
    padding: 6rem 2rem;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a1a 0%, #0a0a2a 100%);
}

.memora-bg-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 40%, rgba(255,68,238,0.08) 0%, transparent 50%),
                      radial-gradient(circle at 80% 70%, rgba(0,247,255,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.memora-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.memora-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(255,68,238,0.2), rgba(157,0,255,0.2));
    border: 1px solid rgba(255,68,238,0.5);
    border-radius: 50px;
    padding: 6px 16px;
    color: #ff44ee;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(5px);
}

.memora-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.memora-icon {
    margin-bottom: 1rem;
}

.memora-title-line {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    font-family: 'Orbitron', monospace;
    background: linear-gradient(135deg, #ff44ee, #9d00ff, #00f7ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.memora-title-sub {
    font-size: 1.2rem;
    color: var(--text-secondary);
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.memora-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.memora-highlight {
    color: #ff44ee;
    text-shadow: 0 0 10px rgba(255,68,238,0.5);
}

.memora-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,68,238,0.2);
    border-bottom: 1px solid rgba(255,68,238,0.2);
}

.memora-stat {
    text-align: center;
}

.memora-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #ff44ee;
    font-family: 'Orbitron', monospace;
    text-shadow: 0 0 15px rgba(255,68,238,0.5);
}

.memora-stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.memora-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.memora-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255,68,238,0.05);
    border: 1px solid rgba(255,68,238,0.15);
    border-radius: 12px;
    transition: all 0.3s;
}

.memora-feature:hover {
    background: rgba(255,68,238,0.1);
    border-color: #ff44ee;
    transform: translateX(5px);
}

.memora-feature i {
    font-size: 1.5rem;
    color: #ff44ee;
}

.memora-feature h4 {
    font-size: 0.9rem;
    margin-bottom: 4px;
    color: white;
}

.memora-feature p {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin: 0;
}

.memora-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.memora-btn-primary {
    background: linear-gradient(135deg, #ff44ee, #9d00ff);
    color: white;
    padding: 14px 32px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 20px rgba(255,68,238,0.4);
}

.memora-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 35px rgba(255,68,238,0.6);
}

.memora-btn-secondary {
    background: transparent;
    border: 2px solid #ff44ee;
    color: #ff44ee;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.memora-btn-secondary:hover {
    background: rgba(255,68,238,0.1);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255,68,238,0.3);
}

.memora-philosophy {
    background: rgba(255,68,238,0.08);
    border-radius: 20px;
    padding: 1rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
    border: 1px solid rgba(255,68,238,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Mockup MEMORA */
.memora-mockup {
    position: relative;
}

.memora-mockup-window {
    background: rgba(10, 15, 25, 0.95);
    border: 1px solid rgba(255,68,238,0.3);
    border-radius: 24px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 30px rgba(255,68,238,0.2);
    transform: rotateY(-5deg) rotateX(5deg);
    transition: all 0.5s;
}

.memora-mockup-window:hover {
    transform: rotateY(0deg) rotateX(0deg);
    border-color: #ff44ee;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 50px rgba(255,68,238,0.4);
}

.memora-mockup-header {
    background: linear-gradient(135deg, #1a1f2e, #0d1117);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,68,238,0.2);
}

.memora-mockup-dots {
    display: flex;
    gap: 6px;
}

.memora-mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff5f56;
}

.memora-mockup-dots span:nth-child(2) { background: #ffbd2e; }
.memora-mockup-dots span:nth-child(3) { background: #27c93f; }

.memora-mockup-title {
    font-size: 0.7rem;
    color: var(--text-secondary);
    font-family: 'Orbitron', monospace;
}

.memora-mockup-icons {
    display: flex;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.7rem;
}

.memora-mockup-content {
    padding: 20px;
}

.memora-day-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.7rem;
}

.memora-date {
    color: var(--text-secondary);
}

.memora-badge {
    background: rgba(255,68,238,0.2);
    color: #ff44ee;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 0.6rem;
}

.memora-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.memora-summary-item {
    background: rgba(0,0,0,0.3);
    padding: 10px;
    border-radius: 12px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.memora-summary-item i {
    font-size: 1.2rem;
    color: #ff44ee;
}

.memora-summary-info {
    text-align: left;
}

.memora-summary-value {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    color: white;
}

.memora-summary-label {
    font-size: 0.6rem;
    color: var(--text-secondary);
}

.memora-reminders {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.memora-reminder-card {
    background: rgba(0,0,0,0.3);
    border-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255,68,238,0.1);
}

.memora-reminder-icon {
    font-size: 1.8rem;
}

.memora-reminder-info {
    flex: 1;
}

.memora-reminder-info h4 {
    font-size: 0.8rem;
    color: white;
    margin-bottom: 2px;
}

.memora-reminder-info p {
    font-size: 0.65rem;
    color: var(--text-secondary);
}

.memora-add-btn {
    background: rgba(255,68,238,0.2);
    border: 1px solid rgba(255,68,238,0.3);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    color: #ff44ee;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
}

.memora-add-btn:hover {
    background: #ff44ee;
    color: black;
}

.memora-progress {
    background: rgba(0,0,0,0.3);
    border-radius: 12px;
    padding: 12px;
}

.memora-progress-text {
    display: flex;
    justify-content: space-between;
    font-size: 0.65rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.memora-progress-bar {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    height: 6px;
    overflow: hidden;
}

.memora-progress-fill {
    background: linear-gradient(90deg, #ff44ee, #9d00ff);
    border-radius: 10px;
    height: 100%;
}

.memora-mockup-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255,68,238,0.1) 0%, transparent 70%);
    filter: blur(40px);
    z-index: -1;
    pointer-events: none;
}

@media (max-width: 900px) {
    .memora-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .memora-features {
        grid-template-columns: 1fr;
    }
    
    .memora-buttons {
        flex-direction: column;
    }
    
    .memora-stats {
        justify-content: center;
    }
    
    .memora-mockup-window {
        transform: none;
    }
}