 
        /* Hero con imagen fija y efecto paneo */
        .hero-servicios {
            position: relative;
            height: 500px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-servicios-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            animation: kenBurns 20s ease-in-out infinite alternate;
        }

        @keyframes kenBurns {
            0% {
                transform: scale(1) translateX(0);
            }
            100% {
                transform: scale(1.1) translateX(-20px);
            }
        }

        .hero-servicios::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(74,44,112,0.85) 0%, rgba(107,70,168,0.75) 100%);
            z-index: 1;
        }

        .hero-servicios-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: var(--white);
            max-width: 900px;
            padding: 0 20px;
        }

        .hero-servicios-title {
            font-size: 48px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
            animation: fadeInUp 1s ease;
        }

        .hero-servicios-subtitle {
            font-size: 20px;
            opacity: 0.95;
            animation: fadeInUp 1.2s ease;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Sección Introducción */
        .intro-section {
            padding: 100px 0;
            background: var(--white);
        }

        .intro-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .intro-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, var(--primary-purple), var(--accent-magenta));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            font-size: 45px;
            color: var(--white);
            box-shadow: 0 10px 30px rgba(107,70,168,0.3);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                box-shadow: 0 10px 30px rgba(107,70,168,0.3);
            }
            50% {
                transform: scale(1.05);
                box-shadow: 0 15px 40px rgba(107,70,168,0.4);
            }
        }

        .intro-text {
            font-size: 18px;
            line-height: 1.9;
            color: var(--medium-gray);
            margin-bottom: 20px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 60px;
        }

        .stat-item {
            text-align: center;
            padding: 30px;
            background: var(--light-gray);
            border-radius: 15px;
            transition: all 0.3s;
        }

        .stat-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .stat-number {
            font-size: 48px;
            font-weight: 700;
            color: var(--primary-purple);
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 16px;
            color: var(--medium-gray);
            font-weight: 600;
        }

        /* Sección Industrias/Sectores */
        .sectores-section {
            padding: 100px 0;
            background: var(--light-gray);
        }

        .sectores-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            margin-top: 60px;
        }

        .sector-card {
            background: var(--white);
            padding: 30px 20px;
            border-radius: 12px;
            text-align: center;
            transition: all 0.4s ease;
            border: 2px solid transparent;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .sector-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(233,30,140,0.1), transparent);
            transition: left 0.5s;
        }

        .sector-card:hover::before {
            left: 100%;
        }

        .sector-card:hover {
            transform: translateY(-8px);
            border-color: var(--accent-magenta);
            box-shadow: 0 15px 35px rgba(107,70,168,0.2);
        }

        .sector-icon {
            font-size: 42px;
            margin-bottom: 15px;
            display: inline-block;
            transition: all 0.3s;
        }

        .sector-card:hover .sector-icon {
            transform: scale(1.2) rotateY(360deg);
        }

        .sector-title {
            font-size: 16px;
            color: var(--dark-gray);
            font-weight: 700;
        }

        /* Sección Servicios Adicionales */
        .servicios-adicionales-section {
            padding: 100px 0;
            background: var(--white);
        }

        .servicios-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 60px;
        }

        .servicio-card {
            background: var(--light-gray);
            padding: 45px 35px;
            border-radius: 15px;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .servicio-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-purple), var(--accent-magenta));
            transform: scaleX(0);
            transition: transform 0.4s;
        }

        .servicio-card:hover::after {
            transform: scaleX(1);
        }

        .servicio-card:hover {
            background: var(--white);
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(107,70,168,0.15);
        }

        .servicio-icon-box {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--accent-magenta), var(--primary-purple));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 38px;
            color: var(--white);
            transition: all 0.4s;
        }

        .servicio-card:hover .servicio-icon-box {
            transform: rotateY(360deg);
            background: linear-gradient(135deg, var(--primary-purple), var(--accent-magenta));
        }

        .servicio-title {
            font-size: 20px;
            color: var(--dark-gray);
            font-weight: 700;
            margin-bottom: 15px;
        }

        .servicio-description {
            font-size: 15px;
            color: var(--medium-gray);
            line-height: 1.7;
        }

        /* Sección Catálogo de Productos */
        .catalogo-section {
            padding: 100px 0;
            background: linear-gradient(to bottom, var(--light-gray) 0%, var(--white) 100%);
        }

        .catalogo-intro {
            max-width: 800px;
            margin: 0 auto 60px;
            text-align: center;
        }

        .catalogo-icon-group {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 25px;
        }

        .catalogo-icon-item {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-purple), var(--light-purple));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            color: var(--white);
            animation: float 3s ease-in-out infinite;
        }

        .catalogo-icon-item:nth-child(2) {
            animation-delay: 0.5s;
        }

        .catalogo-icon-item:nth-child(3) {
            animation-delay: 1s;
        }

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

        .productos-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 50px;
        }

        .producto-item {
            background: var(--white);
            padding: 20px 15px;
            border-radius: 10px;
            text-align: center;
            font-size: 14px;
            color: var(--dark-gray);
            font-weight: 600;
            transition: all 0.3s;
            border: 2px solid var(--border-color);
            position: relative;
            overflow: hidden;
        }

        .producto-item::before {
            content: '✓';
            position: absolute;
            top: 10px;
            right: 10px;
            width: 25px;
            height: 25px;
            background: var(--accent-magenta);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .producto-item:hover::before {
            opacity: 1;
        }

        .producto-item:hover {
            border-color: var(--primary-purple);
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(107,70,168,0.15);
        }

        /* CTA Compra */
        .cta-compra {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--accent-magenta) 0%, var(--primary-purple) 100%);
            color: var(--white);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-compra::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }

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

        .cta-compra h2 {
            font-size: 40px;
            margin-bottom: 20px;
        }

        .cta-compra p {
            font-size: 18px;
            margin-bottom: 35px;
            opacity: 0.95;
        }

        .cta-benefits {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .cta-benefit {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 16px;
        }

        .cta-benefit i {
            font-size: 24px;
            color: var(--white);
        }

        /* Responsive */
        @media (max-width: 968px) {
            .hero-servicios-title {
                font-size: 36px;
            }

            .stats-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .sectores-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .servicios-grid {
                grid-template-columns: 1fr;
            }

            .productos-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }
        }

        @media (max-width: 576px) {
            .hero-servicios {
                height: 400px;
            }

            .hero-servicios-title {
                font-size: 28px;
            }

            .sectores-grid {
                grid-template-columns: 1fr;
            }

            .productos-grid {
                grid-template-columns: 1fr;
            }

            .cta-benefits {
                flex-direction: column;
                gap: 15px;
            }
        }
 
	
	