/* =========================================
   REVIO — Landing OAB/SC
   Paleta: roxo profundo + magenta + ciano REVIO
   ========================================= */

:root {
    /* Backgrounds */
    --bg:           #08050f;
    --bg-deep:      #0d0817;
    --bg-elev:      #14102a;
    --bg-elev-2:    #1c1638;
    --bg-card:      #15102e;

    /* Borders */
    --border:       #2a2150;
    --border-strong:#3d3170;

    /* Text */
    --text:         #ffffff;
    --text-muted:   #c9c3e0;
    --text-dim:     #7a719c;

    /* REVIO brand */
    --magenta:      #d63384;
    --magenta-soft: #e8478a;
    --magenta-deep: #a82568;
    --cyan:         #4ad7d4;
    --cyan-soft:    #6fe3e0;
    --purple:       #5b3aa6;
    --purple-soft:  #7d57d4;

    /* Status */
    --danger:       #ff5577;
    --success:      #5dd9a5;

    /* Fontes */
    --font-display: 'Sora', 'Segoe UI', system-ui, sans-serif;
    --font-body:    'Manrope', 'Segoe UI', system-ui, sans-serif;
    --font-mono:    'JetBrains Mono', 'Courier New', monospace;

    --radius:       16px;
    --radius-sm:    10px;
    --radius-pill:  100px;
    --max-w:        1200px;

    --ease:         cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
}

body {
    overflow-x: hidden;
    background:
        radial-gradient(ellipse at top right, rgba(214, 51, 132, .08), transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(74, 215, 212, .05), transparent 50%),
        var(--bg);
}

a {
    color: var(--magenta-soft);
    text-decoration: none;
    transition: color .2s var(--ease);
}

a:hover { color: var(--cyan); }

::selection {
    background: var(--magenta);
    color: var(--text);
}

/* =========================================
   LOGO REVIO (SVG inline)
   ========================================= */

.revio-logo {
    height: 28px;
    width: auto;
    display: block;
}

/* =========================================
   HERO
   ========================================= */

.hero {
    position: relative;
    min-height: 100vh;
    padding: 28px 6vw 80px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero__grain {
    position: absolute;
    inset: 0;
    opacity: .03;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .5;
    animation: glow 14s ease-in-out infinite alternate;
}

.hero__glow--1 {
    width: 520px; height: 520px;
    background: radial-gradient(circle, var(--magenta) 0%, transparent 65%);
    top: -150px; right: -100px;
}

.hero__glow--2 {
    width: 420px; height: 420px;
    background: radial-gradient(circle, var(--purple) 0%, transparent 70%);
    bottom: -180px; left: -100px;
    animation-delay: -5s;
}

.hero__glow--3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, var(--cyan) 0%, transparent 70%);
    top: 40%; right: 20%;
    opacity: .15;
    animation-delay: -3s;
}

/* grid lines decorativo */
.hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

@keyframes glow {
    0%   { transform: translate(0, 0) scale(1); opacity: .4; }
    100% { transform: translate(30px, -20px) scale(1.15); opacity: .6; }
}

/* TOPBAR */
.topbar {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    max-width: var(--max-w);
    width: 100%;
    padding-bottom: 80px;
}

.topbar__brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.topbar__divider {
    width: 1px;
    height: 22px;
    background: var(--border-strong);
}

.topbar__tagline {
    font-size: 12px;
    color: var(--text-dim);
    letter-spacing: .02em;
}

.topbar__patrocinio {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(214, 51, 132, .12);
    border: 1px solid rgba(214, 51, 132, .3);
    color: var(--magenta-soft);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.topbar__patrocinio::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--magenta-soft);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--magenta);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .6; transform: scale(.85); }
}

/* HERO INNER */
.hero__inner {
    position: relative;
    z-index: 2;
    margin: auto auto 0;
    max-width: var(--max-w);
    width: 100%;
    display: grid;
    grid-template-columns: 1.5fr .8fr;
    gap: 80px;
    align-items: end;
}

