/* ===========================================================================
   O SITE PUBLICO — landing, criar conta, entrar, entrar no admin
   23/08/2026

   O DESENHO E DO DONO. Ele montou as quatro telas num projeto proprio
   (Next.js/React) e mandou o pacote: *"quero esse layout no nosso projeto,
   implementar um no outro"*. O original esta em `scratchpad/dele/`.

   O QUE VEIO DE LA: esta folha, quase inteira. Por baixo do React a marcacao
   dele e HTML comum e o CSS e escrito a mao — nao ha utilitario de Tailwind
   na marcacao (conferido antes de trazer), entao o `@import "tailwindcss"`
   saiu sem levar nada junto.

   O QUE NAO VEIO, e cada um por um motivo:

   1. **A PILHA.** Next.js, React, Vite, Drizzle: 506 pacotes e um runtime de
      Node ao lado do Flask. Trouxemos o DESENHO, nao o projeto.
   2. **A FONTE.** A folha dele pede `Inter`, mas o projeto nunca a carrega —
      sem `@font-face`, sem `next/font`, sem Google Fonts. O que ele aprovou
      renderizou na fonte do sistema. Aqui entra a DM Sans, que a casa ja
      auto-hospeda com a licenca resolvida.
   3. **OS FORMULARIOS DELE.** Nao havia nenhum: as quatro telas tinham ZERO
      `<form>`, os campos eram decorativos e o botao "Entrar" era um link para
      a nossa tela real. Quem digitasse a senha ali perdia o que digitou. Aqui
      eles sao formularios de verdade, com CSRF, validacao e o freio de
      tentativa que ja existia.
   4. **OS NUMEROS INVENTADOS.** "720 nota TRI", "+48 pontos", "516,2",
      "25 acertos" e "90 questoes por dia" — este ultimo errado tambem de fato
      (o ENEM 2014 tem 78 no dia 1 e 70 no dia 2). Ordem do dono, no mesmo dia:
      *"sem inventar dados"*. O que sobrou ou e real ou saiu.
   =========================================================================== */

@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  /* Caminho RELATIVO a esta folha (`/static/css/`), e nao `url_for`: CSS nao
     passa pelo Jinja, entao o versionador de estatico nao o alcanca. */
  src: url("../fontes/dm-sans-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fontes/dm-sans-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7,
                 U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F,
                 U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113,
                 U+2C60-2C7F, U+A720-A7FF;
}


:root {
  --navy: #070f1f;
  --navy-2: #101d32;
  --ink: #0b1628;
  --blue: #ff884c;
  --cyan: #35d2a4;
  --lime: #ff884c;
  --offwhite: #f2f4f7;
  --line: rgba(255, 255, 255, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--offwhite); color: var(--ink); font-family: "DM Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
svg { display: block; }
.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }

