/* =========================================================
INVITE Shiver
Global Styles
========================================================= */

/* =========================================================
PRELOADER
========================================================= */

.preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--ocean-deep, #010810);

    color: var(--text-primary, rgba(255, 255, 255, 0.92));

    transition: transform 0.9s cubic-bezier(0.76, 0, 0.24, 1);
    will-change: transform;
}

.preloader.is-exit {
    transform: translateY(-100%);
}

.preloader__content {
    position: relative;
    z-index: 2;

    width: min(920px, calc(100% - 48px));

    text-align: center;
}

.preloader__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.18em;

    font-size: clamp(28px, 5.2vw, 56px);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.preloader__line {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.28em 0.35em;
}

.preloader__word {
    display: inline-block;
    overflow: hidden;
    padding-bottom: 0.08em;
    vertical-align: bottom;
}

.preloader__word > span {
    display: inline-block;

    transform: translateY(110%);

    transition: transform 0.85s cubic-bezier(0.76, 0, 0.24, 1);
    will-change: transform;
}

.preloader__word--accent > span {
    color: var(--cta-blue);
}

.preloader.is-ready .preloader__word > span {
    transform: translateY(0);
}

.preloader__word:nth-child(1) > span { transition-delay: 0.08s; }
.preloader__word:nth-child(2) > span { transition-delay: 0.14s; }
.preloader__word:nth-child(3) > span { transition-delay: 0.20s; }
.preloader__word:nth-child(4) > span { transition-delay: 0.26s; }

.preloader__line:nth-child(1) .preloader__word:nth-child(1) > span { transition-delay: 0.08s; }
.preloader__line:nth-child(1) .preloader__word:nth-child(2) > span { transition-delay: 0.14s; }
.preloader__line:nth-child(1) .preloader__word:nth-child(3) > span { transition-delay: 0.20s; }
.preloader__line:nth-child(1) .preloader__word:nth-child(4) > span { transition-delay: 0.26s; }

.preloader__line:nth-child(2) .preloader__word:nth-child(1) > span { transition-delay: 0.32s; }
.preloader__line:nth-child(2) .preloader__word:nth-child(2) > span { transition-delay: 0.38s; }
.preloader__line:nth-child(2) .preloader__word:nth-child(3) > span { transition-delay: 0.44s; }
.preloader__line:nth-child(2) .preloader__word:nth-child(4) > span { transition-delay: 0.50s; }

.preloader__line:nth-child(3) .preloader__word:nth-child(1) > span { transition-delay: 0.56s; }
.preloader__line:nth-child(3) .preloader__word:nth-child(2) > span { transition-delay: 0.64s; }

.preloader__line:nth-child(3) .preloader__word:last-child > span {
    color: var(--gold);
    font-style: normal;
}

.preloader__curve {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10%;
    z-index: 1;

    width: 100%;
    height: clamp(80px, 14vw, 140px);

    color: #1677ff;

    opacity: 0;

    transition:
        opacity 0.45s ease,
        color 0.6s ease;
}

.preloader__curve path {
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
    transition: stroke-dashoffset 1.1s cubic-bezier(0.76, 0, 0.24, 1);
}

.preloader.is-curve .preloader__curve {
    opacity: 1;
    color: #1677ff;
}

.preloader.is-curve .preloader__curve path {
    stroke-dashoffset: 0;
}

@media (max-width: 800px) {

    .preloader__text {
        font-size: clamp(24px, 7vw, 36px);
    }

    .preloader__curve {
        bottom: 8%;
    }

}

@media (prefers-reduced-motion: reduce) {

    .preloader,
    .preloader__word > span,
    .preloader__curve,
    .preloader__curve path {
        transition: none;
    }

    .preloader__word > span {
        transform: none;
    }

}

/* =========================================================
RESET
========================================================= */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
    overflow-x: clip;
    max-width: 100%;
}

body {
    min-height: 100vh;
    max-width: 100%;
    background: var(--bg);
    color: var(--text-primary);
    font-family: "Exo 2", system-ui, -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: clip;
}

body,
button,
input,
textarea,
select {
    font-family: "Exo 2", system-ui, -apple-system, sans-serif;
}

body.is-loading {
    overflow: hidden;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    border: 0;
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

ul {
    list-style: none;
}

/* =========================================================
VARIABLES
========================================================= */

:root {

    /* Core palette */
    --black: #000000;
    --bg: #050505;
    --ocean-deep: #010810;
    --ocean-mid: #010e1b;

    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);

    --gold: #c9a84c;
    --gold-light: #e8d48b;
    --gold-dark: #8b7433;

    --white: #ffffff;
    --text-primary: rgba(255, 255, 255, 0.92);
    --text-secondary: rgba(255, 255, 255, 0.5);
    --text-tertiary: rgba(255, 255, 255, 0.3);

    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.07);

    /* Tiers only — not for UI chrome */
    --Shiver-blue: #5b9bd5;
    --hammerhead-silver: #b8c4d0;
    --apex-green: #5cc9b0;

    /* CTAs — azul elétrico da referência */
    --cta-blue: #1677ff;
    --cta-blue-light: #2f8cff;
    --cta-blue-dark: #0d5fd8;

    /* Compatibility aliases (existing components) */
    --bg-deep: var(--ocean-deep);
    --bg-soft: var(--ocean-mid);
    --surface: rgba(3, 6, 12, 0.9);
    --surface-light: var(--glass-bg);

    --blue: var(--gold);
    --blue-light: var(--gold-light);
    --blue-dark: var(--gold-dark);

    --purple: var(--Shiver-blue);
    --purple-light: var(--hammerhead-silver);

    --text: var(--text-primary);
    --text-muted: var(--text-secondary);

    --success: #32d583;
    --warning: var(--gold);
    --danger: #ff5f6d;

    --border-blue: rgba(201, 168, 76, 0.28);
    --border-gold: rgba(201, 168, 76, 0.28);

    --container: 100%;

    /* Largura util e respiro lateral do conteudo.
       Antes o container era `max-width: 100%`: em 1440px o texto ficava com
       1329px e apenas 48px ate a borda, e numa tela de 2560px esticaria para
       2464px de linha. O teto segura a medida de leitura e, acima dele, a
       sobra vira margem sozinha. */
    --container-max: 1320px;
    --container-pad: clamp(24px, 5vw, 56px);
    --header-height: 84px;

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* Ritmo vertical entre seções.
       Fluido de proposito, e nao degraus por breakpoint: os degraus viviam em
       `responsive.css` como `padding` (shorthand) enquanto as excecoes viviam
       aqui como `padding-top` (longhand). Mesma especificidade, arquivo
       posterior ganha — entao abaixo de 1100px as excecoes eram apagadas e o
       espaco CRESCIA conforme a tela encolhia (`.terms` ia de 80px para 96px).
       Com clamp o valor so pode encolher junto com a viewport, e a regra de
       excecao nao disputa mais com ninguem.

       Os coeficientes reproduzem a escala que ja existia: 8.9vw da 128px em
       1440, 98px em 1100 e 71px em 800 — os antigos 128/96/72. */
    --space-section: clamp(64px, 8.9vw, 128px);

    /* Seção que pertence à anterior (os dois blocos de benefício, os termos).
       Eram 90px e 80px — dois numeros para a mesma ideia. */
    --space-section-tight: clamp(48px, 6.2vw, 90px);

    --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.4);
    --shadow-blue: 0 15px 50px rgba(201, 168, 76, 0.12);
    --shadow-gold: 0 15px 50px rgba(201, 168, 76, 0.16);

}

/* =========================================================
GLOBAL BACKGROUND
========================================================= */

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;

    background:
        radial-gradient(ellipse at 50% 0%,
            rgba(1, 14, 27, 0.95),
            transparent 55%),
        radial-gradient(circle at 20% 20%,
            rgba(201, 168, 76, 0.04),
            transparent 32%),
        radial-gradient(circle at 80% 70%,
            rgba(1, 8, 16, 0.9),
            transparent 40%),
        linear-gradient(180deg,
            var(--ocean-mid),
            var(--bg) 40%,
            var(--ocean-deep));

}

/* =========================================================
CONTAINER
========================================================= */

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
    position: relative;
    z-index: 2;
}

/* =========================================================
HEADER / NAV / LOGO
========================================================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    width: 100%;
    max-width: 100%;
    height: var(--header-height);

    z-index: 1000;

    background: rgba(5, 5, 5, 0.82);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.header.is-scrolled {
    background: rgba(5, 5, 5, 0.92);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.28);
}

/* Mesma caixa do `.container`: o header repetia a formula por conta propria e
   ficaria 60px a esquerda do conteudo assim que a largura mudasse — o logo
   colado na borda e o titulo do hero recuado. */
.header__container {
    position: relative;

    width: 100%;
    max-width: var(--container-max);
    height: 100%;
    margin: 0 auto;
    padding: 0 var(--container-pad);

    display: grid;
    /* `auto 1fr auto` em vez de colunas laterais iguais: o logo e estreito e o
       bloco de acoes e largo, entao forcar simetria dava 233px de folga a
       esquerda e 3px entre "FAQ" e "Beneficios" — a um respiro de encostar.
       Aqui cada lado toma o que precisa e a nav se centra na sobra. */
    grid-template-columns: auto 1fr auto;
    align-items: center;
    column-gap: 32px;
}

