:root {
    --bg-dark: #0d120e;
    --bg-panel: #151c15;
    --bg-panel-light: #1b231b;
    --gold: #cfa83a;
    --gold-light: #eddca2;
    --text-main: #f5f4ef;
    --text-muted: #9fa799;
    --white: #ffffff;
    --green: #8cae88;
    --blue: #7099c2;
    --black-accent: #d8d8d8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    background:
        radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.08), transparent 32rem),
        var(--bg-dark);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
}

.app-container {
    width: 100%;
    max-width: 620px;
    min-height: 100vh;
    background: linear-gradient(180deg, rgba(24, 32, 20, 0.96), var(--bg-dark) 24rem);
    box-shadow: 0 0 32px rgba(0, 0, 0, 0.42);
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    gap: 12px;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo-circle {
    width: 34px;
    height: 34px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gold);
    border-radius: 50%;
    background: #1c2317;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-name {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.4px;
}

.verified-badge {
    color: var(--gold);
    font-size: 14px;
}

.nav-pills {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(16, 21, 14, 0.8);
    padding: 4px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    border-radius: 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.2s ease;
}

.nav-link i {
    font-size: 13px;
}

.nav-link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
}

.nav-link.active {
    color: #10150e;
    background: var(--gold);
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.content {
    padding: 16px 14px 28px;
}

/* Seção Home / Portal Simples */
.home-portal-section {
    max-width: 520px;
    margin: 8px auto 32px;
    text-align: center;
    animation: fadeInDown 0.6s ease both;
}

.home-portal-section h2 {
    font-size: clamp(24px, 6.5vw, 32px);
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 6px;
}

.portal-subtitle {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
}

.simple-portal-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.portal-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 16px;
    background: linear-gradient(180deg, #182218 0%, #111712 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--text-main);
    text-decoration: none;
    text-align: left;
    transition: all 0.25s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.portal-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(212, 175, 55, 0.45);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
    background: linear-gradient(180deg, #1d2b1d 0%, #141c14 100%);
}

.portal-btn-icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 20px;
    background: rgba(255, 255, 255, 0.04);
}

.btn-beneficios .portal-btn-icon {
    color: var(--gold-light);
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.08);
}

.btn-cursos .portal-btn-icon {
    color: var(--gold);
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.08);
}

.portal-btn-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.portal-btn-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
}

.portal-btn-sub {
    font-size: 11px;
    color: var(--text-muted);
}

.arrow-icon {
    font-size: 18px;
    color: var(--gold);
    transition: transform 0.2s ease;
}

.portal-btn:hover .arrow-icon {
    transform: translateX(3px);
}

.home-hub-section h2 {
    font-size: clamp(26px, 7vw, 36px);
    line-height: 1.1;
    letter-spacing: -0.8px;
    margin-bottom: 8px;
}

.home-subtitle {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 24px;
}

.hub-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 18px;
}

.hub-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 16px;
    border-radius: 18px;
    background: linear-gradient(145deg, #182816, #101c0e);
    border: 1px solid rgba(212, 175, 55, 0.25);
    text-decoration: none;
    color: var(--text-main);
    text-align: left;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.hub-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: 0 14px 32px rgba(212, 175, 55, 0.15);
}

.beneficios-card::before {
    content: '';
    position: absolute;
    top: 0; right: 0; width: 100px; height: 100px;
    background: radial-gradient(circle, rgba(86, 184, 107, 0.15), transparent 70%);
    pointer-events: none;
}

.cursos-card::before {
    content: '';
    position: absolute;
    top: 0; right: 0; width: 100px; height: 100px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2), transparent 70%);
    pointer-events: none;
}

.hub-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 22px;
    margin-bottom: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.beneficios-card .hub-card-icon {
    color: var(--green);
    border-color: rgba(86, 184, 107, 0.3);
}

.cursos-card .hub-card-icon {
    color: var(--gold);
    border-color: rgba(212, 175, 55, 0.3);
}

.hub-card-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.hub-card-content p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.45;
    margin-bottom: 16px;
}

.hub-badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(86, 184, 107, 0.15);
    color: var(--green);
    margin-bottom: 8px;
}

.redirect-badge {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold);
}

.hub-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
}

.beneficios-card .hub-btn { color: var(--green); }
.cursos-card .hub-btn { color: var(--gold); }

/* Back link for subpages */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
    margin-bottom: 16px;
    transition: opacity 0.2s ease;
}

.back-link:hover {
    opacity: 0.8;
}

