/* ============================================================
   NEXO THEME — ne- prefix
   Palette: Purple #a855f7, Cyan #06b6d4 | Space Grotesk + Syne
   Signature: glassmorphism cards, gradient text, 3-tier VIP cards
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Syne:wght@400;600;700;800&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {--ne_purple:    #a855f7;--ne_r-lg:      16px;--ne_white:     #ffffff;--ne_text:      #e2e8f0;--ne_glow-p:    0 0 30px rgba(168,85,247,.25);--ne_bg2:       #0d0d20;--ne_cyan-lt:   #67e8f9;--ne_shadow:    0 8px 32px rgba(0,0,0,.5);--ne_muted:     rgba(148,163,184,1);--ne_bg:        #060610;--ne_glass-bd:  rgba(255,255,255,.1);--ne_r:         10px;--ne_purple-dk: #7c3aed;--ne_cyan:      #06b6d4;--ne_glow-c:    0 0 30px rgba(6,182,212,.25);--ne_glass:     rgba(255,255,255,.05)}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after {margin: 0;box-sizing: border-box;padding: 0}
html { scroll-behavior: smooth; }
body {background: var(--ne_bg);font-size: 16px;min-height: 100vh;color: var(--ne_text);line-height: 1.6;overflow-x: hidden;font-family: 'Space Grotesk', sans-serif;pointer-events:auto;outline-offset:0}
img {max-width: 100%;display: block;height: auto}
a {color: var(--ne_cyan);text-decoration: none}
a:hover { text-decoration: underline; }

/* ── Background orbs ────────────────────────────────────────── */
body::before,
body::after {border-radius: 50%;position: fixed;content: '';z-index: 0;pointer-events: none}
body::before {height: 600px;width: 600px;background: radial-gradient(circle, rgba(168,85,247,.15) 0%, transparent 70%);left: -200px;top: -200px}
body::after {height: 500px;background: radial-gradient(circle, rgba(6,182,212,.12) 0%, transparent 70%);bottom: -150px;width: 500px;right: -150px}

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {font-weight: 700;color: var(--ne_white);line-height: 1.15;font-family: 'Syne', sans-serif}
h1 {font-size: clamp(2.2rem, 5vw, 3.8rem);font-weight: 800}
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }
p  { color: var(--ne_text); }

/* Gradient text utility */
.ne-grad {background-clip: text;background-image: linear-gradient(135deg, var(--ne_purple) 0%, var(--ne_cyan) 100%);-webkit-text-fill-color: transparent;-webkit-background-clip: text;color: transparent}

/* ── Layout ─────────────────────────────────────────────────── */
.ne-container {margin: 0 auto;padding: 0 20px;width: 100%;z-index: 1;max-width: 1160px;position: relative}
.ne-section   { padding: 80px 0; }

/* ── Glass card mixin ───────────────────────────────────────── */
.ne-glass {-webkit-backdrop-filter: blur(12px);background: var(--ne_glass);border: 1px solid var(--ne_glass-bd);border-radius: var(--ne_r-lg);backdrop-filter: blur(12px)}

/* ── Nav ────────────────────────────────────────────────────── */
.ne-nav {border-bottom: 1px solid var(--ne_glass-bd);position: sticky;top: 0;background: rgba(6,6,16,.85);backdrop-filter: blur(16px);z-index: 100;-webkit-backdrop-filter: blur(16px)}
.ne-nav__inner {height: 64px;margin: 0 auto;display: flex;align-items: center;padding: 0 20px;justify-content: space-between;max-width: 1160px}
.ne-nav__logo {font-size: 1.5rem;font-family: 'Syne', sans-serif;gap: 6px;font-weight: 800;display: flex;align-items: center}
.ne-nav__logo-text { color: var(--ne_white); }
.ne-nav__logo-dot {width: 8px;background: linear-gradient(135deg, var(--ne_purple), var(--ne_cyan));border-radius: 50%;height: 8px}
.ne-nav__links {list-style: none;display: flex;gap: 28px}
.ne-nav__links a {font-weight: 500;font-size: .88rem;letter-spacing: .02em;transition: color .2s;color: var(--ne_muted)}
.ne-nav__links a:hover {text-decoration: none;color: var(--ne_white)}
.ne-nav__cta {font-weight: 600;background: linear-gradient(135deg, var(--ne_purple), var(--ne_cyan));color: var(--ne_white) !important;transition: opacity .2s, transform .2s;border-radius: 50px;padding: 9px 22px;font-size: .85rem}
.ne-nav__cta:hover {text-decoration: none;opacity: .9;transform: translateY(-1px)}
.ne-burger {flex-direction: column;background: none;cursor: pointer;gap: 5px;padding: 4px;display: none;border: none}
.ne-burger span {transition: all .3s;height: 2px;width: 24px;background: var(--ne_text);display: block}