.logo {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-self: start;

    width: auto;
    max-width: 360px;

    flex-shrink: 0;
    min-width: 0;
}

.logo img {
    display: block;

    width: auto;
    height: 30px;

    max-width: 100%;

    object-fit: contain;
    object-position: left center;
}
.nav--desktop {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: center;

    gap: 22px;

    margin: 0;

    white-space: nowrap;
}

.nav--desktop a {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    color: var(--text-secondary);

    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.01em;

    text-decoration: none;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.nav--desktop a:hover {
    color: var(--text-primary);
}

.nav__prefix {
    color: var(--blue-light);

    font-weight: 600;
    opacity: 0.75;

    transition:
        color 0.25s ease,
        opacity 0.25s ease;
}

.nav--desktop a:hover .nav__prefix {
    color: var(--blue-light);
    opacity: 1;
}

body.menu-open {
    overflow: hidden;
}

.header__actions {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-self: end;

    gap: 12px;
}

.header__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;
    padding: 0 18px;

    border-radius: 999px;

    color: rgba(245, 247, 255, 0.9);

    border: 1px solid rgba(255, 255, 255, 0.16);

    background: rgba(255, 255, 255, 0.04);

    font-size: 13px;
    font-weight: 600;

    text-decoration: none;

    transition:
        color 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.header__link:hover {
    color: var(--white);

    background: rgba(255, 255, 255, 0.08);

    border-color: rgba(201, 168, 76, 0.4);

    transform: translateY(-1px);
}

.header__link:active {
    transform: translateY(0);

    background: rgba(255, 255, 255, 0.05);
}

.button--pill,
.header__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;

    min-height: 0;
    padding: 0.6rem 1.6rem;

    border-radius: 100px;
    border: none;

    color: var(--white);
    background:
        linear-gradient(135deg,
            var(--cta-blue-light),
            var(--cta-blue));

    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;

    box-shadow:
        0 8px 24px rgba(22, 119, 255, 0.35),
        0 0 20px rgba(22, 119, 255, 0.18);
    text-decoration: none;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        filter 0.3s ease,
        opacity 0.3s ease;
}

.button--pill:hover,
.header__cta:hover {
    transform: translateY(-1px);
    box-shadow:
        0 12px 30px rgba(22, 119, 255, 0.45),
        0 0 28px rgba(22, 119, 255, 0.25);
    filter: brightness(1.04);
}

.button--pill:active,
.header__cta:active {
    transform: translateY(0);
    opacity: 0.96;
    filter: brightness(0.98);
}

.header__cta-mobile {
    display: none;
}

/* =========================================================
BUTTONS
========================================================= */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 0.6rem;

    min-height: 0;
    padding: 0.85rem 2.8rem;

    border-radius: 100px;
    border: none;

    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.06em;

    white-space: nowrap;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease;
}

a.button.header__cta-mobile {
    display: none;
}

.button:hover {
    transform: translateY(-2px);
}

.section-cta {
    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: 40px;
}

.section-cta .button {
    min-width: min(100%, 280px);
    border-radius: 100px;
    padding: 1rem 3.2rem;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

/* Primário — azul elétrico (navbar, hero, fim de section) */
.button--primary,
.button--gold {
    color: var(--white);

    background:
        linear-gradient(135deg,
            var(--cta-blue-light),
            var(--cta-blue) 55%,
            var(--cta-blue-dark));

    box-shadow:
        0 10px 28px rgba(22, 119, 255, 0.35),
        0 0 22px rgba(22, 119, 255, 0.18);
}

.button--primary:hover,
.button--gold:hover {
    box-shadow:
        0 16px 36px rgba(22, 119, 255, 0.48),
        0 0 30px rgba(22, 119, 255, 0.28);
    filter: brightness(1.04);
}

/* Secundário — ghost */
.button--secondary {
    color: var(--text-secondary);

    background: transparent;

    border: 1px solid var(--border-hover);

    font-weight: 400;
    letter-spacing: 0.04em;
}

.button--secondary:hover {
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.22);
    background: transparent;
}

/* CTA de seção — mesmo azul elétrico */
.section-cta .button--primary,
.section-cta .button--gold {
    color: var(--white);

    background:
        linear-gradient(135deg,
            var(--cta-blue-light),
            var(--cta-blue) 55%,
            var(--cta-blue-dark));

    border: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;

    box-shadow:
        0 12px 32px rgba(22, 119, 255, 0.38),
        0 0 24px rgba(22, 119, 255, 0.2);
}

.section-cta .button--primary:hover,
.section-cta .button--gold:hover {
    border-color: transparent;
    box-shadow:
        0 16px 40px rgba(22, 119, 255, 0.5),
        0 0 32px rgba(22, 119, 255, 0.28);
}

/* =========================================================
MOBILE MENU BUTTON + OVERLAY
========================================================= */

.nav-overlay,
.nav-mobile {
    display: none;
}

.menu-toggle {
    display: none;

    position: relative;
    z-index: 1202;
    grid-column: 3;
    justify-self: end;

    width: 44px;
    height: 44px;

    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;

    border-radius: 999px;

    color: var(--white);
    background: #101b35;

    border: 1px solid rgba(255, 255, 255, 0.12);

    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
}

.menu-toggle__bar {
    display: block;

    width: 18px;
    height: 2px;

    border-radius: 999px;

    background: currentColor;

    transition:
        transform 0.35s cubic-bezier(0.76, 0, 0.24, 1),
        opacity 0.25s ease,
        width 0.35s ease;
    transform-origin: center;
}

.menu-toggle.is-active .menu-toggle__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active .menu-toggle__bar:nth-child(2) {
    opacity: 0;
    width: 0;
}

.menu-toggle.is-active .menu-toggle__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

body.menu-open {
    overflow: hidden;
}

/* =========================================================
HERO
========================================================= */

.hero {
    position: relative;

    min-height: 850px;
    max-width: 100%;

    display: flex;
    align-items: center;

    /* Embaixo usa a escala: o hero se despedia rapido demais no celular
       (28px, contra 64px de ritmo entre as outras secoes) porque cada
       breakpoint reescrevia o shorthand inteiro so para ajustar o topo. */
    padding:
        calc(var(--header-height) + 80px) 0 var(--space-section-tight);

    overflow: hidden;
}

.hero::before {
    content: "";

    position: absolute;

    width: 650px;
    height: 650px;

    top: -250px;
    right: -150px;

    background:
        radial-gradient(circle,
            rgba(201, 168, 76, 0.18),
            transparent 70%);

    filter: blur(10px);

    pointer-events: none;

}

.hero::after {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    left: -300px;
    bottom: -250px;

    background:
        radial-gradient(circle,
            rgba(91, 155, 213, 0.12),
            transparent 70%);

    pointer-events: none;

}

.hero__container {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr) minmax(400px, 0.95fr);

    align-items: center;

    gap: 70px;
}

.hero__content {
    max-width: 700px;
}

