/* Socios estratégicos — grid + modal. Compartido por index y nosotros. */
        /* Socios estratégicos — grid estático, logos grandes y juntos */
        .socios-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 12px;
            margin: 0;
            padding: 0;
            list-style: none;
        }
        /* La sección .brand-one tiene fondo blanco, así que las tarjetas van en
           tono claro y los logos en gris (sin subir brillo) para que se lean. */
        .socios-grid .socio {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            min-height: 116px;
            padding: 20px 22px;
            border: 1px solid #e6ebf0;
            border-radius: 14px;
            background: #f6f8fa;
            cursor: pointer;
            transition: background-color .28s ease, border-color .28s ease, transform .28s ease, box-shadow .28s ease;
        }
        .socios-grid .socio img {
            max-width: 100%;
            max-height: 60px;
            width: auto;
            object-fit: contain;
            filter: grayscale(1);
            opacity: .72;
            transition: filter .28s ease, opacity .28s ease;
        }
        .socios-grid .socio:hover {
            background: #fff;
            border-color: rgba(6, 164, 234, .5);
            transform: translateY(-4px);
            box-shadow: 0 14px 30px rgba(17, 22, 31, .08);
        }
        .socios-grid .socio:hover img {
            filter: none;
            opacity: 1;
        }
        @media (max-width: 991px) {
            .socios-grid { grid-template-columns: repeat(3, 1fr); }
        }
        @media (max-width: 575px) {
            .socios-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
            .socios-grid .socio { min-height: 118px; padding: 16px; }
            .socios-grid .socio img { max-height: 62px; }
        }

        /* Modal de socios */
        .socio-modal {
            position: fixed;
            inset: 0;
            z-index: 9999;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        .socio-modal.is-open { display: flex; }
        .socio-modal__backdrop {
            position: absolute;
            inset: 0;
            background: rgba(6, 12, 20, .82);
        }
        .socio-modal__panel {
            position: relative;
            display: grid;
            grid-template-columns: 260px 1fr;
            width: min(880px, 100%);
            max-height: 88vh;
            overflow: auto;
            background: #fff;
            border-radius: 16px;
        }
        .socio-modal__close {
            position: absolute;
            top: 10px;
            right: 14px;
            z-index: 2;
            width: 38px;
            height: 38px;
            border: 0;
            border-radius: 50%;
            background: rgba(15, 19, 26, .07);
            color: #11161f;
            font-size: 26px;
            line-height: 1;
            cursor: pointer;
        }
        .socio-modal__close:hover { background: rgba(15, 19, 26, .14); }
        .socio-modal__media {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 28px;
            background: #f4f7fa;
            border-radius: 16px 0 0 16px;
        }
        .socio-modal__media img {
            max-width: 100%;
            max-height: 130px;
            object-fit: contain;
        }
        .socio-modal__body { padding: 34px 34px 30px; }
        .socio-modal__pais {
            display: inline-block;
            margin-bottom: 10px;
            padding: 5px 12px;
            border-radius: 999px;
            background: rgba(6, 164, 234, .12);
            color: #0578ad;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: .04em;
            text-transform: uppercase;
        }
        .socio-modal__body h3 {
            margin: 0 0 12px;
            font-size: 26px;
            color: #11161f;
        }
        .socio-modal__body p {
            margin: 0 0 18px;
            color: #5c6673;
            font-size: 15px;
            line-height: 1.75;
        }
        .socio-modal__datos {
            margin: 0 0 22px;
            padding: 0;
            list-style: none;
        }
        .socio-modal__datos li {
            position: relative;
            padding-left: 24px;
            margin-bottom: 8px;
            color: #40474f;
            font-size: 14.5px;
        }
        .socio-modal__datos li::before {
            content: "\f00c";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 1px;
            color: #94D10F;
            font-size: 12px;
        }
        .socio-modal__link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-weight: 700;
            font-size: 14px;
            color: #0578ad;
        }
        .socio-modal__link:hover { color: #06A4EA; }
        @media (max-width: 767px) {
            .socio-modal__panel { grid-template-columns: 1fr; }
            .socio-modal__media { border-radius: 16px 16px 0 0; padding: 30px 24px 18px; }
            .socio-modal__body { padding: 24px; }
            .socio-modal__body h3 { font-size: 22px; }
        }