.eyebrow {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .25em;
    color: var(--magenta-soft);
    text-transform: uppercase;
    margin: 0 0 20px 0;
    font-weight: 600;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(44px, 7.5vw, 92px);
    line-height: .98;
    font-weight: 700;
    margin: 0 0 32px 0;
    letter-spacing: -0.03em;
}

.hero__title span {
    display: block;
}

.hero__title .accent {
    background: linear-gradient(135deg, var(--magenta) 0%, var(--cyan) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.hero__title .light {
    font-weight: 300;
    color: var(--text-muted);
}

.hero__lede {
    font-size: clamp(16px, 1.4vw, 19px);
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 0 40px 0;
    line-height: 1.6;
}

.hero__cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero__right {
    display: flex;
    justify-content: flex-end;
}

.card-stat {
    border: 1px solid var(--border);
    background: linear-gradient(135deg, rgba(214, 51, 132, .08) 0%, rgba(20, 16, 42, .9) 100%);
    backdrop-filter: blur(12px);
    border-radius: var(--radius);
    padding: 32px 36px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 280px;
    position: relative;
    overflow: hidden;
}

.card-stat::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--magenta), transparent);
}

.card-stat__label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .25em;
    color: var(--cyan);
    text-transform: uppercase;
    font-weight: 600;
}

.card-stat__value {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -.03em;
    line-height: 1;
}

.card-stat__value strong {
    background: linear-gradient(135deg, var(--magenta) 0%, var(--magenta-soft) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-stat__sub {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.55;
}

/* =========================================
   BUTTONS
   ========================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 28px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .01em;
    border-radius: var(--radius-pill);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all .25s var(--ease);
    text-decoration: none;
    line-height: 1;
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: linear-gradient(135deg, var(--magenta) 0%, var(--magenta-soft) 100%);
    color: var(--text);
    box-shadow: 0 4px 20px rgba(214, 51, 132, .35);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(214, 51, 132, .5);
    color: var(--text);
}

.btn--primary:disabled {
    opacity: .6;
    cursor: not-allowed;
    transform: none;
}

.btn--ghost {
    background: rgba(255, 255, 255, .03);
    color: var(--text);
    border-color: var(--border-strong);
    backdrop-filter: blur(8px);
}

.btn--ghost:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    background: rgba(74, 215, 212, .05);
}

.btn--full {
    width: 100%;
    padding: 20px 28px;
    font-size: 15px;
}

.btn--small {
    padding: 10px 18px;
    font-size: 13px;
}

/* =========================================
   SECTIONS GENÉRICAS
   ========================================= */

.section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 60px);
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.025em;
    margin: 0 0 20px 0;
}

.section-title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--magenta) 0%, var(--cyan) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-lede {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 0 48px 0;
    line-height: 1.6;
}

/* =========================================
   ECOSSISTEMA REVIO
   ========================================= */

.ecossistema {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 120px 6vw 80px;
    position: relative;
}

.ecossistema__head {
    text-align: center;
    margin-bottom: 64px;
}

.ecossistema__head .section-lede {
    margin: 0 auto;
}

.produtos__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.produto {
    position: relative;
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(20, 16, 42, .4) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: all .35s var(--ease);
    overflow: hidden;
}

.produto::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    padding: 1px;
    background: linear-gradient(135deg, transparent 40%, var(--produto-accent, var(--magenta)) 100%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity .35s var(--ease);
    pointer-events: none;
}

.produto:hover::before { opacity: 1; }

.produto:hover {
    transform: translateY(-4px);
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(20, 16, 42, .8) 100%);
}

.produto--oraqlo { --produto-accent: var(--purple-soft); }
.produto--coretax { --produto-accent: var(--cyan); }
.produto--academy { --produto-accent: var(--magenta); }

