/* ============================================================
   COMPONENTE - COVERAGE / MAPA DE COBERTURA
   Sección que muestra el mapa de México con estadísticas
   Estilo igual a trial-map de prueba-gratis-v1
   ============================================================ */

.coverage {
    width: 100%;
    background: linear-gradient(180deg, #0F172A 0%, #1E3A5F 50%, #06C8FF 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1rem 2rem;
    overflow: hidden;
}

.coverage__title {
    font-family: var(--font-family-primary);
    font-size: 1.875rem;
    font-weight: var(--font-weight-extrabold);
    color: #FFFFFF;
    text-align: center;
    margin: 0 0 1.5rem;
    line-height: 1.2;
    max-width: 280px;
}

.coverage__title--accent {
    color: #FFFFFF;
}

.coverage__wrapper {
    display: contents;
}

.coverage__container {
    width: 100%;
    max-width: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.coverage__img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    transition: none;
    animation: none;
}

.coverage__stats {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    margin-top: 1.5rem;
    width: 100%;
    max-width: 400px;
}

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

.coverage__stat-number {
    font-family: var(--font-family-primary);
    font-size: 1.75rem;
    font-weight: var(--font-weight-extrabold);
    color: #FFFFFF;
    line-height: 1;
    min-width: 4ch;
    text-align: center;
}

.coverage__stat-label {
    font-family: var(--font-family-primary);
    font-size: 0.75rem;
    font-weight: var(--font-weight-medium);
    color: #FFFFFF;
    text-transform: uppercase;
    line-height: 1.2;
    margin-top: 0.25rem;
}

/* --------------------------------------------------------
   MÓVIL PEQUEÑO - hasta 480px
   -------------------------------------------------------- */
@media (max-width: 480px) {
    .coverage {
        padding: 2rem 1rem 1.5rem;
    }

    .coverage__title {
        font-size: 1.5rem;
        max-width: 100%;
        padding: 0 0.5rem;
    }

    .coverage__container {
        max-width: calc(100% - 2rem);
    }

    .coverage__stats {
        gap: 1.5rem;
        padding: 0 1rem;
    }
}

/* --------------------------------------------------------
   MÓVIL - 481px - 767px
   -------------------------------------------------------- */
@media (min-width: 481px) and (max-width: 767px) {
    .coverage {
        padding: 2.5rem 1.25rem 2rem;
    }

    .coverage__container {
        max-width: 380px;
    }
}

/* --------------------------------------------------------
   TABLET - 768px+
   -------------------------------------------------------- */
@media (min-width: 768px) {
    .coverage {
        padding: 3rem 2rem 2.5rem;
    }

    .coverage__title {
        font-size: 2rem;
        margin-bottom: 2rem;
        max-width: none;
    }

    .coverage__container {
        max-width: 450px;
    }

    .coverage__stats {
        gap: 3rem;
        margin-top: 2rem;
        max-width: 500px;
    }

    .coverage__stat-number {
        font-size: 2rem;
    }

    .coverage__stat-label {
        font-size: 0.875rem;
    }
}

/* --------------------------------------------------------
   DESKTOP - 1025px+
   -------------------------------------------------------- */
@media (min-width: 1025px) {
    .coverage {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 2.5rem 2rem 3rem;
        background: linear-gradient(180deg, #0F172A 0%, #1E3A5F 100%);
        border-top: 4px solid #A855F7;
    }

    .coverage__title {
        font-size: 50px;
        margin-bottom: 2.5rem;
    }

    .coverage__title--accent {
        color: #06C8FF;
    }

    .coverage__wrapper {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 4rem;
        width: 100%;
        max-width: 1200px;
    }

    .coverage__container {
        display: flex !important;
        flex: 0 0 auto;
        width: 70%;
        max-width: 950px;
        justify-content: center;
        align-items: center;
    }

    .coverage__img {
        display: block !important;
        width: 100%;
        height: auto;
        max-width: 100%;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .coverage__stats {
        flex: 0 0 auto;
        flex-direction: column;
        align-items: flex-end;
        gap: 1.5rem;
        margin-top: 0;
        max-width: none;
        width: auto;
    }

    .coverage__stat {
        align-items: flex-end;
        text-align: right;
    }

    .coverage__stat-number {
        font-size: 3.5rem;
        min-width: 5ch;
        text-align: right;
    }

    .coverage__stat-label {
        font-size: 0.875rem;
    }
}

/* --------------------------------------------------------
   DESKTOP LARGE - 1366px+
   -------------------------------------------------------- */
@media (min-width: 1366px) {
    .coverage__title {
        font-size: 56px;
    }

    .coverage__stat-number {
        font-size: 4rem;
        min-width: 5ch;
        text-align: right;
    }

    .coverage__stat-label {
        font-size: 1rem;
    }
}
