/* =========================
   CONTAINER
========================= */

.zyrgon-membership {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: stretch;
    max-width: 980px;
    margin: auto;
}
.zyrgon-membership * {
    font-family: 'Figtree';
}
/* =========================
   CARD DO PLANO
========================= */

.plan {
    background: var(--plan-color);
    border-radius: 14px 46px 14px 46px;
    padding: 45px 15px;
    position: relative;
    display: flex;
    flex: 1;
    flex-grow: 1;
    width: fit-content;
    flex-shrink: 1;
    flex-basis: 0;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease;
}

.plan:hover {
    /*transform: translateY(-6px);*/
    box-shadow: 0 20px 50px rgba(0,0,0,.15);
}

/* =========================
   BEST SELLER
========================= */

.plan.best-seller {
    background: var(--plan-color);
    color: #ffffff;
}

/* badge */
.plan .badge {
    position: absolute;
    top: -32px;
    left: 15px;
    background: #ffffff;
    color: #000000;
    padding: 6px 10px;
    border-radius: 6px 6px 0 0;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: 0;
}

/* =========================
   TÍTULO / PREÇO / DESCRIÇÃO
========================= */

.plan-title {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 12px;
}

.plan-description {
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 40px;
    opacity: .9;
    color: #000000;
}
.best-seller .plan-description{
    color: white;
}
/* =========================
   LISTA DE FEATURES
========================= */

.features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-top: 1px solid rgba(0,0,0,.08);
    font-size: 15px;
}

/* ajuste no plano colorido */
.plan.best-seller .features li {
    border-color: rgba(255,255,255,.25);
}

/* ícone check */
.features .icon {
    width: 18px;
    height: 18px;
    min-width: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* =========================
   FEATURE INATIVA
========================= */

.features li.inactive {
    opacity: .35;
}

/* =========================
   TOOLTIP (!)
========================= */

.tooltip {
    margin-left: auto;
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: help;
    opacity: .7;
}

.tooltip:hover {
    opacity: 1;
}

/* =========================
   BOTÃO
========================= */

.choose-plan, .choose-plan:hover, .choose-plan:focus{
    margin-top: auto;
    padding: 10px 20px;
    border: 1px solid black;
    background: #ffffff;
    color: #000000 !important;
    font-weight: 700;
    transition: all .25s ease;
    opacity: 1;
    border-width: 1.11px;
    border-radius: 50px;
    padding-top: 10px;
    padding-right: 20px;
    padding-bottom: 10px;
    padding-left: 20px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    font-size: 15px;
    font-family: 'Figtree';
}
.plan:first-child .choose-plan {
    background: #ffffff00;
}

/* botão no plano best seller */
.plan.best-seller .choose-plan {
    background: #fff;
    color: var(--plan-color);
    border-color: white;
}


/* =========================
   CTA FINAL (QR CODE)
========================= */

#zyrgon-mobile-cta {
    margin-top: 20px;
}

#zyrgon-mobile-cta .mobile-cta {
    background: var(--plan-color, #ff2d2d);
    padding: 48px;
    border-radius: 32px;
    text-align: center;
    color: #fff;
}

#zyrgon-mobile-cta img {
    max-width: 180px;
    vertical-align: bottom;
}

/* =========================
   CTA MOBILE
========================= */

.zyrgon-mobile-cta {
    background: var(--cta-bg);
    color: #fff;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 770px;
    margin: auto;
    position: relative;
}
.cta-phone {
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    width: 315px;
    max-width: 100%;
}

.cta-phone img {
    min-width: 315px;
}

/* TEXTO */
.cta-text h2 {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.05;
    margin: 0 0 10px;
}

.cta-text p {
    font-size: 16px;
    opacity: .9;
}

/* QR */
.cta-qr {
    background: #fff;
    border-radius: 20px;
    text-align: center;
}

.cta-qr img {
    width: 160px;
    height: auto;
    display: block;
}

.cta-qr span {
    display: block;
    font-size: 12px;
    font-weight: 700;
    margin-top: 6px;
}
/* CTA começa oculto */
#zyrgon-mobile-cta {
    display: none;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .4s ease, transform .4s ease;
}

/* CTA visível */
#zyrgon-mobile-cta.is-visible {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* WHY ELEMENT GYM */
#why_element_gym > div {
   transition: all .4s;
}
#why_element_gym.mobile-hidden > div {
    padding-bottom: 168px!important;
    padding-top: 100px;
}
