/* ============================================
   MUNDO DO AXÉ — A Caixa Mística · 107 Banhos
   Velvet Hollywood / Luxury Purple
   Palette: #090614 · #c9a84c · #7c3aed · #f0ecf8
   Typography: Bebas Neue · Playfair Display · Jost
   ============================================ */

/* ─── Variables ─────────────────────────────── */
:root {
    --ink:        #090614;
    --dark:       #0e0a1e;
    --dark-2:     #150e28;
    --dark-3:     #1e1538;
    --gold:       #c9a84c;
    --gold-lt:    #e8d49a;
    --gold-dk:    #9c7c28;
    --purple:     #7c3aed;
    --purple-lt:  #a78bfa;
    --purple-dk:  #4c2d9c;
    --purple-mid: #5b21b6;
    --cream:      #f5f2fc;
    --cream-dk:   #e4ddf5;
    --sepia:      #c8bde0;
    --muted:      #9688b5;
    --white:      #faf8ff;

    --border-gold:   1px solid rgba(201,168,76,0.35);
    --border-gold-s: 1px solid rgba(201,168,76,0.18);
    --border-purple: 1px solid rgba(124,58,237,0.25);
    --border-cream:  1px solid rgba(240,236,248,0.12);

    --shadow:     0 8px 40px rgba(0,0,0,0.6);
    --shadow-sm:  0 4px 20px rgba(0,0,0,0.4);
    --shadow-card: 0 2px 24px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,168,76,0.1);

    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --t:    0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --t-fast: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─── Reset ─────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Jost', system-ui, sans-serif;
    background: var(--ink);
    color: var(--cream);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.hidden { display: none !important; }

/* ─── Film grain overlay ────────────────────── */
.grain {
    position: fixed;
    inset: -50%;
    width: 200%;
    height: 200%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.028;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 256px 256px;
    animation: grainShift 0.4s steps(1) infinite;
}

@keyframes grainShift {
    0%  { transform: translate(0,    0);    }
    20% { transform: translate(-2%,  3%);   }
    40% { transform: translate(3%,  -2%);   }
    60% { transform: translate(-1%,  2%);   }
    80% { transform: translate(2%,  -3%);   }
    100%{ transform: translate(-3%,  1%);   }
}

/* ─── Heading color utilities ───────────────── */
.h-gold { color: var(--gold); }
.h-purple { color: var(--purple-lt); }

/* ─── Art Deco ornament elements ───────────── */
.ornament-line,
.ornament-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 20px 0;
}

.ornament-line span,
.ornament-divider span {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.45), transparent);
}

.ornament-line i,
.ornament-divider i {
    font-style: normal;
    color: var(--gold);
    font-size: 10px;
    letter-spacing: 6px;
    flex-shrink: 0;
}

/* ─── Keyframes ─────────────────────────────── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0);    }
}

@keyframes fadeIn {
    from { opacity: 0; } to { opacity: 1; }
}

@keyframes shimmerGold {
    0%   { background-position: -200% center; }
    100% { background-position:  200% center; }
}

/* ============================================
   LOGIN SCREEN
   ============================================ */

.login-screen {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 24px;
    overflow: hidden;
    background-color: var(--ink);
    background-image:
        linear-gradient(rgba(124,58,237,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201,168,76,0.025) 1px, transparent 1px),
        radial-gradient(ellipse 80% 60% at 50% 0%,   rgba(92,33,182,0.3)  0%, transparent 65%),
        radial-gradient(ellipse 60% 50% at 10% 100%, rgba(201,168,76,0.07) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 90% 50%,  rgba(124,58,237,0.1) 0%, transparent 50%);
    background-size: 64px 64px, 64px 64px, 100% 100%, 100% 100%, 100% 100%;
}

.login-container {
    background: var(--dark-2);
    border: var(--border-gold);
    border-radius: 2px;
    padding: 60px 52px;
    width: 100%;
    max-width: 460px;
    box-shadow:
        var(--shadow),
        inset 0 0 0 6px rgba(124,58,237,0.04),
        0 0 80px -20px rgba(124,58,237,0.35),
        0 0 40px -30px rgba(201,168,76,0.2);
    animation: fadeUp 0.9s var(--ease) both;
    position: relative;
    z-index: 1;
}