/* Cursos Grid */
.courses-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.course-card {
    position: relative;
    padding: 20px;
    border-radius: 16px;
    background: linear-gradient(145deg, #182616, #111a0f);
    border: 1px solid rgba(212, 175, 55, 0.18);
    display: flex;
    gap: 16px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
    animation: fadeInUp 0.6s ease both;
}

.course-card.featured {
    border-color: var(--gold);
    background: linear-gradient(145deg, #20301c, #132111);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.15);
}

.course-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--gold);
    color: #10150e;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.course-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: grid;
    place-items: center;
    font-size: 24px;
    color: var(--gold-light);
}

.course-body {
    flex: 1;
}

.course-category {
    font-size: 11px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    display: block;
    margin-bottom: 4px;
}

.course-body h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.course-body p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.45;
    margin-bottom: 12px;
}

.course-meta {
    display: flex;
    gap: 14px;
    font-size: 11px;
    color: #d0d6cc;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.course-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

@media (max-width: 480px) {
    .hub-options-grid {
        grid-template-columns: 1fr;
    }
    
    .course-card {
        flex-direction: column;
    }
}

.intro-section {
    max-width: 420px;
    margin: 4px auto 24px;
    text-align: center;
    animation: fadeInDown 0.65s ease both;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2.2px;
    text-transform: uppercase;
}

.intro-section h2 {
    margin-bottom: 12px;
    font-size: clamp(26px, 7vw, 34px);
    line-height: 1.08;
    letter-spacing: -0.8px;
}

.gold-text {
    color: var(--gold-light);
}

.intro-section p {
    max-width: 390px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.55;
}

.section-divider-top {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(212, 175, 55, 0.18);
    position: relative;
}

.section-divider-top::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: flex-start;
    gap: 16px;
}

.plan-card {
    --accent: var(--gold);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 18px;
    background: #141b14;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.7s ease both;
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.plan-card:hover {
    border-color: rgba(212, 175, 55, 0.45);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.plan-card.popular {
    border-color: rgba(212, 175, 55, 0.5);
    background: linear-gradient(180deg, #182218 0%, #121813 100%);
}

.card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--gold-light);
    font-size: 8.5px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    z-index: 2;
}

.plan-card.basic,
.plan-card.essencial {
    --accent: #b4c8a8;
    animation-delay: 0.08s;
}

.plan-card.plus,
.plan-card.prata {
    --accent: var(--gold);
    animation-delay: 0.16s;
}

.plan-card.elite,
.plan-card.ouro {
    --accent: var(--gold-light);
    grid-column: 1 / -1;
    width: 100%;
    animation-delay: 0.24s;
}

@media (max-width: 520px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .plan-card.elite,
    .plan-card.ouro {
        grid-column: auto;
        width: 100%;
    }
}

.card-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 16px 14px 14px;
    background: linear-gradient(180deg, rgba(25, 34, 25, 0.4) 0%, rgba(15, 20, 15, 0.95) 100%);
}

