.vipPass {
    margin: 14px 0;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,.10);
    padding: 12px;
    background: linear-gradient(180deg, rgba(255, 215, 0, .14), rgba(255, 215, 0, .06));
}

.vipPass__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.vipPass__title {
    display: flex;
    align-items: center;
    gap: 8px;
}

.vipPass__badge {
    font-family: Montserrat;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    padding: 0 8px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    background: rgba(0,0,0,.85);
    color: #fff;
    letter-spacing: .04em;
}

.vipPass__name {
    font-family: Montserrat;
    font-weight: 800;
}

.vipPass__max {
    font-size: 12px;
    opacity: .75;
    white-space: nowrap;
}

.vipPass__body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255,255,255,.75);
    border: 1px solid rgba(0,0,0,.08);
}

.vipPass__qty {
    display: flex;
    align-items: center;
    gap: 10px;
}

.vipPass__btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,.12);
    background: #fff;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
}

.vipPass__btn:disabled {
    opacity: .45;
    cursor: not-allowed;
}

.vipPass__value {
    min-width: 20px;
    text-align: center;
    font-weight: 700;
}

.vipPass__hint {
    font-family: Montserrat;
    margin-top: 10px;
    font-size: 12px;
    opacity: .7;
}

.vip-info {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.vip-info__btn{
    font-family: Phudu;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    border: 1px solid black;
    background: white;
    color: black;
    font-weight: 800;
    font-style: italic;
    font-size: 13px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.vip-info__tooltip{
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(320px, 86vw);
    padding: 12px 12px;
    border-radius: 12px;
    background: rgba(0,0,0,.92);
    color: #fff;
    font-size: 13px;
    line-height: 1.35;
    box-shadow: 0 14px 40px rgba(0,0,0,.35);

    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity .15s ease, transform .15s ease;
    z-index: 9999;
}

.vip-info__tooltip::before{
    content:"";
    position:absolute;
    top:-7px;
    right: 10px;
    border: 7px solid transparent;
    border-bottom-color: rgba(0,0,0,.92);
}

.vip-info__link{
    color: #7dd3fc;
    text-decoration: underline;
    word-break: break-word;
}

.vip-info:hover .vip-info__tooltip,
.vip-info:focus-within .vip-info__tooltip{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.vip-info.is-open .vip-info__tooltip{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.vipPass--highlight {
    position: relative;
    margin-top: 18px;
    padding: 20px 16px 16px;
    background: #f7f3e8;
    border: 2px solid #9cb65a;
    border-radius: 18px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.vipPass__badge {
    position: absolute;
    top: -12px;
    right: 14px;
    background: #f6c24b;
    color: #5b4300;
    font-weight: 800;
    font-size: 12px;
    line-height: 1;
    padding: 10px 14px;
    border-radius: 10px 10px 10px 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.vipPass__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.vipPass__topLeft {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vipPass__kicker {
    font-family: Montserrat;
    color: #1e1e1e;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.3;
}

.vipPass__benefits {
    margin-top: 18px;
    padding: 16px;
    background: rgba(255,255,255,0.55);
    border: 1px solid #ebddba;
    border-radius: 14px;
}

.vipPass__benefit {
    font-family: Montserrat;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #222;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

.vipPass__benefit + .vipPass__benefit {
    margin-top: 10px;
}

.vipPass__check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #7bb51c;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 900;
    flex-shrink: 0;
}

.vipPass__subtext {
    font-family: Montserrat;
    margin-top: 14px;
    padding-left: 34px;
    color: #8a8a8a;
    font-size: 14px;
    line-height: 1.4;
}

.vipPass__footer {
    margin-top: 14px;
}

.vipPass__selector {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 14px;
    background: #f5f1e5;
    border: 1px solid #eadfbe;
    border-radius: 14px;
}

.vipPass__price {
    font-family: Montserrat;
    color: #000;
    font-size: 18px;
    font-weight: 800;
}

.vipPass__qty {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vipPass__btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 2px solid #1f1f1f;
    background: #fff;
    color: #1f1f1f;
    font-size: 24px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.vipPass__btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    border-color: #cfcfcf;
    color: #9a9a9a;
}

.vipPass__value {
    min-width: 22px;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #1f1f1f;
}

@media (max-width: 480px) {
    .vipPass__badge {
        font-size: 10px;
    }

    .vipPass__kicker {
        font-size: 15px;
    }

    .vipPass__subtext {
        font-size: 14px;
    }
}

/* ==========================================
   LAYOUT DUNI (Mês da Mulher)
   ========================================== */

.duniPass {
    display: flex;
    flex-direction: column;
    background: #f5f6f8;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    gap: 0;
}

.duniPass__info {
    padding: 12px 14px 8px;
}

.duniPass__title {
    font-family: Montserrat;
    font-size: 14px;
    font-weight: 800;
    color: #1f2937;
    line-height: 1.25;
}

.duniPass__subtitle {
    font-family: Montserrat;
    font-size: 12px;
    color: #4b5563;
    margin-top: 4px;
    font-weight: 600;
}

.duniPass .calcmpPromo__rowBox {
    border-radius: 0;
    border-left: none;
    border-right: none;
    margin: 0;
    box-shadow: none;
}

.duniPass__footer {
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.duniPass__benefits {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.duniPass__benefit {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: Montserrat;
    font-size: 12px;
    font-weight: 600;
    color: #374151;
}

.duniPass__check {
    color: #fff;
    background: #52b166;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
}

.duniPass__stamp {
    background: #52b166;
    color: #fff;
    font-family: Montserrat;
    font-weight: 900;
    font-size: 12px;
    line-height: 1;
    text-align: center;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px dashed #fff;
    outline: 2px solid #52b166;
    outline-offset: 1px;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: rotate(-4deg);
    box-shadow: 0 4px 10px rgba(82, 177, 102, 0.25);
    margin-right: 4px;
}

.duniPass__stampSm {
    font-size: 8px;
    font-weight: 600;
    margin: 2px 0;
}