.login-container::before,
.login-container::after {
    content: '';
    position: absolute;
    width: 28px;
    height: 28px;
    border-color: var(--gold);
    border-style: solid;
    opacity: 0.6;
}

.login-container::before {
    top: -1px; left: -1px;
    border-width: 2px 0 0 2px;
}

.login-container::after {
    bottom: -1px; right: -1px;
    border-width: 0 2px 2px 0;
}

.login-logo {
    text-align: center;
    margin-bottom: 40px;
}

.logo-ornament {
    font-size: 32px;
    margin-bottom: 14px;
    display: block;
    animation: shimmerGold 4s linear infinite;
    background: linear-gradient(90deg, var(--gold-dk) 0%, var(--gold-lt) 40%, var(--gold) 60%, var(--gold-dk) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.login-logo h1 {
    font-family: 'Bebas Neue', 'Playfair Display', Georgia, serif;
    font-size: 44px;
    font-weight: 400;
    color: var(--cream);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1;
}

.login-subtitle {
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--sepia);
    margin-top: 8px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.login-logo .ornament-line {
    margin: 20px auto 0;
    max-width: 200px;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

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

.input-group label {
    font-size: 13px;
    color: var(--cream-dk);
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-family: 'Jost', sans-serif;
}

.input-group input {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(201,168,76,0.3);
    padding: 14px 4px;
    font-size: 17px;
    color: var(--cream);
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    transition: border-color var(--t-fast);
    outline: none;
    width: 100%;
    min-height: 52px;
}

.input-group input::placeholder { color: var(--sepia); }
.input-group input:focus { border-bottom-color: var(--purple-lt); }

.btn-login {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    border-radius: 1px;
    padding: 18px 36px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Jost', sans-serif;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--t);
    margin-top: 8px;
    min-height: 56px;
    position: relative;
    overflow: hidden;
}

.btn-login::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold) 0%, var(--purple-lt) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t);
    z-index: 0;
}

.btn-login span { position: relative; z-index: 1; }

.btn-login:hover {
    color: var(--ink);
    border-color: var(--purple-lt);
    box-shadow: 0 0 30px rgba(124,58,237,0.3), 0 0 15px rgba(201,168,76,0.15);
}

.btn-login:hover::before { transform: scaleX(1); }

.login-footer {
    text-align: center;
    font-size: 13px;
    color: var(--sepia);
    margin-top: 32px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-family: 'Jost', sans-serif;
}

/* ============================================
   HEADER
   ============================================ */

.header {
    background: rgba(9,6,20,0.95);
    border-bottom: var(--border-gold);
    padding: 0 32px;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 16px;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.header-logo-ornament {
    color: var(--gold);
    font-size: 18px;
}

.header-logo-text {
    font-family: 'Bebas Neue', 'Playfair Display', Georgia, serif;
    font-size: 26px;
    font-weight: 400;
    color: var(--cream);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    white-space: nowrap;
}

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

.user-greeting {
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: var(--cream-dk);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 220px;
}

.btn-logout {
    background: transparent;
    border: 1px solid rgba(201,168,76,0.3);
    color: var(--cream-dk);
    padding: 10px 22px;
    font-size: 13px;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--t-fast);
    white-space: nowrap;
    min-height: 46px;
}

.btn-logout:hover {
    border-color: var(--purple-lt);
    color: var(--purple-lt);
}

/* ============================================
   COPYRIGHT BANNER
   ============================================ */

.copyright-banner {
    background: rgba(124,58,237,0.07);
    border-bottom: 1px solid rgba(124,58,237,0.18);
    padding: 11px 32px;
}

.copyright-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.copyright-icon {
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 1px;
}

.copyright-text {
    font-size: 14px;
    color: var(--sepia);
    line-height: 1.7;
    font-family: 'Jost', sans-serif;
    font-weight: 400;
}

.copyright-text em {
    font-style: normal;
    color: var(--cream-dk);
}

/* ============================================
   WELCOME SECTION
   ============================================ */