/* ── Hero ────────────────────────────────────────────────────── */
.ne-hero {padding: 80px 0 70px;position: relative}
.ne-hero__inner {display: grid;grid-template-columns: 1fr 420px;align-items: center;gap: 60px}
.ne-hero__eyebrow {background: rgba(168,85,247,.1);margin-bottom: 20px;border: 1px solid rgba(168,85,247,.25);align-items: center;gap: 8px;letter-spacing: .06em;display: inline-flex;color: var(--ne_purple);border-radius: 50px;padding: 5px 16px;font-weight: 600;font-size: .78rem;text-transform: uppercase}
.ne-hero__h1 { margin-bottom: 18px; }
.ne-hero__lead {max-width: 500px;font-size: 1.08rem;color: var(--ne_muted);margin-bottom: 32px}
.ne-hero__actions {margin-bottom: 40px;flex-wrap: wrap;display: flex;gap: 14px}
.ne-hero__trust {flex-wrap: wrap;gap: 20px;display: flex}
.ne-hero__trust-item {font-size: .82rem;color: var(--ne_muted);display: flex;align-items: center;gap: 5px}
.ne-hero__trust-item::before {content: '✓';font-weight: 700;color: var(--ne_cyan)}

/* Rating glass card */
.ne-rating-card {box-shadow: var(--ne_glow-p);text-align: center;padding: 28px}
.ne-rating-card__score {line-height: 1;font-family: 'Syne', sans-serif;font-size: 4.5rem;margin-bottom: 4px;font-weight: 800}
.ne-rating-card__max {margin-bottom: 12px;color: var(--ne_muted);font-size: 1.2rem}
.ne-rating-card__stars {color: #fbbf24;font-size: 1.4rem;letter-spacing: 4px;margin-bottom: 14px}
.ne-rating-card__label {font-size: .82rem;margin-bottom: 20px;color: var(--ne_muted)}
.ne-rating-rows {display: flex;flex-direction: column;text-align: left;gap: 10px}
.ne-rating-row {gap: 10px;font-size: .85rem;align-items: center;display: flex}
.ne-rating-row__name {color: var(--ne_muted);flex-shrink: 0;width: 100px}
.ne-rating-row__bar {background: rgba(255,255,255,.1);border-radius: 3px;flex: 1;height: 5px}
.ne-rating-row__fill {height: 100%;background: linear-gradient(90deg, var(--ne_purple), var(--ne_cyan));border-radius: 3px}
.ne-rating-row__val {color: var(--ne_white);text-align: right;width: 32px;font-weight: 600;font-size: .82rem}

/* ── Buttons ─────────────────────────────────────────────────── */
.ne-btn {padding: 14px 28px;border: none;font-weight: 600;font-family: 'Space Grotesk', sans-serif;cursor: pointer;font-size: .95rem;align-items: center;border-radius: 50px;transition: all .2s;display: inline-flex;gap: 8px;text-decoration: none !important}
.ne-btn--primary {color: var(--ne_white);box-shadow: var(--ne_glow-p);background: linear-gradient(135deg, var(--ne_purple) 0%, var(--ne_cyan) 100%)}
.ne-btn--primary:hover {transform: translateY(-2px);opacity: .9;box-shadow: 0 8px 30px rgba(168,85,247,.4)}
.ne-btn--ghost {background: var(--ne_glass);color: var(--ne_text);border: 1px solid var(--ne_glass-bd);backdrop-filter: blur(8px)}
.ne-btn--ghost:hover {color: var(--ne_purple);border-color: var(--ne_purple)}
.ne-btn--sm {font-size: .85rem;padding: 9px 20px}
.ne-btn--full {width: 100%;justify-content: center}

/* ── Feature Cards ───────────────────────────────────────────── */
.ne-features { position: relative; }
.ne-features__head {margin-bottom: 48px;text-align: center}
.ne-features__head p {color: var(--ne_muted);margin-top: 10px}
.ne-features__grid {gap: 20px;display: grid;grid-template-columns: repeat(3, 1fr)}
.ne-feat-card {transition: transform .2s, box-shadow .2s;padding: 28px 24px}
.ne-feat-card:hover {box-shadow: var(--ne_glow-p);transform: translateY(-4px)}
.ne-feat-card__icon {width: 50px;align-items: center;font-size: 1.6rem;height: 50px;margin-bottom: 18px;justify-content: center;background: linear-gradient(135deg, rgba(168,85,247,.2), rgba(6,182,212,.2));display: flex;border-radius: var(--ne_r)}
.ne-feat-card__title {margin-bottom: 10px;color: var(--ne_white);font-family: 'Syne', sans-serif;font-size: 1.15rem;font-weight: 700}
.ne-feat-card__text {color: var(--ne_muted);line-height: 1.65;font-size: .9rem}

/* ── VIP Tiers ────────────────────────────────────────────────── */
.ne-vip { position: relative; }
.ne-vip__head {text-align: center;margin-bottom: 48px}
.ne-vip__head p {color: var(--ne_muted);margin-top: 10px}
.ne-vip__grid {align-items: start;display: grid;gap: 22px;grid-template-columns: repeat(3, 1fr)}
.ne-vip-card {padding: 32px 24px;transition: transform .2s;overflow: hidden;position: relative}
.ne-vip-card:hover { transform: translateY(-5px); }
.ne-vip-card--featured {box-shadow: var(--ne_glow-p), 0 0 0 1px var(--ne_purple);border-color: var(--ne_purple) !important}
.ne-vip-card--featured::before {text-align: center;content: 'MAIS POPULAR';left: 0;padding: 6px;right: 0;letter-spacing: .12em;background: linear-gradient(135deg, var(--ne_purple), var(--ne_cyan));color: var(--ne_white);font-size: .65rem;font-weight: 700;top: 0;position: absolute}
.ne-vip-card--featured .ne-vip-card__inner { padding-top: 14px; }
.ne-vip-card__inner {gap: 12px;display: flex;flex-direction: column}
.ne-vip-card__tier {display: inline-flex;font-size: .75rem;align-items: center;letter-spacing: .1em;font-weight: 700;gap: 6px;text-transform: uppercase}
.ne-vip-card--silver .ne-vip-card__tier { color: #94a3b8; }
.ne-vip-card--gold   .ne-vip-card__tier { color: var(--ne_purple); }
.ne-vip-card--black  .ne-vip-card__tier { color: var(--ne_cyan); }
.ne-vip-card__bonus {font-size: 2.2rem;font-weight: 800;font-family: 'Syne', sans-serif;line-height: 1}
.ne-vip-card__bonus-sub {color: var(--ne_muted);font-size: .82rem;margin-top: 2px}
.ne-vip-card__features {margin: 4px 0;display: flex;list-style: none;gap: 8px;flex-direction: column}
.ne-vip-card__features li {color: var(--ne_muted);align-items: center;display: flex;gap: 8px;font-size: .88rem}
.ne-vip-card__features li::before {font-weight: 700;flex-shrink: 0;content: '✓';color: var(--ne_cyan)}

/* ── FAQ ─────────────────────────────────────────────────────── */
.ne-faq { position: relative; }
.ne-faq__head {margin-bottom: 48px;text-align: center}
.ne-faq__head p {margin-top: 10px;color: var(--ne_muted)}
.ne-faq__list {max-width: 760px;flex-direction: column;margin: 0 auto;display: flex;gap: 10px}
.ne-faq-item {overflow: hidden;transition: border-color .2s;background: var(--ne_glass);border: 1px solid var(--ne_glass-bd);border-radius: var(--ne_r)}
.ne-faq-item:focus-within { border-color: var(--ne_purple); }
.ne-faq-item__q {cursor: pointer;border: none;font-family: 'Space Grotesk', sans-serif;font-weight: 600;width: 100%;text-align: left;color: var(--ne_white);background: none;padding: 18px 22px;justify-content: space-between;gap: 16px;align-items: center;font-size: .98rem;display: flex}
.ne-faq-item__q:hover { color: var(--ne_cyan); }
.ne-faq-item__icon {transition: transform .3s;border: 1px solid var(--ne_glass-bd);color: var(--ne_purple);align-items: center;display: flex;justify-content: center;height: 24px;font-size: .75rem;width: 24px;flex-shrink: 0;border-radius: 50%}
.ne-faq-item[data-open] .ne-faq-item__icon { transform: rotate(180deg); }
.ne-faq-item__a {transition: max-height .35s ease, padding .35s ease;overflow: hidden;max-height: 0;padding: 0 22px}
.ne-faq-item[data-open] .ne-faq-item__a {padding: 0 22px 18px;max-height: 400px}
.ne-faq-item__a p {line-height: 1.7;color: var(--ne_muted);font-size: .9rem}

/* ── Payments ────────────────────────────────────────────────── */
.ne-payments__head {margin-bottom: 40px;text-align: center}
.ne-payments__head p {color: var(--ne_muted);margin-top: 10px}
.ne-pay-grid {gap: 14px;grid-template-columns: repeat(5, 1fr);display: grid}
.ne-pay-card {padding: 20px 14px;transition: transform .2s, box-shadow .2s;text-align: center}
.ne-pay-card:hover {box-shadow: var(--ne_glow-c);transform: translateY(-3px)}
.ne-pay-card__icon {margin-bottom: 8px;font-size: 1.8rem}
.ne-pay-card__name {color: var(--ne_text);font-size: .8rem;font-weight: 600}
.ne-pay-card__time {color: var(--ne_muted);font-size: .72rem;margin-top: 4px}

/* ── CTA section ─────────────────────────────────────────────── */
.ne-cta-section {overflow: hidden;position: relative;padding: 80px 0;text-align: center}
.ne-cta-section::before {content: '';inset: 0;pointer-events: none;background: radial-gradient(ellipse at center, rgba(168,85,247,.18) 0%, transparent 70%);position: absolute}
.ne-cta-section__border {padding: 50px 40px;box-shadow: var(--ne_glow-p);max-width: 700px;margin: 0 auto}
.ne-cta-section h2 { margin-bottom: 14px; }
.ne-cta-section p {max-width: 500px;font-size: 1.05rem;margin-right: auto;margin-left: auto;margin-bottom: 28px;color: var(--ne_muted)}
.ne-cta-section .ne-btn--primary {padding: 16px 36px;font-size: 1.05rem}

/* ── Footer ─────────────────────────────────────────────────── */
.ne-footer {padding: 54px 0 28px;position: relative;background: rgba(6,6,16,.95);border-top: 1px solid var(--ne_glass-bd)}
.ne-footer__grid {grid-template-columns: 1.5fr 1fr 1fr 1fr;margin-bottom: 44px;display: grid;gap: 40px}
.ne-footer__logo {font-weight: 800;font-size: 1.5rem;font-family: 'Syne', sans-serif;margin-bottom: 14px}
.ne-footer__desc {line-height: 1.65;font-size: .85rem;color: var(--ne_muted)}
.ne-footer__col h4 {text-transform: uppercase;letter-spacing: .1em;font-size: .72rem;font-weight: 700;color: var(--ne_muted);margin-bottom: 14px}
.ne-footer__col ul {gap: 8px;display: flex;flex-direction: column;list-style: none}
.ne-footer__col ul a {font-size: .88rem;transition: color .2s;color: var(--ne_muted)}
.ne-footer__col ul a:hover {text-decoration: none;color: var(--ne_white)}
.ne-footer__bottom {align-items: center;padding-top: 22px;display: flex;flex-wrap: wrap;border-top: 1px solid var(--ne_glass-bd);justify-content: space-between;gap: 12px}
.ne-footer__copy {font-size: .8rem;color: var(--ne_muted)}
.ne-footer__warn {max-width: 500px;color: var(--ne_muted);font-size: .75rem;text-align: right}

/* ── Sticky CTA ─────────────────────────────────────────────── */
.sf-sticky-cta {position: fixed;background: linear-gradient(135deg, var(--ne_purple-dk) 0%, #0e7490 100%);bottom: 0;transform: translateY(100%);z-index: 200;right: 0;left: 0;box-shadow: 0 -4px 20px rgba(0,0,0,.5);transition: transform .4s cubic-bezier(.22,1,.36,1)}
.sf-sticky-cta.is-visible { transform: translateY(0); }
.sf-sticky-cta__inner {justify-content: space-between;align-items: center;padding: 12px 20px;margin: 0 auto;max-width: 1160px;gap: 16px;display: flex}
.sf-sticky-cta__text {font-weight: 600;color: var(--ne_white);font-size: .92rem}
.sf-sticky-cta__text span { color: var(--ne_cyan-lt); }
.sf-sticky-cta__actions {display: flex;align-items: center;gap: 12px}
.sf-sticky-cta__close {border: none;color: rgba(255,255,255,.7);padding: 4px;line-height: 1;background: none;cursor: pointer;font-size: 1.1rem}
.sf-sticky-cta__close:hover { color: rgba(255,255,255,1); }

/* ── Legal pages ─────────────────────────────────────────────── */
.ne-page-hero {border-bottom: 1px solid var(--ne_glass-bd);padding: 50px 0 40px}
.ne-page-hero__tag {text-transform: uppercase;letter-spacing: .1em;font-weight: 700;margin-bottom: 10px;font-size: .75rem;color: var(--ne_purple)}
.ne-content {margin: 0 auto;max-width: 780px}
.ne-content h2 {font-size: 1.6rem;margin: 36px 0 12px}
.ne-content h3 {margin: 28px 0 10px;font-size: 1.2rem;color: var(--ne_text)}
.ne-content p  {color: var(--ne_muted);margin-bottom: 16px}
.ne-content ul, .ne-content ol { margin: 0 0 16px 22px; }
.ne-content li {font-size: .95rem;color: var(--ne_muted);margin-bottom: 8px}
.ne-content a  { color: var(--ne_cyan); }

/* ── Login ───────────────────────────────────────────────────── */
.ne-login-wrap {align-items: center;padding: 60px 20px;min-height: 80vh;justify-content: center;display: flex}
.ne-login-card {padding: 44px 40px;width: 100%;max-width: 440px;box-shadow: var(--ne_glow-p)}
.ne-login-card h2 {margin-bottom: 8px;text-align: center}
.ne-login-card__sub {color: var(--ne_muted);text-align: center;font-size: .92rem;margin-bottom: 28px}
.ne-form {flex-direction: column;display: flex;gap: 16px}
.ne-form label {margin-bottom: 6px;font-weight: 600;display: block;color: var(--ne_text);font-size: .82rem}
.ne-form input {color: var(--ne_white);border-radius: var(--ne_r);transition: border-color .2s;padding: 12px 16px;font-family: 'Space Grotesk', sans-serif;font-size: .95rem;width: 100%;border: 1px solid var(--ne_glass-bd);background: rgba(255,255,255,.04)}
.ne-form input:focus {border-color: var(--ne_purple);outline: none}
.ne-form__hint {color: var(--ne_muted);margin-top: 4px;text-align: center;font-size: .78rem}

/* ── Mobile ──────────────────────────────────────────────────── */
.ne-nav__mobile { display: none; }
@media (max-width: 900px) {
  .ne-hero__inner { grid-template-columns: 1fr; }
  .ne-rating-card { max-width: 420px; }
  .ne-features__grid { grid-template-columns: repeat(2, 1fr); }
  .ne-vip__grid {margin: 0 auto;max-width: 400px;grid-template-columns: 1fr}
  .ne-pay-grid { grid-template-columns: repeat(3, 1fr); }
  .ne-footer__grid { grid-template-columns: 1fr 1fr; }
  .ne-nav__links { display: none; }
  .ne-nav__cta { display: none; }
  .ne-burger { display: flex; }
  .ne-nav__mobile {border-top: 1px solid var(--ne_glass-bd);flex-direction: column;padding: 16px 20px;display: none;gap: 12px;background: var(--ne_bg2)}
  .ne-nav__mobile.is-open { display: flex; }
  .ne-nav__mobile a {color: var(--ne_text);padding: 8px 0;border-bottom: 1px solid var(--ne_glass-bd);font-size: .95rem}
}
@media (max-width: 540px) {
  .ne-features__grid { grid-template-columns: 1fr; }
  .ne-pay-grid { grid-template-columns: repeat(2, 1fr); }
  .ne-footer__grid { grid-template-columns: 1fr; }
  .ne-cta-section__border { padding: 36px 22px; }
  .ne-login-card { padding: 28px 22px; }
}

/* siteforge-footer-overlap-guard: stable mobile footer layout + sticky CTA clearance */
:where(footer,[class*='-footer']){z-index:1;overflow:visible;position:relative}
:where([class*='footer__grid'],[class*='footer__strip'],[class*='footer__bar']){min-width:0}
:where([class*='footer__grid'],[class*='footer__strip'],[class*='footer__bar'])>*{min-width:0;max-width:100%}
:where([class*='footer__brandblock'],[class*='footer__summary'],[class*='footer__meta'],[class*='footer__copy'],[class*='footer__warn'],[class*='linkstack']){overflow-wrap:anywhere;word-break:break-word}
@media(max-width:760px){
  .sf-has-sticky-cta :where([class*='-shell']),.sf-has-sticky-cta main{padding-bottom:calc(140px + env(safe-area-inset-bottom,0px)) !important}
  .sf-has-sticky-cta main~footer,.sf-has-sticky-cta :where(footer,[class$='-footer']){padding-bottom:calc(112px + env(safe-area-inset-bottom,0px)) !important}
  :where([class*='footer__grid'],[class*='footer__strip'],[class*='footer__bar']){grid-template-columns:1fr !important;gap:16px !important;display:grid !important;align-items:start !important}
  :where([class*='footer__summary'],[class*='footer__bottom']){flex-direction:column;text-align:left;display:flex;gap:10px;align-items:flex-start}
  :where([class*='footer__brand']){clear:both;margin-bottom:12px;float:none !important;max-height:110px;max-width:110px}
}
