/* ===== BASE (desktop / tablet) ===== */
.badge-beca {
    display: inline-flex;
    align-items: stretch;
    height: 90px;
    line-height: 1;
}

.badge-beca .left {
    width: 120px;
    height: 90px;
    background: #f7b733;
    border-radius: 9999px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.badge-beca .left .hasta {
    position: absolute;
    top: 16px;
    left: 14px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    opacity: 0.8;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.badge-beca .left .pct {
    font-weight: 800;
    font-size: 3rem;
    color: #000;
    letter-spacing: -0.02em;
    padding-top: 0.4rem;
    margin: 0 1rem;
}

.badge-beca .right {
    height: 90px;
    background: #12b400;
    display: flex;
    align-items: center;
    padding: 0 28px;
    border-top-right-radius: 9999px;
    border-bottom-right-radius: 9999px;
}

.badge-beca .right .text {
    font-weight: 700;
    font-size: 46px;
    color: #ffffff;
    white-space: nowrap;
}

.badge-beca sup {
    font-size: 60%;
    top: -0.4em;
    position: relative;
}

/* ===== MÓVIL (misma vista, ancho completo) ===== */
@media (max-width: 575.98px) {

    .badge-beca {
        display: flex;
        width: 100%;
        height: 64px;
    }

    .badge-beca .left {
        width: 44%;
        height: 64px;
    }

    .badge-beca .left .hasta {
        top: 8px;
        left: 44px;
        font-size: 11px;
    }

    .badge-beca .left .pct {
        font-size: 36px;
    }

    .badge-beca .right {
        height: 64px;
        padding: 0 18px;
        flex: 1;
    }

    .badge-beca .right .text {
        font-size: 2.5rem;
    }
}