.welcome-section {
    padding: 100px 24px 90px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: var(--border-gold);
    background-color: var(--dark);
    background-image:
        linear-gradient(rgba(124,58,237,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201,168,76,0.02) 1px, transparent 1px),
        radial-gradient(ellipse 70% 80% at 50% 0%, rgba(124,58,237,0.22) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 0%  80%, rgba(201,168,76,0.08) 0%, transparent 50%),
        radial-gradient(ellipse 40% 40% at 100% 100%, rgba(124,58,237,0.1) 0%, transparent 50%);
    background-size: 64px 64px, 64px 64px, 100% 100%, 100% 100%, 100% 100%;
}

.welcome-content {
    max-width: 820px;
    margin: 0 auto;
    animation: fadeUp 0.8s var(--ease) 0.1s both;
    position: relative;
    z-index: 1;
}

.welcome-eyebrow {
    font-size: 14px;
    color: var(--gold-lt);
    letter-spacing: 0.24em;
    text-transform: uppercase;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    margin-bottom: 28px;
}

.welcome-badge-congrats {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 28px;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.4);
    border-radius: 999px;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-lt);
    margin-bottom: 36px;
}

.welcome-badge-star { font-size: 18px; }

.welcome-headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(72px, 14vw, 160px);
    font-weight: 400;
    line-height: 0.92;
    letter-spacing: 0.04em;
    color: var(--cream);
    text-transform: uppercase;
    margin-bottom: 32px;
}

.welcome-hero-sub {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-style: italic;
    color: var(--purple-lt);
    line-height: 1.7;
    margin-bottom: 20px;
}

.welcome-text {
    font-size: 18px;
    color: var(--cream-dk);
    line-height: 1.85;
    max-width: 560px;
    margin: 0 auto;
    font-weight: 400;
}

.ornament-divider {
    max-width: 400px;
    margin: 32px auto 0;
}

.ornament-divider i {
    font-size: 8px;
    letter-spacing: 8px;
}

.welcome-product-tag {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.welcome-product-label {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 4px;
}

.welcome-title {
    font-family: 'Bebas Neue', 'Playfair Display', Georgia, serif;
    font-size: clamp(56px, 10vw, 112px);
    font-weight: 400;
    line-height: 0.95;
    margin-bottom: 8px;
    letter-spacing: 0.04em;
    color: var(--cream);
    text-transform: uppercase;
}

.welcome-product-sub {
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--sepia);
}

/* ============================================
   APOSTILAS / MATERIAL CTA SECTION
   ============================================ */

.apostilas-section {
    padding: 90px 32px;
    text-align: center;
    background-color: var(--dark);
    background-image:
        radial-gradient(ellipse 60% 70% at 50% 50%, rgba(124,58,237,0.15) 0%, transparent 65%),
        radial-gradient(ellipse 40% 40% at 20% 80%, rgba(201,168,76,0.06) 0%, transparent 50%);
    border-bottom: var(--border-gold);
    position: relative;
    overflow: hidden;
}

.apostilas-inner {
    max-width: 580px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.apostilas-ornament {
    max-width: 200px;
    margin: 0 auto 32px;
}

.apostilas-eyebrow {
    font-size: 14px;
    color: var(--gold-lt);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    margin-bottom: 18px;
}

.apostilas-title {
    font-family: 'Bebas Neue', 'Playfair Display', Georgia, serif;
    font-size: clamp(52px, 9vw, 96px);
    font-weight: 400;
    color: var(--cream);
    line-height: 0.95;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.apostilas-text {
    font-size: 17px;
    color: var(--cream-dk);
    line-height: 1.8;
    font-weight: 400;
    margin: 0 auto 40px;
    max-width: 480px;
}

.btn-apostilas {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--gold);
    color: var(--ink);
    border: none;
    border-radius: 1px;
    padding: 22px 48px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Jost', sans-serif;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: var(--t);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(201,168,76,0.3);
}

.btn-apostilas::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold-lt) 0%, var(--purple-lt) 100%);
    opacity: 0;
    transition: opacity var(--t);
}

.btn-apostilas svg,
.btn-apostilas span { position: relative; z-index: 1; }

.btn-apostilas:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(124,58,237,0.4), 0 4px 20px rgba(201,168,76,0.25);
}

.btn-apostilas:hover::before { opacity: 1; }

.apostilas-hint {
    font-size: 14px;
    color: var(--sepia);
    margin-top: 18px;
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    letter-spacing: 0.04em;
}

/* ============================================
   COMMUNITY SECTION
   ============================================ */

