 /* =========================================
           INICIO DEL CONTENIDO PARA: style.css 
           ========================================= */
        :root {
            /* Nuevo color oficial naranja */
            --brand-orange: #f39a1e; 
            --brand-dark: #051526; 
            --brand-gray: #0a203b;
        }

        body {
            background-color: var(--brand-dark);
            color: white;
            font-family: 'Inter', sans-serif;
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        .brand-gradient {
            background: linear-gradient(135deg, #f39a1e 0%, #ffc575 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .btn-primary {
            background: linear-gradient(135deg, #f39a1e 0%, #c97a0e 100%);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(243, 154, 30, 0.3);
        }

        .glass-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.05);
            overflow: hidden;
        }

        @keyframes pulse-orange {
            0% { box-shadow: 0 0 0 0 rgba(243, 154, 30, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(243, 154, 30, 0); }
            100% { box-shadow: 0 0 0 0 rgba(243, 154, 30, 0); }
        }

        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: var(--brand-orange);
            color: #051526;
            width: 60px;
            height: 60px;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 10px rgba(0,0,0,0.5);
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            animation: pulse-orange 2s infinite;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            background-color: #c97a0e;
            color: white;
        }

        /* Marquee */
        .marquee {
            position: relative;
            width: 100%;
            height: 50px;
            overflow: hidden;
        }

        .track {
            position: absolute;
            white-space: nowrap;
            will-change: transform;
            animation: marquee 30s linear infinite;
            display: flex;
            align-items: center;
            gap: 4rem;
        }

        @keyframes marquee {
            from { transform: translateX(0); }
            to { transform: translateX(-50%); }
        }

        .brand-item {
            font-weight: 900;
            font-size: 1.25rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: rgba(255, 255, 255, 0.4);
            transition: color 0.3s;
        }

        /* Hero Carousel */
        .hero-slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
            z-index: 0;
        }

        .hero-slide.active {
            opacity: 1;
        }

        .hide-scrollbar::-webkit-scrollbar {
            display: none;
        }

        .hide-scrollbar {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        /* Services Carousel Styles */
        .service-card {
            width: 85vw; /* Móvil */
            max-width: 400px;
            flex-shrink: 0;
        }

        @media (min-width: 768px) {
            .service-card { width: 320px; }
        }

        @media (min-width: 1024px) {
            .service-card { width: 350px; }
        }

        .nav-btn {
            background: var(--brand-dark);
            border: 1px solid rgba(243, 154, 30, 0.3);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            box-shadow: 0 10px 25px rgba(0,0,0,0.5);
        }

        .nav-btn:hover:not(:disabled) {
            background: var(--brand-orange);
            color: var(--brand-dark);
            border-color: var(--brand-orange);
            transform: translateY(-50%) scale(1.1);
        }

        .nav-btn:disabled {
            opacity: 0.3;
            cursor: not-allowed;
            transform: scale(1);
            box-shadow: none;
        }

        /* Estilos para "Cómo trabajamos" */
        .step-number {
            font-size: 8rem;
            line-height: 1;
            font-weight: 900;
            color: rgba(255, 255, 255, 0.03);
            position: absolute;
            top: -20px;
            right: 10px;
            z-index: 0;
            transition: color 0.3s;
        }
        
        .step-card:hover .step-number {
            color: rgba(243, 154, 30, 0.1);
        }

        /* Gallery Styles */
        .filter-btn.active {
            background-color: var(--brand-orange);
            color: var(--brand-dark);
            border-color: var(--brand-orange);
        }
        .gallery-item {
            transition: all 0.4s ease;
        }
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        /* =========================================
           FIN DEL CONTENIDO PARA: style.css 
           ========================================= */