.produto__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--border-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--produto-accent);
}

.produto__nome {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 4px 0;
    letter-spacing: -0.02em;
    color: var(--text);
}

.produto__categoria {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--produto-accent);
    text-transform: uppercase;
    letter-spacing: .15em;
    margin: 0 0 14px 0;
    font-weight: 600;
}

.produto__pitch {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
}

/* =========================================
   VÍDEO INSTITUCIONAL
   ========================================= */

.video-section {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 40px 6vw 80px;
    position: relative;
}

.video-section__head {
    text-align: center;
    margin-bottom: 56px;
}

.video-section__head .section-lede {
    margin: 0 auto;
}

.video-wrap {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
    padding: 6px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--magenta) 0%, var(--purple) 50%, var(--cyan) 100%);
    box-shadow:
        0 0 60px rgba(214, 51, 132, .25),
        0 0 120px rgba(74, 215, 212, .08);
}

.video-frame {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: calc(var(--radius) - 4px);
    overflow: hidden;
    background: #000;
}

.video-frame iframe,
.video-frame > div {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Barra de progresso de visualização */
.video-progress {
    margin-top: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    transition: all .4s var(--ease);
}

.video-progress.is-unlocked {
    border-color: var(--cyan);
    background: rgba(74, 215, 212, .05);
}

.video-progress__head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 13px;
}

.video-progress__icon {
    font-size: 16px;
    transition: transform .4s var(--ease);
}

.video-progress.is-unlocked .video-progress__icon {
    animation: unlockPop .6s var(--ease);
}

@keyframes unlockPop {
    0% { transform: scale(1) rotate(0); }
    40% { transform: scale(1.3) rotate(-10deg); }
    100% { transform: scale(1) rotate(0); }
}

.video-progress__label {
    flex: 1;
    color: var(--text-muted);
}

.video-progress.is-unlocked .video-progress__label {
    color: var(--cyan);
    font-weight: 600;
}

.video-progress__time {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--magenta-soft);
    font-weight: 600;
}

.video-progress.is-unlocked .video-progress__time {
    color: var(--cyan);
}

.video-progress__bar {
    height: 6px;
    background: rgba(255, 255, 255, .06);
    border-radius: 100px;
    overflow: hidden;
    position: relative;
}

.video-progress__fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--magenta) 0%, var(--cyan) 100%);
    border-radius: 100px;
    transition: width .3s linear;
    box-shadow: 0 0 12px rgba(214, 51, 132, .4);
}

.video-progress.is-unlocked .video-progress__fill {
    background: var(--cyan);
    box-shadow: 0 0 16px rgba(74, 215, 212, .5);
}

/* OVERLAY DE BLOQUEIO DO FORM */
.cadastro__form-wrap.is-locked {
    position: relative;
}

.cadastro__form-wrap.is-locked > form {
    filter: blur(4px) brightness(.5);
    pointer-events: none;
    user-select: none;
    transition: filter .5s var(--ease);
}

.cadastro__form-wrap.is-unlocked > form {
    filter: none;
    pointer-events: auto;
    user-select: auto;
    animation: formUnlock .8s var(--ease);
}

@keyframes formUnlock {
    0% { filter: blur(4px) brightness(.5); }
    100% { filter: none; }
}

.form-lock {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background:
        radial-gradient(circle at center, rgba(20, 16, 42, .92) 0%, rgba(8, 5, 15, .85) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: var(--radius);
    z-index: 5;
    padding: 32px;
    transition: opacity .5s var(--ease), visibility .5s;
}

.cadastro__form-wrap.is-unlocked .form-lock {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.form-lock__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(214, 51, 132, .12);
    border: 1px solid var(--magenta);
    color: var(--magenta-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.form-lock__title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: var(--text);
    letter-spacing: -0.02em;
}

.form-lock__msg {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 28px 0;
}

.form-lock__msg strong {
    color: var(--magenta-soft);
}

.form-lock__msg #formLockCount {
    display: inline-block;
    margin-top: 4px;
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--cyan);
}

