:root {
            --brand-primary: #345da8;
            --brand-cyan: #009ce0; 
            --bg-dark: #07090f;
            --text-light: #ffffff;
            --text-gray: #8899aa;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        html { overflow-x: hidden; }
        body {
            background-color: var(--bg-dark);
            color: var(--text-light);
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        h1, h2, h3, h4 { font-family: 'Share Tech', sans-serif; }

        /* --- PRELOADER INTRO --- */
        #preloader {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: var(--bg-dark); z-index: 9999;
            display: flex; justify-content: center; align-items: center; flex-direction: column;
            pointer-events: none;
        }
        .loader-logo img { width: 150px; opacity: 0; transform: scale(0.8); }
        .loader-line { width: 0; height: 2px; background: var(--brand-cyan); margin-top: 20px; border-radius: 2px; }

        /* --- NAVBAR --- */
        nav {
            position: fixed; top: 0; width: 100%; padding: 25px 5%;
            display: flex; justify-content: space-between; align-items: center;
            z-index: 1000; transition: all 0.4s;
        }
        nav.scrolled {
            background: rgba(7, 9, 15, 0.95);
            backdrop-filter: blur(15px);
            border-bottom: 1px solid rgba(0, 156, 224, 0.2);
            padding: 15px 5%;
        }

        .logo img { height: 35px; transition: 0.3s; }
        .nav-links { display: flex; gap: 40px; align-items: center; }
        .nav-links a {
            position: relative;
            color: var(--text-light);
            text-decoration: none; font-family: 'Space Mono', monospace; font-size: 0.95rem;
            text-transform: uppercase; letter-spacing: 1px; font-weight: 700;
            transition: color 0.3s;
        }
        .nav-links a::after {
            content: ''; position: absolute; left: 0; bottom: -8px; width: 0; height: 2px;
            background: var(--brand-cyan); transition: width 0.3s;
        }
        .nav-links a:hover { color: var(--brand-cyan); }
        .nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
        .nav-links a.active { color: var(--brand-cyan); }
        .scramble-inner { pointer-events: none; }
        .scramble-link .dud { color: var(--brand-cyan); }
        .scramble-text .dud { color: var(--brand-cyan); }

        /* --- LANG SWITCH --- */
        .lang-switch {
            border: 1px solid rgba(255,255,255,0.25); border-radius: 20px;
            padding: 4px 12px !important; font-size: 0.8rem !important;
        }
        .lang-switch::after { display: none; }
        .lang-switch:hover { border-color: var(--brand-cyan); }

        /* --- LANG BANNER --- */
        #langBanner {
            position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%) translateY(120%);
            z-index: 1100; background: rgba(15, 18, 28, 0.97); border: 1px solid rgba(0,156,224,0.3);
            border-radius: 12px; padding: 14px 18px; display: flex; align-items: center; gap: 14px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.4); transition: transform 0.4s ease; max-width: 92vw;
        }
        #langBanner.visible { transform: translateX(-50%) translateY(0); }
        #langBanner span { color: var(--text-light); font-size: 0.92rem; white-space: nowrap; }
        #langBanner a {
            background: var(--brand-cyan); color: #fff; text-decoration: none; padding: 8px 16px;
            border-radius: 8px; font-size: 0.85rem; font-weight: 700; white-space: nowrap;
        }
        #langBanner button {
            background: none; border: none; color: var(--text-gray); cursor: pointer; font-size: 1.1rem;
            line-height: 1; padding: 4px;
        }

        /* --- HERO --- */
        .hero {
            position: relative; height: 100vh; display: flex;
            align-items: center; justify-content: center; overflow: hidden;
            border-bottom: 1px solid rgba(255,255,255,0.1); 
        }
        #bg-video {
            position: absolute; top: 50%; left: 50%; min-width: 100%; min-height: 100%;
            transform: translate(-50%, -50%); z-index: 1; object-fit: cover; opacity: 0.8;
        }
        .hero-overlay {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(to bottom, rgba(0, 156, 224, 0.15) 0%, rgba(7, 9, 15, 0.5) 100%);
            z-index: 2;
        }

        .hero-content {
            position: relative; z-index: 3; text-align: center; max-width: 1100px; padding: 0 20px;
        }

        .hero h1 {
            font-size: clamp(3.5rem, 7vw, 6.5rem); line-height: 1.05;
            letter-spacing: -2px; margin-bottom: 20px;
            background: linear-gradient(135deg, #ffffff 40%, #a0c0e0 100%);
            -webkit-background-clip: text; -webkit-text-fill-color: transparent;
        }

        /* --- NUEVA ERA SECTION --- */
        .nueva-era {
            padding: 120px 5%; background: var(--bg-dark);
            position: relative; z-index: 3;
            display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
            align-items: center; max-width: 1400px; margin: 0 auto;
        }

        .nueva-era-left h2 {
            font-size: 4.5rem; line-height: 1.05; letter-spacing: -1px; margin-bottom: 30px;
        }
        .nueva-era-left h2 span { color: var(--brand-cyan); }
        .nueva-era-left p { color: var(--text-gray); font-size: 1.25rem; line-height: 1.6; max-width: 500px; }
        
        .btn-cyan {
            background-color: var(--brand-cyan); color: #ffffff; padding: 15px 40px;
            border-radius: 50px; font-weight: 700; text-decoration: none; display: inline-block;
            transition: all 0.3s; margin-top: 30px; border: 1px solid transparent;
            font-family: 'Share Tech', sans-serif; font-size: 1.2rem;
        }
        .btn-cyan:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(0, 156, 224, 0.4); border-color: rgba(255,255,255,0.3); }

        .nueva-era-right { position: relative; }
        
        .blue-card {
            background: linear-gradient(135deg, #1c4980 0%, #112d52 100%);
            border-radius: 30px; padding: 50px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.5);
            position: relative; z-index: 2;
        }
        .blue-card-tag {
            background: rgba(255,255,255,0.1); padding: 8px 15px; border-radius: 30px;
            font-size: 0.8rem; letter-spacing: 1px; font-weight: 700; text-transform: uppercase;
            display: inline-block; margin-bottom: 20px; font-family: 'Space Mono', monospace;
        }
        .blue-card h3 { font-size: 2.5rem; line-height: 1.2; margin-bottom: 20px;}
        
        .floating-dark-card {
            position: absolute; bottom: -40px; left: -60px;
            background: rgba(15, 20, 30, 0.8); backdrop-filter: blur(20px);
            border: 1px solid rgba(255,255,255,0.05); border-radius: 20px; padding: 30px;
            z-index: 3; box-shadow: 0 20px 40px rgba(0,0,0,0.6);
            display: flex; align-items: center; gap: 15px;
        }

        /* Floaters Moved to Nueva Era Right Column */
        .floater {
            position: absolute;
            background: rgba(255,255,255,0.03); border: 1px solid rgba(0, 156, 224, 0.2);
            backdrop-filter: blur(15px); border-radius: 20px; padding: 20px;
            animation: float 6s ease-in-out infinite; z-index: 10; text-align: left;
            opacity: 0; /* GSAP will animate this */
        }
        .f1 { top: -30px; right: -30px; width: 220px; }
        .f2 { bottom: -20px; right: -50px; width: 250px; animation-delay: -3s; }
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        /* --- SKLAVA ABOUT SECTION --- */
        .sklava-section {
            background: #ffffff; color: #000;
            border-radius: 60px 60px 0 0;
            margin-top: 80px; padding: 120px 5%;
            position: relative; z-index: 10;
            overflow: hidden;
        }
        
        .sklava-container {
            max-width: 1400px; margin: 0 auto;
            display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center;
        }

        .sklava-left { position: relative; }
        .sklava-left h2 { font-size: 4.5rem; line-height: 1; letter-spacing: -2px; margin-bottom: 30px; }
        
        .image-placeholder {
            background: #e9ecef; border-radius: 30px; height: 500px;
            overflow: hidden; position: relative;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        .image-placeholder img { width: 100%; height: 100%; object-fit: cover; }

        .bright-cyan-card {
            background: var(--brand-cyan); color: #fff;
            border-radius: 30px; padding: 50px;
            position: absolute; bottom: -50px; right: -50px;
            width: 400px; box-shadow: 0 20px 50px rgba(0, 156, 224, 0.3);
        }
        .bright-cyan-card h3 { font-size: 2.5rem; line-height: 1.1; margin-bottom: 20px; }

        /* --- SERVICIOS HORIZONTAL --- */
        .services-wrapper { background: #fff; padding-bottom: 100px; } 
        .services-horizontal {
            height: 75vh; display: flex; width: 100%;
            background: #000; border-radius: 60px; overflow: hidden;
            max-width: 1400px; margin: 0 auto;
        }

        .panel {
            flex: 1; height: 100%; position: relative; overflow: hidden;
            transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1); cursor: pointer;
            display: flex; flex-direction: column; justify-content: flex-end;
            padding: 40px; border-right: 1px solid rgba(255,255,255,0.05);
        }
        .panel:hover { flex: 2.5; }
        .panel-content { position: relative; z-index: 3; opacity: 0.8; transition: opacity 0.4s; }
        .panel:hover .panel-content { opacity: 1; }
        .panel h3 { font-size: clamp(1.05rem, 1.4vw, 1.6rem); margin-bottom: 10px; line-height: 1.15; transition: font-size 0.4s; white-space: nowrap; }
        .panel:hover h3 { font-size: clamp(1.8rem, 2.6vw, 2.6rem); white-space: normal; }
        .panel p { font-size: 1rem; max-width: 400px; opacity: 0; transform: translateY(20px); transition: all 0.5s ease 0.1s; }
        .panel:hover p { opacity: 1; transform: translateY(0); }
        .panel-icon { position: absolute; top: 40px; left: 40px; }

        .p0 { background: linear-gradient(135deg, #009ce0 0%, #345da8 100%); color: white; }
        .p1 { background-color: #0a0a0a; color: white; }
        .p2 { background-color: #f4f4f4; color: #000; }
        .p3 { background-color: var(--brand-primary); color: white; }
        .p4 { background-color: #111; color: white; }
        .p5 { background-color: #e9ecef; color: #000; }
        .p6 { background-color: #050710; color: white; }

        .panel-badge {
            position: absolute; top: 104px; left: 40px; z-index: 3; white-space: nowrap;
            background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3);
            padding: 6px 14px; border-radius: 20px; font-size: 0.7rem; font-weight: 700;
            text-transform: uppercase; letter-spacing: 0.5px; font-family: 'Space Mono', monospace;
        }

        /* --- FAQ / POR QUÉ ELEGIRNOS --- */
        .faq-section {
            padding: 120px 5%; max-width: 1400px; margin: 0 auto;
            display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px;
        }
        .faq-left h2 { font-size: 4rem; line-height: 1.1; letter-spacing: -1px; margin-bottom: 30px; }
        .accordion-item { border-bottom: 1px solid rgba(255,255,255,0.1); padding: 25px 0; cursor: pointer; }
        .accordion-header { display: flex; justify-content: space-between; align-items: center; font-size: 1.4rem; font-family: 'Share Tech', sans-serif; }
        
        /* Botones FAQ ajustados */
        .accordion-icon {
            width: 40px; height: 40px; border-radius: 50%;
            background: var(--brand-cyan); color: white; border: 1px solid var(--brand-cyan);
            display: flex; justify-content: center; align-items: center; font-weight: 300; font-size: 1.5rem; transition: 0.3s;
            font-family: 'Inter', sans-serif;
        }
        .accordion-item:hover .accordion-icon { 
            background: #2a3b4c; /* Gris/azul más oscuro en hover */
            border-color: #2a3b4c;
        }
        .accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out; color: var(--text-gray); line-height: 1.6; }
        .accordion-item.active .accordion-body { max-height: 200px; margin-top: 15px; }
        .accordion-item.active .accordion-icon { transform: rotate(45deg); background: white; color: black; border-color: white; }

        /* --- CONTACTO / FORMULARIO --- */
        .contact-section {
            padding: 100px 5%; background: #040508; position: relative;
        }
        .contact-container {
            max-width: 1200px; margin: 0 auto;
            background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05);
            border-radius: 30px; padding: 4rem;
            display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
        }
        .contact-container > div { min-width: 0; }
        .contact-info h2 { font-size: 3rem; margin-bottom: 20px;}
        .contact-info p { color: var(--text-gray); font-size: 1.1rem; line-height: 1.6; margin-bottom: 30px;}
        
        .form-group { margin-bottom: 20px; }
        .form-group label { display: block; margin-bottom: 8px; color: var(--text-gray); font-size: 0.9rem; font-weight: 600; font-family: 'Space Mono', monospace; }
        .form-control {
            width: 100%; padding: 15px; background: rgba(0,0,0,0.5);
            border: 1px solid rgba(255,255,255,0.1); border-radius: 10px;
            color: white; font-size: 1rem; outline: none; transition: 0.3s;
            font-family: 'Inter', sans-serif;
        }
        .form-control:focus { border-color: var(--brand-cyan); box-shadow: 0 0 15px rgba(0,156,224,0.1); }
        textarea.form-control { resize: vertical; min-height: 120px; }
        
        .btn-submit {
            background: var(--brand-cyan); color: #fff; padding: 15px 30px; 
            border-radius: 30px; border: none; font-weight: 700; width: 100%;
            cursor: pointer; transition: 0.3s; font-size: 1.2rem;
            font-family: 'Share Tech', sans-serif;
        }
        .btn-submit:hover { background: #0081bb; transform: translateY(-2px); }


        /* --- FOOTER --- */
        footer { background: #000; padding: 80px 5% 40px; position: relative; overflow: hidden; }
        footer::before {
            content: ''; position: absolute; top: 0; right: 0; width: 600px; height: 600px;
            background: radial-gradient(circle at 80% 20%, rgba(0, 156, 224, 0.15), transparent 60%); z-index: 1; pointer-events: none;
        }
        .footer-content { position: relative; z-index: 2; max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; }
        .footer-social { display: flex; gap: 20px; }
        .footer-social a { color: white; transition: color 0.3s; }
        .footer-social a:hover { color: var(--brand-cyan); }
        .footer-social svg { width: 24px; height: 24px; }
        .footer-col h4 { color: var(--text-gray); margin-bottom: 25px; font-size: 1.2rem; }
        .footer-col ul { list-style: none; }
        .footer-col ul li { margin-bottom: 15px; }
        .footer-col ul a { color: white; text-decoration: none; font-size: 0.95rem; transition: opacity 0.3s; }
        .footer-col ul a:hover { opacity: 0.7; color: var(--brand-cyan); }

        /* Helpers GSAP */
        .gsap-fade-up { opacity: 0; transform: translateY(60px); }
        .gsap-scale-up { opacity: 0; transform: scale(0.9); }

        /* --- WHATSAPP FLOTANTE --- */
        .whatsapp-float {
            position: fixed; bottom: 30px; right: 30px; z-index: 999;
            width: 60px; height: 60px; border-radius: 50%;
            background: #25D366; display: flex; align-items: center; justify-content: center;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6); }
        .whatsapp-float svg { width: 30px; height: 30px; fill: white; }

        /* --- MODAL DE CONFIRMACIÓN --- */
        .modal-overlay {
            position: fixed; inset: 0; background: rgba(7,9,15,0.85); backdrop-filter: blur(6px);
            display: flex; align-items: center; justify-content: center; z-index: 9998;
            opacity: 0; pointer-events: none; transition: opacity 0.3s; padding: 20px;
        }
        .modal-overlay.active { opacity: 1; pointer-events: all; }
        .modal-box {
            background: #0b0e16; border: 1px solid rgba(0,156,224,0.25); border-radius: 20px;
            padding: 3rem; max-width: 420px; width: 100%; text-align: center; position: relative;
            box-shadow: 0 0 60px rgba(0,156,224,0.15);
            transform: scale(0.9) translateY(20px); transition: transform 0.3s;
        }
        .modal-overlay.active .modal-box { transform: scale(1) translateY(0); }
        .modal-icon {
            width: 70px; height: 70px; margin: 0 auto 20px; border-radius: 50%;
            background: rgba(0,156,224,0.1); display:flex; align-items:center; justify-content:center;
            border: 1px solid var(--brand-cyan);
        }
        .modal-icon svg { width: 32px; height: 32px; stroke: var(--brand-cyan); }
        .modal-box h3 { font-family: 'Share Tech', sans-serif; font-size: 1.6rem; margin-bottom: 12px; }
        .modal-box p { color: var(--text-gray); font-size: 0.95rem; line-height: 1.5; margin-bottom: 25px; }
        .modal-close-btn {
            background: var(--brand-cyan); color: #fff; border: none; padding: 12px 30px;
            border-radius: 30px; font-family: 'Share Tech', sans-serif; font-size: 1rem; cursor: pointer;
            transition: 0.3s;
        }
        .modal-close-btn:hover { background: #0081bb; }
        .modal-box.error .modal-icon { border-color: #ff5566; background: rgba(255,85,102,0.1); }
        .modal-box.error .modal-icon svg { stroke: #ff5566; }

        /* ================= SECCIONES DE CONTENIDO (PORTAFOLIO) ================= */
        .content-section {
            padding: 120px 5%; max-width: 1400px; margin: 0 auto;
        }
        .section-label {
            color: var(--brand-cyan); font-family: 'Space Mono', monospace; font-weight: 700;
            text-transform: uppercase; letter-spacing: 2px; font-size: 0.85rem; margin-bottom: 15px; display:block;
        }
        .section-head { max-width: 700px; margin-bottom: 60px; }
        .section-head h2 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1; margin-bottom: 15px; }
        .section-head p { color: var(--text-gray); font-size: 1.15rem; line-height: 1.6; }

        /* Grid de cards genérico (Factor diferenciador / Por qué AMLUX) */
        .cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
        .info-card {
            background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
            border-radius: 20px; padding: 35px; transition: 0.3s;
        }
        .info-card:hover { border-color: rgba(0,156,224,0.35); transform: translateY(-4px); }
        .info-card-icon {
            width: 50px; height: 50px; border-radius: 14px; margin-bottom: 20px;
            background: rgba(0,156,224,0.12); display:flex; align-items:center; justify-content:center;
            color: var(--brand-cyan);
        }
        .info-card h3 { font-size: 1.25rem; margin-bottom: 10px; font-family: 'Share Tech', sans-serif; }
        .info-card p { color: var(--text-gray); font-size: 0.98rem; line-height: 1.6; }

        /* Proceso de trabajo - stepper horizontal */
        .stepper { display: flex; justify-content: space-between; gap: 10px; position: relative; margin-bottom: 50px; }
        .stepper::before {
            content: ''; position: absolute; top: 30px; left: 30px; right: 30px; height: 2px;
            background: linear-gradient(90deg, var(--brand-cyan), var(--brand-primary));
            z-index: 0;
        }
        .step { flex: 1; text-align: center; position: relative; z-index: 1; }
        .step-num {
            width: 60px; height: 60px; border-radius: 50%; margin: 0 auto 18px;
            background: var(--bg-dark); border: 2px solid var(--brand-cyan); color: var(--brand-cyan);
            display: flex; align-items: center; justify-content: center;
            font-family: 'Share Tech', sans-serif; font-size: 1.4rem; font-weight: 700;
        }
        .step h4 { font-size: 1.05rem; margin-bottom: 8px; font-family: 'Share Tech', sans-serif; }
        .step p { color: var(--text-gray); font-size: 0.9rem; line-height: 1.5; max-width: 190px; margin: 0 auto; }
        .stepper-notes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
        .stepper-note {
            background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
            border-radius: 16px; padding: 22px 25px;
        }
        .stepper-note strong { display:block; margin-bottom: 6px; font-family: 'Share Tech', sans-serif; font-size: 1.05rem; }
        .stepper-note span { color: var(--text-gray); font-size: 0.92rem; }

        /* Stack tecnológico */
        .stack-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
        .stack-col {
            background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
            border-radius: 20px; padding: 30px;
        }
        .stack-col h4 {
            font-family: 'Share Tech', sans-serif; font-size: 1.1rem; margin-bottom: 18px;
            color: var(--brand-cyan); display:flex; align-items:center; gap:10px;
        }
        .stack-col ul { list-style: none; }
        .stack-col li {
            color: #d5dce4; font-size: 0.95rem; padding: 8px 0;
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }
        .stack-col li:last-child { border-bottom: none; }
        .stack-principle {
            margin-top: 30px; background: linear-gradient(135deg, #1c4980 0%, #112d52 100%);
            border-radius: 20px; padding: 30px 35px; display:flex; gap:20px; align-items:flex-start;
        }
        .stack-principle h4 { font-family:'Share Tech', sans-serif; font-size:1.15rem; margin-bottom:6px; }
        .stack-principle p { color:#c0d0e0; font-size:0.95rem; line-height:1.6; }

        /* Modelos de trabajo */
        .pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
        .pricing-card {
            background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
            border-radius: 20px; padding: 32px; display:flex; flex-direction:column;
        }
        .pricing-card h3 { font-size: 1.2rem; margin-bottom: 10px; font-family: 'Share Tech', sans-serif; }
        .pricing-card p { color: var(--text-gray); font-size: 0.92rem; line-height: 1.55; flex-grow: 1; margin-bottom: 20px; }
        .pricing-tag {
            align-self: flex-start; background: rgba(0,156,224,0.12); color: var(--brand-cyan);
            font-family: 'Space Mono', monospace; font-size: 0.78rem; font-weight: 700;
            padding: 7px 14px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.5px;
        }
        .pricing-cta {
            margin-top: 40px; background: rgba(0,156,224,0.08); border: 1px solid rgba(0,156,224,0.25);
            border-radius: 16px; padding: 22px 28px; color: #d5e5f2; font-size: 1rem; text-align:center;
        }

        /* Proyectos Propios / Inktuitivo */
        .projects-section { background: #040508; }
        .project-showcase {
            background: linear-gradient(135deg, rgba(0,156,224,0.10) 0%, rgba(52,93,168,0.14) 100%);
            border: 1px solid rgba(0,156,224,0.3); border-radius: 30px;
            padding: 4rem; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center;
            box-shadow: 0 30px 80px rgba(0,156,224,0.08);
        }
        .project-info-tag {
            display: inline-block; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
            padding: 6px 16px; border-radius: 20px; font-family: 'Space Mono', monospace; font-size: 0.78rem;
            text-transform: uppercase; letter-spacing: 1px; margin-bottom: 22px; font-weight: 700;
        }
        .project-showcase img.project-logo { height: 42px; margin-bottom: 26px; display:block; }
        .project-showcase h3 { font-size: 2.2rem; margin-bottom: 16px; line-height: 1.15; }
        .project-showcase > div > p { color: #c8d4e0; font-size: 1.05rem; line-height: 1.65; margin-bottom: 28px; }
        .project-cta {
            display: inline-flex; align-items: center; gap: 10px; background: var(--brand-cyan); color: #fff;
            padding: 14px 32px; border-radius: 30px; text-decoration: none; font-weight: 700;
            font-family: 'Share Tech', sans-serif; font-size: 1.05rem; transition: 0.3s;
        }
        .project-cta:hover { background: #0081bb; transform: translateY(-2px); }
        .project-video-wrap {
            position: relative; width: 100%; padding-top: 56.25%; border-radius: 18px; overflow: hidden;
            box-shadow: 0 25px 60px rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.1);
        }
        .project-video-wrap iframe {
            position: absolute; top:0; left:0; width:100%; height:100%; border: none;
        }

        /* ================= RESPONSIVE ================= */
        .nav-toggle {
            display: none; flex-direction: column; gap: 5px;
            background: none; border: none; cursor: pointer; z-index: 1001; padding: 8px;
        }
        .nav-toggle span { width: 26px; height: 2px; background: white; border-radius: 2px; transition: 0.3s; }
        .nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        .nav-toggle.active span:nth-child(2) { opacity: 0; }
        .nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

        @media (max-width: 968px) {
            .nav-links {
                position: fixed; top: 0; right: 0; width: min(320px, 80%); height: 100vh;
                background: rgba(7,9,15,0.98); backdrop-filter: blur(20px);
                flex-direction: column; justify-content: center; align-items: flex-start;
                gap: 30px; padding: 40px; transform: translateX(100%); transition: transform 0.4s ease;
                border-left: 1px solid rgba(255,255,255,0.08);
            }
            .nav-links.active { transform: translateX(0); }
            .nav-toggle { display: flex; }

            .nueva-era { grid-template-columns: 1fr; gap: 90px; padding: 100px 6%; }
            .nueva-era-left h2 { font-size: 3rem; }
            .nueva-era-right { min-height: 460px; }
            .floating-dark-card { left: 0; bottom: -60px; max-width: 90%; }
            .f1, .f2 {
                position: relative; top: auto; right: auto; bottom: auto; left: auto;
                width: 100%; margin-bottom: 15px; display: block;
            }

            .sklava-container { grid-template-columns: 1fr; gap: 90px; }
            .sklava-left h2 { font-size: 3rem; }
            .bright-cyan-card { position: relative; bottom: auto; right: auto; width: 100%; margin-top: -50px; }
            .image-placeholder { height: 380px; }

            .services-horizontal { height: auto; flex-direction: column; border-radius: 30px; }
            .panel {
                flex: none !important; height: auto; min-height: unset; padding: 30px;
                justify-content: flex-start; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05);
            }
            .panel-icon { position: static; margin-bottom: 20px; display: block; }
            .panel-badge { position: static; display: inline-block; margin-bottom: 15px; }
            .panel p { opacity: 1; transform: none; }
            .panel-content { display: flex; flex-direction: column; }

            .faq-section { grid-template-columns: 1fr; gap: 50px; padding: 100px 6%; }
            .faq-left h2 { font-size: 2.8rem; }

            .contact-container { grid-template-columns: 1fr; padding: 2.5rem; gap: 40px; }
            .contact-info h2 { font-size: 2.2rem; }

            .footer-content { grid-template-columns: 1fr; gap: 40px; }

            .content-section { padding: 90px 6%; }
            .cards-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
            .stack-grid { grid-template-columns: 1fr 1fr; }
            .pricing-grid { grid-template-columns: 1fr 1fr; }
            .stack-principle { flex-direction: column; }

            .stepper { flex-direction: column; gap: 30px; align-items: flex-start; }
            .stepper::before { display: none; }
            .step { display: flex; align-items: center; gap: 20px; text-align: left; }
            .step-num { margin: 0; flex-shrink: 0; }
            .step p { max-width: none; }
            .stepper-notes { grid-template-columns: 1fr; }

            .project-showcase { grid-template-columns: 1fr; padding: 2.5rem; gap: 35px; }
        }

        @media (max-width: 600px) {
            .cards-grid { grid-template-columns: 1fr; }
            .stack-grid { grid-template-columns: 1fr; }
            .pricing-grid { grid-template-columns: 1fr; }
            .section-head h2 { font-size: 2rem; }
            .project-showcase { padding: 1.8rem; border-radius: 20px; }
            .project-showcase h3 { font-size: 1.7rem; }
            nav { padding: 18px 5%; }
            .nueva-era-left h2, .sklava-left h2 { font-size: 2.2rem; }
            .blue-card, .bright-cyan-card { padding: 30px; }
            .blue-card h3, .bright-cyan-card h3 { font-size: 1.8rem; }
            .contact-container { padding: 1.8rem; border-radius: 20px; }
            .faq-left h2 { font-size: 2.2rem; }
            .panel h3 { font-size: 1.8rem; }
            .whatsapp-float { width: 52px; height: 52px; bottom: 20px; right: 20px; }
            .whatsapp-float svg { width: 26px; height: 26px; }
            .modal-box { padding: 2rem 1.5rem; }
        }

        /* ===== PÁGINAS INTERIORES (hero, breadcrumb, layouts) ===== */
        .page-hero {
            position: relative; padding: 170px 5% 90px;
            background: radial-gradient(circle at 20% 0%, rgba(0,156,224,0.18), transparent 60%), var(--bg-dark);
            border-bottom: 1px solid rgba(255,255,255,0.08);
            overflow: hidden;
        }
        .page-hero::after {
            content: ''; position: absolute; bottom: -120px; right: -120px; width: 420px; height: 420px;
            background: radial-gradient(circle, rgba(0,156,224,0.12), transparent 65%); pointer-events: none;
        }
        .page-hero-content { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; }
        .breadcrumb {
            font-family: 'Space Mono', monospace; font-size: 0.82rem; color: var(--text-gray);
            text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px;
        }
        .breadcrumb a { color: var(--brand-cyan); text-decoration: none; }
        .breadcrumb a:hover { text-decoration: underline; }
        .breadcrumb span { color: var(--text-gray); }
        .page-hero h1 {
            font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.05; letter-spacing: -1px;
            margin-bottom: 18px; max-width: 850px;
        }
        .page-hero .lead { color: var(--text-gray); font-size: 1.2rem; line-height: 1.6; max-width: 720px; }

        /* ===== GRID DE SERVICIOS (home) ===== */
        .service-card {
            display: flex; flex-direction: column; gap: 14px;
            background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
            border-radius: 20px; padding: 30px; text-decoration: none; color: inherit;
            transition: 0.3s; height: 100%;
        }
        .service-card:hover { border-color: rgba(0,156,224,0.4); transform: translateY(-4px); }
        .service-card .service-card-icon {
            width: 48px; height: 48px; border-radius: 12px; margin-bottom: 4px;
            background: rgba(0,156,224,0.12); display: flex; align-items: center; justify-content: center;
            color: var(--brand-cyan);
        }
        .service-card h3 { font-size: 1.25rem; line-height: 1.2; }
        .service-card p { color: var(--text-gray); font-size: 0.95rem; line-height: 1.6; flex-grow: 1; }
        .service-card .service-card-link {
            font-family: 'Space Mono', monospace; font-size: 0.8rem; color: var(--brand-cyan);
            text-transform: uppercase; letter-spacing: 0.5px; display: inline-flex; align-items: center; gap: 8px;
        }

        /* ===== LAYOUT PÁGINA DE SERVICIO ===== */
        .service-body {
            padding: 90px 5%; max-width: 1200px; margin: 0 auto;
            display: grid; grid-template-columns: 1fr 340px; gap: 50px; align-items: start;
        }
        .service-main { min-width: 0; }
        .service-main h2 { font-size: 1.8rem; margin-bottom: 16px; }
        .service-main p, .service-main li { color: #c3cddb; line-height: 1.7; font-size: 1.02rem; }
        .service-main ul { padding-left: 20px; margin-bottom: 24px; }
        .service-main li { margin-bottom: 10px; }
        .service-main .block { margin-bottom: 40px; }
        .service-sidebar { position: sticky; top: 110px; }
        .sidebar-card {
            background: linear-gradient(135deg, #1c4980 0%, #112d52 100%);
            border-radius: 20px; padding: 30px; color: #fff;
        }
        .sidebar-card h3 { font-size: 1.4rem; margin-bottom: 12px; }
        .sidebar-card p { color: #c0d0e0; font-size: 0.95rem; line-height: 1.6; margin-bottom: 20px; }
        .sidebar-list { list-style: none; padding: 0; margin: 0 0 20px; }
        .sidebar-list li { padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.1); color: #d5dce4; font-size: 0.92rem; }

        /* ===== CTA BAND ===== */
        .cta-band {
            padding: 90px 5%; text-align: center;
            background: radial-gradient(circle at 50% 0%, rgba(0,156,224,0.16), transparent 60%), #040508;
        }
        .cta-band h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
        .cta-band p { color: var(--text-gray); font-size: 1.15rem; max-width: 620px; margin: 0 auto 30px; line-height: 1.6; }

        @media (max-width: 968px) {
            .service-body { grid-template-columns: 1fr; }
            .service-sidebar { position: static; }
            .page-hero { padding: 140px 6% 70px; }
        }

        /* ===== BOTÓN VOLVER ARRIBA ===== */
        .back-to-top {
            position: fixed; bottom: 30px; left: 30px; z-index: 998;
            width: 58px; height: 58px; border-radius: 50%;
            background: linear-gradient(135deg, #009ce0 0%, #345da8 100%);
            color: #fff; border: none;
            display: flex; align-items: center; justify-content: center;
            cursor: pointer; box-shadow: 0 4px 20px rgba(0, 156, 224, 0.4);
            transition: opacity 0.3s, transform 0.3s;
            opacity: 0; pointer-events: none; transform: translateY(12px);
        }
        .back-to-top.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
        .back-to-top:hover { transform: translateY(-3px); box-shadow: 0 6px 26px rgba(0, 156, 224, 0.55); }
        @media (max-width: 600px) {
            .back-to-top { width: 50px; height: 50px; bottom: 20px; left: 20px; }
        }

        /* ===== BLOG / ARTÍCULOS ===== */
        .article-body {
            max-width: 780px; margin: 0 auto; padding: 30px 5% 90px;
        }
        .article-featured {
            width: 100%; border-radius: 22px; margin: 0 0 40px;
            overflow: hidden; border: 1px solid rgba(255,255,255,0.08);
            box-shadow: 0 24px 60px rgba(0,0,0,0.45);
        }
        .article-featured img { width: 100%; height: auto; display: block; }
        .article-meta {
            color: var(--brand-cyan); font-family: 'Space Mono', monospace;
            font-size: 0.82rem; letter-spacing: 0.5px; margin-bottom: 28px;
            padding-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,0.08);
        }
        .article-body h2 {
            font-size: 1.55rem; margin: 48px 0 18px; color: #fff;
            line-height: 1.25; letter-spacing: -0.5px;
        }
        .article-body h3 { font-size: 1.22rem; margin: 32px 0 12px; color: var(--brand-cyan); }
        .article-body p { color: #c3cddb; line-height: 1.85; font-size: 1.05rem; margin-bottom: 22px; }
        .article-body ul { padding-left: 4px; margin: 0 0 26px; list-style: none; }
        .article-body li {
            color: #c3cddb; line-height: 1.7; margin-bottom: 14px;
            padding-left: 26px; position: relative;
        }
        .article-body li::before {
            content: ''; position: absolute; left: 2px; top: 9px;
            width: 8px; height: 8px; border-radius: 50%; background: var(--brand-cyan);
        }
        .article-body strong { color: #fff; }
        @media (max-width: 600px) {
            .article-body h2 { font-size: 1.35rem; margin-top: 38px; }
            .article-featured { border-radius: 16px; margin-bottom: 28px; }
        }
