/* ============================================================
   SECCIÓN GESTIÓN INTEGRADA (ISO)
   ------------------------------------------------------------
   El degradado va de negro (arriba) al verde #00B39F (abajo),
   que es exactamente el color con el que abre .seccionResultados.
   Las dos secciones deben quedar pegadas para que la unión no
   se note: si se intercala otra sección, hay que revisar esto.
============================================================ */

.seccionIso {
    position: relative;
    overflow: hidden;
    padding: 140px 0 120px;
    background:
        linear-gradient(
            180deg,
            #010103 0%,
            #013b38 42%,
            #007b71 74%,
            #00B39F 100%
        );
}

/* ============================================================
   ENCABEZADO
============================================================ */

.iso-header {
    text-align: center;
    margin-bottom: 84px;
}

.iso-header h2 {
    color: #ffffff;
    line-height: 1.08;
    font-weight: 600;
    letter-spacing: -1.8px;
    margin-bottom: 26px;
}

.iso-header p {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.55;
    max-width: 860px;
    margin: 0 auto;
}

/* ============================================================
   GRID DE ÁMBITOS
============================================================ */

.iso-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 20px;

    max-width: 1180px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

.iso-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* ---------- Insignia ----------
   El PNG ya trae su propio disco oscuro semitransparente; el
   wrapper solo aporta el halo claro que lo separa del fondo. */

.iso-badge {
    display: grid;
    place-items: center;

    width: 164px;
    height: 164px;
    border-radius: 50%;

    background: radial-gradient(circle,
            rgba(255, 255, 255, 0.085) 0%,
            rgba(255, 255, 255, 0.045) 58%,
            rgba(255, 255, 255, 0) 71%);
}

.iso-badge img {
    display: block;
    width: 112px;
    height: 112px;
    object-fit: contain;
}

/* ---------- Textos ---------- */

.iso-nombre {
    margin: 12px 0 0;
    color: #ffffff;
    font-family: var(--font-main);
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.iso-norma {
    margin: 14px 0 0;
    color: #ffffff;
    font-family: var(--font-main);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.iso-norma span {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================================
   RESPONSIVE
============================================================ */

/* Ojo: `body` lleva `zoom: 0.8`, así que estos breakpoints se evalúan sobre
   el ancho real del dispositivo, no sobre el ancho de maquetación (que es
   1.25× mayor). Por eso los cortes van más bajos de lo que parece. */

@media (max-width: 1200px) {
    .seccionIso {
        padding: 120px 0 104px;
    }

    .iso-header {
        margin-bottom: 70px;
    }

    .iso-badge {
        width: 148px;
        height: 148px;
    }

    .iso-badge img {
        width: 100px;
        height: 100px;
    }

    .iso-nombre {
        font-size: 1.35rem;
    }
}

@media (max-width: 900px) {
    .seccionIso {
        padding: 110px 0 96px;
    }

    .iso-header {
        margin-bottom: 64px;
    }

    .iso-grid {
        gap: 52px 24px;
        max-width: 720px;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .seccionIso {
        padding: 88px 0 76px;
    }

    .iso-header {
        margin-bottom: 52px;
    }

    .iso-grid {
        gap: 40px 16px;
    }

    .iso-badge {
        width: 122px;
        height: 122px;
    }

    .iso-badge img {
        width: 84px;
        height: 84px;
    }

    .iso-nombre {
        font-size: 1.22rem;
    }

    .iso-norma {
        font-size: 0.98rem;
    }
}