.hero__eyebrow,
.section-heading__eyebrow {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    margin-bottom: 18px;

    color: var(--gold);

    font-size: 12px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.hero__eyebrow {
    white-space: normal;
}

.hero__eyebrow i {
    color: var(--cta-blue-light);
}

.hero__title {
    max-width: 720px;

    font-size: clamp(1.65rem, 7.5vw, 3.2rem);

    line-height: 1.15;

    letter-spacing: -0.02em;

    font-weight: 700;

    color: var(--text-primary);
}

.hero__title span,
.hero__title em {
    display: block;

    margin-top: 10px;

    font-style: normal;
    font-weight: 800;
    color: var(--gold);

    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    -webkit-text-fill-color: unset;
}

.hero__description {
    max-width: 610px;

    margin-top: 28px;

    color: var(--text-secondary);

    font-size: 1rem;

    line-height: 1.7;
}

.hero__highlights {
    display: grid;
    gap: 10px;

    max-width: 560px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.hero__highlights li {
    position: relative;

    padding-left: 22px;

    color: rgba(217, 222, 236, 0.78);

    font-size: 13px;
    line-height: 1.45;
}

.hero__highlights li::before {
    content: "";

    position: absolute;
    top: 0.45em;
    left: 0;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--cta-blue-light);
    box-shadow: 0 0 10px rgba(22, 119, 255, 0.55);
}

.hero__risk {
    max-width: 560px;
    margin: 18px 0 0;

    color: rgba(217, 222, 236, 0.48);

    font-size: 12px;
    line-height: 1.5;
}

.hero__risk a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.hero__actions {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-top: 34px;

}

.hero__trust {
    display: flex;
    flex-wrap: wrap;

    gap: 18px;

    margin-top: 34px;

}

.hero__trust span {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    color: var(--text-muted);

    font-size: 12px;

}

.hero__trust i {
    color: var(--success);
}

/* =========================================================
HERO VISUAL
========================================================= */

.hero__stardust {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero__visual {
    position: relative;

    min-height: 520px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__starburst {
    position: absolute;
    inset: -40px;
    z-index: 0;
    width: calc(100% + 80px);
    height: calc(100% + 80px);
    pointer-events: none;
}

.hero__reward {
    position: relative;
    z-index: 2;

    display: block;
    width: min(100%, 640px);
    height: auto;

    object-fit: contain;
    object-position: center;

    filter:
        drop-shadow(0 0 28px rgba(201, 168, 76, 0.35))
        drop-shadow(0 24px 48px rgba(0, 0, 0, 0.45));

    animation: heroRewardFloat 5.5s ease-in-out infinite;
}

@keyframes heroRewardFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero__glow {
    position: absolute;
    z-index: 0;

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: min(100%, 560px);
    height: min(100%, 560px);
    max-width: 560px;
    max-height: 560px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(201, 168, 76, 0.22),
            rgba(91, 155, 213, 0.06),
            transparent 70%);

    filter: blur(5px);
    pointer-events: none;
}

.hero-card {
    position: relative;
    z-index: 3;

    width: min(100%, 420px);

    padding: 28px;

    background:
        linear-gradient(145deg,
            rgba(16, 27, 53, 0.96),
            rgba(7, 14, 31, 0.96));

    border: 1px solid rgba(255, 255, 255, 0.10);

    border-radius: 26px;

    box-shadow:
        0 35px 100px rgba(0, 0, 0, 0.45),
        0 0 70px rgba(201, 168, 76, 0.08);

    backdrop-filter: blur(20px);

    transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);

    animation: heroFloat 5s ease-in-out infinite;
}

@keyframes heroFloat {

    0%,
    100% {
        transform:
            perspective(1000px) rotateY(-4deg) rotateX(2deg) translateY(0);
    }

    50% {
        transform:
            perspective(1000px) rotateY(-4deg) rotateX(2deg) translateY(-10px);
    }

}

@keyframes orbPulse {

    0%,
    100% {
        transform: translate(-50%, -50%);
        box-shadow:
            0 0 0 1px rgba(201, 168, 76, 0.18),
            0 0 70px rgba(201, 168, 76, 0.18),
            0 0 120px rgba(91, 155, 213, 0.10);
    }

    50% {
        transform: translate(-50%, -50%);
        box-shadow:
            0 0 0 1px rgba(201, 168, 76, 0.28),
            0 0 100px rgba(201, 168, 76, 0.32),
            0 0 160px rgba(91, 155, 213, 0.16);
    }

}

@keyframes beamGlow {

    0%,
    100% {
        opacity: 0.55;
        transform: translateX(-50%) scaleY(1);
    }

    50% {
        opacity: 0.95;
        transform: translateX(-50%) scaleY(1.08);
    }

}

/* =========================================================
ENTRANCE + SCROLL REVEAL
========================================================= */

[data-animate="rise"] {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--anim-delay, 0ms);
    will-change: opacity, transform;
}

[data-animate="rise"].is-in {
    opacity: 1;
    transform: translateY(0);
}

[data-animate="scale-in"] {
    opacity: 0;
    transform: scale(0.92);
    transition:
        opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
        transform 1s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--anim-delay, 0ms);
    will-change: opacity, transform;
}

[data-animate="scale-in"].is-in {
    opacity: 1;
    transform: scale(1);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(36px);
    transition:
        opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

[data-reveal="left"] {
    transform: translateX(-42px);
}

[data-reveal="right"] {
    transform: translateX(42px);
}

[data-reveal="scale"] {
    transform: scale(0.92);
}

[data-reveal="fade"] {
    transform: none;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

.feature-list li,
.rewards-disclaimer {
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
}

.is-visible .feature-list li,
.rewards-disclaimer.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Critérios do trader: fade-in individual (um por vez) */
.criteria[data-reveal] {
    opacity: 0;
    transform: translateY(22px);
}

.criteria[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {

    [data-animate="rise"],
    [data-animate="scale-in"],
    [data-reveal],
    .feature-list li,
    .rewards-disclaimer {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .hero-card,
    .hero__reward {
        animation: none;
    }

}

.hero-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-bottom: 22px;

    border-bottom: 1px solid var(--border);

}

.hero-card__label {
    display: block;

    margin-bottom: 4px;

    color: var(--text-muted);

    font-size: 11px;

}

.hero-card__header strong {
    font-size: 18px;
}

.hero-card__status {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    padding: 6px 10px;

    border-radius: 999px;

    color: var(--success);

    background: rgba(50, 213, 131, 0.08);

    font-size: 11px;
    font-weight: 700;

}

.hero-card__status i {
    font-size: 7px;
}

.hero-card__progress {
    padding: 28px 0;
}

.progress-info {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    color: var(--text-muted);

    font-size: 12px;

}

.progress-info strong {
    color: var(--white);

    font-size: 13px;

}

.progress-info--small {
    margin-top: 10px;

    font-size: 10px;

}

.progress-bar {
    position: relative;

    width: 100%;
    height: 8px;

    margin-top: 14px;

    overflow: hidden;

    border-radius: 999px;

    background: rgba(255, 255, 255, 0.07);

}

.progress-bar__fill {
    display: block;

    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(90deg,
            var(--blue),
            var(--blue-light));

    box-shadow:
        0 0 18px rgba(201, 168, 76, 0.5);

}

.progress__disclaimer {
    margin: 24px 0 0;

    color: rgba(217, 222, 236, 0.38);

    font-size: 10px;
    font-weight: 400;

    letter-spacing: 0.02em;

    text-align: center;
}

.hero-card__stats {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 12px;

}

.hero-stat {
    display: flex;
    align-items: center;

    gap: 12px;

    padding: 15px;

    border-radius: 14px;

    background: rgba(255, 255, 255, 0.035);

    border: 1px solid var(--border);

}

.hero-stat__icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    color: var(--blue-light);

    background: rgba(201, 168, 76, 0.10);

}

.hero-stat strong,
.hero-stat span {
    display: block;
}

.hero-stat strong {
    font-size: 18px;
}

.hero-stat span {
    color: var(--text-muted);

    font-size: 10px;

}

/* =========================================================
GENERIC SECTION
========================================================= */

.section {
    position: relative;
    z-index: 1;

    padding: var(--space-section) 0;
}

.section-heading {
    max-width: 720px;

    margin: 0 auto 60px;

    text-align: center;

}

.section-heading h2,
.section-title {
    font-weight: 700;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--text-primary);
}

.section-heading h2 strong,
.section-title strong {
    font-weight: 800;
}

.section-heading h2 span,
.section-heading h2 em,
.section-title em {
    font-style: normal;
    color: var(--gold);
}

.section-heading p {
    max-width: 650px;

    margin: 20px auto 0;

    color: var(--text-secondary);

    font-size: 1rem;

}

/* =========================================================
HOW IT WORKS
========================================================= */

.how-it-works {
    overflow-x: clip;

    background:
        linear-gradient(180deg,
            transparent,
            rgba(255, 255, 255, 0.015),
            transparent);
}

.how-it-works__stage {
    --steps-gap: 26px;

    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 340px) minmax(0, 1fr);
    align-items: center;
    column-gap: clamp(20px, 3vw, 48px);
    row-gap: 32px;

    width: 100%;
}

.how-it-works__column {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;

    gap: var(--steps-gap);

    width: min(100%, 280px);
    min-width: 0;
}

.how-it-works__column--left {
    grid-column: 1;
    justify-self: end;
}

.how-it-works__column--right {
    grid-column: 3;
    justify-self: start;
}

.how-it-works__media {
    grid-column: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-width: 0;
    overflow: visible;
}

.how-it-works__video-frame {
    --how-video-radius: 28px;

    position: relative;

    width: 100%;
    aspect-ratio: 9 / 16;

    overflow: visible;
    isolation: isolate;

    background: transparent;

    border: 0;
    border-radius: var(--how-video-radius);

    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.08),
        0 28px 80px rgba(0, 0, 0, 0.46),
        0 0 48px rgba(22, 119, 255, 0.16);
}

.how-it-works__video-clip {
    position: absolute;
    inset: 0;

    overflow: hidden;

    background: #050a18;

    border-radius: inherit;

    transform: translate3d(0, 0, 0);

    clip-path: inset(0 round var(--how-video-radius));
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    mask-image: radial-gradient(#fff, #fff);
}

.how-it-works__video {
    display: block;

    width: 100%;
    height: 100%;
    max-width: 100%;
    min-width: 0;

    object-fit: cover;

    border: 0;
    border-radius: inherit;
}

.how-it-works__cta {
    display: flex;
    align-items: stretch;
    margin-top: auto;
}

.how-it-works__cta .button {
    width: 100%;
    min-width: 0;
    justify-content: center;
    border-radius: 100px;
    padding: 0.85rem 1.1rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.step-card {
    position: relative;
    z-index: 1;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;

    width: 100%;
    min-height: 0;
    padding: 14px 16px;

    text-align: center;

    color: var(--text-primary);

    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border: 1px solid var(--glass-border);
    border-radius: 14px;

    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);

    transition:
        opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background 0.4s ease;
}

.how-it-works__column .step-card:not(:last-of-type)::before {
    content: "";

    position: absolute;
    z-index: 2;
    left: 50%;
    bottom: calc(var(--steps-gap) / -2);

    width: 2px;
    height: 14px;

    transform: translate(-50%, 50%);

    background: linear-gradient(180deg,
            rgba(201, 168, 76, 0.2),
            var(--blue-light));

    border-radius: 999px;
    pointer-events: none;
}

.how-it-works__column .step-card:not(:last-of-type)::after {
    content: "";

    position: absolute;
    z-index: 2;
    left: 50%;
    bottom: calc(var(--steps-gap) / -2 - 6px);

    width: 8px;
    height: 8px;

    border-bottom: 2px solid var(--blue-light);
    border-right: 2px solid var(--blue-light);

    transform: translate(-50%, 50%) rotate(45deg);

    pointer-events: none;
}

.step-card[data-reveal].is-visible:hover {
    transform: translateY(-4px);

    border-color: var(--border-hover);

    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
}

.step-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 28px;
    height: 28px;

    margin: 0 0 4px;

    color: var(--blue-light);

    background: transparent;

    font-size: 18px;
    line-height: 1;
}