.card-brand {
    margin-bottom: 12px;
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.card-brand strong {
    color: var(--white);
}

.offer-frame {
    width: 90%;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    padding: 16px 10px 14px;
    border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
    border-radius: 12px;
    background: rgba(12, 17, 13, 0.75);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.plan-header {
    margin-bottom: 8px;
    text-align: center;
}

.plan-kicker {
    display: block;
    color: var(--text-muted);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 1.5px;
    line-height: 1;
    text-transform: uppercase;
}

.plan-title {
    margin-top: 3px;
    color: var(--white);
    font-size: clamp(22px, 6.5vw, 30px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.price-label {
    margin: 10px 0 4px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    font-size: 7.5px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.price-section {
    display: flex;
    align-items: flex-start;
    color: var(--white);
    font-weight: 800;
}

.currency {
    margin: 6px 3px 0 0;
    color: var(--gold-light);
    font-size: 10px;
}

.amount {
    font-size: clamp(34px, 8.5vw, 44px);
    line-height: 0.86;
    letter-spacing: -1.5px;
}

.cents {
    margin-top: 2px;
    color: var(--gold-light);
    font-size: 13px;
}

.period {
    align-self: flex-end;
    margin: 0 0 2px 2px;
    color: var(--text-muted);
    font-size: 8px;
    font-weight: 500;
}

.plan-description {
    max-width: 180px;
    color: #c4cbbd;
    font-size: 9.5px;
    font-weight: 500;
    line-height: 1.35;
    text-align: center;
}

.features-block {
    flex: 1;
    padding: 0 2px 14px;
}

.features-label {
    display: block;
    margin-bottom: 10px;
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.features-list {
    display: grid;
    gap: 7px;
    list-style: none;
}

.features-list li {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 6px;
    color: #dedfdc;
    font-size: 11px;
    line-height: 1.35;
}

.features-list i {
    flex: 0 0 auto;
    color: var(--accent);
    font-size: 13px;
    margin-top: 1px;
}

/* Specialty Expandable UI */
.specialties-toggle {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.25);
    color: var(--gold-light);
    font-size: 8.5px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 4px;
    transition: all 0.2s ease;
}

.specialties-toggle:hover {
    background: rgba(212, 175, 55, 0.2);
    color: var(--white);
}

.specialties-dropdown {
    display: none;
    width: 100%;
    margin-top: 5px;
    padding: 8px 10px;
    border-radius: 8px;
    background: rgba(14, 20, 14, 0.95);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--text-muted);
    font-size: 9px;
    line-height: 1.45;
}

.specialties-dropdown.active {
    display: block;
    animation: fadeIn 0.25s ease;
}

.value-proposition {
    min-height: 48px;
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 8px 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.02);
    color: #c9cca0;
    font-size: 9.5px;
    font-style: italic;
    line-height: 1.35;
}

.gympass-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 4px;
    margin-bottom: 6px;
    padding: 7px 10px;
    border-radius: 8px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--white);
    font-size: 10.5px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.2px;
    width: 100%;
}

.gympass-highlight i {
    color: var(--gold-light);
    font-size: 13px;
}

.pro-highlights-box {
    margin: 28px 0 12px;
    padding: 20px 18px;
    border-radius: 16px;
    background: linear-gradient(180deg, #161e16 0%, #111711 100%);
    border: 1px solid rgba(212, 175, 55, 0.22);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.pro-highlights-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.pro-highlights-list {
    list-style: none;
    display: grid;
    gap: 10px;
}

.pro-highlights-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-main);
}

.pro-highlights-list i {
    color: var(--gold);
    font-size: 14px;
    flex-shrink: 0;
}

.btn-assinar {
    width: 100%;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    background: linear-gradient(135deg, #d8bc68, #b8983e);
    color: #0c100c;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.btn-assinar:hover {
    transform: translateY(-2px);
    filter: brightness(1.06);
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.2);
}

.btn-assinar i {
    color: #0c100c;
    font-size: 16px;
}

.btn-assinar:focus-visible,
.social-link:focus-visible,
.close-btn:focus-visible {
    outline: 3px solid var(--gold-light);
    outline-offset: 3px;
}

.social-links-section {
    margin-top: 34px;
    text-align: center;
    animation: fadeInUp 0.7s 0.3s ease both;
}

.social-links-section p {
    margin-bottom: 14px;
    color: var(--text-muted);
    font-size: 12px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.social-link {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 50%;
    background: var(--bg-panel);
    color: var(--white);
    font-size: 17px;
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.social-link:hover {
    transform: translateY(-2px);
    border-color: var(--gold);
}

.whatsapp { color: #56d47b; }
.facebook { color: #6a9fec; }
.instagram { color: #e986b7; }
.linkedin { color: #78aee4; }

/* Carousel / Slider Styles for Planos Pessoais (Avulsos) */
.carousel-wrapper {
    position: relative;
    width: 100%;
    margin-top: 8px;
}

.carousel-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 8px 4px 16px;
    width: 100%;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-track .plan-card {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 14px;
    margin-bottom: 28px;
}

.carousel-nav-btn {
    position: static;
    transform: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(18, 25, 18, 0.94);
    border: 1px solid rgba(212, 175, 55, 0.45);
    color: var(--gold-light);
    display: grid;
    place-items: center;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
}

.carousel-nav-btn:hover {
    background: var(--gold);
    color: #0c100c;
    border-color: #ffffff;
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
}

.carousel-nav-btn:active {
    transform: scale(0.95);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.carousel-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.22);
    border: 1px solid rgba(212, 175, 55, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dots .dot.active {
    width: 26px;
    border-radius: 12px;
    background: var(--gold);
    border-color: var(--gold-light);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(22px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-14px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 520px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }

    .plan-card.elite {
        grid-column: auto;
        width: 100%;
    }
}

@media (max-width: 370px) {
    .cards-grid {
        gap: 9px;
    }

    .card-inner {
        padding-inline: 8px;
    }

    .offer-frame {
        width: 88%;
    }
}

@media (min-width: 621px) {
    .app-container {
        margin: 20px 0;
        border: 1px solid rgba(212, 175, 55, 0.12);
        border-radius: 26px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
