 /* =========================================
           INICIO DEL CONTENIDO PARA: style.css 
           ========================================= */
        :root {
            /* Nuevo color oficial naranja */
            --brand-orange: #f39a1e; 
            --brand-dark: #051526; 
            --brand-gray: #0a203b;
        }

        /* Prevent layout shift for custom components */
        conmos-navbar {
            display: block;
            height: 80px; /* Estimated height */
        }

        conmos-footer {
            display: block;
            min-height: 400px;
        }

        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;
        }
        
        .marquee:hover .track {
            animation-play-state: paused;
        }

        @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) !important;
            color: var(--brand-dark) !important;
            border-color: var(--brand-orange) !important;
        }
        .filter-btn.active:hover {
            background-color: #ffb141 !important; /* Un poco más claro al hover */
            color: var(--brand-dark) !important;
        }
        .gallery-item {
            transition: all 0.4s ease;
        }
        .gallery-item:hover img {
            transform: scale(1.1);
        }

        /* Microanimaciones scroll reveal */
        .reveal-on-scroll {
            opacity: 0;
            transform: translateY(28px) scale(0.98);
            transition: opacity 0.7s ease, transform 0.7s ease;
            will-change: opacity, transform;
        }

        .reveal-on-scroll.is-visible {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .reveal-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
        }

        .reveal-hover:hover {
            transform: translateY(-6px);
            box-shadow: 0 14px 28px rgba(243, 154, 30, 0.12);
            border-color: rgba(243, 154, 30, 0.4);
        }

        @media (prefers-reduced-motion: reduce) {
            .reveal-on-scroll,
            .reveal-hover {
                transition: none;
                transform: none;
                opacity: 1;
            }
        }
        /* Services & Tabs Styles */
        .tab-content {
            display: none;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
        }
        .tab-content.active {
            display: block;
            opacity: 1;
            animation: fadeIn 0.6s ease-in-out forwards;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(15px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .pricing-card {
            background: rgba(5, 21, 38, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            position: relative;
            top: 0;
            transition: top 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                        border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                        box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .pricing-card:hover {
            top: -8px;
            border-color: rgba(243, 154, 30, 0.4);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(243, 154, 30, 0.15);
        }
        .pricing-card.popular {
            border-color: rgba(243, 154, 30, 0.6);
            background: linear-gradient(180deg, rgba(5, 21, 38, 0.9) 0%, rgba(243, 154, 30, 0.08) 100%);
        }

        /* FAQ Styles */
        .faq-item.active .faq-content {
            max-height: 500px;
            opacity: 1;
        }
        .faq-item.active .faq-btn i {
            transform: rotate(180deg);
        }

        .faq-content {
            max-height: 0;
            opacity: 0;
            overflow: hidden;
            transition: all 0.3s ease-in-out;
        }

        /* Dark Map Trick */
        .dark-map-container {
            background-color: #1a1a1a;
            position: relative;
            overflow: hidden;
        }
        
        .dark-map-container iframe {
            filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%);
            transition: filter 0.5s ease;
        }

        .dark-map-container:hover iframe {
            filter: invert(90%) hue-rotate(180deg) brightness(100%) contrast(100%);
        }

        /* Custom Scrollbar - Diseño Premium */
        ::-webkit-scrollbar {
            width: 12px;
        }

        ::-webkit-scrollbar-track {
            background: #02080e; /* Fondo ultra oscuro para resaltar el scrollbar */
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, var(--brand-orange) 0%, #c97a0e 100%);
            border-radius: 20px;
            border: 3px solid #02080e;
            box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #ffc575; /* Color más brillante al pasar el cursor */
        }

        /* Soporte para Firefox */
        html {
            scrollbar-width: thin;
            scrollbar-color: var(--brand-orange) #02080e;
        }

        /* =========================================
           FIN DEL CONTENIDO PARA: style.css 
           ========================================= */