.step-card__number {
    display: block;

    margin: 0 0 4px;

    color: var(--blue-light);

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.step-card h3 {
    margin: 0;

    color: var(--white);

    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
}

/* =========================================================
PROGRESS BOARD
========================================================= */

.progress-board {
    position: relative;

    overflow-x: clip;
    overflow-y: visible;

    background:
        radial-gradient(circle at 70% 45%,
            rgba(201, 168, 76, 0.12),
            transparent 42%),
        linear-gradient(180deg,
            transparent,
            rgba(201, 168, 76, 0.035),
            transparent);
}

.progress-board__heading {
    transition:
        opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);

    opacity: 0;
    transform: translateY(28px);
}

.progress-board.is-active .progress-board__heading {
    opacity: 1;
    transform: translateY(0);
}

.progress-board__stage {
    --progress-scale: 0.6;
    --progress-y: 10vh;
    --progress-opacity: 0.55;
    --progress-glow: 0.12;

    position: relative;

    /* Trilha curta: expansão completa com pouco scroll */
    height: 130vh;
    margin: 0 0 24px;

    pointer-events: none;
}

.progress-board__layout {
    display: grid;
    grid-template-columns: minmax(0, 720px);
    justify-content: center;
    align-items: stretch;
    gap: 0;

    opacity: 0;
    transform: translateY(36px);

    transition:
        opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.progress-board.is-active .progress-board__layout {
    opacity: 1;
    transform: translateY(0);
}

.progress-board__panel {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    width: 100%;
    min-height: 280px;
    padding: 36px 32px;
    gap: 0;

    background:
        linear-gradient(160deg,
            rgba(12, 20, 40, 0.96),
            rgba(6, 10, 24, 0.98));

    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 22px;

    box-shadow:
        0 20px 48px rgba(0, 0, 0, 0.28),
        0 0 40px rgba(201, 168, 76, 0.1);
}

.progress-board__eyebrow {
    display: inline-block;

    margin-bottom: 16px;

    color: var(--blue-light);

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.progress-board__panel h3 {
    margin: 0;

    color: var(--white);

    font-size: clamp(28px, 3vw, 38px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.progress-board__panel > p {
    max-width: 360px;

    margin: 16px 0 0;

    color: rgba(217, 222, 236, 0.68);

    font-size: 14px;
    line-height: 1.7;
}

a.button.progress-board__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    width: fit-content;
    min-width: 230px;
    min-height: 48px;
    margin-top: 32px;
    padding: 0 26px;

    border-radius: 999px;

    line-height: 1;
    text-align: center;
    white-space: nowrap;

    box-shadow:
        0 12px 32px rgba(22, 119, 255, 0.4),
        0 0 22px rgba(22, 119, 255, 0.2);
}

a.button.progress-board__cta i {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    line-height: 1;
}

.progress-board__media {
    position: sticky;
    /* Enquadramento estável abaixo do header */
    top: calc(var(--header-height) + 3vh);

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto;
    min-width: 0;
    width: min(100%, 1240px);
    /* Menor que a viewport → sobra mais “trilha” de sticky no stage */
    height: min(76svh, 660px);

    padding-bottom: 0;

    pointer-events: none;
}

.progress-board__media::before {
    content: "";

    position: absolute;
    left: 50%;
    top: 56%;
    z-index: 0;

    width: min(78%, 620px);
    height: min(42%, 240px);

    transform: translate(-50%, -50%) scale(var(--progress-scale));

    background:
        radial-gradient(ellipse at center,
            rgba(201, 168, 76, var(--progress-glow)),
            transparent 72%);

    filter: blur(20px);
    pointer-events: none;
}

.progress-board__duo {
    position: relative;
    z-index: 1;

    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 0;

    width: 100%;
    max-width: 1200px;

    opacity: var(--progress-opacity);

    transform: translate3d(0, var(--progress-y), 0) scale(var(--progress-scale));
    transform-origin: center center;
    will-change: transform, opacity;
}

.progress-board__image {
    display: block;

    width: min(88%, 1060px);
    height: auto;
    max-width: 88%;
    max-height: min(66svh, 600px);

    object-fit: contain;
    object-position: right bottom;

    filter:
        drop-shadow(0 18px 40px rgba(0, 0, 0, 0.4))
        drop-shadow(0 0 28px rgba(201, 168, 76, calc(var(--progress-glow) * 0.9)));
}

.progress-board__phone {
    display: block;
    flex: 0 0 auto;
    position: relative;
    z-index: 2;

    width: min(18%, 215px);
    max-width: 215px;
    height: auto;
    max-height: min(58svh, 520px);

    /* Avanca sobre o desktop: ~2/3 da largura do celular ficam por cima, o
       resto passa da borda direita. Em % (e nao px) para a sobreposicao
       acompanhar o tamanho do conjunto em vez de sumir nas telas grandes.
       So funciona porque o `cell.png` foi recortado: com 42% da caixa em
       transparencia, a margem negativa comia ar e nao encostava na tela. */
    margin-left: -12%;
    margin-bottom: clamp(2px, 0.8vh, 10px);

    object-fit: contain;
    object-position: left bottom;

    filter:
        drop-shadow(0 22px 36px rgba(0, 0, 0, 0.45))
        drop-shadow(0 0 20px rgba(201, 168, 76, calc(var(--progress-glow) * 0.55)));
}

.progress-panel {
    position: relative;

    overflow: hidden;

    padding: 26px 22px;

    border-radius: 20px;

    background:
        linear-gradient(145deg,
            rgba(16, 27, 53, 0.96),
            rgba(7, 14, 31, 0.96));

    border: 1px solid rgba(255, 255, 255, 0.10);

    box-shadow: var(--shadow-card);

    opacity: 0;
    transform: translateY(40px) scale(0.97);

    transition:
        opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.25s ease;
}

.progress-panel:nth-child(1) { transition-delay: 0ms; }
.progress-panel:nth-child(2) { transition-delay: 70ms; }
.progress-panel:nth-child(3) { transition-delay: 140ms; }
.progress-panel:nth-child(4) { transition-delay: 210ms; }
.progress-panel:nth-child(5) { transition-delay: 280ms; }

.progress-board.is-active .progress-panel {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.progress-board:not(.is-active) .progress-panel {
    opacity: 0;
    transform: translateY(28px) scale(0.98);
}

.progress-panel--main {
    grid-row: span 2;

    display: flex;
    flex-direction: column;

    min-height: 100%;
    padding: 28px;
}

.progress-panel__glow {
    position: absolute;
    inset: auto -20% -30% auto;

    width: 260px;
    height: 260px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(201, 168, 76, 0.22),
            transparent 70%);

    pointer-events: none;
}

.progress-panel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-bottom: 22px;

    border-bottom: 1px solid var(--border);
}

.progress-panel__label {
    display: block;

    margin-bottom: 4px;

    color: var(--text-muted);

    font-size: 11px;
}

.progress-panel__header strong {
    font-size: 18px;
}

.progress-panel__status {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    padding: 6px 10px;

    border-radius: 999px;

    color: var(--success);

    background: rgba(50, 213, 131, 0.08);

    font-size: 11px;
    font-weight: 700;
}

.progress-panel__status i {
    font-size: 7px;
}

.progress-panel__body {
    padding: 28px 0;
}

.progress-bar--xl {
    height: 12px;

    margin-top: 16px;
}

.progress-bar__fill {
    width: 0%;

    transition: width 1.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.progress-bar__fill--purple {
    background:
        linear-gradient(90deg,
            var(--purple),
            var(--purple-light));

    box-shadow: 0 0 18px rgba(91, 155, 213, 0.45);
}

.progress-bar__fill--gold {
    background:
        linear-gradient(90deg,
            var(--gold-dark),
            var(--gold-light));

    box-shadow: 0 0 18px rgba(201, 168, 76, 0.4);
}

.progress-panel__stats {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 10px;

    margin-top: auto;
}

.progress-stat {
    display: flex;
    align-items: center;

    gap: 10px;

    padding: 14px 12px;

    border-radius: 14px;

    background: rgba(255, 255, 255, 0.035);

    border: 1px solid var(--border);
}

.progress-stat__icon {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 10px;

    color: var(--blue-light);

    background: rgba(201, 168, 76, 0.10);

    font-size: 13px;
}

.progress-stat strong,
.progress-stat span {
    display: block;
}

.progress-stat strong {
    font-size: 18px;
    line-height: 1.1;
}

.progress-stat span {
    color: var(--text-muted);

    font-size: 10px;
}

.progress-panel--mission {
    min-height: 250px;

    text-align: center;
}

.progress-panel--mission:hover {
    border-color: var(--border-blue);
}

.progress-panel--vip {
    border-color: rgba(91, 155, 213, 0.28);

    background:
        radial-gradient(circle at 50% 0%,
            rgba(91, 155, 213, 0.12),
            transparent 50%),
        linear-gradient(145deg,
            rgba(16, 27, 53, 0.96),
            rgba(7, 14, 31, 0.96));
}

.progress-panel__step {
    display: block;

    color: var(--text-muted);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.progress-panel__icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 16px auto 14px;

    border-radius: 50%;

    color: var(--blue-light);

    background: rgba(201, 168, 76, 0.10);

    border: 1px solid rgba(201, 168, 76, 0.20);
}

.progress-panel--vip .progress-panel__icon {
    color: var(--purple-light);

    background: rgba(91, 155, 213, 0.10);

    border-color: rgba(91, 155, 213, 0.20);
}

.progress-panel--mission > strong {
    display: block;

    color: var(--white);

    font-size: 32px;

    line-height: 1;
}

.progress-panel--mission h3 {
    margin-top: 6px;

    font-size: 15px;
}

.progress-panel--mission .progress-bar {
    margin: 16px 0 12px;
}

.progress-panel--mission p {
    color: var(--text-muted);

    font-size: 11px;
}

@media (prefers-reduced-motion: reduce) {

    .progress-board__heading,
    .progress-board__layout,
    .progress-panel,
    .progress-bar__fill {
        transition: none !important;
    }

    .progress-board__stage {
        --progress-scale: 1;
        --progress-y: 0px;
        --progress-opacity: 1;
        --progress-glow: 0.2;
        height: auto;
        margin-bottom: 36px;
    }

    .progress-board__media {
        position: relative;
        top: auto;
        height: auto;
    }

    .progress-board__duo {
        will-change: auto;
        opacity: 1;
        transform: none;
    }

    .progress-board__image,
    .progress-board__phone {
        max-height: none;
    }

    .progress-board .progress-board__heading,
    .progress-board .progress-board__layout {
        opacity: 1;
        transform: none;
    }

}

/* =========================================================
QUALIFIED
========================================================= */

.qualified {
    background:
        radial-gradient(circle at 80% 40%,
            rgba(201, 168, 76, 0.1),
            transparent 40%),
        var(--bg-deep);
}

.qualified__container {
    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr) minmax(320px, 0.95fr);

    grid-template-areas:
        "intro visual"
        "criteria visual"
        "notice visual";

    align-items: start;

    column-gap: 56px;
    row-gap: 0;
}

.qualified__intro {
    grid-area: intro;
    max-width: 640px;
}

.qualified h2 {
    font-size: clamp(36px, 4vw, 54px);

    line-height: 1.05;

    letter-spacing: -0.04em;
}

.qualified h2 span {
    color: var(--blue-light);
}

.qualified__intro > p {
    margin-top: 20px;

    color: rgba(217, 222, 236, 0.72);

    font-size: 15px;
    line-height: 1.7;
}

.qualified__criteria {
    grid-area: criteria;

    display: grid;

    gap: 16px;

    margin-top: 32px;
    max-width: 640px;
}

.criteria {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
}

.criteria__number {
    color: var(--blue-light);

    font-size: clamp(28px, 3vw, 36px);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;

    text-shadow: 0 0 22px rgba(201, 168, 76, 0.45);
}

.criteria__card {
    display: flex;
    align-items: center;
    gap: 14px;

    min-height: 84px;
    padding: 16px 18px;

    border-radius: 16px;

    background:
        linear-gradient(145deg,
            rgba(14, 22, 42, 0.92),
            rgba(7, 12, 26, 0.96));

    border: 1px solid rgba(201, 168, 76, 0.16);

    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.criteria__icon {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    color: var(--blue-light);

    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.2);

    font-size: 16px;
}

.criteria__text strong,
.criteria__text span {
    display: block;
}

.criteria__text strong {
    color: var(--white);
    font-size: 14px;
}

.criteria__text span {
    margin-top: 4px;

    color: var(--text-muted);

    font-size: 12px;
    line-height: 1.5;
}

.qualified__notice {
    grid-area: notice;

    display: flex;

    align-items: flex-start;

    gap: 9px;

    margin-top: 22px !important;
    max-width: 640px;

    color: #f5c14b !important;

    font-size: 12px !important;
    line-height: 1.5;
}

.qualified__notice i {
    margin-top: 2px;

    color: #f5c14b;
}

.qualified__visual {
    grid-area: visual;

    display: flex;
    justify-content: center;
    align-self: center;
    min-width: 0;
}

.qualified__media {
    position: relative;

    width: min(100%, 560px);
    margin: 0;

    overflow: hidden;

    border-radius: 28px;

    border: 1px solid rgba(201, 168, 76, 0.18);

    box-shadow:
        0 28px 60px rgba(0, 0, 0, 0.35),
        0 0 48px rgba(201, 168, 76, 0.12);
}

.qualified__image {
    display: block;

    width: 100%;
    height: auto;

    object-fit: contain;
    object-position: center center;
}

.qualification-card {
    width: min(100%, 440px);

    padding: 16px 16px 14px;

    background: rgba(8, 14, 30, 0.62);

    border: 1px solid rgba(201, 168, 76, 0.28);
    border-radius: 18px;

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3);
}

.qualification-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 14px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 11px;
}

