/* Cobertura · Fase 1. Valores comunes con respaldo para uso fuera de la Home. */
.inp-coverage {
    font-family: var(--inp-home-font-family, inherit);
    padding: 96px 0 94px;
    background: #fff;
}

.inp-coverage__header {
    max-width: 1050px;
    margin: 0 auto 58px;
    text-align: center;
}

.inp-coverage__eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--inp-home-accent-color, var(--inp-green-dark));
    font-size: var(--inp-home-eyebrow-size, 13px);
    font-weight: var(--inp-home-heading-weight, 800);
    letter-spacing: .08em;
    text-transform: uppercase;
}

.inp-coverage h2 {
    font-family: var(--inp-home-font-family, inherit);
    margin: 0;
    color: var(--inp-home-heading-color, var(--inp-navy));
    font-size: var(--inp-home-heading-size, clamp(34px, 4.4vw, 54px));
    line-height: var(--inp-home-heading-line-height, 1.1);
    letter-spacing: var(--inp-home-heading-letter-spacing, -.04em);
    font-weight: var(--inp-home-heading-weight, 800);
    text-wrap: balance;
}

.inp-coverage h2 strong {
    color: var(--inp-home-accent-color, var(--inp-green));
    font-weight: var(--inp-home-heading-weight, 800);
}

.inp-coverage__header p {
    font-family: var(--inp-home-font-family, inherit);
    font-weight: var(--inp-home-body-weight, inherit);
    max-width: 850px;
    margin: 20px auto 0;
    color: var(--inp-home-body-color, var(--inp-text));
    font-size: var(--inp-home-body-size, 17px);
    line-height: var(--inp-home-body-line-height, 1.75);
}

.inp-coverage__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border: 1px solid var(--inp-border);
    border-radius: 24px;
    overflow: hidden;
    background: #fbfcf9;
}

.inp-coverage__grid article {
    min-height: 160px;
    padding: 32px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-right: 1px solid var(--inp-border);
}

.inp-coverage__grid article:last-child {
    border-right: 0;
}

.inp-coverage__number {
    color: var(--inp-home-accent-color, var(--inp-green));
    font-size: var(--inp-home-stat-size, clamp(30px, 3vw, 44px));
    line-height: 1;
    letter-spacing: -.04em;
    font-weight: var(--inp-home-heading-weight, 800);
}

.inp-coverage__label {
    margin-top: 12px;
    color: var(--inp-home-heading-color, var(--inp-navy));
    font-size: var(--inp-home-label-size, 15px);
    font-weight: var(--inp-home-label-weight, 700);
}

.inp-coverage__action {
    margin-top: 32px;
    text-align: center;
}

.inp-coverage__action a {
    color: var(--inp-home-heading-color, var(--inp-navy));
    text-decoration: none;
    font-size: var(--inp-home-label-size, 15px);
    font-weight: var(--inp-home-heading-weight, 800);
}

.inp-coverage__action a span {
    margin-left: 8px;
    color: var(--inp-home-accent-color, var(--inp-green-dark));
}

@media (max-width: 980px) {
    .inp-coverage__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .inp-coverage__grid article {
        border-bottom: 1px solid var(--inp-border);
    }
    .inp-coverage__grid article:nth-child(2n) {
        border-right: 0;
    }
    .inp-coverage__grid article:last-child {
        grid-column: 1 / -1;
        border-bottom: 0;
    }
}

@media (max-width: 560px) {
    .inp-coverage {
        padding: 72px 0;
    }
    .inp-coverage__grid {
        grid-template-columns: 1fr;
    }
    .inp-coverage__grid article,
    .inp-coverage__grid article:nth-child(2n) {
        min-height: 125px;
        border-right: 0;
        border-bottom: 1px solid var(--inp-border);
    }
    .inp-coverage__grid article:last-child {
        grid-column: auto;
    }
}
