:root {
            --primary-neon: #00f3ff;
            --secondary-neon: #ff00ff;
            --accent-cyan: #00ffcc;
            --dark-bg: #0a0a0f;
            --darker-bg: #050508;
            --card-bg: rgba(20, 20, 30, 0.7);
            --text-light: #f0f8ff;
            --text-muted: #a0a8c0;
            --gradient-tech: linear-gradient(135deg, var(--primary-neon), var(--secondary-neon));
            --gradient-dark: linear-gradient(135deg, var(--dark-bg), var(--darker-bg));
            --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

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

        h1, h2, h3, h4, .logo, .hero-title {
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            letter-spacing: 0.5px;
        }

        /* PRELOADER MÁS RÁPIDO */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #050508 0%, #0a0a1a 100%);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            perspective: 1000px;
            transition: all 0.6s ease;
        }

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

        .hologram-container {
            position: relative;
            width: 180px;
            height: 180px;
            transform-style: preserve-3d;
            animation: float 2.5s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: rotateY(0deg) translateY(0px); }
            50% { transform: rotateY(8deg) translateY(-8px); }
        }

        .hologram-base {
            position: absolute;
            bottom: 0;
            width: 100px;
            height: 10px;
            background: var(--gradient-tech);
            border-radius: 50%;
            transform: rotateX(60deg);
            filter: blur(6px);
            opacity: 0.5;
        }

        .hologram-cube {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 70px;
            height: 70px;
            transform-style: preserve-3d;
            animation: rotateCube 3s linear infinite;
        }

        @keyframes rotateCube {
            0% { transform: translate(-50%, -50%) rotateX(0deg) rotateY(0deg); }
            100% { transform: translate(-50%, -50%) rotateX(360deg) rotateY(360deg); }
        }

        .cube-face {
            position: absolute;
            width: 70px;
            height: 70px;
            background: rgba(0, 243, 255, 0.1);
            border: 1px solid var(--primary-neon);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Orbitron', sans-serif;
            color: var(--primary-neon);
            font-size: 0.7rem;
            letter-spacing: 1px;
            backdrop-filter: blur(4px);
        }

        .cube-face:nth-child(1) { transform: rotateY(0deg) translateZ(35px); }
        .cube-face:nth-child(2) { transform: rotateY(90deg) translateZ(35px); }
        .cube-face:nth-child(3) { transform: rotateY(180deg) translateZ(35px); }
        .cube-face:nth-child(4) { transform: rotateY(-90deg) translateZ(35px); }
        .cube-face:nth-child(5) { transform: rotateX(90deg) translateZ(35px); }
        .cube-face:nth-child(6) { transform: rotateX(-90deg) translateZ(35px); }

        .hologram-lines {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .line {
            position: absolute;
            background: var(--primary-neon);
            box-shadow: 0 0 6px var(--primary-neon);
            opacity: 0.3;
        }

        .line-vertical {
            width: 1px;
            height: 100%;
            left: 50%;
            animation: scanVertical 1.2s ease-in-out infinite;
        }

        .line-horizontal {
            width: 100%;
            height: 1px;
            top: 50%;
            animation: scanHorizontal 1.8s ease-in-out infinite;
        }

        @keyframes scanVertical {
            0%, 100% { transform: translateY(-100%); }
            50% { transform: translateY(100%); }
        }

        @keyframes scanHorizontal {
            0%, 100% { transform: translateX(-100%); }
            50% { transform: translateX(100%); }
        }

        .hologram-text {
            margin-top: 1.2rem;
            text-align: center;
        }

        .hologram-text h1 {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.6rem;
            font-weight: 800;
            background: linear-gradient(90deg, 
                var(--primary-neon), 
                var(--accent-cyan), 
                var(--primary-neon));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            background-size: 200% 100%;
            animation: textShimmer 1.2s ease-in-out infinite;
            margin-bottom: 0.5rem;
            letter-spacing: 2px;
        }

        @keyframes textShimmer {
            0%, 100% { background-position: -200% 0; }
            50% { background-position: 200% 0; }
        }

        .hologram-text p {
            color: var(--text-muted);
            font-size: 0.65rem;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            margin-top: 0.5rem;
        }

        .hologram-progress {
            margin-top: 1rem;
            width: 150px;
            height: 2px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 2px;
            overflow: hidden;
            position: relative;
        }

        .hologram-progress-bar {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 0%;
            background: linear-gradient(90deg, 
                var(--primary-neon), 
                var(--accent-cyan));
            animation: loading 0.8s ease-in-out forwards;
        }

        @keyframes loading {
            0% { width: 0%; }
            100% { width: 100%; }
        }

        /* HEADER IGUAL AL ORIGINAL */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(10, 10, 15, 0);
            backdrop-filter: blur(20px);
            z-index: 1000;
            padding: 1.2rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            transform: translateY(-100%);
            opacity: 0;
            border-bottom: 1px solid rgba(0, 243, 255, 0.1);
        }

        .header.visible {
            transform: translateY(0);
            opacity: 1;
            background: rgba(10, 10, 15, 0.95);
        }

        .header.scrolled {
            padding: 0.8rem 2rem;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
            border-bottom: 1px solid rgba(0, 243, 255, 0.2);
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: var(--gradient-tech);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
            position: relative;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
        }

        .logo-orb {
            width: 10px;
            height: 10px;
            background: var(--gradient-tech);
            border-radius: 50%;
            box-shadow: 0 0 15px var(--primary-neon);
            animation: orbGlow 2s infinite;
        }

        @keyframes orbGlow {
            0%, 100% { 
                transform: scale(1);
                box-shadow: 0 0 15px var(--primary-neon);
            }
            50% { 
                transform: scale(1.2);
                box-shadow: 0 0 25px var(--primary-neon), 0 0 35px var(--secondary-neon);
            }
        }

        .brand-subtitle {
            font-size: 0.6rem;
            color: var(--text-muted);
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-top: -2px;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            position: relative;
            padding: 0.5rem 0;
            transition: var(--transition);
        }

        .nav-links a:hover {
            color: var(--primary-neon);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-tech);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-icon {
            font-size: 1.2rem;
            color: var(--primary-neon);
            transition: var(--transition);
            cursor: pointer;
            display: none;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 0.7rem;
            padding: 0.9rem 1.8rem;
            background: var(--gradient-tech);
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 243, 255, 0.3);
            border: none;
            cursor: pointer;
            font-family: 'Orbitron', sans-serif;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.7s ease;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 243, 255, 0.5);
        }

        /* BOTÓN WHATSAPP */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #25D366, #128C7E);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            box-shadow: 0 5px 25px rgba(37, 211, 102, 0.5);
            z-index: 1000;
            transition: var(--transition);
            animation: whatsappPulse 2s infinite;
            text-decoration: none;
        }

        @keyframes whatsappPulse {
            0%, 100% {
                transform: scale(1);
                box-shadow: 0 5px 25px rgba(37, 211, 102, 0.5);
            }
            50% {
                transform: scale(1.1);
                box-shadow: 0 5px 35px rgba(37, 211, 102, 0.8), 0 0 40px rgba(37, 211, 102, 0.3);
            }
        }

        .whatsapp-float:hover {
            transform: scale(1.15);
            animation: none;
            box-shadow: 0 8px 35px rgba(37, 211, 102, 0.8);
        }

        /* ENCABEZADO DE QUIÉNES SOMOS */
        .about-header {
            padding: 120px 2rem 60px;
            background: var(--gradient-dark);
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .about-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 50%, rgba(0, 243, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 0, 255, 0.05) 0%, transparent 50%);
            z-index: 1;
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .section-pre-title {
            font-size: 0.9rem;
            color: var(--primary-neon);
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 1rem;
            font-weight: 500;
        }

        .section-title {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            color: var(--text-light);
        }

        .section-title span {
            color: var(--primary-neon);
            display: block;
            font-size: 3.5rem;
            margin-top: 0.3rem;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--text-muted);
            max-width: 800px;
            margin: 0 auto 2rem;
            line-height: 1.6;
        }

        /* NUESTRA HISTORIA */
        .our-story {
            padding: 5rem 2rem;
            background: var(--darker-bg);
            position: relative;
            overflow: hidden;
        }

        .our-story::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300f3ff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .story-content {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .story-text {
            font-size: 1.1rem;
            color: var(--text-muted);
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .story-text p {
            margin-bottom: 1.5rem;
        }

        .story-text strong {
            color: var(--text-light);
        }

        /* NUESTROS RUBROS */
        .our-expertise {
            padding: 5rem 2rem;
            background: var(--dark-bg);
            position: relative;
            overflow: hidden;
        }

        .expertise-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2.5rem;
            max-width: 1200px;
            margin: 3rem auto 0;
            position: relative;
            z-index: 2;
        }

        @media (min-width: 768px) {
            .expertise-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 992px) {
            .expertise-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .expertise-card {
            background: var(--card-bg);
            border-radius: 20px;
            overflow: hidden;
            padding: 2.5rem;
            transition: var(--transition);
            position: relative;
            border: 1px solid rgba(0, 243, 255, 0.1);
            backdrop-filter: blur(10px);
            opacity: 0;
            transform: translateY(20px);
            text-align: center;
        }

        .expertise-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .expertise-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary-neon);
            box-shadow: 0 15px 35px rgba(0, 243, 255, 0.15);
        }

        .expertise-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, rgba(0, 243, 255, 0.1), rgba(255, 0, 255, 0.05));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2.5rem;
            color: var(--primary-neon);
            position: relative;
            overflow: hidden;
        }

        .expertise-icon::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
            transform: rotate(45deg);
            animation: shine 3s infinite;
        }

        @keyframes shine {
            0% { transform: translateX(-100%) rotate(45deg); }
            100% { transform: translateX(100%) rotate(45deg); }
        }

        .expertise-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--text-light);
        }

        .expertise-card p {
            font-size: 1rem;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* NUESTRO EQUIPO */
        .our-team {
            padding: 5rem 2rem;
            background: var(--darker-bg);
            position: relative;
            overflow: hidden;
        }

        .team-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            max-width: 1200px;
            margin: 3rem auto 0;
            position: relative;
            z-index: 2;
        }

        @media (min-width: 768px) {
            .team-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 992px) {
            .team-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .team-member {
            text-align: center;
            background: var(--card-bg);
            border-radius: 20px;
            padding: 2.5rem;
            transition: var(--transition);
            border: 1px solid rgba(0, 243, 255, 0.1);
            backdrop-filter: blur(10px);
            opacity: 0;
            transform: translateY(20px);
        }

        .team-member.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .team-member:hover {
            transform: translateY(-10px);
            border-color: var(--primary-neon);
            box-shadow: 0 15px 35px rgba(0, 243, 255, 0.15);
        }

        .member-avatar {
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, var(--primary-neon), var(--secondary-neon));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 3rem;
            color: var(--darker-bg);
            position: relative;
        }

        .member-avatar::after {
            content: '';
            position: absolute;
            top: -3px;
            left: -3px;
            right: -3px;
            bottom: -3px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-neon), var(--secondary-neon));
            z-index: -1;
            opacity: 0.5;
            animation: pulse-ring 2s infinite;
        }

        @keyframes pulse-ring {
            0% { transform: scale(0.8); opacity: 0.5; }
            100% { transform: scale(1.2); opacity: 0; }
        }

        .member-name {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: var(--text-light);
        }

        .member-role {
            font-size: 1rem;
            color: var(--primary-neon);
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .member-description {
            font-size: 0.95rem;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* VALORES */
        .our-values {
            padding: 5rem 2rem;
            background: var(--dark-bg);
            position: relative;
            overflow: hidden;
        }

        .values-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            max-width: 1200px;
            margin: 3rem auto 0;
            position: relative;
            z-index: 2;
        }

        @media (min-width: 768px) {
            .values-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 992px) {
            .values-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .value-card {
            text-align: center;
            padding: 2rem;
            background: rgba(0, 243, 255, 0.05);
            border-radius: 15px;
            border: 1px solid rgba(0, 243, 255, 0.1);
            transition: var(--transition);
            opacity: 0;
            transform: translateY(20px);
        }

        .value-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .value-card:hover {
            border-color: var(--primary-neon);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 243, 255, 0.1);
        }

        .value-icon {
            font-size: 2.5rem;
            color: var(--primary-neon);
            margin-bottom: 1.5rem;
        }

        .value-card h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--text-light);
        }

        .value-card p {
            font-size: 0.95rem;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* CTA FINAL */
        .cta-section {
            padding: 5rem 2rem;
            text-align: center;
            background: linear-gradient(135deg, var(--dark-bg), var(--darker-bg));
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 80%, rgba(0, 243, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 0, 255, 0.1) 0%, transparent 50%);
        }

        .cta-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .demo-button {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            padding: 1.2rem 2.5rem;
            background: linear-gradient(135deg, var(--primary-neon), var(--accent-cyan));
            color: var(--darker-bg);
            text-decoration: none;
            border-radius: 35px;
            font-weight: 800;
            font-size: 1.1rem;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            box-shadow: 0 5px 25px rgba(0, 243, 255, 0.5);
            animation: demoGlow 3s infinite;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-top: 2rem;
            border: none;
            cursor: pointer;
            font-family: 'Orbitron', sans-serif;
        }

        @keyframes demoGlow {
            0%, 100% {
                box-shadow: 0 5px 25px rgba(0, 243, 255, 0.5);
            }
            50% {
                box-shadow: 0 5px 35px rgba(0, 243, 255, 0.8), 0 0 50px rgba(0, 255, 204, 0.4);
                transform: scale(1.02);
            }
        }

        .demo-button:hover {
            animation: none;
            transform: translateY(-5px);
            box-shadow: 0 10px 40px rgba(0, 243, 255, 0.8);
        }

        /* FOOTER */
        .footer {
            background: var(--darker-bg);
            color: var(--text-light);
            padding: 4rem 2rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            border-top: 1px solid rgba(0, 243, 255, 0.1);
        }

        .footer-content {
            position: relative;
            z-index: 2;
        }

        .footer-brand {
            font-family: 'Orbitron', sans-serif;
            font-weight: 800;
            font-size: 2rem;
            margin-bottom: 0.5rem;
            background: var(--gradient-tech);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .footer-tagline {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-bottom: 2rem;
            max-width: 300px;
            margin-left: auto;
            margin-right: auto;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 2rem;
            list-style: none;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.9rem;
            transition: var(--transition);
            position: relative;
        }

        .footer-links a:hover {
            color: var(--primary-neon);
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1.2rem;
            margin-bottom: 2rem;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(0, 243, 255, 0.1);
            color: var(--text-light);
            border-radius: 50%;
            transition: var(--transition);
        }

        .social-links a:hover {
            background: var(--primary-neon);
            color: var(--darker-bg);
            transform: translateY(-3px);
        }

        .copyright {
            color: var(--text-muted);
            font-size: 0.8rem;
            margin-top: 1.5rem;
        }

        /* =============================================== */
        /* VERSIÓN MÓVIL COMPACTA */
        /* =============================================== */

        @media (max-width: 992px) {
            /* HEADER MÓVIL */
            .header {
                padding: 0.8rem 1rem;
            }
            
            .header.scrolled {
                padding: 0.6rem 1rem;
            }
            
            .logo {
                font-size: 1.4rem;
            }
            
            .logo-orb {
                width: 8px;
                height: 8px;
            }
            
            .brand-subtitle {
                font-size: 0.5rem;
            }
            
            .nav-icon {
                display: block;
                font-size: 1.2rem;
            }
            
            .nav-links {
                display: none;
                flex-direction: column;
                position: fixed;
                top: 70px;
                left: 0;
                right: 0;
                background: rgba(10, 10, 15, 0.98);
                backdrop-filter: blur(20px);
                padding: 1rem;
                border-radius: 0 0 12px 12px;
                border-top: 1px solid rgba(0, 243, 255, 0.2);
                border-bottom: 1px solid rgba(0, 243, 255, 0.2);
                width: 100%;
                z-index: 1000;
                box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
            }
            
            .nav-links.active {
                display: flex;
            }
            
            .nav-links li {
                width: 100%;
                text-align: center;
            }
            
            .nav-links a {
                display: block;
                padding: 0.8rem 0;
                width: 100%;
                font-size: 0.9rem;
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            }
            
            .nav-links a:last-child {
                border-bottom: none;
            }
            
            .cta-button {
                padding: 0.6rem 1rem;
                font-size: 0.8rem;
                gap: 0.4rem;
            }
            
            /* HEADER MÓVIL */
            .about-header {
                padding: 100px 1rem 40px;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .section-title span {
                font-size: 2.5rem;
            }
            
            .section-subtitle {
                font-size: 1rem;
            }
            
            /* SECCIONES MÓVIL */
            .our-story,
            .our-expertise,
            .our-team,
            .our-values,
            .cta-section {
                padding: 3rem 1rem;
            }
            
            /* EXPERTISE MÓVIL */
            .expertise-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            /* TEAM MÓVIL */
            .team-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            /* VALUES MÓVIL */
            .values-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            /* FOOTER MÓVIL */
            .footer {
                padding: 3rem 1rem 1.5rem;
            }
            
            .footer-links {
                gap: 1rem;
            }
            
            .footer-links a {
                font-size: 0.85rem;
            }
            
            /* WHATSAPP MÓVIL */
            .whatsapp-float {
                width: 60px;
                height: 60px;
                font-size: 1.8rem;
                bottom: 20px;
                right: 20px;
            }
        }

        @media (max-width: 480px) {
            .section-title {
                font-size: 1.8rem;
            }
            
            .section-title span {
                font-size: 2rem;
            }
        }

        /* ANIMACIONES */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }