* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Lato', sans-serif;
        }

        /* PRIMERA SECCIÓN PARALLAX - Nosotros */
        .sect1 {
            width: 100%;
            height: 70vh;
            background: url("imagenes/mc3.jpg");
            background-attachment: fixed;
            background-position: center;
            background-size: cover;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .sect1h2 {
            background: #0196D7;
            color: #ffffff;
            width: 300px;
            height: 100px;
            margin: auto;
            text-align: center;
            line-height: 100px;
        }

        /* SECCIÓN NOSOTROS */
        .sect2 {
            width: 100%;
            min-height: 500px;
            background:
                linear-gradient(135deg, rgba(44, 62, 80, 0.95) 0%, rgba(52, 73, 94, 0.95) 100%),
                url('https://www.transparenttextures.com/patterns/brushed-alum-dark.png');
            background-size: cover;
            background-attachment: fixed;
            padding: 60px 40px;
        }

        .sect2-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .sect2h2 {
            background: linear-gradient(135deg, #08459B 0%, #6EBDE4 100%);
            color: #ffffff;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
            width: fit-content;
            padding: 20px 40px;
            margin: 0 auto 30px;
            text-align: center;
            font-size: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 70px;
        }

        .texto2 {
            color: #E8E8E8;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
            font-weight: 500;
            line-height: 1.8;
            margin-bottom: 30px;
            font-size: 16px;
            max-width: 600px;
            text-align: center;
            margin-left: auto;
            margin-right: auto;
        }

        .contenido-principal {
            display: grid;
            grid-template-columns: 1fr 450px;
            gap: 40px;
            align-items: start;
            margin-bottom: 60px;
        }

        .servicios-container {
            margin-top: 0;
            width: 100%;
        }

        .subtitulo {
            color: #F0F0F0;
            font-size: 24px;
            margin: 0 0 20px 0;
            text-align: left;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
            position: relative;
            padding-bottom: 10px;
        }

        .subtitulo::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 3px;
            background: linear-gradient(135deg, #08459B 0%, #6EBDE4 100%);
            border-radius: 2px;
        }

        .servicios-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            margin-top: 20px;
        }

        .servicio-item {
            background: rgba(30, 40, 50, 0.8);
            padding: 25px;
            border-radius: 8px;
            border-left: 4px solid #08459B;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }

        .servicio-item:hover {
            transform: translateY(-5px);
            border-left-color: #2BB0EB;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
        }

        .servicio-item h4 {
            color: #2BB0EB;
            font-size: 18px;
            margin-bottom: 12px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
        }

        .servicio-item p {
            color: #E8E8E8;
            font-size: 14px;
            line-height: 1.6;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
        }

        .sect2-image {
            flex: 0 0 450px;
            max-width: 450px;
        }

        .sect2-image img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
            object-fit: cover;
        }

        .casos-exito-section {
            margin-top: 60px;
            padding-top: 40px;
            border-top: 2px solid rgba(110, 189, 228, 0.2);
        }

        .casos-exito-section .subtitulo {
            text-align: center;
            margin: 0 auto 30px;
        }

        .casos-exito-section .subtitulo::after {
            left: 50%;
            transform: translateX(-50%);
        }

        .sectores-list {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 30px;
            flex-wrap: wrap;
        }

        .sectores-column ul {
            list-style: none;
            padding: 0;
            text-align: left;
        }

        .sectores-column ul li {
            color: #B8C5D0;
            font-size: 16px;
            padding: 8px 0;
            position: relative;
            padding-left: 20px;
        }

        .sectores-column ul li::before {
            content: '- ';
            position: absolute;
            left: 0;
            color: #FF8C00;
            text-shadow: 0 0 8px rgba(255, 140, 0, 0.6);
            font-weight: bold;
        }

        /* SEGUNDA SECCIÓN PARALLAX - Ventajas Competitivas */
        .sect3 {
            width: 100%;
            height: 70vh;
            background: url("imagenes/mc4.jpg");
            background-attachment: fixed;
            background-position: center;
            background-size: cover;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* SECCIÓN CÓMO OPERAMOS */
        .sect2-centered {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        .sect2-centered .sect2h2,
        .sect2-centered .texto2 {
            margin-left: auto;
            margin-right: auto;
        }

        .circulos-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 50px;
            margin-top: 40px;
            flex-wrap: wrap;
        }

        .circulo-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
        }

        .circulo {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            border: 4px solid #08459B;
            overflow: hidden;
            box-shadow:
                0 0 20px rgba(184, 115, 51, 0.4),
                inset 0 0 20px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            position: relative;
        }

        .circulo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .circulo:hover {
            border-color: #2BB0EB;
            box-shadow:
                0 0 30px rgba(1, 150, 215, 0.4),
                inset 0 0 20px rgba(166, 210, 246, 0.4);
            transform: scale(1.05);
        }

        .circulo:hover img {
            transform: scale(1.1);
        }

        .circulo-titulo {
            color: #F0F0F0;
            font-size: 18px;
            font-weight: 600;
            text-align: center;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
        }

        /* TERCERA SECCIÓN PARALLAX - Somos Líderes */
        .sect4 {
            width: 100%;
            height: 70vh;
            background: url("imagenes/mc5.jpg");
            background-attachment: fixed;
            background-position: center;
            background-size: cover;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .sect3h2 {
            background: #0196D7;
            color: #ffffff;
            width: 300px;
            height: 100px;
            margin: auto;
            text-align: center;
            line-height: 100px;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .contenido-principal {
                grid-template-columns: 1fr;
            }

            .sect2-image {
                flex: 0 0 auto;
                max-width: 100%;
                width: 100%;
                margin-top: 30px;
            }

            .sect2-image img {
                max-width: 90%;
                margin: 0 auto;
                display: block;
            }

            .subtitulo {
                text-align: center;
            }

            .subtitulo::after {
                left: 50%;
                transform: translateX(-50%);
            }
        }

        @media (max-width: 768px) {
            .servicios-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .servicio-item {
                padding: 20px;
            }

            .subtitulo {
                font-size: 22px;
                margin: 30px 0 15px 0;
            }

            .sect2-image {
                padding: 0 20px;
            }

            .sect2-image img {
                max-width: 100%;
            }

            .sectores-list {
                flex-direction: column;
                gap: 0;
                align-items: center;
            }

            .sectores-column ul {
                text-align: center;
            }

            .sectores-column ul li {
                text-align: center;
                padding-left: 0;
            }

            .sectores-column ul li::before {
                position: static;
                margin-right: 5px;
            }

            .circulos-container {
                flex-direction: column;
                gap: 40px;
            }

            .circulo {
                width: 180px;
                height: 180px;
            }
        }

        @media (min-width: 769px) and (max-width: 1024px) {
            .servicios-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .circulos-container {
                gap: 30px;
            }

            .circulo {
                width: 170px;
                height: 170px;
            }
        }
