
        /* =========================================
           1. VARIABLES DE COLOR (Logo)
           ========================================= */
        :root {
            --azul-principal: #16538d;
            --gris-secundario: #828282;
            --fondo-claro: #f9f9f9;
            --texto-oscuro: #333333;
            --blanco: #ffffff;
        }

        /* =========================================
           2. ESTILOS GENERALES Y RESET
           ========================================= */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            scroll-behavior: smooth;
        }

        body {
            color: var(--texto-oscuro);
            line-height: 1.6;
        }

        h1, h2, h3 {
            color: var(--azul-principal);
            margin-bottom: 1rem;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        /* =========================================
           3. UTILIDADES Y ESTRUCTURA BASE
           ========================================= */
        section {
            padding: 60px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .bg-gris {
            background-color: var(--fondo-claro);
            max-width: 100%;
        }
        
        .bg-gris .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
        }

        .btn {
            display: inline-block;
            background-color: var(--azul-principal);
            color: var(--blanco);
            padding: 10px 25px;
            border-radius: 5px;
            font-weight: bold;
            transition: background 0.3s ease;
        }

        .btn:hover {
            background-color: var(--gris-secundario);
        }

        /* Layouts Grid */
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .grid-3 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        /* =========================================
           4. COMPONENTES REUTILIZABLES
           ========================================= */
        /* Tarjetas (Cards) */
        .card {
            background: var(--blanco);
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            text-align: center;
            border-bottom: 4px solid var(--azul-principal);
        }

        .card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 5px;
            margin-bottom: 15px;
        }

        /* Listas con viñetas personalizadas (Para Servicios) */
        .lista-servicios {
            list-style: none;
            padding: 0;
            text-align: left;
            margin-top: 20px;
        }

        .lista-servicios li {
            margin-bottom: 12px;
            padding-left: 25px;
            position: relative;
            font-size: 1rem;
            color: var(--texto-oscuro);
            font-weight: 500;
        }

        .lista-servicios li::before {
            content: '✔';
            color: var(--azul-principal);
            position: absolute;
            left: 0;
            font-weight: bold;
        }

        /* =========================================
           5. SECCIONES ESPECÍFICAS
           ========================================= */
        /* Header y Navegación */
        header {
            background-color: var(--blanco);
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 15px 20px;
        }

        .logo img {
            height: 50px;
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 20px;
        }

        nav ul li a {
            font-weight: 600;
            color: var(--gris-secundario);
            transition: color 0.3s;
        }

        nav ul li a:hover {
            color: var(--azul-principal);
        }

        /* Slider Básico (Hero) */
        .hero {
            background: linear-gradient(rgba(22, 83, 141, 0.7), rgba(22, 83, 141, 0.7)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat;
            height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--blanco);
            padding: 0 20px;
        }

        .hero h1 {
            color: var(--blanco);
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        /* Clientes */
        .clientes-logos {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 30px;
        }

        .clientes-logos div {
            width: 150px;
            height: 80px;
            background-color: #e0e0e0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gris-secundario);
            font-weight: bold;
        }

        /* Organigrama */
        .organigrama-box {
            background-color: var(--blanco);
            border: 2px dashed var(--gris-secundario);
            padding: 50px;
            text-align: center;
            margin-top: 20px;
            color: var(--gris-secundario);
        }

        /* Contacto (Formulario) */
        .formulario {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .formulario input, .formulario textarea {
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 1rem;
        }

        .formulario button {
            cursor: pointer;
            border: none;
            font-size: 1rem;
        }

        /* Footer */
        footer {
            background-color: var(--azul-principal);
            color: var(--blanco);
            text-align: center;
            padding: 20px;
            margin-top: 40px;
        }

		/* =========================================
          6 ESTILOS DEL ORGANIGRAMA PRO
           ========================================= */
		.org-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-top: 40px;
        }

        .org-card {
            background-color: var(--blanco);
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            padding: 20px 30px;
            text-align: center;
            border-bottom: 4px solid var(--azul-principal);
            border-top: 1px solid #eaeaea;
            border-left: 1px solid #eaeaea;
            border-right: 1px solid #eaeaea;
            width: 100%;
            max-width: 400px;
            z-index: 2;
        }

        .org-role {
            font-size: 0.85rem;
            color: var(--gris-secundario);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
            font-weight: bold;
        }

        .org-name {
            color: var(--azul-principal);
            font-weight: 700;
            font-size: 1.15rem;
        }

        .org-connector {
            width: 2px;
            height: 35px;
            background-color: var(--azul-principal);
            opacity: 0.3;
        }

        .org-team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            width: 100%;
            max-width: 950px; 
            margin-top: 10px;
            justify-content: center;
            justify-items: center; 
        }

        .org-card-small {
            background-color: var(--blanco);
            border: 1px solid #eaeaea;
            border-left: 4px solid var(--azul-principal);
            padding: 15px 20px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            width: 100%;
        }
        
        .org-card-small:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.06);
        }

        .org-name-small {
            color: var(--texto-oscuro);
            font-weight: 600;
            font-size: 0.95rem;
        }

		/* =========================================
		   7. ESTILOS DE SLIDERS (Loop Infinito)
		   ========================================= */
		.slider-container {
			overflow: hidden;
			width: 100%;
			position: relative;
			padding: 20px 0;
		}

		.slider-wrapper {
			display: flex;
			gap: 30px;
			width: max-content; 
			animation: slide 40s linear infinite;
		}

		@keyframes slide {
			from { transform: translateX(0); }
			to { transform: translateX(-50%); } 
		}

		.slider-container:hover .slider-wrapper {
			animation-play-state: paused;
		}

		.slider-item {
			flex: 0 0 auto;
		}

		 /* Slider de Clientes */
        .clientes-slider {
            margin-top: 30px;
            display: flex;
            gap: 25px;
            align-items: flex-start;
        }
        
        .clientes-slider .slider-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            transition: transform 0.3s;
        }

        .clientes-slider .slider-item:hover {
            transform: translateY(-5px); 
        }

        .clientes-slider .logo-box {
            width: 220px;
            height: 120px;
            background: var(--blanco, #ffffff);
            border: 1px solid #eaeaea;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 10px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.03);
            transition: box-shadow 0.3s;
        }

        .clientes-slider .slider-item:hover .logo-box {
            box-shadow: 0 6px 15px rgba(0,0,0,0.08);
        }

        .clientes-slider .logo-box img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .clientes-slider .logo-text {
            font-size: 0.95rem;
            color: var(--texto-oscuro, #333);
            font-weight: 600;
            text-align: center;
        }

        /* Slider de Proyectos */
        .proyectos-slider .slider-item {
            width: 350px; 
        }
        .card-proyecto {
            height: 100%;
            display: flex;
            flex-direction: column;
            text-align: left;
            padding: 20px;
        }
        .card-proyecto h3 {
            font-size: 1.2rem;
            margin-bottom: 15px;
        }
        .lista-proyectos {
            list-style: none;
            padding: 0;
            flex-grow: 1;
        }
        .lista-proyectos li {
            font-size: 0.9rem;
            margin-bottom: 8px;
            padding-left: 15px;
            position: relative;
            color: var(--texto-oscuro);
        }
        .lista-proyectos li::before {
            content: '▪';
            color: var(--azul-principal);
            position: absolute;
            left: 0;
            font-size: 1.2rem;
            line-height: 1;
        }

        /* =========================================
           8. DISEÑO RESPONSIVO (Mobile)
           ========================================= */
        @media (max-width: 768px) {
            .grid-2 {
                grid-template-columns: 1fr;
            }
            .nav-container {
                flex-direction: column;
                gap: 15px;
            }
            nav ul {
                flex-wrap: wrap;
                justify-content: center;
            }
            .hero h1 {
                font-size: 2rem;
            }
        }