.status {
    padding: 6px 9px;

    border-radius: 999px;

    font-size: 9px;
    font-weight: 700;
}

.status--pending {
    color: var(--warning);

    background: rgba(245, 185, 66, 0.12);
}

.qualification-card__user {
    display: none;
}

.avatar {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: var(--blue-light);

    background: rgba(201, 168, 76, 0.10);

}

.qualification-card__user strong,
.qualification-card__user span {
    display: block;
}

.qualification-card__user strong {
    font-size: 14px;
}

.qualification-card__user span {
    color: var(--text-muted);


    font-size: 10px;

}

.qualification-card__steps {
    display: grid;

    gap: 0;

    margin-top: 0;
}

.qualification-step {
    position: relative;

    display: flex;
    align-items: center;

    gap: 13px;

    padding-bottom: 16px;
}

.qualification-step:last-child {
    padding-bottom: 0;
}

.qualification-step:not(:last-child)::after {
    content: "";

    position: absolute;

    left: 16px;
    top: 32px;

    width: 1px;
    height: calc(100% - 15px);

    background: var(--border);

}

.qualification-step>span {
    position: relative;
    z-index: 2;

    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: var(--text-muted);

    background: #0a1226;

    border: 1px solid var(--border);

    font-size: 11px;

}

.qualification-step.is-complete>span {
    color: var(--success);

    background: rgba(50, 213, 131, 0.08);

    border-color: rgba(50, 213, 131, 0.20);

}

.qualification-step.is-active>span {
    color: var(--blue-light);

    background: rgba(201, 168, 76, 0.10);

    border-color: rgba(201, 168, 76, 0.25);

}

.qualification-step strong,
.qualification-step small {
    display: block;
}

.qualification-step strong {
    font-size: 12px;
}

.qualification-step small {
    margin-top: 2px;

    color: var(--text-muted);

    font-size: 9px;

}

/* =========================================================
REFERRED BENEFIT
========================================================= */

.referred-benefit {
    padding-top: var(--space-section-tight);
}

@keyframes benefit-fade-in {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.benefit-card__fade {
    opacity: 0;
    transform: translateY(28px);
    will-change: opacity, transform;
}

#beneficio-saldo.is-in-view .benefit-card__fade {
    animation: benefit-fade-in 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

#beneficio-saldo.is-in-view .benefit-card__fade--delay-1 {
    animation-delay: 0.12s;
}

#beneficio-saldo.is-in-view .benefit-card__fade--delay-2 {
    animation-delay: 0.24s;
}

@media (prefers-reduced-motion: reduce) {
    .benefit-card__fade {
        opacity: 1;
        transform: none;
        will-change: auto;
    }

    #beneficio-saldo.is-in-view .benefit-card__fade {
        animation: none;
    }
}

.benefit-card__content > p {
    margin-top: 18px;

    color: var(--text-muted);

    font-size: 14px;
    line-height: 1.6;
}

.offer-pack {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;

    margin: 0 0 28px;
}

.offer-pack__item {
    display: grid;
    gap: 8px;

    padding: 18px 16px;

    border-radius: 16px;

    background:
        linear-gradient(145deg,
            rgba(14, 22, 42, 0.92),
            rgba(7, 12, 26, 0.96));

    border: 1px solid rgba(201, 168, 76, 0.16);
}

.offer-pack__item strong {
    color: var(--gold);
    font-size: 18px;
    letter-spacing: -0.02em;
}

.offer-pack__item span {
    color: rgba(217, 222, 236, 0.68);
    font-size: 13px;
    line-height: 1.45;
}

@media (max-width: 900px) {
    .offer-pack {
        grid-template-columns: 1fr;
    }
}