.community-section {
    padding: 90px 32px 100px;
    text-align: center;
    background-color: var(--dark-2);
    background-image:
        radial-gradient(ellipse 70% 60% at 50% 0%, rgba(124,58,237,0.22) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 80% 100%, rgba(201,168,76,0.05) 0%, transparent 50%);
    border-top: var(--border-gold);
    position: relative;
    overflow: hidden;
}

.community-inner {
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.community-bonus-badge {
    display: inline-block;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.4);
    color: var(--gold);
    font-size: 14px;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 8px 22px;
    border-radius: 1px;
    margin-bottom: 24px;
}

.community-title {
    font-family: 'Bebas Neue', 'Playfair Display', Georgia, serif;
    font-size: clamp(52px, 9vw, 96px);
    font-weight: 400;
    color: var(--cream);
    line-height: 0.95;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.community-subtitle {
    font-size: 17px;
    color: var(--cream-dk);
    line-height: 1.85;
    font-weight: 400;
    max-width: 540px;
    margin: 0 auto 44px;
}

.community-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
    max-width: 520px;
    margin: 0 auto 48px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(124,58,237,0.06);
    border: 1px solid rgba(124,58,237,0.15);
    border-radius: 2px;
    transition: background var(--t-fast), border-color var(--t-fast);
}

.benefit-item:hover {
    background: rgba(124,58,237,0.1);
    border-color: rgba(167,139,250,0.3);
}

.benefit-icon {
    font-size: 20px;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 1px;
}

.benefit-text {
    font-size: 16px;
    color: var(--cream-dk);
    font-weight: 400;
    line-height: 1.65;
    font-family: 'Jost', sans-serif;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 1px;
    padding: 22px 48px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Jost', sans-serif;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: var(--t);
    box-shadow: 0 4px 30px rgba(37,211,102,0.25);
}

.btn-whatsapp:hover {
    background: #1fb855;
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(37,211,102,0.4);
}

/* ============================================
   OFFER SECTION — A CAIXA DA FEITICEIRA
   ============================================ */

.offer-section {
    padding: 90px 32px 100px;
    text-align: center;
    background-color: var(--dark);
    background-image:
        radial-gradient(ellipse 60% 70% at 50% 30%, rgba(201,168,76,0.12) 0%, transparent 65%),
        radial-gradient(ellipse 50% 50% at 80% 90%, rgba(124,58,237,0.1) 0%, transparent 50%);
    border-top: var(--border-gold);
    position: relative;
    overflow: hidden;
}

.offer-inner {
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.offer-ornament {
    max-width: 200px;
    margin: 0 auto 32px;
}

.offer-eyebrow {
    font-size: 14px;
    color: var(--gold-lt);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    margin-bottom: 18px;
}

.offer-title {
    font-family: 'Bebas Neue', 'Playfair Display', Georgia, serif;
    font-size: clamp(52px, 9vw, 96px);
    font-weight: 400;
    color: var(--cream);
    line-height: 0.95;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.offer-subtitle {
    font-size: 17px;
    color: var(--cream-dk);
    line-height: 1.85;
    font-weight: 400;
    max-width: 520px;
    margin: 0 auto 40px;
}

.offer-image-wrapper {
    margin: 0 auto 40px;
    max-width: 520px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(201,168,76,0.25);
    box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 0 30px rgba(201,168,76,0.1);
}

.offer-image {
    display: block;
    width: 100%;
    height: auto;
}

.offer-includes {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
    max-width: 460px;
    margin: 0 auto 40px;
}

.offer-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    background: rgba(201,168,76,0.06);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 2px;
}

.offer-item-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.offer-item-text {
    font-size: 16px;
    color: var(--cream-dk);
    font-weight: 400;
    line-height: 1.5;
    font-family: 'Jost', sans-serif;
}

.offer-pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.offer-old-price {
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    color: var(--muted);
    text-decoration: line-through;
    font-weight: 400;
}

.offer-new-price {
    font-family: 'Jost', sans-serif;
    font-size: 22px;
    color: var(--gold-lt);
    font-weight: 500;
    letter-spacing: 0.04em;
}

.offer-new-price strong {
    font-size: 44px;
    font-family: 'Bebas Neue', sans-serif;
    color: var(--gold);
    letter-spacing: 0.02em;
}

.offer-terms {
    font-size: 14px;
    color: var(--sepia);
    margin-bottom: 32px;
    letter-spacing: 0.06em;
    font-family: 'Jost', sans-serif;
}

.btn-offer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--gold);
    color: var(--ink);
    border: none;
    border-radius: 1px;
    padding: 22px 48px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Jost', sans-serif;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: var(--t);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(201,168,76,0.3);
}

