            /* --- Bloque de Sección --- */
    .ind-feature {
        background-color: #ffffff;
        border-top: 1px solid #f0f0f0; /* Línea divisoria sutil */
    }

    /* --- Contenedor de Imagen --- */
    .ind-feature__image-wrapper {
        width: 100%;
        height: 100%;
        background-color: transparent;
        position: relative;
        overflow: hidden;
        min-height: auto;
    }

    .ind-feature__img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: grayscale(20%) contrast(1.05); /* Toque industrial */
        transition: transform 0.6s ease;
        display: block;
    }

    /* --- Contenido y Títulos --- */
    .ind-feature__tag {
        display: block;
        font-size: 0.7rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: var(--ind-blue);
        margin-bottom: 10px;
        opacity: 0.7;
    }

    .ind-feature__title {
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 500; /* Siguiendo el estilo fino de Sandvik */
        color: var(--ind-text-main);
        margin-bottom: 30px;
        letter-spacing: -1px;
    }

    /* --- Lista Técnica Estilo Catálogo --- */
    .ind-feature__list {
        list-style: none;
        padding: 0;
        margin: 0;
        border-top: 1px solid #eee; /* La lista nace de una línea */
    }

    .ind-feature__list li {
        padding: 14px 0;
        border-bottom: 1px solid #eee;
        font-size: 1rem;
        color: #444;
        display: flex;
        align-items: center;
        transition: padding-left 0.3s ease;
    }

    /* El marcador es una línea técnica, no un punto */
    .ind-feature__list li::before {
        content: "";
        width: 15px;
        height: 1px;
        background-color: var(--ind-blue);
        margin-right: 15px;
        display: inline-block;
    }

    .ind-feature__list li:hover {
        padding-left: 10px;
        color: var(--ind-blue);
    }

    .ind-feature__list {
        margin-bottom: 0; /* Evita que el contenedor sea más alto que los items */
    }

    .ind-feature__list li:last-child {
        border-bottom: none;
    }


    @media (max-width: 991px) {
        /* Aseguramos que el contenedor use Flexbox para respetar el 'order' */
        .row {
            display: flex;
            flex-direction: column; /* Apilado vertical */
        }

        .order-2 {
            order: 1 !important; /* El texto sube al primer lugar */
        }

        .order-1 {
            order: 2 !important; /* La imagen baja al segundo lugar */
        }

        /* Ajuste de márgenes para que respiren en móvil */
        .ind-feature__content {
            margin-bottom: 40px; /* Espacio entre el final de la lista y la imagen */
        }

        .ind-feature__title {
            font-size: 2.2rem;
            margin-bottom: 20px;
        }

        .ind-feature__image-wrapper {
            height: 300px; /* Franja más compacta en móvil */
            border-radius: 4px; /* Un toque de suavidad visual en móviles */
        }
    }

    /* Contenedor de Proyectos Recientes */
.ind-feature__projects {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.projects-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #888;
    margin-bottom: 15px;
}

/* Tira de imágenes estilo Grid de precisión */
.projects-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 3 fotos + 1 botón */
    gap: 8px;
    align-items: stretch;
}

.project-thumb {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: #f8f8f8;
}

.project-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%); /* Efecto industrial */
    transition: all 0.4s ease;
    opacity: 0.8;
}

.project-thumb:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Botón "Ver Más" como pieza del grid */
.project-more {
    aspect-ratio: 1 / 1;
    background-color: var(--ind-blue); /* Tu azul corporativo */
    color: white;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    text-align: center;
}

.project-more .more-icon {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1;
}

.project-more .more-text {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.project-more:hover {
    background-color: #003366; /* Un tono más oscuro */
    color: white;
}

/* Ajuste móvil */
@media (max-width: 576px) {
    .projects-strip {
        grid-template-columns: repeat(4, 1fr); /* Mantenemos 4 para que no ocupe tanto alto */
        gap: 5px;
    }
}

/* Estilo para que el icono de Google coincida con la galería */
.mex-icon-flow {
  /* Color exacto de tus indicadores */
  color: #0b3558; 
  
  /* Ajustes de fuente para Material Symbols */
  font-variation-settings:
    'FILL' 0,
    'wght' 700, /* Máximo grosor para dar "cuerpo" */
    'GRAD' 0,
    'opsz' 48;  /* Mayor precisión óptica */
    
  /* Tamaño para que guarde proporción con las flechas (aprox 1.5rem o 24px) */
  font-size: 24px;
  
  /* Alineación técnica */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
}