.benefit-card {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;

    padding: 2.5rem 2rem;

    overflow: hidden;

    border-radius: var(--radius-xl);

    background: rgba(3, 6, 12, 0.9);

    border: 1px solid var(--border);

    transition:
        background 0.4s ease,
        border-color 0.3s ease;
}

.benefit-card:hover {
    border-color: var(--border-hover);
}

.benefit-card__content {
    /* 700px sobravam 262px mortos entre o texto e o selo, e o titulo quebrava
       em tres linhas dentro de 604px. */
    max-width: 880px;

    /* O icone mora numa sarjeta a esquerda e o texto todo divide a mesma
       margem. Antes so o titulo era empurrado por ele (96px), enquanto o
       eyebrow e o paragrafo comecavam na borda do card: tres recuos
       diferentes no mesmo bloco, em escada. */
    --benefit-icon: clamp(56px, 7vw, 78px);
    --benefit-gap: 18px;
    --benefit-indent: calc(var(--benefit-icon) + var(--benefit-gap));
}

.benefit-card__content > .section-heading__eyebrow,
.benefit-card__content > p {
    margin-left: var(--benefit-indent);
}

.benefit-card__title-row {
    display: flex;
    align-items: center;
    gap: var(--benefit-gap);
}

/* Mantem "e desbloqueie recompensas." inteiro numa linha.
   Precisa ser um grupo, e nao so mais largura: a quebra e gulosa, entao com
   espaco de sobra o "e" sobe para a primeira linha e a frase parte no lugar
   errado ("...elegiveis e / desbloqueie recompensas."). Agrupado, ou cabe
   tudo junto ou desce tudo junto.

   So a partir de 801px: no celular o trecho pede 376px e a coluna tem 301px,
   entao `nowrap` ali empurraria a pagina para o lado. */
@media (min-width: 801px) {

    .benefit-card__keep {
        white-space: nowrap;
    }

}

.benefit-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: var(--benefit-icon);
    height: var(--benefit-icon);
    flex-shrink: 0;

    color: var(--cta-blue-light);

    filter:
        drop-shadow(0 0 6px rgba(47, 140, 255, 0.85))
        drop-shadow(0 0 18px rgba(22, 119, 255, 0.55));
}

.benefit-card__icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.benefit-card h2 {
    margin: 0;

    font-size: clamp(2rem, 4.5vw, 3.2rem);

    line-height: 1.15;

    letter-spacing: -0.02em;
}

.benefit-card h2 span {
    color: var(--gold);
}

.benefit-card__content>p {
    margin-top: 18px;

    color: var(--text-muted);

    font-size: 14px;

}

.benefit-card__condition {
    display: flex;
    align-items: center;

    gap: 13px;

    margin-top: 25px;

    padding: 15px 17px;

    width: fit-content;

    border-radius: 13px;

    background: rgba(0, 0, 0, 0.16);

    border: 1px solid var(--border);

}

.benefit-card__condition>i {
    color: var(--gold);

    font-size: 18px;

}

.benefit-card__condition strong,
.benefit-card__condition span {
    display: block;
}

.benefit-card__condition strong {
    font-size: 12px;
}

.benefit-card__condition span {
    color: var(--text-muted);

    font-size: 10px;

}

.benefit-card__reward {
    position: relative;

    flex-shrink: 0;

    width: 180px;
    height: 180px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(201, 168, 76, 0.20),
            rgba(201, 168, 76, 0.03) 65%,
            transparent 70%);

    border: 1px solid var(--border-gold);

    box-shadow:
        0 0 70px rgba(201, 168, 76, 0.10);

}

.reward-label {
    color: var(--gold-light);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.15em;

}

.benefit-card__reward strong {
    margin: 2px 0;

    color: var(--gold-light);

    font-size: 42px;

    line-height: 1;

    letter-spacing: -0.05em;

}

.benefit-card__reward>span:last-child {
    color: var(--text-muted);

    font-size: 11px;

}

/* =========================================================
CONQUEST — RANKING + RECOMPENSAS
========================================================= */

.conquest {
    background:
        radial-gradient(circle at 70% 30%,
            rgba(201, 168, 76, 0.08),
            transparent 42%),
        linear-gradient(180deg,
            transparent,
            rgba(201, 168, 76, 0.03),
            transparent);
}

.conquest__layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.4fr);
    align-items: stretch;
    gap: 20px;
}

.conquest-panel {
    padding: 28px 24px;

    background: rgba(3, 6, 12, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border: 1px solid var(--glass-border);
    border-radius: 22px;

    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);

    transition: border-color 0.3s ease;
}

.conquest-panel:hover {
    border-color: var(--border-hover);
}