.btn-offer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold-lt) 0%, var(--purple-lt) 100%);
    opacity: 0;
    transition: opacity var(--t);
}

.btn-offer span { position: relative; z-index: 1; }

.btn-offer:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(124,58,237,0.4), 0 4px 20px rgba(201,168,76,0.25);
}

.btn-offer:hover::before { opacity: 1; }

.offer-limited {
    font-size: 14px;
    color: var(--gold);
    margin-top: 20px;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    letter-spacing: 0.08em;
}

/* ============================================
   TAROT SECTION
   ============================================ */

.tarot-section {
    padding: 90px 32px 100px;
    text-align: center;
    background-color: var(--dark-2);
    background-image:
        radial-gradient(ellipse 70% 60% at 50% 0%, rgba(124,58,237,0.2) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 20% 100%, rgba(201,168,76,0.06) 0%, transparent 50%);
    border-top: var(--border-gold);
    position: relative;
    overflow: hidden;
}

.tarot-inner {
    max-width: 780px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.tarot-ornament {
    max-width: 200px;
    margin: 0 auto 32px;
}

.tarot-eyebrow {
    font-size: 14px;
    color: var(--gold-lt);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    margin-bottom: 18px;
}

.tarot-title {
    font-family: 'Bebas Neue', 'Playfair Display', Georgia, serif;
    font-size: clamp(52px, 9vw, 96px);
    font-weight: 400;
    color: var(--cream);
    line-height: 0.95;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.tarot-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-style: italic;
    color: var(--purple-lt);
    line-height: 1.7;
    margin-bottom: 48px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.tarot-image-wrapper {
    margin: 0 auto 48px;
    max-width: 400px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(124,58,237,0.25);
    box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 0 30px rgba(124,58,237,0.1);
}

.tarot-image {
    display: block;
    width: 100%;
    height: auto;
}

.tarot-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.tarot-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 32px 16px;
    background: rgba(124,58,237,0.06);
    border: 1px solid rgba(124,58,237,0.18);
    border-radius: 2px;
    transition: border-color var(--t-fast), background var(--t-fast);
    position: relative;
}

.tarot-card:hover {
    background: rgba(124,58,237,0.1);
    border-color: rgba(167,139,250,0.35);
}

.tarot-card.popular {
    border-color: var(--gold);
    background: rgba(201,168,76,0.08);
}

.tarot-card.popular:hover {
    background: rgba(201,168,76,0.12);
    border-color: var(--gold-lt);
}

.tarot-popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--ink);
    font-size: 11px;
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 999px;
    white-space: nowrap;
}

.tarot-card-questions {
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--cream-dk);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.tarot-card-price {
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    color: var(--cream);
    font-weight: 400;
}

.tarot-card-price strong {
    font-size: 48px;
    font-family: 'Bebas Neue', sans-serif;
    color: var(--gold);
    letter-spacing: 0.02em;
}

.btn-tarot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    border-radius: 1px;
    padding: 12px 28px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Jost', sans-serif;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: var(--t);
    margin-top: 4px;
}

.btn-tarot:hover {
    background: var(--gold);
    color: var(--ink);
    box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}

.tarot-card.popular .btn-tarot {
    background: var(--gold);
    color: var(--ink);
}

.tarot-card.popular .btn-tarot:hover {
    background: var(--gold-lt);
    box-shadow: 0 4px 20px rgba(201,168,76,0.4);
}

.tarot-hint {
    font-size: 14px;
    color: var(--sepia);
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    letter-spacing: 0.04em;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--ink);
    border-top: var(--border-gold);
    padding: 56px 24px;
    text-align: center;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer-content .ornament-line {
    margin: 0 auto 28px;
    max-width: 260px;
}