.hero-shell { position: relative; min-height: 760px; overflow: hidden; background: radial-gradient(circle at 72% 48%, rgba(255,136,76,.14), transparent 30%), radial-gradient(circle at 86% 24%, rgba(53,210,164,.11), transparent 24%), linear-gradient(118deg, #070f1f 0%, #0b1628 58%, #07101f 100%); color: white; }
.hero-shell::before { content: ""; position: absolute; inset: 0; opacity: .08; background-image: linear-gradient(rgba(255,255,255,.4) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.4) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(to bottom, transparent 0%, black 35%, transparent 100%); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(8px); pointer-events: none; }
.hero-glow-one { width: 360px; height: 360px; right: -190px; top: 80px; background: rgba(33,217,234,.12); }
.hero-glow-two { width: 200px; height: 200px; left: -100px; bottom: 90px; background: rgba(200,243,106,.10); }
.site-nav { position: relative; z-index: 10; width: min(1180px, calc(100% - 48px)); height: 90px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.brand { display: inline-flex; align-items: center; gap: 0; }
/* SEM FUNDO E SEM SOMBRA. Ordem do dono em 24/08/2026: "tirar o fundo dele, ja
   transparente. Ele esta com um fundo meio que azul, da discrepancia". O azul
   vinha de dois lugares ao mesmo tempo — de dentro do arquivo, que nascia RGB
   com #000F2C chapado, e desta regra. Tirar so um dos dois nao resolvia: o
   arquivo ficaria com o retangulo, ou a regra pintaria um retangulo novo.
   `border-radius` e `box-shadow` sairam junto porque so existiam para dar
   acabamento AO retangulo; sobre uma marca vazada, a sombra desenharia um
   quadrado fantasma em volta do nada. */
.brand-image { width: 232px; height: auto; aspect-ratio: 3 / 1; display: block; object-fit: contain; background: transparent; }
.brand-mark { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px 13px 13px 4px; color: var(--navy); font-weight: 950; font-size: 23px; transform: rotate(-7deg); background: linear-gradient(145deg, var(--lime), var(--cyan)); box-shadow: 0 10px 30px rgba(33,217,234,.25); }
.brand-mark span { transform: rotate(7deg); }
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font-size: 18px; letter-spacing: .07em; }
.brand-copy small { margin-top: 5px; color: var(--cyan); font-size: 9px; letter-spacing: .38em; }
.nav-links { display: flex; gap: 34px; color: rgba(255,255,255,.72); font-size: 14px; font-weight: 650; }
.nav-links a, .nav-login { transition: color .2s ease; }
.nav-links a:hover, .nav-login:hover { color: var(--lime); }
.nav-actions { display: flex; align-items: center; gap: 22px; }
.nav-login { color: rgba(255,255,255,.82); font-size: 14px; font-weight: 700; }
.button { min-height: 55px; padding: 0 25px; border-radius: 13px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-size: 15px; font-weight: 850; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button svg { width: 20px; height: 20px; }
.button:hover { transform: translateY(-2px); }
.button-lime { color: #0b2142; background: var(--lime); box-shadow: 0 13px 35px rgba(200,243,106,.18); }
.button-lime:hover { box-shadow: 0 16px 40px rgba(200,243,106,.32); background: #d4ff76; }
.button-small { min-height: 42px; padding-inline: 18px; border-radius: 11px; font-size: 13px; }

.hero { position: relative; z-index: 2; min-height: 590px; display: grid; grid-template-columns: 1.02fr .98fr; gap: 54px; align-items: center; padding: 72px 0 54px; }
.hero-copy { padding-bottom: 18px; }
.hero h1 { max-width: 660px; margin: 0; font-size: clamp(48px, 5.3vw, 77px); line-height: .98; letter-spacing: -.055em; font-weight: 900; }
.hero h1 em { display: block; color: var(--cyan); font-style: normal; }
.hero-copy > p { max-width: 610px; margin: 27px 0 30px; color: rgba(255,255,255,.72); font-size: 18px; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 26px; }
.text-link { font-size: 14px; font-weight: 750; color: rgba(255,255,255,.86); }
.text-link span { margin-left: 6px; color: var(--cyan); }
.hero-trust { display: flex; gap: 34px; margin-top: 42px; padding-top: 26px; border-top: 1px solid var(--line); }
.hero-trust div { display: grid; gap: 4px; }
.hero-trust strong { color: white; font-size: 22px; letter-spacing: -.03em; }
.hero-trust span { color: rgba(255,255,255,.5); font-size: 11px; text-transform: uppercase; letter-spacing: .06em; }

.hero-visual { position: relative; min-width: 0; }
.hero-platform-frame { position: relative; width: min(100%, 560px); height: 525px; margin-left: auto; padding: 13px; border: 1px solid rgba(255,255,255,.16); border-radius: 25px; background: #0e1a2d; box-shadow: 0 42px 100px rgba(0,0,0,.42); transform: perspective(1200px) rotateY(-3deg) rotateX(1deg); }
.hero-platform-frame::before { content: ""; position: absolute; z-index: -1; inset: 28px -25px -22px 36px; border: 1px solid rgba(255,136,76,.24); border-radius: 27px; background: rgba(255,136,76,.035); transform: rotate(2deg); }
.platform-window-bar { height: 38px; display: flex; align-items: center; gap: 7px; padding: 0 8px 10px; color: #7f8da6; font-size: 8px; }
.platform-window-bar > span { width: 8px; height: 8px; border-radius: 50%; background: #ff6a5d; }
.platform-window-bar > span:nth-child(2) { background: #ffb54a; }
.platform-window-bar > span:nth-child(3) { background: #35d2a4; }
.platform-window-bar strong { margin-left: 8px; color: #b6c0d1; font-size: 9px; letter-spacing: .04em; }
.platform-window-bar em { margin-left: auto; color: #35d2a4; font-size: 7px; font-style: normal; text-transform: uppercase; letter-spacing: .08em; }
.platform-shot { position: relative; height: calc(100% - 38px); overflow: hidden; border: 1px solid #26344b; border-radius: 16px; background: #070d19; }
.platform-shot img { position: absolute; width: 100%; height: auto; left: 0; top: 0; display: block; transform: translateY(-17.9%); }
.platform-shot::after { content: ""; position: absolute; inset: 0; pointer-events: none; box-shadow: inset 0 0 45px rgba(3,9,20,.3); }
.platform-badge { position: absolute; z-index: 3; display: flex; align-items: center; gap: 10px; padding: 12px 15px; border: 1px solid rgba(255,255,255,.42); border-radius: 14px; color: #eef3f9; background: rgba(13,26,45,.92); backdrop-filter: blur(14px); box-shadow: 0 20px 48px rgba(0,0,0,.36); }
.platform-badge > span { width: 31px; height: 31px; display: grid; place-items: center; border-radius: 9px; font-weight: 900; }
.platform-badge > div { display: grid; gap: 2px; }
.platform-badge small { color: #7e8ca4; font-size: 8px; }
.platform-badge strong { font-size: 10px; }
.platform-badge-orange { left: -24px; bottom: 84px; }
.platform-badge-orange > span { color: #1a2231; background: #ff884c; }
.platform-badge-green { right: -22px; top: 94px; }
.platform-badge-green > span { color: #0e2a24; background: #35d2a4; }
.hero-photo-frame { position: relative; width: min(100%, 505px); height: 560px; margin-left: auto; overflow: visible; border: 1px solid rgba(255,255,255,.18); border-radius: 36px; background: #07152f; box-shadow: 0 42px 100px rgba(0,0,0,.36); }
.hero-photo-frame::before { content: ""; position: absolute; z-index: -1; inset: -24px 26px 24px -20px; border: 1px solid rgba(33,217,234,.22); border-radius: 42px; background: rgba(33,217,234,.04); transform: rotate(-3deg); }
.hero-photo-frame img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: 60% center; border-radius: inherit; }
.hero-photo-shade { position: absolute; inset: 0; border-radius: inherit; background: linear-gradient(180deg, transparent 38%, rgba(4,15,37,.78) 100%); pointer-events: none; }
.photo-status { position: absolute; z-index: 2; border: 1px solid rgba(255,255,255,.44); border-radius: 16px; color: #102345; background: rgba(255,255,255,.93); backdrop-filter: blur(14px); box-shadow: 0 20px 45px rgba(0,0,0,.28); }
.photo-status-score { left: -26px; top: 54px; width: 150px; display: grid; padding: 16px 18px; }
.photo-status-score small { color: #73809a; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.photo-status-score strong { margin: 4px 0 2px; color: #395dde; font-size: 37px; line-height: 1; letter-spacing: -.06em; }
.photo-status-score span { color: #648235; font-size: 9px; font-weight: 850; }
.photo-status-time, .photo-status-saved { display: flex; align-items: center; gap: 10px; padding: 12px 14px; }
.photo-status-time { right: -22px; bottom: 108px; }
.photo-status-saved { left: 28px; bottom: 22px; }
.photo-status-time > span, .photo-status-saved > span { width: 31px; height: 31px; display: grid; place-items: center; border-radius: 9px; color: #4566e2; background: #e8edff; font-weight: 900; }
.photo-status-saved > span { color: #137b67; background: #dff8f1; }
.photo-status div { display: grid; gap: 2px; }
.photo-status div small { color: #7d879c; font-size: 8px; }
.photo-status div strong { color: #1a2b49; font-size: 11px; }
.visual-stage { position: relative; width: min(100%, 500px); height: 520px; margin-left: auto; border-radius: 44% 44% 28px 28px; background: linear-gradient(155deg, rgba(85,115,255,.32), rgba(33,217,234,.08)); border: 1px solid rgba(255,255,255,.13); }
.stage-grid { position: absolute; inset: 40px 30px 30px; opacity: .13; background-image: linear-gradient(white 1px, transparent 1px), linear-gradient(90deg, white 1px, transparent 1px); background-size: 34px 34px; mask-image: linear-gradient(to bottom, black, transparent); }
.phone-frame { position: absolute; width: 300px; height: 500px; left: 50%; bottom: -10px; transform: translateX(-50%) rotate(2deg); padding: 23px 14px 14px; border: 7px solid #06112a; border-radius: 38px; background: #f6f8fe; box-shadow: 0 38px 90px rgba(0,0,0,.43), inset 0 0 0 1px rgba(255,255,255,.18); }
.phone-speaker { position: absolute; z-index: 2; top: 8px; left: 50%; width: 84px; height: 17px; transform: translateX(-50%); border-radius: 20px; background: #06112a; }
.dashboard-preview { color: #102044; font-size: 11px; }
.preview-topline { height: 52px; display: flex; align-items: center; gap: 8px; font-weight: 850; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: #1cd5b8; box-shadow: 0 0 0 4px rgba(28,213,184,.12); }
.preview-pill { margin-left: auto; padding: 6px 8px; border-radius: 8px; color: #335fe0; background: #e9efff; font-size: 8px; }
.score-card { display: flex; justify-content: space-between; align-items: center; padding: 18px; border-radius: 17px; color: white; background: linear-gradient(135deg, #163d92, #526fff); box-shadow: 0 16px 30px rgba(45,81,190,.2); }
.score-card > div:first-child { display: grid; }
.score-card small { color: rgba(255,255,255,.66); text-transform: uppercase; letter-spacing: .08em; }
.score-card strong { margin-top: 3px; font-size: 35px; line-height: 1; }
.score-up { margin-top: 8px; color: #c8f36a; font-size: 9px; font-weight: 800; }
.score-orbit { width: 75px; height: 75px; display: grid; place-items: center; border: 8px solid rgba(255,255,255,.18); border-top-color: var(--lime); border-right-color: var(--cyan); border-radius: 50%; font-size: 15px; font-weight: 900; }
.preview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin: 10px 0; }
.preview-grid > div { display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto; column-gap: 8px; padding: 12px; border: 1px solid #e5eaf5; border-radius: 13px; background: white; }
.preview-grid strong { align-self: end; font-size: 11px; }
.preview-grid small { color: #8790a7; font-size: 8px; }
.metric-icon { grid-row: 1 / 3; width: 27px; height: 27px; display: grid; place-items: center; border-radius: 8px; font-size: 13px; }
.metric-icon.teal { color: #00a98f; background: #e6fbf7; }
.metric-icon.violet { color: #6754ef; background: #eeebff; }
.skills-card { padding: 15px; border: 1px solid #e5eaf5; border-radius: 14px; background: white; }
.skills-heading { display: flex; justify-content: space-between; margin-bottom: 14px; font-weight: 850; }
.skills-heading small { color: #a1a8ba; font-weight: 600; }
.skill-row { display: grid; grid-template-columns: 63px 1fr 25px; gap: 7px; align-items: center; margin: 10px 0; font-size: 8px; color: #66708a; }
.skill-row i { height: 5px; overflow: hidden; border-radius: 20px; background: #edf0f6; }
.skill-row b { display: block; height: 100%; border-radius: 20px; background: linear-gradient(90deg, #526fff, #21d9ea); }
.skill-row em { font-style: normal; font-weight: 800; color: #34405a; }
.floating-chip { position: absolute; z-index: 3; display: flex; align-items: center; gap: 10px; padding: 11px 14px; border: 1px solid rgba(255,255,255,.52); border-radius: 13px; color: #122345; background: rgba(255,255,255,.92); backdrop-filter: blur(10px); box-shadow: 0 18px 45px rgba(2,10,29,.32); }
.floating-chip > span { width: 31px; height: 31px; display: grid; place-items: center; border-radius: 9px; background: #eef1ff; }
.floating-chip div { display: grid; gap: 2px; }
.floating-chip strong { font-size: 10px; }
.floating-chip small { color: #7c859d; font-size: 8px; }
.chip-ranking { top: 105px; left: -18px; transform: rotate(-3deg); }
.chip-tri { right: -12px; bottom: 72px; transform: rotate(3deg); }
.chip-tri > span { color: #0e8f79; background: #e2faf5; font-weight: 900; }
.visual-stamp { position: absolute; z-index: 4; top: -18px; right: 12px; padding: 12px 17px; border: 1px solid rgba(200,243,106,.5); border-radius: 18px 18px 3px 18px; color: rgba(255,255,255,.72); background: rgba(6,25,54,.84); font-size: 10px; line-height: 1.3; text-transform: uppercase; letter-spacing: .06em; box-shadow: 0 15px 40px rgba(0,0,0,.22); }
.visual-stamp span { color: var(--lime); font-size: 22px; font-weight: 950; letter-spacing: -.04em; }
.hero-proof { position: relative; z-index: 3; min-height: 80px; display: grid; grid-template-columns: 1.3fr repeat(4, 1fr); align-items: center; border-top: 1px solid var(--line); color: rgba(255,255,255,.72); font-size: 11px; text-transform: uppercase; letter-spacing: .065em; }
.hero-proof > span { color: var(--cyan); font-weight: 850; }
.hero-proof div { position: relative; padding-left: 20px; font-weight: 700; }
.hero-proof div::before { content: ""; position: absolute; left: 0; top: 50%; width: 6px; height: 6px; transform: translateY(-50%); border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 5px rgba(200,243,106,.08); }

.access-page { position: relative; min-height: 100vh; overflow: hidden; background: #f2f5fa; }
.access-page::before { content: ""; position: absolute; inset: 0 46% 0 0; background: radial-gradient(circle at 80% 25%, rgba(72,106,235,.32), transparent 34%), linear-gradient(145deg, #061936, #0a2a5b); }
.access-page::after { content: ""; position: absolute; inset: 0 46% 0 0; opacity: .08; background-image: linear-gradient(rgba(255,255,255,.45) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.45) 1px, transparent 1px); background-size: 70px 70px; mask-image: linear-gradient(to bottom, transparent, black 30%, transparent); }
.access-header { position: relative; z-index: 4; width: min(1180px, calc(100% - 48px)); height: 90px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.access-header > div { display: flex; align-items: center; gap: 14px; color: #6b768c; font-size: 12px; }
.access-header > div a { padding: 10px 14px; border: 1px solid #d7deea; border-radius: 10px; color: #27395a; background: white; font-weight: 800; }
.access-shell { position: relative; z-index: 2; width: min(1180px, calc(100% - 48px)); min-height: calc(100vh - 90px); margin: 0 auto; display: grid; grid-template-columns: 1fr .82fr; gap: 100px; align-items: center; padding: 40px 0 80px; }
.access-showcase { color: white; }
.access-kicker { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 20px; color: var(--lime); font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.access-kicker::before { content: ""; width: 18px; height: 2px; background: var(--lime); }
.access-showcase h1 { max-width: 610px; margin: 0; font-size: clamp(50px, 5.8vw, 78px); line-height: .96; letter-spacing: -.06em; }
.access-showcase h1 em { display: block; color: var(--cyan); font-style: normal; }
.access-showcase > p { max-width: 530px; margin: 24px 0 28px; color: rgba(255,255,255,.62); font-size: 16px; line-height: 1.7; }
.login-data-card { width: min(100%, 500px); padding: 19px; border: 1px solid rgba(255,255,255,.15); border-radius: 20px; background: rgba(255,255,255,.07); backdrop-filter: blur(12px); box-shadow: 0 22px 60px rgba(0,0,0,.19); }
.login-data-head { display: flex; justify-content: space-between; color: rgba(255,255,255,.74); font-size: 10px; font-weight: 800; }
.login-data-head small { color: rgba(255,255,255,.35); }
.login-score { display: grid; grid-template-columns: auto 1fr auto; gap: 10px; align-items: end; margin: 20px 0 18px; }
.login-score strong { color: var(--lime); font-size: 50px; line-height: .8; letter-spacing: -.06em; }
.login-score span { color: rgba(255,255,255,.42); font-size: 9px; text-transform: uppercase; }
.login-score em { color: var(--lime); font-size: 9px; font-style: normal; font-weight: 800; }
.login-bars { display: grid; gap: 7px; }
.login-bars i { height: 5px; overflow: hidden; border-radius: 10px; background: rgba(255,255,255,.1); }
.login-bars b { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, #4f70ff, #21d9ea); }
.access-benefits { display: flex; flex-wrap: wrap; gap: 15px 24px; margin: 24px 0 0; padding: 0; color: rgba(255,255,255,.55); list-style: none; font-size: 10px; text-transform: uppercase; letter-spacing: .05em; }
.access-benefits li::first-letter { color: var(--lime); }
.access-card { position: relative; width: 100%; max-width: 480px; justify-self: end; padding: 42px; border: 1px solid #e0e6ef; border-radius: 27px; background: rgba(255,255,255,.95); box-shadow: 0 30px 80px rgba(25,43,76,.13); }
.access-back { display: inline-block; margin-bottom: 30px; color: #71809a; font-size: 11px; font-weight: 750; }
.access-icon { width: 44px; height: 44px; display: grid; place-items: center; margin-bottom: 20px; border-radius: 13px; color: #102343; background: var(--lime); font-size: 23px; font-weight: 900; transform: rotate(-5deg); }
.access-card h2 { margin: 0; color: #10213e; font-size: 34px; letter-spacing: -.045em; }
.access-card > p { margin: 10px 0 26px; color: #778399; font-size: 13px; line-height: 1.55; }
.access-form-preview { display: grid; gap: 17px; }
.access-form-preview > label { display: grid; gap: 8px; color: #33425e; font-size: 11px; font-weight: 800; }
.access-form-preview input[type="email"], .access-form-preview input[type="password"], .access-form-preview input[type="text"], .access-form-preview input[type="date"] { width: 100%; height: 50px; padding: 0 15px; border: 1px solid #d8dfeb; border-radius: 11px; outline: none; color: #192a48; background: #f8fafe; font: inherit; transition: border .2s ease, box-shadow .2s ease; }
.access-form-preview input:focus { border-color: #4f70ef; box-shadow: 0 0 0 4px rgba(79,112,239,.1); }
.access-form-preview input::placeholder { color: #a5adbc; }
.access-form-row { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.access-form-row > a { color: #4664d7; font-size: 10px; font-weight: 800; }
.access-check { display: flex !important; grid-template-columns: auto 1fr; align-items: center; gap: 7px !important; color: #6d788c !important; font-weight: 600 !important; }
.access-check input { accent-color: #4f70ef; }
.access-submit { min-height: 52px; display: flex; align-items: center; justify-content: space-between; padding: 0 18px; border-radius: 12px; color: #102443; background: var(--lime); font-size: 13px; font-weight: 900; box-shadow: 0 12px 30px rgba(161,202,64,.18); }
.access-submit:hover { background: #d4ff76; }
.access-submit span { font-size: 18px; }
.access-card .access-secure-note { display: flex; gap: 8px; align-items: center; margin: 18px 0 0; padding: 12px; border-radius: 10px; color: #6d798e; background: #f4f7fb; font-size: 9px; }
.access-secure-note span { color: #2d977f; }
.access-switch { margin-top: 25px; padding-top: 20px; border-top: 1px solid #e4e8f0; color: #7c8799; font-size: 10px; text-align: center; }
.access-switch a { color: #3e5fd8; font-weight: 850; }

.register-shell { grid-template-columns: .82fr 1.18fr; gap: 85px; }
.register-card { max-width: 610px; padding: 38px 42px; }
.register-form { grid-template-columns: 1fr 1fr; gap: 15px; }
.field-wide { grid-column: 1 / -1; }
.signup-proof { width: min(100%, 520px); display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 32px; border: 1px solid rgba(255,255,255,.15); border-radius: 18px; background: rgba(255,255,255,.06); }
.signup-proof div { display: grid; gap: 5px; padding: 19px; border-right: 1px solid rgba(255,255,255,.1); }
.signup-proof div:last-child { border-right: 0; }
.signup-proof strong { color: var(--lime); font-size: 26px; letter-spacing: -.04em; }
.signup-proof span { color: rgba(255,255,255,.4); font-size: 8px; text-transform: uppercase; letter-spacing: .07em; }
.signup-list { display: grid; gap: 13px; margin: 27px 0 0; padding: 0; color: rgba(255,255,255,.58); list-style: none; font-size: 11px; }
.signup-list li { display: flex; align-items: center; gap: 10px; }
.signup-list span { width: 22px; height: 22px; display: grid; place-items: center; border-radius: 7px; color: #163055; background: var(--lime); font-size: 9px; font-weight: 900; }

.access-admin::before { inset: 0 43% 0 0; background: radial-gradient(circle at 73% 24%, rgba(33,217,234,.18), transparent 28%), linear-gradient(145deg, #031127, #071f46); }
.access-admin::after { inset: 0 43% 0 0; }
.admin-shell { grid-template-columns: 1.08fr .82fr; gap: 90px; }
.admin-label { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 22px; padding: 7px 10px; border: 1px solid rgba(200,243,106,.35); border-radius: 999px; color: var(--lime); background: rgba(200,243,106,.06); font-size: 9px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.admin-label::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 4px rgba(200,243,106,.1); }
.admin-showcase h1 em { color: var(--lime); }
.admin-console { width: min(100%, 560px); margin-top: 32px; padding: 20px; border: 1px solid rgba(255,255,255,.14); border-radius: 20px; background: rgba(255,255,255,.065); backdrop-filter: blur(12px); }
.console-top { display: flex; justify-content: space-between; padding-bottom: 15px; border-bottom: 1px solid rgba(255,255,255,.09); color: rgba(255,255,255,.72); font-size: 10px; font-weight: 800; }
.console-top small { color: rgba(255,255,255,.32); }
.console-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 15px; }
.console-grid > div { min-height: 100px; display: grid; align-content: center; gap: 5px; padding: 13px; border-radius: 13px; background: rgba(255,255,255,.055); }
.console-grid small { color: rgba(255,255,255,.37); font-size: 8px; }
.console-grid strong { color: white; font-size: 25px; letter-spacing: -.04em; }
.console-grid span { color: var(--lime); font-size: 7px; }
.console-grid i { height: 4px; overflow: hidden; border-radius: 5px; background: rgba(255,255,255,.1); }
.console-grid b { display: block; width: 76%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--lime), var(--cyan)); }
.admin-security { width: min(100%, 560px); display: flex; gap: 11px; align-items: center; margin-top: 18px; padding: 13px 16px; border: 1px solid rgba(255,255,255,.08); border-radius: 13px; color: var(--lime); }
.admin-security p { display: grid; gap: 3px; margin: 0; }
.admin-security strong { color: rgba(255,255,255,.72); font-size: 9px; }
.admin-security small { color: rgba(255,255,255,.35); font-size: 8px; }
.admin-card { max-width: 500px; }
.admin-lock { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 17px; border: 1px solid #dce2ec; border-radius: 14px; color: #3154cf; background: #edf1ff; font-size: 25px; font-weight: 900; transform: rotate(-4deg); }
.admin-form-label { display: block; margin-bottom: 8px; color: #4966d0; font-size: 9px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.admin-submit { color: white; background: #3155d8; box-shadow: 0 13px 32px rgba(49,85,216,.2); }
.admin-submit:hover { background: #2548c8; }

/* Identidade visual alinhada ao painel real da plataforma */
.access-page { color: #edf2f8; background: #070d19; }
.access-page::before { background: radial-gradient(circle at 74% 24%, rgba(255,136,76,.12), transparent 30%), radial-gradient(circle at 25% 75%, rgba(53,210,164,.09), transparent 26%), linear-gradient(145deg, #0b1526, #070d19); }
.access-page::after { opacity: .05; }
.access-header > div { color: #7f8da6; }
.access-header > div a { color: #eef3f8; border-color: #2b3950; background: #101d32; }
.access-card { color: #eef3f8; border-color: #29374d; background: #101b2e; box-shadow: 0 30px 85px rgba(0,0,0,.32); }
.access-card h2 { color: #f5f7fb; }
.access-card > p { color: #7f8da6; }
.access-back { color: #718099; }
.access-icon { color: #1b2029; background: #ff884c; }
.access-form-preview > label { color: #b7c1d1; }
.access-form-preview input[type="email"], .access-form-preview input[type="password"], .access-form-preview input[type="text"], .access-form-preview input[type="date"] { color: #eef3f8; border-color: #2d3b52; background: #0b1526; }
.access-form-preview input:focus { border-color: #ff884c; box-shadow: 0 0 0 4px rgba(255,136,76,.1); }
.access-form-preview input::placeholder { color: #59677e; }
.access-form-row > a, .access-switch a { color: #ff9d6b; }
.access-check { color: #7f8da6 !important; }
.access-check input { accent-color: #ff884c; }
.access-submit { color: #1a2029; background: #ff884c; box-shadow: 0 12px 30px rgba(255,136,76,.18); }
.access-submit:hover { background: #ff9b68; }
.access-card .access-secure-note { color: #718099; background: #0b1526; }
.access-secure-note span { color: #35d2a4; }
.access-switch { color: #66758d; border-top-color: #29374d; }
.login-data-card { border-color: #2a394f; background: #101d32; }
.login-bars b { background: linear-gradient(90deg, #6fc7ff, #35d2a4); }
.login-score strong, .login-score em { color: #35d2a4; }
.signup-proof { border-color: #2b3a50; background: #101d32; }
.signup-proof div { border-right-color: #29374d; }
.signup-proof strong { color: #ff884c; }
.signup-list span { color: #18212a; background: #35d2a4; }
.access-admin::before { background: radial-gradient(circle at 73% 24%, rgba(255,136,76,.12), transparent 28%), linear-gradient(145deg, #0b1526, #070d19); }
.admin-label { color: #ff9d6b; border-color: rgba(255,136,76,.35); background: rgba(255,136,76,.06); }
.admin-label::before { background: #ff884c; box-shadow: 0 0 0 4px rgba(255,136,76,.1); }
.admin-showcase h1 em { color: #ff884c; }
.admin-console { border-color: #2b3a50; background: #101d32; }
.console-grid span, .admin-security { color: #35d2a4; }
.console-grid b { background: linear-gradient(90deg, #ff884c, #35d2a4); }
.admin-lock { color: #ff884c; border-color: #2f3e55; background: #0b1526; }
.admin-form-label { color: #ff9d6b; }
.admin-submit { color: #1a2029; background: #ff884c; box-shadow: 0 13px 32px rgba(255,136,76,.18); }
.admin-submit:hover { background: #ff9d6b; }

.section-pad { padding: 120px 0; }
.section-heading { max-width: 760px; }
.section-heading > span, .mini-kicker { display: inline-block; margin-bottom: 17px; color: #4469f0; font-size: 11px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.section-heading h2 { margin: 0; color: var(--ink); font-size: clamp(40px, 5vw, 66px); line-height: 1.02; letter-spacing: -.055em; font-weight: 900; }
.section-heading p { max-width: 680px; margin: 22px 0 0; color: #68758e; font-size: 17px; line-height: 1.7; }
.section-heading-light > span { color: var(--lime); }
.section-heading-light h2 { color: white; }
.section-heading-light p { color: rgba(255,255,255,.64); }

.how-section { background: #f5f7fb; }
.how-section .section-heading { margin-bottom: 54px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step-card { position: relative; min-height: 470px; display: flex; flex-direction: column; padding: 28px; overflow: hidden; border-radius: 24px; }
.step-card::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .18; background-image: radial-gradient(circle at 1px 1px, currentColor 1px, transparent 0); background-size: 18px 18px; mask-image: linear-gradient(to bottom, black, transparent 55%); }
.step-number { position: relative; width: fit-content; padding: 8px 10px; border: 1px solid currentColor; border-radius: 999px; font-size: 11px; font-weight: 900; }
.step-visual { position: relative; flex: 1; min-height: 205px; display: grid; place-items: center; }
.step-card h3 { position: relative; margin: 0 0 11px; font-size: 27px; letter-spacing: -.035em; }
.step-card p { position: relative; margin: 0; font-size: 14px; line-height: 1.65; }
.step-dark { color: white; background: #0b1d3f; }
.step-dark p { color: rgba(255,255,255,.64); }
.step-blue { color: white; background: linear-gradient(145deg, #0f3b42, #11735f); }
.step-blue p { color: rgba(255,255,255,.76); }
.step-lime { color: #102344; background: var(--lime); }
.step-lime p { color: #40546c; }
.timer-visual { align-content: center; gap: 12px; }
.timer-visual strong { font-size: 47px; letter-spacing: -.05em; }
.timer-visual i { width: 72%; height: 5px; overflow: hidden; border-radius: 10px; background: rgba(255,255,255,.15); }
.timer-visual b { display: block; width: 61%; height: 100%; border-radius: 10px; background: var(--cyan); }
.timer-visual small { color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .1em; }
.tri-visual { align-content: center; grid-template-columns: auto auto; gap: 4px 12px; }
.tri-visual span { grid-row: 1 / 3; width: 60px; height: 60px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; color: var(--lime); font-weight: 950; }
.tri-visual strong { font-size: 60px; line-height: .9; letter-spacing: -.06em; }
.tri-visual em { color: rgba(255,255,255,.58); font-size: 10px; font-style: normal; text-transform: uppercase; letter-spacing: .08em; }
.route-visual { grid-template-columns: auto 1fr 1fr 1fr auto; align-content: center; gap: 10px; color: #102344; }
.route-visual span, .route-visual strong { padding: 8px 10px; border: 1px solid rgba(16,35,68,.25); border-radius: 999px; font-size: 9px; text-transform: uppercase; }
.route-visual i { position: relative; height: 3px; background: rgba(16,35,68,.22); }
.route-visual i::after { content: ""; position: absolute; right: -3px; top: -3px; width: 9px; height: 9px; border-radius: 50%; background: #4569f1; box-shadow: 0 0 0 4px rgba(69,105,241,.14); }

.tri-section { overflow: hidden; color: white; background: #071a38; }
.tri-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 80px; align-items: center; }
.difference-badge { width: fit-content; display: flex; align-items: center; gap: 16px; margin: 36px 0 28px; padding: 15px 18px; border: 1px solid rgba(200,243,106,.32); border-radius: 17px; background: rgba(200,243,106,.08); }
.difference-badge strong { color: var(--lime); font-size: 32px; letter-spacing: -.04em; }
.difference-badge span { color: rgba(255,255,255,.62); font-size: 10px; line-height: 1.35; text-transform: uppercase; letter-spacing: .08em; }
.tri-note { max-width: 470px; color: rgba(255,255,255,.38); font-size: 11px; line-height: 1.65; }
.comparison-panel { position: relative; display: grid; gap: 15px; }
.comparison-panel::before { content: ""; position: absolute; inset: -100px; background: radial-gradient(circle, rgba(71,104,241,.25), transparent 64%); pointer-events: none; }
.result-card { position: relative; padding: 25px; border: 1px solid rgba(255,255,255,.12); border-radius: 20px; background: rgba(255,255,255,.055); backdrop-filter: blur(10px); }
.result-best { border-color: rgba(200,243,106,.43); background: linear-gradient(100deg, rgba(200,243,106,.1), rgba(255,255,255,.055)); }
.result-title { display: flex; justify-content: space-between; align-items: flex-start; }
.result-title div { display: grid; gap: 5px; }
.result-title span { color: rgba(255,255,255,.55); font-size: 11px; }
.result-title strong { font-size: 18px; }
.result-title em { padding: 6px 9px; border-radius: 999px; color: rgba(255,255,255,.52); background: rgba(255,255,255,.08); font-size: 8px; font-style: normal; text-transform: uppercase; letter-spacing: .08em; }
.result-best .result-title em { color: var(--lime); background: rgba(200,243,106,.12); }
.answer-scale { display: grid; grid-template-columns: repeat(15, 1fr); gap: 5px; margin: 20px 0 8px; }
.answer-scale span { aspect-ratio: 1; border: 1px solid rgba(255,255,255,.13); border-radius: 3px; background: rgba(255,255,255,.04); }
.answer-scale span.hit { border-color: #5d7cff; background: linear-gradient(145deg, #6c86ff, #3c5ee6); box-shadow: 0 3px 10px rgba(52,84,220,.2); }
.result-best .answer-scale span.hit { border-color: #bce859; background: linear-gradient(145deg, #d5ff7d, #9fd92a); }
.difficulty { display: flex; justify-content: space-between; color: rgba(255,255,255,.28); font-size: 8px; text-transform: uppercase; letter-spacing: .1em; }
.result-score { display: flex; align-items: baseline; gap: 10px; margin-top: 17px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.1); }
.result-score small { color: rgba(255,255,255,.38); text-transform: uppercase; letter-spacing: .08em; }
.result-score strong { font-size: 35px; letter-spacing: -.05em; }
.result-score span { margin-left: auto; color: var(--lime); font-size: 9px; font-weight: 800; text-transform: uppercase; }
.result-score .score-muted { color: rgba(255,255,255,.32); }

.features-section { background: #f5f7fb; }
.features-section .section-heading { margin-bottom: 54px; }
.bento-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 20px; }
.feature-card { position: relative; overflow: hidden; padding: 30px; border: 1px solid #dfe5f0; border-radius: 24px; background: white; box-shadow: 0 18px 60px rgba(24,44,83,.06); }
.feature-card h3 { max-width: 490px; margin: 31px 0 10px; color: var(--ink); font-size: 30px; line-height: 1.08; letter-spacing: -.04em; }
.feature-card > p { max-width: 560px; margin: 0; color: #69768e; font-size: 14px; line-height: 1.65; }
.feature-label { display: flex; align-items: center; gap: 8px; color: #7c879d; font-size: 10px; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
.feature-label span { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 8px; color: #171d28; background: #ff884c; }
.feature-report { min-height: 440px; }
.report-demo { margin-top: 34px; padding: 20px; border-radius: 17px; background: #f6f8fc; }
.report-row { display: grid; grid-template-columns: 150px 1fr 34px; gap: 13px; align-items: center; margin: 14px 0; color: #65718b; font-size: 10px; }
.report-row i { height: 7px; overflow: hidden; border-radius: 10px; background: #e4e9f2; }
.report-row b { display: block; height: 100%; border-radius: 10px; background: linear-gradient(90deg, #4f70ff, #21d9ea); }
.report-row strong { color: #263653; font-size: 10px; }
.feature-timer { min-height: 440px; color: white; border-color: transparent; background: #081b3b; }
.feature-timer .feature-label, .feature-timer > p { color: rgba(255,255,255,.55); }
.feature-timer .feature-label span { color: #132442; background: var(--lime); }
.feature-timer h3 { color: white; }
.clock-demo { display: flex; align-items: center; justify-content: center; gap: 8px; margin: 42px 0 34px; }
.clock-demo span { min-width: 70px; padding: 14px 10px; border: 1px solid rgba(255,255,255,.14); border-radius: 13px; text-align: center; color: var(--lime); background: rgba(255,255,255,.06); font-size: 31px; font-weight: 900; }
.clock-demo i { color: rgba(255,255,255,.35); font-style: normal; font-weight: 800; }
.feature-ranking { min-height: 375px; }
.ranking-demo { display: grid; gap: 8px; margin-top: 28px; }
.ranking-demo > div { display: grid; grid-template-columns: 42px 34px 1fr auto; gap: 10px; align-items: center; padding: 11px 13px; border-radius: 12px; color: #65718b; background: #f6f8fc; font-size: 9px; }
.ranking-demo > div > span { font-weight: 850; }
.ranking-demo i { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 9px; color: #4766db; background: #e8edff; font-size: 7px; font-style: normal; font-weight: 850; }
.ranking-demo strong { color: #283752; }
.ranking-demo em { font-style: normal; font-weight: 900; }
.ranking-demo .rank-you { color: white; background: #4f70ef; transform: scale(1.02); box-shadow: 0 12px 30px rgba(52,87,216,.2); }
.ranking-demo .rank-you i { color: #163052; background: var(--lime); }
.ranking-demo .rank-you strong { color: white; }
.feature-save { min-height: 375px; color: white; border-color: transparent; background: linear-gradient(145deg, #0f3a40, #11765f); }
.feature-save .feature-label, .feature-save > p { color: rgba(255,255,255,.67); }
.feature-save .feature-label span { color: #183059; background: white; }
.feature-save h3 { color: white; }
.save-icon { width: 82px; height: 82px; display: grid; place-items: center; margin-top: 38px; border: 1px solid rgba(255,255,255,.25); border-radius: 26px; color: var(--lime); background: rgba(255,255,255,.1); font-size: 36px; font-weight: 900; transform: rotate(-5deg); }

.momentum-section { overflow: hidden; padding: 105px 0; color: white; background: #071a38; }
.momentum-layout { display: grid; grid-template-columns: .95fr 1.05fr; gap: 90px; align-items: center; }
.momentum-photo { position: relative; height: 670px; overflow: visible; }
.momentum-photo::before { content: ""; position: absolute; width: 370px; height: 370px; left: -60px; top: 70px; border: 1px solid rgba(33,217,234,.2); border-radius: 50%; box-shadow: 0 0 0 70px rgba(33,217,234,.025), 0 0 0 140px rgba(33,217,234,.018); }
.momentum-photo img { position: relative; width: 100%; height: 100%; display: block; object-fit: cover; object-position: 55% center; border-radius: 30px; filter: saturate(.9) contrast(1.05); box-shadow: 0 40px 90px rgba(0,0,0,.38); }
.photo-card { position: absolute; right: -35px; bottom: 42px; width: 190px; display: grid; padding: 19px; border: 1px solid #314057; border-radius: 17px; color: #eef3f8; background: rgba(16,29,50,.94); backdrop-filter: blur(12px); box-shadow: 0 20px 50px rgba(0,0,0,.32); }
.photo-card small { color: #7f8da6; font-size: 9px; }
.photo-card strong { margin: 5px 0; color: #ff884c; font-size: 38px; letter-spacing: -.05em; }
.photo-card span { color: #35d2a4; font-size: 9px; font-weight: 800; }
.momentum-copy .mini-kicker { color: var(--lime); }
.momentum-copy h2 { margin: 0; font-size: clamp(44px, 5.3vw, 69px); line-height: 1.02; letter-spacing: -.055em; }
.momentum-copy h2 em { display: block; color: var(--cyan); font-style: normal; }
.momentum-copy > p { max-width: 590px; margin: 24px 0 30px; color: rgba(255,255,255,.62); font-size: 17px; line-height: 1.7; }
.momentum-copy ul { display: grid; gap: 20px; margin: 0 0 34px; padding: 0; list-style: none; }
.momentum-copy li { display: flex; gap: 14px; align-items: flex-start; }
.momentum-copy li > span { width: 28px; height: 28px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 9px; color: #102441; background: var(--lime); font-size: 12px; font-weight: 900; }
.momentum-copy li div { display: grid; gap: 4px; }
.momentum-copy li strong { font-size: 14px; }
.momentum-copy li small { color: rgba(255,255,255,.48); font-size: 12px; line-height: 1.5; }

.exam-section { background: #eef2f8; }
.exam-section .section-heading { margin-bottom: 52px; }
.exam-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.exam-card { position: relative; min-height: 450px; overflow: hidden; padding: 34px; border-radius: 27px; }
.exam-card::before { content: ""; position: absolute; width: 310px; height: 310px; right: -100px; bottom: -150px; border: 55px solid rgba(255,255,255,.08); border-radius: 50%; }
.exam-day-one { color: white; background: linear-gradient(145deg, #101d32, #25334a); border: 1px solid #344159; }
.exam-day-two { color: white; background: linear-gradient(145deg, #102d34, #155244); border: 1px solid rgba(53,210,164,.3); }
.exam-top { position: relative; display: flex; justify-content: space-between; align-items: center; }
.exam-top span { padding: 7px 10px; border: 1px solid currentColor; border-radius: 999px; font-size: 9px; font-weight: 900; letter-spacing: .1em; }
.exam-top strong { font-size: 42px; letter-spacing: -.055em; }
.exam-card h3 { position: relative; max-width: 430px; margin: 65px 0 13px; font-size: 42px; line-height: 1; letter-spacing: -.045em; }
.exam-card > p { position: relative; max-width: 430px; margin: 0; color: inherit; opacity: .67; font-size: 14px; line-height: 1.6; }
.exam-tags { position: relative; display: flex; flex-wrap: wrap; gap: 8px; margin-top: 27px; }
.exam-tags span { padding: 8px 11px; border-radius: 10px; background: rgba(255,255,255,.13); font-size: 9px; font-weight: 750; }
.exam-day-two .exam-tags span { background: rgba(255,255,255,.1); }
.exam-path { position: absolute; left: 34px; right: 34px; bottom: 33px; display: grid; grid-template-columns: repeat(4, 1fr) auto; align-items: center; }
.exam-path i { height: 3px; background: rgba(255,255,255,.25); }
.exam-path i::after { content: ""; display: block; width: 9px; height: 9px; margin-top: -3px; border-radius: 50%; background: var(--lime); }
.exam-path b { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; color: #173158; background: white; font-size: 14px; }
.exam-day-two .exam-path i { background: rgba(255,255,255,.2); }
.exam-day-two .exam-path i::after { background: #35d2a4; }

.faq-section { background: white; }
.faq-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.faq-intro { position: sticky; top: 35px; }
.faq-intro .section-heading h2 { font-size: clamp(39px, 4.5vw, 58px); }
.text-cta { display: inline-block; margin-top: 28px; color: #3e62dc; font-size: 13px; font-weight: 800; }
.faq-list { border-top: 1px solid #ccd4e2; }
.faq-list details { border-bottom: 1px solid #d9dfeb; }
.faq-list summary { min-height: 88px; display: grid; grid-template-columns: 36px 1fr 32px; gap: 12px; align-items: center; cursor: pointer; list-style: none; color: #1b2b49; font-size: 16px; font-weight: 800; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary > span { color: #8994a8; font-size: 10px; }
.faq-list summary i { width: 31px; height: 31px; display: grid; place-items: center; border: 1px solid #d1d8e5; border-radius: 50%; color: #4868df; font-size: 18px; font-style: normal; transition: transform .2s ease; }
.faq-list details[open] summary i { transform: rotate(45deg); color: #172b4b; background: var(--lime); border-color: var(--lime); }
.faq-list details p { margin: -8px 40px 28px 48px; color: #69768d; font-size: 14px; line-height: 1.7; }

.final-cta { position: relative; overflow: hidden; padding: 120px 0; color: white; background: radial-gradient(circle at 82% 22%, rgba(255,136,76,.22), transparent 28%), radial-gradient(circle at 12% 88%, rgba(53,210,164,.14), transparent 24%), linear-gradient(125deg, #101d32, #070f1f 68%, #09172a); }
.final-cta::before { content: ""; position: absolute; inset: 0; opacity: .11; background-image: radial-gradient(circle at 1px 1px, white 1px, transparent 0); background-size: 22px 22px; mask-image: linear-gradient(90deg, black, transparent 70%); }
.cta-orbit { position: absolute; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; }
.orbit-one { width: 550px; height: 550px; right: -160px; top: -180px; box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.018); }
.orbit-two { width: 180px; height: 180px; right: 120px; bottom: -80px; border-color: rgba(200,243,106,.25); }
.final-cta-inner { position: relative; z-index: 2; text-align: center; }
.final-cta .mini-kicker { color: var(--lime); }
.final-cta h2 { margin: 0; font-size: clamp(49px, 7vw, 82px); line-height: .98; letter-spacing: -.06em; }
.final-cta h2 em { color: var(--lime); font-style: normal; }
.final-cta p { margin: 24px 0 31px; color: rgba(255,255,255,.68); font-size: 17px; }
.final-cta-inner > div { display: flex; justify-content: center; gap: 12px; }
.button-outline { color: white; border: 1px solid rgba(255,255,255,.4); background: rgba(255,255,255,.06); }
.button-outline:hover { background: rgba(255,255,255,.12); }

.site-footer { padding: 65px 0 24px; color: white; background: #05142d; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, .6fr); gap: 65px; padding-bottom: 58px; }
.footer-grid > div { display: flex; flex-direction: column; gap: 12px; }
.footer-grid > div:first-child { align-items: flex-start; }
.footer-grid p { max-width: 280px; color: rgba(255,255,255,.45); font-size: 13px; line-height: 1.65; }
.footer-grid > div > strong { margin-bottom: 8px; color: white; font-size: 12px; }
.footer-grid > div > a:not(.brand) { color: rgba(255,255,255,.5); font-size: 12px; transition: color .2s ease; }
.footer-grid > div > a:hover { color: var(--lime); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 23px; border-top: 1px solid rgba(255,255,255,.09); color: rgba(255,255,255,.34); font-size: 10px; }
.mobile-access-bar { display: none; }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 60px; }
  .hero-copy { max-width: 760px; text-align: center; margin: 0 auto; }
  .hero h1 { margin-inline: auto; }
  .hero-copy > p { margin-inline: auto; }
  .hero-actions, .hero-trust { justify-content: center; }
  .hero-visual { width: min(100%, 560px); margin: 10px auto 20px; }
  .hero-platform-frame { margin-inline: auto; }
  .hero-photo-frame { margin-inline: auto; }
  .hero-proof { grid-template-columns: repeat(2, 1fr); gap: 18px; padding: 24px 0; }
  .hero-proof > span { grid-column: 1 / -1; }
  .section-pad { padding: 94px 0; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card { min-height: 390px; }
  .tri-layout, .momentum-layout, .faq-layout { grid-template-columns: 1fr; gap: 55px; }
  .tri-copy { max-width: 720px; }
  .comparison-panel { max-width: 740px; }
  .bento-grid { grid-template-columns: 1fr; }
  .feature-report, .feature-timer, .feature-ranking, .feature-save { min-height: auto; }
  .momentum-photo { width: min(100%, 580px); height: 620px; }
  .momentum-copy { max-width: 720px; }
  .exam-grid { grid-template-columns: 1fr; }
  .faq-intro { position: static; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2; }
  .access-page::before, .access-page::after { inset: 0; }
  .access-header > div { color: rgba(255,255,255,.64); }
  .access-shell { grid-template-columns: 1fr; gap: 55px; padding-top: 55px; }
  .access-showcase { max-width: 720px; }
  .access-card { max-width: 620px; justify-self: start; }
  .register-shell, .admin-shell { grid-template-columns: 1fr; }
  .register-card, .admin-card { max-width: 680px; }
}

@media (max-width: 620px) {
  .container, .site-nav { width: min(100% - 30px, 1180px); }
  .site-nav { height: 76px; }
  .brand-mark { width: 37px; height: 37px; }
  .brand-copy strong { font-size: 15px; }
  .brand-image { width: 175px; height: auto; }
  .nav-actions { gap: 9px; }
  .nav-login { padding: 9px 3px; font-size: 12px; }
  .button-small { min-height: 39px; padding-inline: 14px; }
  .hero { padding-top: 44px; gap: 28px; }
  .hero h1 { font-size: clamp(43px, 14vw, 61px); }
  .hero-copy > p { font-size: 16px; }
  .hero-actions { flex-direction: column; gap: 18px; }
  .hero-actions .button { width: 100%; }
  .hero-trust { gap: 17px; }
  .hero-trust span { font-size: 8px; }
  .hero-photo-frame { height: 510px; }
  .hero-platform-frame { width: 100%; height: 455px; transform: none; }
  .platform-badge-orange { left: -3px; bottom: 54px; }
  .platform-badge-green { right: -3px; top: 79px; }
  .photo-status-score { left: -4px; top: 35px; }
  .photo-status-time { right: -4px; bottom: 104px; }
  .photo-status-saved { left: 14px; }
  .hero-proof { grid-template-columns: 1fr 1fr; font-size: 9px; }
  .section-pad { padding: 75px 0; }
  .section-heading h2 { font-size: 41px; }
  .section-heading p { font-size: 15px; }
  .steps-grid { gap: 14px; }
  .step-card { min-height: 410px; padding: 24px; }
  .timer-visual strong { font-size: 39px; }
  .tri-section { padding-top: 80px; }
  .difference-badge { margin-top: 28px; }
  .result-card { padding: 18px; }
  .answer-scale { grid-template-columns: repeat(9, 1fr); gap: 4px; }
  .result-score strong { font-size: 30px; }
  .feature-card { padding: 24px; border-radius: 20px; }
  .feature-card h3 { font-size: 27px; }
  .report-demo { padding: 15px; }
  .report-row { grid-template-columns: 100px 1fr 30px; gap: 8px; }
  .clock-demo { gap: 5px; }
  .clock-demo span { min-width: 58px; padding-inline: 7px; font-size: 25px; }
  .ranking-demo > div { grid-template-columns: 36px 31px 1fr auto; padding-inline: 8px; gap: 6px; }
  .momentum-section { padding: 75px 0; }
  .momentum-layout { gap: 52px; }
  .momentum-photo { height: 520px; }
  .photo-card { right: -7px; bottom: 20px; }
  .momentum-copy h2 { font-size: 45px; }
  .momentum-copy > p { font-size: 15px; }
  .exam-card { min-height: 430px; padding: 25px; }
  .exam-top strong { font-size: 34px; }
  .exam-card h3 { margin-top: 67px; font-size: 35px; }
  .exam-path { left: 25px; right: 25px; }
  .faq-list summary { min-height: 82px; grid-template-columns: 28px 1fr 31px; font-size: 14px; }
  .faq-list details p { margin-left: 40px; margin-right: 10px; }
  .final-cta { padding: 90px 0 105px; }
  .final-cta h2 { font-size: 50px; }
  .final-cta p { font-size: 15px; }
  .final-cta-inner > div { flex-direction: column; }
  .final-cta .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 24px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .mobile-access-bar { position: fixed; z-index: 50; left: 12px; right: 12px; bottom: 10px; min-height: 54px; padding: 5px; display: grid; grid-template-columns: .8fr 1.2fr; gap: 6px; border: 1px solid rgba(255,255,255,.2); border-radius: 16px; background: rgba(7,22,47,.93); backdrop-filter: blur(14px); box-shadow: 0 15px 40px rgba(6,22,48,.38); }
  .mobile-access-bar a { display: flex; align-items: center; justify-content: center; gap: 7px; border-radius: 11px; font-size: 13px; font-weight: 900; }
  .mobile-access-login { color: white; border: 1px solid rgba(255,255,255,.28); background: rgba(255,255,255,.06); }
  .mobile-access-signup { color: #102441; background: var(--lime); }
  .mobile-access-signup svg { width: 18px; height: 18px; }
  .site-footer { padding-bottom: 85px; }
  .access-header { width: calc(100% - 30px); height: 76px; }
  .access-header > div span { display: none; }
  .access-shell { width: calc(100% - 30px); min-height: calc(100vh - 76px); gap: 42px; padding: 38px 0 65px; }
  .access-showcase h1 { font-size: 50px; }
  .access-showcase > p { font-size: 14px; }
  .login-data-card { padding: 16px; }
  .access-benefits { display: grid; gap: 9px; }
  .access-card { padding: 28px 22px; border-radius: 22px; }
  .access-form-row { align-items: flex-start; flex-direction: column; gap: 10px; }
  .register-form { grid-template-columns: 1fr; }
  .field-wide { grid-column: auto; }
  .signup-proof div { padding: 13px 9px; }
  .signup-proof strong { font-size: 21px; }
  /* ---------------------------------------------------------------
     PISO DE LEGIBILIDADE NO CELULAR — 23/08/2026.

     O desenho e do dono e a tipografia dele fica como esta NO DESKTOP.
     Aqui embaixo e outra coisa: a coluna encolheu para 390px e alguns
     rotulos desceram a 7px, que nao e escolha de desenho, e o que sobra
     de uma medida pensada para 1440px. "DIAS DE PROVA" saia com 7px de
     altura num aparelho segurado a 30cm do olho.

     A REGRA E A MESMA QUE SEPARA AS DUAS METADES DESTA FOLHA: texto que
     esta DENTRO das maquetes de tela (o painel falso do topo, o
     relatorio falso, o console falso do admin) e ILUSTRACAO — encolher e
     o certo, ninguem le aquilo, e um desenho de uma tela. Texto que a
     pessoa precisa LER para usar a plataforma e texto, e tem piso.

     Piso: 11px. Abaixo disso a leitura no celular deixa de ser leitura e
     vira adivinhacao. Nada aqui muda uma medida de desktop. */
  .signup-proof span,
  .access-card .access-secure-note,
  .access-benefits,
  .access-switch,
  .access-form-row > a,
  .admin-label,
  .admin-form-label { font-size: 11px; }
  .signup-proof span,
  .admin-label,
  .admin-form-label { letter-spacing: .04em; }
  .console-grid { grid-template-columns: 1fr; }
  .console-grid > div { min-height: 82px; }
  .admin-console { padding: 15px; }
}

@media (max-width: 380px) {
  .brand-image { width: 145px; height: auto; }
  .nav-actions { gap: 7px; }
  .nav-login { font-size: 11px; }
  .button-small { padding-inline: 11px; font-size: 11px; }
}

@media (hover: hover) {
  .step-card, .feature-card, .exam-card { transition: transform .25s ease, box-shadow .25s ease; }
  .step-card:hover, .feature-card:hover, .exam-card:hover { transform: translateY(-5px); box-shadow: 0 24px 75px rgba(24,44,83,.13); }
}

a:focus-visible, summary:focus-visible { outline: 3px solid var(--cyan); outline-offset: 4px; border-radius: 6px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}


/* ===========================================================================
   O ADAPTADOR — a marcação dele era um MOCKUP, a nossa é um formulário

   No projeto do dono não havia `<form>`: era um `<div class="access-form-
   preview">` com o `<input>` DENTRO do `<label>`, e o botão era um `<a>`. Aqui
   é formulário de verdade, e a marcação muda por três razões que não são
   estéticas:

   1. **`<label for>` e `<input>` como IRMÃOS**, e não aninhados. O WTForms
      emite os dois separados, com `for` e `id` casados — que é a ligação que
      um leitor de tela usa. Aninhar funciona no navegador e perde o `for`.
   2. **A mensagem de erro precisa de lugar.** No mockup não havia erro; aqui
      cada campo pode ter o dele, com `aria-describedby`.
   3. **O botão é `<button>`.** Um `<a>` não envia formulário, não responde ao
      Enter e não pode ser desabilitado.

   Então este bloco leva as regras dele para a NOSSA estrutura. Ele fica no fim
   da folha de propósito: assim o que veio do desenho continua legível como
   veio, e o que é adaptação está num lugar só.
   =========================================================================== */

.access-form { display: grid; gap: 17px; }
.access-form .campo { display: grid; gap: 8px; min-width: 0; }
.access-form .campo > label {
  color: #b7c1d1; font-size: 11px; font-weight: 800;
}
.access-form input[type="email"],
.access-form input[type="password"],
.access-form input[type="text"],
.access-form input[type="date"] {
  width: 100%; height: 50px; padding: 0 15px;
  border: 1px solid #2d3b52; border-radius: 11px; outline: none;
  color: #eef3f8; background: #0b1526; font: inherit;
  transition: border .2s ease, box-shadow .2s ease;
}
.access-form input:focus {
  border-color: #ff884c; box-shadow: 0 0 0 4px rgba(255,136,76,.1);
}
.access-form input::placeholder { color: #59677e; }

/* O CAMPO COM ERRO. A borda rosa não basta sozinha (WCAG 1.4.1): ela vem
   sempre com a mensagem escrita logo abaixo. */
.access-form .campo.tem-erro input { border-color: #ff8fa3; background: rgba(255,143,163,.06); }
.erro-campo { margin: 0; color: #ff8fa3; font-size: 12px; font-weight: 700; line-height: 1.45; }
.dica { margin: 0; color: #7f8da6; font-size: 11.5px; font-weight: 500; line-height: 1.5; }

/* O BOTÃO "Mostrar" que o `senha.js` cria dentro do campo de senha. Alvo de
   toque de 42px dentro de um campo de 50px. */
.campo-senha { position: relative; display: block; }
.campo-senha input { padding-right: 104px !important; }
.ver-senha {
  position: absolute; right: 4px; top: 4px; height: 42px; min-width: 88px; padding: 0 14px;
  border: 1px solid #2d3b52; border-radius: 9px;
  color: #b7c1d1; background: #131f33;
  font: inherit; font-size: 12px; font-weight: 700; cursor: pointer;
}
.ver-senha:hover { border-color: #ff884c; color: #ff9d6b; }

/* O BOTÃO DE ENVIO é `<button>`, então precisa de `border:0` e `cursor` que o
   `<a>` do mockup não precisava. */
button.access-submit {
  width: 100%; border: 0; cursor: pointer; font: inherit;
  justify-content: center; gap: 10px;
  font-size: 13px; font-weight: 900;
}
button.access-submit:hover { filter: brightness(1.06); }

/* O RECADO do servidor, e o resumo de erros do cadastro. */
.recado {
  margin: 0 0 18px; padding: 13px 16px; border-radius: 11px;
  font-size: 12.5px; line-height: 1.55; color: #b7c1d1;
  border: 1px solid #2d3b52; background: #0b1526;
}
.recado strong { display: block; color: #eef3f8; font-weight: 800; margin-bottom: 3px; }
.recado.erro { border-color: rgba(255,143,163,.45); background: rgba(255,143,163,.08); }
.recado.erro strong { color: #ff8fa3; }
.recado.sucesso { border-color: rgba(53,210,164,.45); background: rgba(53,210,164,.08); }
.recado.sucesso strong { color: #35d2a4; }
.recado a { color: #ff9d6b; text-decoration: underline; }
.lista-erros { margin: 6px 0 0; padding-left: 18px; display: grid; gap: 4px; }
.lista-erros a { font-weight: 700; }

/* AS DUAS CAIXAS DO CADASTRO. Consentir em receber mensagem é OPCIONAL por
   lei, e não pode vir embutido no aceite dos termos: iguais e empilhadas, as
   duas se leem como um bloco só. O selo e o filete são o que as separa. */
.aceite { display: grid; gap: 8px; padding: 14px 16px; border-radius: 12px; border: 1px solid #2d3b52; }
.aceite.obrigatorio { border-left: 3px solid #ff884c; background: rgba(255,136,76,.05); }
.aceite.opcional { background: rgba(255,255,255,.02); }
.aceite-marca {
  font-size: 9px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase;
  color: #7f8da6; width: max-content;
}
.aceite.obrigatorio .aceite-marca { color: #ff9d6b; }
.aceite .access-check { align-items: flex-start !important; }
.aceite .access-check a { color: #ff9d6b; text-decoration: underline; }

/* O MEDIDOR DE FORÇA. As três regras são as três do servidor — ver
   `senha-forca.js`. A cor não carrega o recado sozinha: o glifo muda junto. */
.forca-caixa { display: grid; gap: 8px; padding: 12px 14px; border-radius: 11px; background: rgba(255,255,255,.03); }
progress.forca {
  appearance: none; -webkit-appearance: none; border: 0;
  display: block; width: 100%; height: 5px; border-radius: 99px; background: #2d3b52;
}
progress.forca::-webkit-progress-bar { background: #2d3b52; border-radius: 99px; }
progress.forca::-webkit-progress-value { background: #ff884c; border-radius: 99px; }
progress.forca::-moz-progress-bar { background: #ff884c; border-radius: 99px; }
.forca-nome { margin: 0; color: #7f8da6; font-size: 11.5px; }
.forca-nome strong { color: #eef3f8; font-weight: 800; }
.forca-regras { margin: 0; padding: 0; list-style: none; display: grid; gap: 5px; }
.forca-regras li { color: #7f8da6; font-size: 11.5px; padding-left: 20px; position: relative; }
.forca-regras li::before { content: "·"; position: absolute; left: 6px; font-weight: 900; }
.forca-regras li.ok { color: #35d2a4; }
.forca-regras li.ok::before { content: "✓"; font-size: 11px; }
.forca-regras li.nao { color: #ff8fa3; }
.forca-regras li.nao::before { content: "✕"; font-size: 10px; }

/* A TARJA DE AMBIENTE DE TESTE. A classe existe nas quatro folhas da casa
   porque cada moldura carrega UMA folha — sem esta regra ela apareceu em
   serifa preta sobre branco no alto da tela. */
.tarja-teste {
  margin: 0; padding: 9px 16px; text-align: center;
  color: #4a3606; background: #ffd98a;
  font-family: inherit; font-size: 12px; font-weight: 600;
}
.tarja-teste strong { letter-spacing: .1em; margin-right: 8px; }

/* O primeiro alvo do Tab. Fica fora da tela até receber foco — não é
   `display:none`, que o tiraria também do teclado. */
.pular {
  position: absolute; left: -9999px; top: 8px; z-index: 60;
  padding: 10px 16px; border-radius: 10px;
  color: #102443; background: var(--lime);
  font-size: 13px; font-weight: 800;
}
.pular:focus { left: 8px; }

:focus-visible { outline: 3px solid #ff9d6b; outline-offset: 3px; border-radius: 6px; }

/* O RODAPÉ LEGAL das telas de acesso. O desenho do dono não tinha rodapé
   nelas, e ele precisa existir: termos e política têm de ser alcançáveis de
   qualquer página pública. Discreto, no pé, sem competir com o formulário. */
.access-rodape {
  position: relative; z-index: 2;
  width: min(1180px, calc(100% - 48px)); margin: 0 auto; padding: 0 0 34px;
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
  color: rgba(255,255,255,.34); font-size: 11px;
}
.access-rodape a { color: rgba(255,255,255,.52); }
.access-rodape a:hover { color: #ff9d6b; }

/* A LISTA DO QUE O PAINEL FAZ, no lugar dos números que saíram. Ver o
   comentário em `admin/entrar.html`: métrica antes do login vaza se for
   verdadeira e mente se não for. */
.admin-lista { display: grid; gap: 12px; margin: 26px 0 0; padding: 0; list-style: none;
  color: rgba(255,255,255,.6); font-size: 12px; }
.admin-lista li { display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
.admin-lista span {
  width: 20px; height: 20px; flex: none; display: grid; place-items: center;
  border-radius: 6px; color: #163055; background: var(--lime);
  font-size: 9px; font-weight: 900;
}

/* AS BARRAS DO RELATÓRIO DE EXEMPLO. No projeto dele a largura vinha em
   `style="width:84%"`; aqui a Content-Security-Policy descarta atributo de
   estilo EM SILÊNCIO, e as três barras nasceriam no zero sem erro nenhum no
   console. Três classes resolvem — são três valores fixos de uma ilustração,
   não dado que varia. */
.report-demo .b84 { width: 84%; }
.report-demo .b62 { width: 62%; }
.report-demo .b41 { width: 41%; }

/* A LINHA QUE DIZ "isto é exemplo". Sem ela, três percentuais desenhados
   passam por medida de alguém — e a regra da casa é que número na tela sai do
   código que o calcula. Quando não sai, a tela avisa. */
.demo-nota { margin: 12px 0 0; color: rgba(255,255,255,.42); font-size: 10.5px; line-height: 1.5; }
.feature-report .demo-nota, .feature-ranking .demo-nota { color: rgba(255,255,255,.45); }

/* A seta dos botões, que no projeto dele era um componente React. */
.seta { width: 20px; height: 20px; }


/* ==========================================================================
   OS QUATRO FLUXOS QUE FALTAVAM — 24/08/2026
   Recuperar senha, redefinir senha, reenviar confirmacao e descadastro.
   A marcacao continua sendo formulario Flask real; estas regras apenas levam
   as telas para a mesma identidade escura da landing e dos acessos.
   ========================================================================== */

.flow-card-label {
  display: block; margin: 0 0 8px;
  color: #ff9d6b; font-size: 9px; font-weight: 900;
  letter-spacing: .11em; text-transform: uppercase;
}
.flow-steps {
  width: min(100%, 590px); display: grid; gap: 9px;
}
.flow-steps > div {
  min-height: 70px; padding: 12px 15px;
  display: grid; grid-template-columns: 38px minmax(0, 1fr);
  align-items: center; gap: 12px;
  border: 1px solid #24334a; border-radius: 14px;
  background: rgba(16,29,50,.72);
}
.flow-steps > div > span {
  width: 34px; height: 34px; display: grid; place-items: center;
  border-radius: 9px; color: #ff9d6b;
  background: rgba(255,136,76,.1);
  font-size: 10px; font-weight: 900;
}
.flow-steps p { margin: 0; display: grid; gap: 3px; min-width: 0; }
.flow-steps strong { color: #dce3ed; font-size: 11px; }
.flow-steps small { color: #68778f; font-size: 9px; line-height: 1.45; }
.flow-steps-success > div:first-child > span,
.flow-communication > div > span {
  color: #10251f; background: #35d2a4;
}
.flow-icon-success { color: #10251f; background: #35d2a4; }
.flow-info {
  margin-top: 16px; padding: 12px;
  display: grid; grid-template-columns: 25px minmax(0, 1fr);
  align-items: start; gap: 10px;
  border: 1px solid #29374d; border-radius: 11px;
  background: #0b1526;
}
.flow-info > span {
  width: 24px; height: 24px; display: grid; place-items: center;
  border-radius: 50%; color: #0c1e1a; background: #35d2a4;
  font-size: 11px; font-weight: 900;
}
.flow-info p {
  margin: 0; display: grid; gap: 3px;
  color: #6f7e95; font-size: 10px; line-height: 1.5;
}
.flow-info strong { color: #b8c3d2; }
.flow-info-success { border-color: rgba(53,210,164,.32); background: rgba(53,210,164,.06); }
.flow-success-submit { color: #10251f; background: #35d2a4; }
.flow-success-submit:hover { background: #48dfb2; }
.access-unsubscribe::before {
  background:
    radial-gradient(circle at 72% 22%, rgba(53,210,164,.13), transparent 30%),
    radial-gradient(circle at 25% 75%, rgba(255,136,76,.07), transparent 26%),
    linear-gradient(145deg, #0b1526, #070d19);
}

@media (max-width: 620px) {
  .flow-steps > div { min-height: 66px; }
  .flow-steps strong { font-size: 12px; }
  .flow-steps small, .flow-info p, .flow-card-label { font-size: 11px; }
}


/* ==========================================================================
   CHECKOUT PIX — 24/08/2026

   Esta e uma tela do ALUNO, nao um Studio administrativo. Ela usa a mesma
   casca escura da landing e dos acessos. O QR e o copia-e-cola recebem o mesmo
   peso porque cada um resolve um aparelho diferente: QR no computador, codigo
   no celular. O menor texto operacional tem 12px — pagamento nao e lugar para
   microtipografia decorativa.
   ========================================================================== */

.access-payment::before {
  background:
    radial-gradient(circle at 17% 20%, rgba(26, 202, 219, .14), transparent 30%),
    radial-gradient(circle at 82% 76%, rgba(255, 136, 76, .1), transparent 28%),
    linear-gradient(145deg, #07101f 0%, #0a1425 52%, #07101d 100%);
}
.payment-shell {
  width: min(1240px, calc(100% - 48px));
  grid-template-columns: minmax(0, .88fr) minmax(520px, 1.12fr);
  gap: clamp(52px, 7vw, 108px);
  align-items: center;
}
.payment-card {
  width: 100%;
  max-width: 680px;
  padding: clamp(28px, 3.2vw, 44px);
}
.payment-order {
  width: min(100%, 540px);
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 18px;
  background: rgba(12, 25, 44, .76);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .18);
}
.payment-order-top,
.payment-order-price {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.payment-order-top {
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.payment-order span {
  color: #718098;
  font-size: 12px;
  font-weight: 700;
}
.payment-order strong {
  color: #eaf0f7;
  font-size: 15px;
  font-weight: 850;
  text-align: right;
}
.payment-order-price strong {
  color: #b9ef4a;
  font-size: 25px;
  letter-spacing: -.03em;
}
.payment-steps {
  width: min(100%, 540px);
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.payment-steps li {
  min-height: 64px;
  padding: 11px 14px;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 13px;
  background: rgba(255, 255, 255, .025);
}
.payment-steps li > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #ff9d6b;
  background: rgba(255, 136, 76, .1);
  font-size: 12px;
  font-weight: 900;
}
.payment-steps p {
  margin: 0;
  display: grid;
  gap: 3px;
}
.payment-steps strong {
  color: #dce4ee;
  font-size: 13px;
}
.payment-steps small {
  color: #74839a;
  font-size: 12px;
  line-height: 1.4;
}
.payment-content {
  display: grid;
  gap: 22px;
}
.payment-card-head {
  display: grid;
  gap: 8px;
}
.payment-secure {
  width: max-content;
  padding: 6px 9px;
  border: 1px solid rgba(53, 210, 164, .28);
  border-radius: 999px;
  color: #68dfb9;
  background: rgba(53, 210, 164, .07);
  font-size: 12px;
  font-weight: 800;
}
.payment-card-head h2 {
  margin: 0;
  color: #eef3f8;
  font-size: clamp(28px, 3vw, 38px);
  letter-spacing: -.035em;
}
.payment-card-head > p {
  margin: 0;
  color: #7d8ba1;
  font-size: 14px;
  line-height: 1.55;
}
.payment-test-note,
.payment-pending-charge,
.payment-help {
  padding: 14px;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: start;
  gap: 11px;
  border-radius: 12px;
}
.payment-test-note {
  border: 1px solid rgba(255, 197, 91, .3);
  background: rgba(255, 197, 91, .07);
}
.payment-test-note > span,
.payment-help > span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}
.payment-test-note > span {
  color: #31230b;
  background: #ffc55b;
}
.payment-test-note p,
.payment-pending-charge p,
.payment-help p {
  margin: 0;
  color: #8593a8;
  font-size: 12px;
  line-height: 1.55;
}
.payment-test-note strong,
.payment-pending-charge strong,
.payment-help strong {
  display: block;
  margin-bottom: 2px;
  color: #dce4ee;
  font-size: 13px;
}
.payment-methods {
  padding: 18px;
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
  border: 1px solid #26364d;
  border-radius: 17px;
  background: #0a1526;
}
.payment-methods-code-only {
  grid-template-columns: 1fr;
}
.payment-qr {
  margin: 0;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 12px;
}
.payment-qr-frame {
  width: 190px;
  height: 190px;
  padding: 10px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 14px 35px rgba(0, 0, 0, .28);
}
.payment-qr-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.payment-qr figcaption {
  max-width: 190px;
  color: #6f7e94;
  font-size: 12px;
  line-height: 1.45;
  text-align: center;
}
.payment-qr figcaption strong {
  display: block;
  margin-bottom: 2px;
  color: #d6deea;
  font-size: 13px;
}
.payment-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.payment-method-label {
  margin-bottom: 9px;
  color: #ff9d6b;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.payment-copy label {
  margin-bottom: 7px;
  color: #b9c4d3;
  font-size: 12px;
  font-weight: 800;
}
.payment-copy textarea {
  width: 100%;
  min-height: 89px;
  resize: none;
  padding: 12px;
  border: 1px solid #2c3d56;
  border-radius: 10px;
  outline: none;
  color: #aab8ca;
  background: #07101e;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 12px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}
.payment-copy textarea:focus {
  border-color: #ff884c;
  box-shadow: 0 0 0 4px rgba(255, 136, 76, .1);
}
.payment-copy-button {
  width: 100%;
  min-height: 46px;
  margin-top: 10px;
  padding: 0 14px;
  border: 0;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #102441;
  background: #b9ef4a;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .18s ease, filter .18s ease;
}
.payment-copy-button:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}
.payment-copy > p {
  margin: 8px 0 0;
  color: #66758c;
  font-size: 12px;
  text-align: center;
}
.payment-pending-charge {
  border: 1px solid rgba(255, 136, 76, .28);
  background: rgba(255, 136, 76, .07);
}
.payment-pending-charge > span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: #ff9d6b;
  background: rgba(255, 136, 76, .12);
  font-size: 16px;
}
.payment-live {
  min-height: 72px;
  padding: 15px 16px;
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(53, 210, 164, .27);
  border-radius: 13px;
  background: rgba(53, 210, 164, .055);
}
.payment-live-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #35d2a4;
  box-shadow: 0 0 0 0 rgba(53, 210, 164, .42);
  animation: payment-pulse 1.8s infinite;
}
@keyframes payment-pulse {
  70% { box-shadow: 0 0 0 9px rgba(53, 210, 164, 0); }
  100% { box-shadow: 0 0 0 0 rgba(53, 210, 164, 0); }
}
.situacao-pagamento {
  margin: 0;
  color: #9ba9bb;
  font-size: 13px;
  line-height: 1.45;
}
.situacao-pagamento strong {
  display: block;
  color: #65ddb6;
  font-size: 13px;
}
.situacao-pagamento small {
  color: #7a899f;
  font-size: 12px;
}
.payment-help {
  padding-inline: 4px;
}
.payment-help > span {
  color: #7d8ca2;
  border: 1px solid #334159;
}
.payment-help a {
  color: #ff9d6b;
  text-decoration: underline;
}

@media (max-width: 1040px) {
  .payment-shell {
    grid-template-columns: minmax(0, .75fr) minmax(480px, 1.25fr);
    gap: 42px;
  }
  .payment-methods {
    grid-template-columns: 180px minmax(0, 1fr);
  }
  .payment-qr-frame {
    width: 166px;
    height: 166px;
  }
}
@media (max-width: 850px) {
  .payment-shell {
    width: min(680px, calc(100% - 32px));
    grid-template-columns: 1fr;
    gap: 38px;
    padding-top: 30px;
  }
  .payment-card {
    max-width: none;
  }
  .payment-order,
  .payment-steps {
    width: 100%;
  }
}
@media (max-width: 560px) {
  .payment-shell {
    width: calc(100% - 24px);
    padding-bottom: 46px;
  }
  .payment-card {
    padding: 24px 17px;
    border-radius: 20px;
  }
  .payment-order-top,
  .payment-order-price {
    padding: 15px;
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
  .payment-order strong {
    text-align: left;
  }
  .payment-methods {
    padding: 15px;
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .payment-qr-frame {
    width: min(220px, 78vw);
    height: min(220px, 78vw);
  }
  .payment-qr figcaption {
    max-width: 250px;
  }
  .payment-copy textarea {
    min-height: 104px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .payment-live-pulse {
    animation: none;
  }
}

/* O ACEITE DA CONTRATAÇÃO — 26/08/2026. Mesma moldura do checkout Pix, porque
   é o passo imediatamente anterior a ele: quem está comprando não pode sentir
   que trocou de site no meio. */
.payment-terms { margin-top: 22px; }
.payment-terms h3 {
  margin: 20px 0 8px; font-size: 14px; letter-spacing: -.01em; color: #eaf6ff;
}
.payment-terms h3:first-child { margin-top: 0; }
.payment-terms ul { margin: 0; padding-left: 18px; }
.payment-terms li {
  margin-bottom: 8px; color: #9fb3c8; font-size: 14px; line-height: 1.6;
}
.payment-terms strong { color: #d8ecff; }
.payment-terms-version {
  margin-top: 18px; padding-top: 14px; border-top: 1px solid rgba(33,217,234,.16);
  color: #7f93a8; font-size: 13px; line-height: 1.55;
}

.payment-accept { margin-top: 22px; display: grid; gap: 16px; }
/* A LINHA INTEIRA É O ALVO, e não o quadradinho de 13px: no celular ele fica
   muito abaixo dos 44px que a regra 1 do CLAUDE.md cobra. */
.payment-accept label {
  display: flex; align-items: start; gap: 11px; min-height: 44px;
  padding: 13px 15px; border: 1px solid rgba(33,217,234,.24);
  border-radius: 12px; background: rgba(33,217,234,.06);
  color: #d8ecff; font-size: 14px; line-height: 1.5; cursor: pointer;
}
.payment-accept input { margin-top: 2px; width: 18px; height: 18px; accent-color: var(--lime); }
.payment-accept label:has(input:focus-visible) {
  outline: 2px solid var(--lime); outline-offset: 2px;
}
.payment-accept button { width: 100%; }

/* ============================================================
   O BANNER DE CONSENTIMENTO DA MEDICAO DE CAMPANHA

   Aparece so quando ha rede configurada no `.env`, e so ate a pessoa
   escolher. Ver `app/templates/_consentimento.html`.

   NASCE ESCONDIDO PELO ATRIBUTO `hidden`, e nao por classe: se o JavaScript
   nao rodar (bloqueado, erro, rede lenta), o banner nao aparece — e nao
   aparecer e o comportamento certo, porque sem o JavaScript tambem nao ha tag
   nenhuma para consentir. A regra abaixo existe porque `display: flex` venceria
   o `hidden` do navegador e o banner nasceria visivel e inutil.
   ============================================================ */
.consentimento[hidden] { display: none; }

.consentimento {
  position: fixed; z-index: 60; left: 50%; transform: translateX(-50%);
  bottom: 16px; width: min(680px, calc(100% - 24px));
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px 16px;
  padding: 16px 18px; border-radius: 14px;
  background: var(--navy-2); color: var(--offwhite);
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .38);
}
/* `1fr`/`flex: 1` nao encolhe abaixo do conteudo sem isto (`min-width: auto` e
   o padrao), e o texto longo empurra os botoes para fora da tela no celular.
   E o vazamento horizontal da regra 1 do CLAUDE.md. */
.consentimento-texto { flex: 1 1 260px; min-width: 0; margin: 0; font-size: .92rem; line-height: 1.45; }
.consentimento-texto a { text-decoration: underline; }
.consentimento-botoes { display: flex; flex-wrap: wrap; gap: 8px; margin-left: auto; }
.consentimento-botao {
  flex: 0 1 auto; min-width: 0; cursor: pointer;
  padding: 10px 16px; border-radius: 10px; font: inherit; font-size: .9rem; font-weight: 600;
  background: transparent; color: var(--offwhite); border: 1px solid var(--line);
}
.consentimento-botao:hover { border-color: rgba(255, 255, 255, .34); }
.consentimento-botao-sim { background: var(--cyan); color: var(--ink); border-color: transparent; }

/* No celular os dois botoes ocupam a largura toda, lado a lado: alvo de toque
   grande, e nenhum deles escondido abaixo da dobra. */
@media (max-width: 520px) {
  .consentimento { bottom: 8px; padding: 14px; }
  .consentimento-botoes { width: 100%; margin-left: 0; }
  .consentimento-botao { flex: 1 1 0; text-align: center; }
}
