/* Front - Planos Tabs */
.planos-tabs-front {
    max-width: 960px;
    margin: 0 auto;
    font-family: inherit;
}

.planos-tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
	justify-content: center;
}

.planos-tab-btn {
    padding: 12px 24px;
    border-radius: 999px;
    border: 1px solid #45132E;
    background: transparent;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    color: #45132E;
    font-family: "SF Pro Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.3px;
}

.planos-tab-btn.is-active {
    background: #5c1f3a;
    color: #fff;
}

.planos-viewer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.planos-image-wrapper {
    position: relative;
}

.planos-current-image {
    width: 100%;
}

.planos-zoom-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.planos-nav-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.planos-nav-arrow {
    width: 48px;
    height: 48px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}


.planos-pager {
    text-align: center;
    color: #45132E;
    font-family: "SF Pro Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    letter-spacing: 0.3px;
}

/* Modal */
.planos-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.planos-modal-overlay.is-open {
    display: flex;
}

.planos-modal-box {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.planos-modal-image {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 6px;
    display: block;
}

.planos-modal-close {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    color: #1f1f1f;
    border: none;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

/* Responsive mobile */
@media (max-width: 600px) {
    .planos-tabs-nav {
        gap: 8px;
    }

    .planos-tab-btn {
        padding: 10px 16px;
        font-size: 14px;
        flex: 1 1 auto;
        text-align: center;
    }

    .planos-image-card {
        max-width: 100%;
    }

    .planos-nav-arrow {
        width: 40px;
        height: 40px;
    }
}