.footer-logo {
    font-family: 'Bebas Neue', 'Playfair Display', Georgia, serif;
    font-size: 32px;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 16px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.footer-text {
    font-size: 14px;
    color: var(--sepia);
    line-height: 1.7;
    font-weight: 400;
}

.footer-text.small {
    font-size: 13px;
    margin-top: 6px;
    opacity: 0.75;
}

/* ============================================
   MEMBERS AREA
   ============================================ */

.members-area { animation: fadeIn 0.6s var(--ease); }

/* ============================================
   SCROLL REVEAL
   ============================================ */

.benefit-item.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity   0.7s var(--ease),
        transform 0.7s var(--ease),
        background var(--t-fast),
        border-color var(--t-fast);
}

.benefit-item.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE — TABLET (≤ 900px)
   ============================================ */

@media (max-width: 900px) {
    /* Nothing extra needed for this simpler layout */
}

/* ============================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================ */

@media (max-width: 768px) {
    /* Login */
    .login-container { padding: 44px 28px; }
    .login-logo h1 { font-size: 36px; }
    .logo-ornament { font-size: 26px; }

    /* Header */
    .header { padding: 0 20px; }
    .header-content { height: 64px; }
    .header-logo-text { font-size: 20px; letter-spacing: 0.08em; }
    .user-greeting { display: none; }
    .btn-logout { padding: 9px 16px; font-size: 12px; }

    /* Welcome */
    .welcome-section { padding: 80px 20px 70px; }
    .welcome-headline { font-size: clamp(56px, 12vw, 112px); }
    .welcome-hero-sub { font-size: 17px; }
    .welcome-title { font-size: clamp(52px, 12vw, 96px); }
    .welcome-text { font-size: 16px; }

    /* Copyright */
    .copyright-banner { padding: 10px 20px; }

    /* Apostilas */
    .apostilas-section { padding: 72px 20px; }
    .btn-apostilas { padding: 20px 36px; font-size: 14px; }

    /* Community */
    .community-section { padding: 72px 20px 80px; }
    .btn-whatsapp { padding: 20px 36px; font-size: 14px; letter-spacing: 0.14em; }

    /* Offer */
    .offer-section { padding: 72px 20px 80px; }
    .btn-offer { padding: 20px 36px; font-size: 14px; }

    /* Tarot */
    .tarot-section { padding: 72px 20px 80px; }
    .tarot-cards { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .btn-tarot { padding: 12px 24px; }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ============================================ */

@media (max-width: 480px) {
    .login-screen { padding: 16px; }
    .login-container { padding: 36px 20px; max-width: 100%; }
    .login-logo h1 { font-size: 32px; letter-spacing: 0.08em; }
    .login-subtitle { font-size: 12px; letter-spacing: 0.14em; }
    .login-form { gap: 22px; }
    .btn-login { font-size: 13px; padding: 16px 24px; }

    .header-logo-text { font-size: 17px; }
    .header-logo-ornament { font-size: 16px; }

    .welcome-section { padding: 60px 16px 52px; }
    .welcome-badge-congrats { font-size: 12px; padding: 9px 20px; }
    .welcome-headline { font-size: clamp(52px, 16vw, 96px); }
    .welcome-hero-sub { font-size: 15px; }
    .welcome-title { font-size: clamp(48px, 14vw, 80px); }
    .welcome-text { font-size: 15px; }
    .welcome-eyebrow { font-size: 12px; }

    .apostilas-section { padding: 60px 16px; }
    .btn-apostilas { padding: 18px 28px; width: 100%; font-size: 13px; }

    .community-section { padding: 60px 16px 72px; }
    .benefit-item { padding: 14px 16px; }
    .btn-whatsapp { width: 100%; padding: 20px 24px; font-size: 13px; letter-spacing: 0.12em; }

    /* Offer */
    .offer-section { padding: 60px 16px 72px; }
    .btn-offer { padding: 18px 28px; width: 100%; font-size: 13px; }
    .offer-item { padding: 12px 16px; }

    /* Tarot */
    .tarot-section { padding: 60px 16px 72px; }
    .tarot-cards { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .tarot-card { padding: 24px 12px; }
    .tarot-card-price strong { font-size: 40px; }
    .btn-tarot { padding: 10px 20px; font-size: 12px; width: 100%; }

    .footer { padding: 44px 16px; }
    .footer-logo { font-size: 22px; }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

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