.form-lock__cta {
    min-width: 200px;
}

/* =========================================
   PRÊMIOS
   ========================================= */

.premios {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 80px 6vw;
    position: relative;
}

.premios__head {
    margin-bottom: 56px;
    text-align: center;
}

.premios__head .section-lede {
    margin: 0 auto;
}

.premios__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.premio {
    position: relative;
    border: 1px solid var(--border);
    background:
        radial-gradient(circle at top right, rgba(214, 51, 132, .12), transparent 65%),
        linear-gradient(180deg, var(--bg-card) 0%, rgba(20, 16, 42, .5) 100%);
    border-radius: var(--radius);
    padding: 40px;
    transition: all .4s var(--ease);
    overflow: hidden;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.premio:hover {
    border-color: var(--magenta);
    transform: translateY(-4px);
    box-shadow:
        0 16px 50px rgba(214, 51, 132, .18),
        0 0 0 1px rgba(214, 51, 132, .2);
}

.premio__content {
    position: relative;
    z-index: 2;
}

.premio__num {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--magenta-soft);
    letter-spacing: .25em;
    margin-bottom: 16px;
    font-weight: 600;
}

.premio__nome {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 12px 0;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--text);
}

.premio__desc {
    color: var(--text-muted);
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0;
    max-width: 100%;
}

/* IMAGEM DO PRÊMIO — bloco branco como num catálogo, com glow REVIO ao redor */
.premio__image {
    position: relative;
    margin-top: auto;
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    box-shadow:
        0 8px 32px rgba(214, 51, 132, .15),
        0 0 0 1px rgba(214, 51, 132, .1);
    transition: all .4s var(--ease);
}

.premio__image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 60%, rgba(74, 215, 212, .08) 100%);
    pointer-events: none;
    z-index: 2;
}

.premio__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 16px;
    transition: transform .6s var(--ease);
}

.premio:hover .premio__image {
    box-shadow:
        0 16px 48px rgba(214, 51, 132, .3),
        0 0 0 1px rgba(214, 51, 132, .25);
}

.premio:hover .premio__image img {
    transform: scale(1.06);
}

/* =========================================
   FORMULÁRIO CADASTRO
   ========================================= */

.cadastro {
    max-width: 920px;
    margin: 0 auto;
    padding: 80px 6vw 120px;
    position: relative;
}

.cadastro__head {
    text-align: center;
    margin-bottom: 48px;
}

.cadastro__head .section-lede {
    margin: 0 auto;
}

.cadastro__form-wrap {
    background:
        radial-gradient(circle at top right, rgba(214, 51, 132, .08), transparent 60%),
        var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 48px;
    position: relative;
}

.cadastro__form-wrap::before {
    content: '';
    position: absolute;
    top: 0; left: 24px; right: 24px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--magenta), var(--cyan), transparent);
    opacity: .6;
}

.formx {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.formx__summary {
    color: var(--danger);
    font-size: 14px;
}

.formx__summary:empty { display: none; }

.formx__row {
    display: grid;
    gap: 20px;
}

.formx__row--2 { grid-template-columns: 1fr 1fr; }
.formx__row--3 { grid-template-columns: 1fr 80px 1.5fr; }

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

.field label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .15em;
    color: var(--text-dim);
    text-transform: uppercase;
    font-weight: 600;
}

.field input,
.field select {
    background: rgba(8, 5, 15, .6);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm);
    padding: 15px 18px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 15px;
    transition: all .2s var(--ease);
    width: 100%;
    outline: none;
}

.field input::placeholder {
    color: var(--text-dim);
    opacity: .5;
}

.field input:focus,
.field select:focus {
    border-color: var(--magenta);
    background: rgba(8, 5, 15, .9);
    box-shadow: 0 0 0 4px rgba(214, 51, 132, .12);
}