.conquest-panel__eyebrow {
    display: inline-block;

    margin-bottom: 8px;

    color: var(--blue-light);

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.conquest-panel h3 {
    margin: 0 0 10px;

    color: var(--white);

    font-size: clamp(20px, 2.2vw, 26px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.conquest-panel__note {
    margin: 0 0 18px;

    color: rgba(217, 222, 236, 0.5);

    font-size: 12px;
    line-height: 1.4;
}

.ranking-list {
    display: grid;
    gap: 10px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.ranking-list__item {
    display: grid;
    grid-template-columns: 28px 40px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;

    min-height: 58px;
    padding: 10px 14px;

    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.ranking-list__item--you {
    margin-top: 6px;

    background: rgba(201, 168, 76, 0.14);
    border-color: rgba(201, 168, 76, 0.35);

    box-shadow: 0 0 24px rgba(201, 168, 76, 0.12);
}

.ranking-list__pos {
    color: rgba(255, 255, 255, 0.55);

    font-size: 13px;
    font-weight: 700;
    text-align: center;
}

.ranking-list__item--you .ranking-list__pos {
    color: var(--blue-light);
}

.ranking-list__avatar {
    width: 40px;
    height: 40px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    font-size: 14px;
}

.ranking-list__avatar--gold {
    color: #f7c84b;
    background: rgba(201, 168, 76, 0.14);
    border: 1px solid rgba(201, 168, 76, 0.35);
    box-shadow: 0 0 16px rgba(201, 168, 76, 0.2);
}

.ranking-list__avatar--silver {
    color: #c8d0e0;
    background: rgba(200, 208, 224, 0.12);
    border: 1px solid rgba(200, 208, 224, 0.3);
}

.ranking-list__avatar--bronze {
    color: #d99a5a;
    background: rgba(217, 154, 90, 0.12);
    border: 1px solid rgba(217, 154, 90, 0.3);
}

.ranking-list__avatar--you {
    color: var(--blue-light);
    background: rgba(201, 168, 76, 0.16);
    border: 1px solid rgba(201, 168, 76, 0.35);
}

.ranking-list__name {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
}

.ranking-list__score {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
}

.conquest-rewards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

/* Os dois paineis dividem a mesma linha do grid, entao esticam juntos ate a
   altura do maior — o do ranking, que tem quatro linhas de lista. O de
   recompensas tem conteudo mais baixo e sobrava 135px de vazio so no rodape
   dele, contra os 28px de padding do vizinho.

   Os cards ficam na altura natural de proposito: esticar junto empurrava o
   "Saiba mais" para o fundo e furava o meio de cada card. Aqui a grade e que
   toma o espaco livre e centra as recompensas nele — 56px em cima e 56px
   embaixo, simetrico, com o titulo do painel ainda alinhado com o vizinho. */
.conquest-panel--rewards {
    display: flex;
    flex-direction: column;
}

.conquest-panel--rewards .conquest-rewards {
    flex: 1;
    align-content: center;
}

.conquest-reward {
    display: flex;
    flex-direction: column;
    align-items: center;

    min-height: 210px;
    padding: 22px 14px 18px;

    text-align: center;

    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.conquest-reward:hover {
    transform: translateY(-6px);
}

.conquest-reward__icon {
    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 16px;

    border-radius: 50%;

    font-size: 20px;
}

.conquest-reward h4 {
    margin: 0 0 auto;

    color: rgba(255, 255, 255, 0.78);

    font-size: 13px;
    font-weight: 500;
    line-height: 1.35;
}

.conquest-reward h4 strong {
    display: block;

    margin-bottom: 4px;

    color: var(--white);

    font-size: 18px;
    font-weight: 700;
}

.conquest-reward a {
    margin-top: 16px;

    color: var(--blue-light);

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
}

.conquest-reward a:hover {
    color: var(--white);
}

.conquest-reward--blue {
    border-color: rgba(91, 155, 213, 0.28);
}

.conquest-reward--blue .conquest-reward__icon {
    color: var(--Shiver-blue);
    background: rgba(91, 155, 213, 0.12);
    border: 1px solid rgba(91, 155, 213, 0.28);
    box-shadow: 0 0 22px rgba(91, 155, 213, 0.18);
}

.conquest-reward--purple {
    border-color: rgba(184, 196, 208, 0.28);
}

.conquest-reward--purple .conquest-reward__icon {
    color: var(--hammerhead-silver);
    background: rgba(184, 196, 208, 0.12);
    border: 1px solid rgba(184, 196, 208, 0.28);
    box-shadow: 0 0 22px rgba(184, 196, 208, 0.14);
}

.conquest-reward--gold {
    border-color: rgba(201, 168, 76, 0.28);
}

.conquest-reward--gold .conquest-reward__icon {
    color: var(--gold-light);
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.28);
    box-shadow: 0 0 22px rgba(201, 168, 76, 0.16);
}

.conquest-reward--orange {
    border-color: rgba(92, 201, 176, 0.28);
}

.conquest-reward--orange .conquest-reward__icon {
    color: var(--apex-green);
    background: rgba(92, 201, 176, 0.12);
    border: 1px solid rgba(92, 201, 176, 0.28);
    box-shadow: 0 0 22px rgba(92, 201, 176, 0.16);
}

/* =========================================================
MISSIONS
========================================================= */

.missions {
    display: block;

    background:
        linear-gradient(180deg,
            transparent,
            rgba(91, 155, 213, 0.025),
            transparent);
}

.missions-progress {
    position: relative;

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;

}

.missions-line {
    position: absolute;

    top: 68px;
    left: 9%;
    right: 9%;

    height: 2px;

    pointer-events: none;
    overflow: hidden;
}

.missions-line__track {
    position: absolute;
    inset: 0;

    background: rgba(255, 255, 255, 0.08);

    border-radius: 999px;
}

.missions-line__progress {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(90deg,
            var(--blue),
            var(--purple),
            var(--gold));

    border-radius: 999px;

    transform: scaleX(0);
    transform-origin: left center;

    transition: transform 3.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.missions-line__glow {
    position: absolute;
    top: 50%;
    left: 0;

    width: 90px;
    height: 8px;

    border-radius: 999px;

    background:
        linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.85),
            transparent);

    transform: translate(-100%, -50%);
    opacity: 0;

    filter: blur(1px);
}

.missions-progress.is-line-active .missions-line__progress {
    transform: scaleX(1);
}

.missions-progress.is-line-active .missions-line__glow {
    opacity: 1;
    animation: missionsLineTravel 2.6s ease-in-out 3.6s infinite;
}

@keyframes missionsLineTravel {
    0% {
        left: 0;
        transform: translate(-100%, -50%);
        opacity: 0;
    }

    12% {
        opacity: 1;
    }

    88% {
        opacity: 1;
    }

    100% {
        left: 100%;
        transform: translate(0, -50%);
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {

    .missions-line__progress {
        transform: none;
        transition: none;
    }

    .missions-line__glow {
        display: none;
    }

}

.missions__disclaimer {
    margin: 24px 0 0;

    color: rgba(217, 222, 236, 0.48);

    font-size: 12px;
    line-height: 1.5;
    text-align: center;
}

.missions__disclaimer a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.mission-card {
    position: relative;
    z-index: 2;

    padding: 22px 18px;

    min-height: 280px;

    text-align: center;

    border-radius: 20px;

    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border: 1px solid var(--glass-border);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-7px);

    border-color: var(--border-hover);
}

.mission-card--active {
    border-color: rgba(201, 168, 76, 0.30);


    box-shadow:
        0 20px 50px rgba(201, 168, 76, 0.08);


}

.mission-card--vip {
    border-color: rgba(91, 155, 213, 0.28);

    background:
        radial-gradient(circle at 50% 0%,
            rgba(91, 155, 213, 0.10),
            transparent 50%),
        rgba(255, 255, 255, 0.02);

}

.mission-card__step {
    color: var(--text-muted);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.13em;

}

.mission-card__icon {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 14px auto;

    border-radius: 50%;

    color: var(--blue-light);

    background: rgba(201, 168, 76, 0.10);

    border: 1px solid rgba(201, 168, 76, 0.20);

}

.mission-card--vip .mission-card__icon {
    color: var(--purple-light);

    background: rgba(91, 155, 213, 0.10);

    border-color: rgba(91, 155, 213, 0.20);

}

.mission-card strong {
    display: block;

    color: var(--white);

    font-size: 38px;

    line-height: 1;

}

.mission-card h3 {
    margin-top: 8px;


    font-size: 15px;

}

.mission-card p {
    margin-top: 10px;

    color: var(--text-muted);

    font-size: 11px;

}

/* =========================================================
DASHBOARD PREVIEW
========================================================= */

.dashboard-preview {
    background: var(--bg-deep);
}

.dashboard-preview__container {
    display: grid;

    grid-template-columns:
        minmax(0, 0.85fr) minmax(450px, 1.15fr);

    align-items: center;

    gap: 90px;

}

.dashboard-preview__content {
    max-width: 560px;
}

.dashboard-preview h2 {
    font-size: clamp(36px, 4vw, 54px);

    line-height: 1.05;

    letter-spacing: -0.04em;

}

.dashboard-preview h2 span {
    color: var(--blue-light);
}

.dashboard-preview__content>p {
    margin-top: 20px;

    color: var(--text-muted);

    font-size: 14px;

}

.feature-list {
    display: grid;


    gap: 12px;

    margin-top: 28px;

}

.feature-list li {
    display: flex;
    align-items: center;

    gap: 10px;

    color: var(--text);

    font-size: 12px;

}

.feature-list i {
    color: var(--success);
}

.dashboard-preview__content .button {
    margin-top: 30px;
}

.dashboard-preview__visual {
    display: flex;
    justify-content: center;
}

.dashboard {
    width: min(100%, 620px);

    padding: 25px;

    background:
        linear-gradient(145deg,
            #0d1832,
            #060c1b);

    border: 1px solid rgba(255, 255, 255, 0.10);

    border-radius: 24px;

    box-shadow:
        0 35px 100px rgba(0, 0, 0, 0.40),
        0 0 60px rgba(201, 168, 76, 0.06);

}

.dashboard__header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-bottom: 20px;

    border-bottom: 1px solid var(--border);

}

.dashboard__header span,
.dashboard__header strong {
    display: block;
}

.dashboard__header span {
    color: var(--text-muted);

    font-size: 10px;

}

.dashboard__header strong {
    margin-top: 2px;

    font-size: 17px;

}

.dashboard__avatar {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: var(--blue-light);

    background: rgba(201, 168, 76, 0.10);

}

.dashboard__link {
    padding: 22px 0;
}

.dashboard__link>span {
    color: var(--text-muted);

    font-size: 10px;

}

.link-box {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;

    margin-top: 9px;

    padding: 13px;

    border-radius: 10px;

    background: rgba(255, 255, 255, 0.035);

    border: 1px solid var(--border);


}

.link-box span {
    overflow: hidden;


    color: var(--text);

    font-size: 11px;

    text-overflow: ellipsis;
    white-space: nowrap;


}

.link-box button {
    flex-shrink: 0;


    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 7px;

    color: var(--blue-light);

    background: rgba(201, 168, 76, 0.10);


}

.dashboard__cards {
    display: grid;


    grid-template-columns:
        repeat(3, 1fr);

    gap: 10px;


}

.dashboard-stat {
    padding: 16px;


    border-radius: 12px;

    background: rgba(255, 255, 255, 0.025);

    border: 1px solid var(--border);


}

.dashboard-stat span,
.dashboard-stat strong {
    display: block;
}

.dashboard-stat span {
    color: var(--text-muted);


    font-size: 9px;


}

.dashboard-stat strong {
    margin-top: 5px;


    font-size: 23px;


}

.dashboard__mission {
    margin-top: 14px;

    padding: 18px;

    border-radius: 13px;

    background: rgba(201, 168, 76, 0.045);

    border: 1px solid rgba(201, 168, 76, 0.12);

}

.dashboard__mission-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    color: var(--text-muted);

    font-size: 10px;


}

.dashboard__mission-header strong {
    color: var(--blue-light);
}

/* =========================================================
REWARDS
========================================================= */

.rewards-grid {
    display: grid;


    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 16px;


}

.reward-card {
    padding: 24px 20px;

    min-height: 250px;

    border-radius: 18px;

    background: rgba(255, 255, 255, 0.025);

    border: 1px solid var(--border);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease;

}

.reward-card:hover {
    transform: translateY(-7px);

    border-color: var(--border-blue);

}

.reward-card__icon {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    border-radius: 13px;

    color: var(--blue-light);

    background: rgba(201, 168, 76, 0.10);

}

.reward-card>span {
    color: var(--text-muted);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.12em;

}

.reward-card h3 {
    margin-top: 6px;

    font-size: 21px;

}

.reward-card p {
    margin-top: 10px;

    color: var(--text-muted);

    font-size: 11px;

}

.reward-card--featured {
    border-color: rgba(201, 168, 76, 0.22);

    background:
        radial-gradient(circle at 100% 0%,
            rgba(201, 168, 76, 0.08),
            transparent 50%),
        rgba(255, 255, 255, 0.025);

}

.reward-card--featured .reward-card__icon {
    color: var(--gold);

    background: rgba(201, 168, 76, 0.10);

}

.reward-card--travel .reward-card__icon {
    color: var(--purple-light);

    background: rgba(91, 155, 213, 0.10);

}

.rewards-disclaimer {
    display: flex;
    align-items: flex-start;

    gap: 12px;

    max-width: 850px;

    margin: 30px auto 0;

    padding: 16px 18px;

    border-radius: 12px;

    background: rgba(255, 255, 255, 0.025);

    border: 1px solid var(--border);

    color: var(--text-muted);

    font-size: 10px;

}

.rewards-disclaimer i {
    margin-top: 3px;

    color: var(--warning);

}

/* =========================================================
TRUST
========================================================= */

.trust {
    background: var(--bg-deep);
}

.trust-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 18px;

}

.trust-card {
    padding: 24px 20px;

    text-align: center;

    border-radius: 18px;

    background: rgba(255, 255, 255, 0.025);

    border: 1px solid var(--border);

}

.trust-card__icon {
    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 14px;

    border-radius: 50%;

    color: var(--blue-light);

    background: rgba(201, 168, 76, 0.09);

}

.trust-card h3 {
    font-size: 16px;
}

.trust-card p {
    max-width: 300px;

    margin: 10px auto 0;

    color: var(--text-muted);

    font-size: 11px;

}

/* =========================================================
FAQ
========================================================= */

.faq {
    background:
        radial-gradient(circle at 50% 18%,
            rgba(201, 168, 76, 0.12),
            transparent 42%),
        var(--bg-deep);
}

.faq__container {
    max-width: 1100px;
}

.faq .section-heading {
    margin-bottom: 48px;
}

.faq-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    column-gap: 18px;
    row-gap: 12px;
}

.faq-list__col {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
}

.faq-item {
    overflow: hidden;
    align-self: start;
    width: 100%;

    border: 1px solid var(--glass-border);

    border-radius: 10px;

    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);

    transition:
        border-color 0.3s ease,
        background 0.4s ease,
        box-shadow 0.3s ease;
}

.faq-item.is-open {
    border-color: var(--border-hover);

    background: rgba(255, 255, 255, 0.045);

    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 16px;

    min-height: 58px;
    padding: 16px 20px;

    cursor: pointer;

    color: rgba(255, 255, 255, 0.92);

    font-size: 14px;
    font-weight: 500;

    list-style: none;

    transition: color 0.25s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary i {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 18px;
    height: 18px;
    flex-shrink: 0;

    color: rgba(255, 255, 255, 0.72);

    background: transparent;

    font-size: 14px;
    font-weight: 400;

    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        color 0.25s ease;
}

.faq-item.is-open summary i {
    transform: rotate(45deg);

    color: var(--gold);
}

.faq-item__body {
    height: 0;
    overflow: hidden;

    opacity: 0;

    transition:
        height 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.3s ease;
}

.faq-item.is-open .faq-item__body {
    opacity: 1;
}

.faq-item__body p {
    padding: 0 20px 18px;

    color: var(--text-muted);

    font-size: 13px;

    line-height: 1.7;
}

@media (prefers-reduced-motion: reduce) {

    .faq-item,
    .faq-item summary i,
    .faq-item__body {
        transition: none;
    }

}

/* =========================================================
TERMS
========================================================= */

.terms {
    padding-top: var(--space-section-tight);
}

.terms-card {
    display: flex;
    align-items: flex-start;


    gap: 18px;

    padding: 24px;

    border-radius: 18px;

    background: rgba(255, 255, 255, 0.025);

    border: 1px solid var(--border);


}

.terms-card__icon {
    width: 52px;
    height: 52px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 13px;

    color: var(--warning);

    background: rgba(245, 185, 66, 0.08);


}

.terms-card__content {
    max-width: 900px;
}

.terms-card h2 {
    font-size: 24px;
}

.terms-card p {
    margin-top: 12px;


    color: var(--text-muted);

    font-size: 11px;

    line-height: 1.7;


}

.terms-card__privacy {
    margin-top: 16px !important;

    padding-top: 14px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.terms-card a {
    color: var(--gold);
}

.qualified__intro a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.terms-links {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 20px;

}

.terms-links a {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    padding: 9px 12px;

    border-radius: 9px;

    color: var(--text);

    background: rgba(255, 255, 255, 0.04);

    border: 1px solid var(--border);

    font-size: 10px;

    transition:
        background 0.25s ease,
        color 0.25s ease;

}

.terms-links a:hover {
    color: var(--blue-light);

    background: rgba(201, 168, 76, 0.07);

}

/* =========================================================
FINAL CTA
========================================================= */

.final-cta {
    position: relative;

    /* Presa aos termos em cima (fecham o mesmo assunto), ritmo cheio embaixo:
       o que vem depois e a divisoria do rodape. */
    padding: var(--space-section-tight) 0 var(--space-section);

    overflow: hidden;

    background:
        radial-gradient(circle at 50% 100%,
            rgba(201, 168, 76, 0.08),
            transparent 40%),
        radial-gradient(circle at 50% 0%,
            rgba(201, 168, 76, 0.12),
            transparent 45%);
}

.final-cta__container {
    position: relative;
    z-index: 2;
}

.final-cta__panel {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;

    padding: clamp(28px, 4vw, 44px) clamp(28px, 4vw, 52px);

    background: rgba(3, 6, 12, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border: 1px solid var(--glass-border);
    border-radius: 28px;

    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);

    overflow: hidden;
    transition: border-color 0.3s ease;
}

.final-cta__panel:hover {
    border-color: var(--border-hover);
}

.final-cta__copy {
    position: relative;
    z-index: 2;

    max-width: 620px;
    text-align: left;
}

.final-cta__copy h2 {
    margin: 0;

    color: var(--white);

    font-size: clamp(26px, 3.4vw, 40px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.final-cta__copy h2 span,
.final-cta__copy h2 em {
    font-style: normal;
    color: var(--gold);
}

.final-cta__copy p {
    max-width: 460px;

    margin: 14px 0 0;

    color: var(--text-secondary);

    font-size: 14px;
    line-height: 1.55;
}

.final-cta__copy .button {
    margin-top: 26px;
}

.final-cta__icon {
    position: relative;
    z-index: 2;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;

    width: clamp(140px, 18vw, 220px);
    height: clamp(118px, 15vw, 186px);

    filter:
        drop-shadow(0 0 12px rgba(201, 168, 76, 0.85))
        drop-shadow(0 0 36px rgba(201, 168, 76, 0.4));
}

.final-cta__icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.final-cta__glow {
    position: absolute;

    right: 8%;
    top: 50%;

    width: 320px;
    height: 220px;

    transform: translateY(-50%);

    background:
        radial-gradient(ellipse,
            rgba(201, 168, 76, 0.18),
            transparent 70%);

    filter: blur(20px);

    pointer-events: none;
}

/* =========================================================
   FOOTER
   ========================================================= */

.footer {
    position: relative;

    margin-top: 100px;

    padding-top: 80px;

    background: #030714;

    border-top: 1px solid var(--border);

    overflow: clip;
}


/* =========================================================
   FOOTER MAIN
   ========================================================= */

.footer__main {
    display: grid;

    grid-template-columns:
        minmax(240px, 1.7fr)
        repeat(2, minmax(120px, 0.75fr))
        minmax(200px, 1.15fr);

    align-items: start;
    column-gap: 40px;
    row-gap: 40px;

    padding-bottom: 64px;
}


/* =========================================================
   BRAND
   ========================================================= */

.footer__brand {
    max-width: 380px;
    min-width: 0;
}

.footer__logo {
    display: inline-flex;
    align-items: center;

    width: fit-content;
    max-width: 100%;

    text-decoration: none;
}

.footer__logo img {
    display: block;

    width: auto;
    height: 34px;

    max-width: min(100%, 360px);

    object-fit: contain;
    object-position: left center;
}

.footer__description {
    max-width: 340px;

    margin: 20px 0 0;

    color: rgba(217, 222, 236, 0.58);

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   FOOTER COLUMNS
   ========================================================= */

.footer__column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 13px;
}

.footer__column h3 {
    margin: 0 0 8px;

    color: var(--white);

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 0.02em;
}

.footer__column a {
    position: relative;

    color: rgba(217, 222, 236, 0.58);

    font-size: 13px;
    font-weight: 500;

    text-decoration: none;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.footer__column a:hover {
    color: var(--white);

    transform: translateX(3px);
}


/* =========================================================
   CTA COLUMN
   ========================================================= */

.footer__column--cta {
    padding-left: 20px;

    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__eyebrow {
    color: var(--blue-light);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.14em;
}

.footer__column--cta h3 {
    max-width: 240px;

    margin: 2px 0 10px;

    font-size: clamp(18px, 1.6vw, 22px);
    line-height: 1.25;
    letter-spacing: -0.02em;
}


/* =========================================================
   FOOTER BUTTON
   ========================================================= */

.footer__button {
    display: inline-flex !important;

    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 44px;

    padding: 11px 18px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;

    color: var(--white) !important;

    background: rgba(255, 255, 255, 0.05);

    font-size: 12px !important;
    font-weight: 600 !important;

    transform: none !important;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.footer__button span {
    font-size: 15px;

    transition: transform 0.25s ease;
}

.footer__button:hover {
    background: rgba(255, 255, 255, 0.09);

    border-color: rgba(255, 255, 255, 0.2);

    transform: translateY(-2px) !important;
}

.footer__button:hover span {
    transform: translate(2px, -2px);
}


/* =========================================================
   FOOTER BOTTOM
   ========================================================= */

.footer__bottom {
    min-height: 72px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;

    gap: 12px 20px;

    padding-block: 22px;

    border-top: 1px solid rgba(255, 255, 255, 0.07);

    color: rgba(217, 222, 236, 0.38);

    font-size: 11px;
    line-height: 1.5;
}

.footer__bottom span {
    min-width: 0;
}