.field select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path d='M2 4l4 4 4-4' stroke='%23d63384' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 44px;
}

.field option {
    background: var(--bg-card);
    color: var(--text);
}

.field__error {
    color: var(--danger);
    font-size: 12px;
    font-family: var(--font-mono);
    letter-spacing: .02em;
}

.field__error:empty { display: none; }

/* CHECKBOXES */
.formx__checks {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 24px 0 4px;
    border-top: 1px solid var(--border);
    margin-top: 8px;
}

.check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

.check input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.check__box {
    width: 20px;
    height: 20px;
    border: 1.5px solid var(--border-strong);
    border-radius: 5px;
    flex-shrink: 0;
    margin-top: 1px;
    transition: all .2s var(--ease);
    position: relative;
    background: rgba(8, 5, 15, .4);
}

.check input:checked + .check__box {
    background: var(--magenta);
    border-color: var(--magenta);
}

.check input:checked + .check__box::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 7px;
    height: 12px;
    border: solid var(--text);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.check:hover .check__box {
    border-color: var(--magenta);
}

.formx__hint {
    text-align: center;
    font-size: 12px;
    color: var(--text-dim);
    margin: 12px 0 0 0;
}

.htmx-indicator { display: none; }
.htmx-request .htmx-indicator { display: inline-flex; }
.htmx-request .btn__label { opacity: .5; }

/* =========================================
   SUCESSO
   ========================================= */

.sucesso {
    text-align: center;
    padding: 20px 0;
}

.sucesso__check {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    color: var(--cyan);
    background: rgba(74, 215, 212, .1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
}

.sucesso__title {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 600;
    margin: 0 0 28px 0;
    color: var(--text-muted);
    letter-spacing: -0.02em;
}

.sucesso__numero {
    display: inline-block;
    position: relative;
    padding: 28px 64px;
    margin: 0 0 32px 0;
    background:
        linear-gradient(135deg, rgba(214, 51, 132, .08) 0%, rgba(74, 215, 212, .04) 100%);
    border: 1px solid var(--magenta);
    border-radius: var(--radius);
}

.sucesso__numero::before,
.sucesso__numero::after {
    content: '';
    position: absolute;
    width: 28px;
    height: 28px;
    border-color: var(--magenta);
    border-style: solid;
}

.sucesso__numero::before {
    top: -2px; left: -2px;
    border-width: 2px 0 0 2px;
    border-top-left-radius: var(--radius);
}

.sucesso__numero::after {
    bottom: -2px; right: -2px;
    border-width: 0 2px 2px 0;
    border-bottom-right-radius: var(--radius);
}

.sucesso__numero span {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 700;
    letter-spacing: .1em;
    background: linear-gradient(135deg, var(--magenta) 0%, var(--cyan) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sucesso__msg {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 32px 0;
}

.sucesso__msg strong { color: var(--text); }

.sucesso__regulamento {
    background: rgba(8, 5, 15, .6);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 24px;
    text-align: left;
    margin-top: 32px;
}

.sucesso__regulamento p {
    color: var(--text-dim);
    font-size: 13px;
    line-height: 1.65;
    margin: 0;
}

.sucesso__regulamento strong { color: var(--text-muted); }

/* =========================================
   REGULAMENTO
   ========================================= */

.regulamento {
    max-width: 760px;
    margin: 0 auto;
    padding: 80px 6vw 120px;
}

.prose {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
}

.prose h3 {
    color: var(--text);
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    margin: 40px 0 12px 0;
    letter-spacing: -0.01em;
}

.prose strong { color: var(--text); }

.prose ol, .prose ul { padding-left: 20px; }
.prose li { margin-bottom: 8px; }

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

.footer {
    border-top: 1px solid var(--border);
    padding: 40px 6vw;
    background: rgba(8, 5, 15, .5);
}

.footer__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer__brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer__small {
    font-size: 13px;
    color: var(--text-dim);
    margin: 0;
}

.footer__legal {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--text-dim);
}

/* =========================================
   ADMIN
   ========================================= */

.admin {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 4vw;
}

.admin__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.admin__head .section-title {
    font-size: 36px;
    margin-bottom: 0;
}

.admin__actions {
    display: flex;
    gap: 12px;
}

.admin__table-wrap {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.admin__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.admin__table th {
    text-align: left;
    padding: 16px 18px;
    background: var(--bg-card);
    color: var(--magenta-soft);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--border);
    font-weight: 600;
}

.admin__table td {
    padding: 14px 18px;
    border-bottom: 1px solid var(--border);
    color: var(--text-muted);
}

.admin__table td.num {
    font-family: var(--font-mono);
    color: var(--cyan);
    font-weight: 600;
}

.admin__table tr:hover {
    background: rgba(214, 51, 132, .04);
}

.admin__panel {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    margin-top: 24px;
}

.admin__panel--gold {
    border-color: var(--magenta);
    background:
        radial-gradient(circle at top right, rgba(214, 51, 132, .12), transparent 60%),
        var(--bg-card);
}

.admin__panel h3 {
    margin-top: 0;
    font-family: var(--font-display);
    font-weight: 600;
}

.admin__kv {
    width: 100%;
    margin-top: 16px;
}

.admin__kv td {
    padding: 8px 0;
    color: var(--text-muted);
    font-size: 15px;
}

.admin__kv td:first-child {
    width: 140px;
    color: var(--text-dim);
    font-family: var(--font-mono);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .1em;
}

/* =========================================
   ANIMAÇÕES
   ========================================= */

.reveal {
    opacity: 0;
    transform: translateY(24px);
    animation: revealUp .9s var(--ease) forwards;
    animation-delay: var(--d, 0s);
}

@keyframes revealUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.eyebrow--reveal {
    opacity: 0;
    animation: fade .6s var(--ease) .05s forwards;
}

@keyframes fade {
    to { opacity: 1; }
}

/* =========================================
   RESPONSIVO
   ========================================= */

@media (max-width: 960px) {
    .hero__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .hero__right {
        justify-content: flex-start;
    }
    .topbar {
        padding-bottom: 60px;
    }
    .produtos__grid {
        grid-template-columns: 1fr;
    }
    .premios__grid {
        grid-template-columns: 1fr;
    }
    .cadastro__form-wrap {
        padding: 32px 24px;
    }
    .formx__row--2,
    .formx__row--3 {
        grid-template-columns: 1fr;
    }
    .footer__inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 20px 5vw 60px;
        min-height: auto;
    }
    .topbar {
        padding-bottom: 40px;
        gap: 12px;
    }
    .topbar__patrocinio {
        font-size: 10px;
        padding: 5px 12px;
    }
    .hero__title {
        font-size: clamp(36px, 11vw, 54px);
    }
    .premios, .ecossistema, .video-section {
        padding: 60px 5vw;
    }
    .video-wrap {
        padding: 3px;
        box-shadow: 0 0 30px rgba(214, 51, 132, .2);
    }
    .cadastro {
        padding: 40px 5vw 80px;
    }
    .form-lock {
        padding: 24px 16px;
    }
    .form-lock__title {
        font-size: 20px;
    }
    .form-lock__msg {
        font-size: 14px;
    }
    .sucesso__numero {
        padding: 22px 36px;
    }
    .sucesso__numero span {
        font-size: 42px;
    }
    .card-stat {
        min-width: 0;
        width: 100%;
    }
    .premio {
        padding: 32px 24px;
        min-height: 340px;
    }
    .premio__nome {
        font-size: 26px;
    }
    .premio__desc {
        max-width: 100%;
    }
    .premio__image {
        aspect-ratio: 4 / 3;
    }
}

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