:root {
  --red: #ef233c;
  --red-dark: #cf1730;
  --bg: #090909;
  --surface: #121212;
  --surface-2: #181818;
  --line: #292929;
  --text: #f6f6f6;
  --muted: #9a9a9a;
  --green: #48c78e;
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
button, input { font: inherit; }
button { color: inherit; }
svg { display: block; stroke: currentColor; }

.ambient { position: fixed; pointer-events: none; border-radius: 50%; filter: blur(120px); opacity: .07; }
.ambient-a { width: 380px; height: 380px; background: var(--red); top: -240px; right: 20%; }
.ambient-b { display: none; }

.site-header {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(24px, calc((100vw - 1080px) / 2));
  position: relative;
  z-index: 5;
  border-bottom: 1px solid #1d1d1d;
  background: rgba(9,9,9,.9);
  backdrop-filter: blur(14px);
}
.brand { border: 0; padding: 0; background: transparent; cursor: pointer; }
.brand img { width: 76px; display: block; }
.header-event { display: flex; align-items: center; gap: 9px; color: #aaa; font-size: 12px; font-weight: 600; }
.live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); }
.help-link, .back-btn { border: 0; background: none; color: #aaa; cursor: pointer; font-size: 13px; font-weight: 600; }
.help-link:hover, .back-btn:hover { color: #fff; }
.header-actions { display: flex; align-items: center; gap: 18px; }
.by-stamp { display: block; width: 54px; height: auto; object-fit: contain; }
.header-by-stamp { width: 42px; opacity: .72; }
.event-link { border: 0; background: none; color: #ddd; cursor: pointer; font-size: 12px; font-weight: 650; }
.event-link:hover { color: var(--red); }

.screen { display: none; animation: enter .32s ease; }
.screen.active { display: block; }
@keyframes enter { from { opacity: 0; transform: translateY(7px); } to { opacity: 1; transform: none; } }

.login-screen {
  max-width: 1080px;
  min-height: calc(100vh - 72px);
  margin: auto;
  padding: 70px 24px;
  grid-template-columns: 1fr 420px;
  align-items: center;
  gap: 100px;
}
.login-screen.active { display: grid; }
.eyebrow { margin: 0 0 12px; color: var(--red); font-size: 11px; font-weight: 700; letter-spacing: 1.4px; }
.login-copy h1, .app-top h1, .success-screen h1 {
  margin: 0;
  max-width: 650px;
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -2.7px;
}
.login-copy h1 { text-transform: none; }
.login-copy h1 span, .success-screen h1 span { color: inherit; }
.login-copy > p { max-width: 570px; margin: 22px 0 34px; color: var(--muted); font-size: 16px; line-height: 1.65; }
.event-meta { display: flex; gap: 28px; }
.event-meta > div { display: flex; align-items: center; gap: 11px; }
.event-meta i { width: 19px; height: 19px; color: var(--red); }
.event-meta small { display: block; margin-bottom: 3px; color: #666; font-size: 9px; letter-spacing: 1px; }
.event-meta span { font-size: 11px; font-weight: 650; }
.event-countdown { position: relative; z-index: 1; margin: -45px auto 65px; text-align: center; }
.countdown-label { display: block; margin-bottom: 10px; color: #888; font-size: 9px; font-weight: 700; letter-spacing: 1.8px; }
.countdown-units { display: flex; align-items: center; justify-content: center; gap: 15px; }
.countdown-units > div { min-width: 58px; }
.countdown-units strong { display: block; color: #fff; font-family: 'Montserrat',sans-serif; font-size: 27px; line-height: 1; font-variant-numeric: tabular-nums; }
.countdown-units small { display: block; margin-top: 5px; color: #777; font-size: 8px; font-weight: 700; letter-spacing: 1px; }
.countdown-separator { align-self: flex-start; margin-top: 4px; color: var(--red); font-size: 18px; }
.event-countdown.started .countdown-label { color: #fff; font-size: 12px; }
.event-countdown.started .countdown-units { display: none; }
.text-action { display: inline-flex; align-items: center; gap: 8px; margin-top: 24px; padding: 0; border: 0; background: none; color: #ddd; font-size: 12px; font-weight: 650; cursor: pointer; }
.text-action:hover { color: var(--red); }
.text-action i { width: 16px; }

.panel { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 24px 70px rgba(0,0,0,.28); }
.access-card { position: relative; padding: 38px; overflow: hidden; }
.access-card::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 3px; background: var(--red); }
.card-mark { display: none; }
.access-card h2, .form-panel h2, .modal h2 { margin: 0 0 9px; font-size: 25px; line-height: 1.2; letter-spacing: -.7px; }
.access-card > p, .form-panel p, .modal p { margin: 0 0 27px; color: var(--muted); font-size: 13px; line-height: 1.6; }
label { display: block; margin-bottom: 8px; font-size: 12px; font-weight: 600; }
.input-shell { height: 52px; display: flex; align-items: center; gap: 10px; padding: 0 14px; border: 1px solid #353535; border-radius: 11px; background: #0d0d0d; transition: .2s; }
.input-shell:focus-within, .field input:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(239,35,60,.1); }
.input-shell i { width: 18px; color: #777; }
.input-shell input, .field input { width: 100%; border: 0; outline: 0; background: transparent; color: #fff; }
.field-error { min-height: 19px; margin: 6px 0 3px !important; color: #ff6577 !important; font-size: 11px !important; }
.btn { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 0 19px; border: 1px solid transparent; border-radius: 11px; font-size: 12px; font-weight: 700; cursor: pointer; transition: .2s; }
.btn svg, .btn i { width: 17px; }
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: #ff314b; transform: translateY(-1px); }
.btn-ghost { border-color: #333; background: #151515; color: #ddd; }
.btn-ghost:hover { border-color: #555; }
.btn-block { width: 100%; }
.demo-hint { display: flex; align-items: center; gap: 8px; margin-top: 17px; color: #777; font-size: 11px; }
.demo-hint i { width: 14px; color: var(--red); }
.demo-hint button { padding: 0; border: 0; background: none; color: #ccc; cursor: pointer; text-decoration: underline; }
.login-support { grid-column: 2; margin-top: 17px; color: #686868; font-size: 11px; }
.login-support button { padding: 0; border: 0; background: none; color: #202020; font: inherit; font-weight: 700; cursor: pointer; text-decoration: underline; }
.login-support button:hover { color: var(--red); }
.access-by-stamp { width: 46px; margin-top: 18px; opacity: .58; }
.scroll-hint { grid-column: 1 / -1; display: flex; flex-direction: column; align-items: center; gap: 6px; margin-top: -22px; color: #666; font-size: 9px; font-weight: 650; letter-spacing: 1px; text-transform: uppercase; }
.scroll-hint i { width: 19px; animation: bob 1.8s ease-in-out infinite; }
@keyframes bob { 50% { transform: translateY(5px); } }
.landing-event-info { grid-column: 1 / -1; padding-top: 82px; }
.landing-section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; margin-bottom: 28px; }
.landing-section-head h2 { margin: 0; font-size: 32px; line-height: 1.12; letter-spacing: -1.5px; }
.landing-section-head > p { max-width: 390px; margin: 0; color: #929292; font-size: 13px; line-height: 1.6; }
.info-bento { display: grid; grid-template-columns: .8fr 1.2fr; grid-template-rows: 230px 230px; gap: 12px; }
.bento-card { position: relative; overflow: hidden; padding: 27px; border: 1px solid #292929; border-radius: 17px; background: #121212; }
.bento-card > span, .bento-credential > div > span { display: block; margin-bottom: 13px; color: #777; font-size: 8px; font-weight: 750; letter-spacing: 1.2px; }
.bento-card h3 { margin: 0; font-size: 20px; letter-spacing: -.7px; }
.bento-card p { margin: 8px 0 0; color: #8d8d8d; font-size: 11px; line-height: 1.55; }
.bento-icon { width: 34px; height: 34px; position: absolute; top: 22px; right: 22px; display: grid; place-items: center; border-radius: 10px; background: #231215; color: var(--red); }
.bento-icon i { width: 17px; }
.bento-date > strong { display: block; margin: 20px 0 0; color: #fff; font-size: 47px; line-height: 1; letter-spacing: -3px; }
.bento-date h3 { margin-top: 5px; font-size: 15px; }
.bento-location { padding-right: 150px; background: radial-gradient(circle at 100% 100%,rgba(239,35,60,.13),transparent 45%),#121212; }
.bento-location h3 { margin-top: 35px; font-size: 23px; }
.bento-location a, .bento-credential button { display: inline-flex; align-items: center; gap: 7px; margin-top: 18px; padding: 0; border: 0; background: none; color: #eee; font-size: 10px; font-weight: 700; text-decoration: none; cursor: pointer; }
.bento-location a:hover, .bento-credential button:hover { color: var(--red); }
.bento-location a i, .bento-credential button i { width: 13px; }
.bento-credential { display: grid; grid-template-columns: 92px 1fr; align-items: center; gap: 26px; background: #151112; }
.credential-date { display: flex; flex-direction: column; align-items: center; justify-content: center; aspect-ratio: 1; border-radius: 15px; background: var(--red); }
.credential-date strong { font-size: 35px; line-height: .95; letter-spacing: -2px; }
.credential-date span { margin-top: 3px; font-size: 9px; font-weight: 750; }
.bento-credential > div > span { margin-bottom: 9px; color: #cf7882; }
.bento-credential h3 { font-size: 21px; }
.bento-experience { padding: 0; border-color: #382126; background: linear-gradient(90deg,rgba(9,9,9,.22),rgba(9,9,9,.65)),url('assets/ingresso.jpg') center 42%/cover; }
.experience-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 27px; background: linear-gradient(0deg,rgba(0,0,0,.85),transparent 68%); }
.experience-overlay span { margin-bottom: 8px; color: #ff6879; font-size: 8px; font-weight: 750; letter-spacing: 1.3px; }
.experience-overlay h3 { font-size: 22px; line-height: 1.12; }
.event-facts { display: grid; grid-template-columns: .8fr .8fr 1.4fr; padding: 35px 0; border-top: 1px solid #303030; border-bottom: 1px solid #303030; }
.event-fact { min-height: 155px; padding: 5px 32px; border-right: 1px solid #2c2c2c; }
.event-fact:first-child { padding-left: 0; }
.event-fact:last-child { padding-right: 0; border-right: 0; }
.event-fact > span { display: block; margin-bottom: 30px; color: #777; font-size: 8px; font-weight: 750; letter-spacing: 1.3px; }
.event-fact > strong { display: block; font-size: 35px; line-height: 1; letter-spacing: -2px; }
.event-fact h3 { margin: 6px 0 0; font-size: 15px; letter-spacing: -.4px; }
.event-fact p { margin: 8px 0 0; color: #888; font-size: 10px; line-height: 1.55; }
.fact-date > strong { color: var(--red); }
.fact-place h3 { margin-top: 0; font-size: 21px; }
.fact-place a { display: inline-flex; align-items: center; gap: 7px; margin-top: 15px; color: #eee; font-size: 10px; font-weight: 700; text-decoration: none; }
.fact-place a:hover { color: var(--red); }
.fact-place a i { width: 13px; }
.credential-strip { display: grid; grid-template-columns: 72px 1fr auto; align-items: center; gap: 24px; margin-top: 34px; padding: 23px 0; border-top: 1px solid #371d22; border-bottom: 1px solid #371d22; }
.credential-strip-date { width: 67px; height: 67px; display: flex; flex-direction: column; align-items: center; justify-content: center; background: var(--red); }
.credential-strip-date strong { font-size: 27px; line-height: 1; letter-spacing: -1px; }
.credential-strip-date span { margin-top: 2px; font-size: 8px; font-weight: 750; }
.credential-strip-copy > span { display: block; margin-bottom: 6px; color: #d86473; font-size: 8px; font-weight: 750; letter-spacing: 1.1px; }
.credential-strip-copy h3 { margin: 0 0 5px; font-size: 17px; }
.credential-strip-copy p { margin: 0; color: #888; font-size: 10px; line-height: 1.5; }
.credential-strip > button { display: flex; align-items: center; gap: 8px; padding: 10px 0; border: 0; background: none; color: #ddd; font-size: 10px; font-weight: 700; cursor: pointer; }
.credential-strip > button:hover { color: var(--red); }
.credential-strip > button i { width: 14px; }
.event-statement { min-height: 210px; display: flex; flex-direction: column; justify-content: flex-end; margin-top: 55px; padding: 30px; background: linear-gradient(90deg,rgba(7,7,7,.92),rgba(7,7,7,.25)),url('assets/ingresso.jpg') center 43%/cover; }
.event-statement span { margin-bottom: 8px; color: var(--red); font-size: 8px; font-weight: 750; letter-spacing: 1.3px; }
.event-statement p { max-width: 440px; margin: 0; font-size: 22px; font-weight: 650; line-height: 1.2; letter-spacing: -.8px; }
.section-number { display: block; margin-bottom: 24px; color: var(--red); font-size: 9px; font-weight: 750; letter-spacing: 1.3px; }
.location-feature { min-height: 430px; display: grid; grid-template-columns: .8fr 1.2fr; overflow: hidden; border: 1px solid #282828; border-radius: 20px; background: #111; }
.location-copy { padding: 52px; }
.location-copy h3 { margin: 0 0 20px; font-size: 39px; line-height: 1.05; letter-spacing: -2px; }
.location-copy p { margin: 0 0 28px; color: #929292; font-size: 12px; line-height: 1.7; }
.location-copy .btn i { width: 16px; }
.location-visual { position: relative; display: flex; flex-direction: column; justify-content: flex-end; padding: 45px; background: linear-gradient(110deg,rgba(0,0,0,.15),rgba(0,0,0,.74)),url('assets/ingresso.jpg') center 42%/cover; }
.location-visual::before { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg,rgba(0,0,0,.7),transparent 55%); }
.location-visual span, .location-visual small { position: relative; }
.location-visual span { font-size: 28px; font-weight: 750; letter-spacing: -1px; }
.location-visual small { margin-top: 5px; color: #ccc; font-size: 9px; letter-spacing: 1.4px; }
.schedule-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 14px 0; }
.schedule-card { min-height: 235px; position: relative; padding: 32px; border: 1px solid #282828; border-radius: 18px; background: #111; }
.schedule-card > i { width: 29px; position: absolute; top: 30px; right: 31px; color: var(--red); }
.schedule-card h3 { margin: 58px 0 5px; font-size: 26px; letter-spacing: -1px; }
.schedule-card p { margin: 0; color: #888; font-size: 12px; }
.credential-feature { min-height: 465px; display: grid; grid-template-columns: .9fr 1.1fr; overflow: hidden; border: 1px solid #282828; border-radius: 20px; background: #111; }
.credential-photo { min-height: 460px; overflow: hidden; background: #15080a; }
.credential-photo img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center 43%; filter: saturate(.9) contrast(1.08); }
.credential-copy { padding: 47px 52px; }
.credential-copy h3 { margin: 0 0 24px; max-width: 430px; font-size: 30px; line-height: 1.15; letter-spacing: -1.2px; }
.credential-copy > p { margin: 13px 0; color: #919191; font-size: 12px; line-height: 1.65; }
.credential-time { display: flex; align-items: center; gap: 16px; margin: 22px 0; }
.credential-time strong { padding-right: 16px; border-right: 1px solid #333; color: var(--red); font-size: 23px; }
.credential-time span { color: #ccc; font-size: 10px; line-height: 1.45; }
.landing-cta { display: flex; align-items: center; gap: 21px; margin: 18px 0 5px; padding: 22px 25px; border: 1px solid #292929; border-radius: 15px; background: #121212; }
.landing-cta img { width: 64px; }
.landing-cta div { flex: 1; }
.landing-cta strong, .landing-cta span { display: block; }
.landing-cta strong { margin-bottom: 4px; font-size: 14px; }
.landing-cta span { color: #888; font-size: 11px; }

.app-screen { max-width: 1080px; margin: auto; padding: 52px 24px 80px; }
.app-top { display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; }
.app-top h1 { font-size: 38px; letter-spacing: -1.7px; }
.app-top > div > p { margin-bottom: 0; color: var(--muted); font-size: 14px; }
.progress-card { width: 290px; }
.progress-copy { display: flex; justify-content: space-between; margin-bottom: 10px; color: #777; font-size: 11px; }
.progress-copy strong { color: #ddd; font-weight: 600; }
.progress-track { height: 5px; overflow: hidden; border-radius: 9px; background: #252525; }
.progress-track span { display: block; height: 100%; width: 25%; border-radius: inherit; background: var(--red); transition: .4s; }
.stats-row { display: flex; gap: 28px; margin: 36px 0 55px; padding: 17px 20px; border: 1px solid #242424; border-radius: 14px; background: #101010; }
.stat { display: flex; align-items: baseline; gap: 8px; padding: 0 27px 0 0; border-right: 1px solid #292929; }
.stat:last-child { border: 0; }
.stat span { font-size: 19px; font-weight: 750; }
.stat small { color: #777; font-size: 9px; letter-spacing: .7px; }
.stat.urgent span { color: var(--red); }
.event-card { display: flex; align-items: center; gap: 17px; margin: -28px 0 48px; padding: 16px 18px; border: 1px solid #282828; border-radius: 14px; background: #111; }
.event-card-date { min-width: 58px; display: flex; align-items: center; gap: 7px; padding-right: 17px; border-right: 1px solid #2c2c2c; }
.event-card-date strong { font-size: 25px; letter-spacing: -1px; }
.event-card-date span { color: var(--red); font-size: 8px; font-weight: 750; line-height: 1.25; }
.event-card-copy { flex: 1; }
.event-card-copy strong, .event-card-copy span { display: block; }
.event-card-copy strong { margin-bottom: 4px; font-size: 13px; }
.event-card-copy span { color: #888; font-size: 10px; }
.event-card-actions { display: flex; gap: 9px; }
.event-card-actions button, .event-card-actions a { min-height: 34px; display: inline-flex; align-items: center; gap: 6px; padding: 0 11px; border: 1px solid #323232; border-radius: 8px; background: #171717; color: #ccc; font-size: 10px; font-weight: 650; text-decoration: none; cursor: pointer; }
.event-card-actions button:hover, .event-card-actions a:hover { border-color: #555; color: #fff; }
.event-card-actions i { width: 13px; }
.hotel-section { margin: -14px 0 52px; padding: 30px; border: 1px solid #282828; border-radius: 18px; background: #101010; }
.hotel-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 22px; }
.hotel-heading h2 { margin: 0; font-size: 24px; letter-spacing: -.7px; }
.hotel-heading > p { max-width: 420px; margin: 0; color: #888; font-size: 12px; line-height: 1.6; }
.hotel-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.hotel-card { min-height: 155px; padding: 22px; border: 1px solid #292929; border-radius: 13px; background: #151515; }
.hotel-card.featured { border-color: #49242a; background: linear-gradient(145deg,rgba(239,35,60,.1),transparent 70%),#151515; }
.hotel-card > span { color: var(--red); font-size: 8px; font-weight: 750; letter-spacing: 1.2px; }
.hotel-card h3 { margin: 30px 0 7px; font-size: 16px; letter-spacing: -.35px; }
.hotel-card p { margin: 0; color: #858585; font-size: 10px; line-height: 1.55; }
.hotel-contact { display: flex; align-items: center; justify-content: space-between; gap: 28px; margin-top: 12px; padding: 18px 20px; border-radius: 12px; background: #181818; }
.hotel-contact strong, .hotel-contact span { display: block; }
.hotel-contact strong { margin-bottom: 4px; font-size: 12px; }
.hotel-contact span { color: #777; font-size: 9px; }
.hotel-contact-actions { display: flex; align-items: center; gap: 8px; }
.hotel-contact-actions a { min-height: 34px; display: inline-flex; align-items: center; gap: 6px; padding: 0 11px; border: 1px solid #323232; border-radius: 8px; color: #ccc; font-size: 9px; font-weight: 650; text-decoration: none; }
.hotel-contact-actions a:hover { border-color: #555; color: #fff; }
.hotel-contact-actions .hotel-site { border-color: var(--red); background: var(--red); color: #fff; }
.hotel-contact-actions .hotel-site:hover { border-color: #ff314b; background: #ff314b; }
.hotel-contact-actions i { width: 12px; }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 21px; }
.section-heading h2 { margin: 0; font-size: 24px; letter-spacing: -.7px; }
.section-heading p { margin: 0; color: #777; font-size: 12px; }
.ticket-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.ticket-card { min-height: 190px; position: relative; display: grid; grid-template-columns: 82px 1fr; overflow: hidden; border: 1px solid #292929; border-radius: 16px; background: var(--surface); transition: transform .2s, border-color .2s; }
.ticket-card::before { content: ""; position: absolute; inset: 0 0 auto; z-index: 1; height: 2px; background: var(--red); }
.ticket-card.issued::before { background: var(--green); }
.ticket-card:hover { transform: translateY(-2px); border-color: #3a3a3a; }
.ticket-stripe { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px; border-right: 1px solid #292929; background: #0d0d0d; }
.ticket-stripe img { width: 49px; }
.sector { color: var(--red); font-size: 9px; font-weight: 800; letter-spacing: 1.6px; writing-mode: vertical-rl; transform: rotate(180deg); }
.ticket-body { display: flex; flex-direction: column; padding: 22px; }
.ticket-top { display: flex; justify-content: space-between; gap: 10px; }
.ticket-index { color: #666; font-size: 9px; font-weight: 650; letter-spacing: .7px; }
.status { padding: 5px 7px; border-radius: 99px; background: rgba(239,35,60,.1); color: #ff6375; font-size: 8px; font-weight: 750; }
.status.issued { background: rgba(72,199,142,.1); color: var(--green); }
.ticket-body h3 { margin: 20px 0 5px; font-size: 16px; letter-spacing: -.3px; }
.ticket-body > p { margin: 0; color: #777; font-size: 11px; line-height: 1.45; }
.ticket-body .btn { min-height: 37px; align-self: flex-start; margin-top: auto; padding: 0 13px; border-radius: 9px; font-size: 10px; }
.dashboard-note { display: flex; align-items: center; gap: 13px; margin-top: 34px; color: #777; }
.dashboard-note i { width: 20px; color: var(--red); }
.dashboard-note strong, .dashboard-note span { display: block; }
.dashboard-note strong { margin-bottom: 3px; color: #aaa; font-size: 11px; }
.dashboard-note span { font-size: 10px; }

.back-btn { display: flex; align-items: center; gap: 8px; margin-bottom: 22px; padding: 0; }
.back-btn i { width: 16px; }
.form-layout { display: grid; grid-template-columns: 260px 1fr; align-items: start; gap: 18px; }
.ticket-summary { min-height: 330px; position: sticky; top: 95px; padding: 28px; overflow: hidden; border: 1px solid #342126; border-radius: var(--radius); background: linear-gradient(155deg,#241015,#111 65%); }
.ticket-summary img { width: 62px; }
.ticket-summary .big-sector { margin-top: 70px; font-size: 36px; font-weight: 750; letter-spacing: -2px; }
.ticket-summary h3 { margin: 4px 0; font-size: 15px; }
.ticket-summary p { color: #888; font-size: 10px; }
.summary-number { position: absolute; top: 22px; right: 22px; color: #9e4550; font-size: 11px; font-weight: 700; }
.form-panel { padding: 38px 44px; }
.step-caption { color: #777; font-size: 9px; font-weight: 700; letter-spacing: 1px; }
.step-caption span { color: #ddd; }
.stepper { display: flex; gap: 5px; margin: 10px 0 38px; }
.stepper span { height: 3px; flex: 1; border-radius: 5px; background: #292929; }
.stepper span.active { background: var(--red); }
.form-step { display: none; }
.form-step.active { display: block; }
.field { position: relative; margin: 21px 0; }
.field label span { float: right; color: #666; font-weight: 400; }
.field input { height: 50px; padding: 0 14px; border: 1px solid #333; border-radius: 10px; background: #0c0c0c; transition: .2s; }
.field small { position: absolute; right: 12px; bottom: 18px; color: #666; font-size: 9px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hidden { display: none !important; }
.badge-preview { display: grid; grid-template-columns: 100px 1fr; align-items: center; margin: 22px 0; padding: 12px; border: 1px solid #292929; border-radius: 13px; background: #0c0c0c; }
.badge-preview > span { color: #666; font-size: 8px; font-weight: 700; letter-spacing: .9px; text-align: center; }
.badge-preview > div { min-height: 92px; position: relative; display: flex; flex-direction: column; justify-content: flex-end; padding: 15px 20px; border-left: 1px dashed #333; border-radius: 9px; background: linear-gradient(90deg,#1e0d11,#111); }
.badge-preview img { width: 38px; position: absolute; top: 10px; left: 18px; }
.badge-preview strong { font-size: 18px; letter-spacing: -.4px; }
.badge-preview small { margin-top: 3px; color: var(--red); font-size: 8px; font-weight: 700; letter-spacing: 1px; }
.upload-zone { height: 165px; display: flex; flex-direction: column; align-items: center; justify-content: center; margin: 22px 0; border: 1px dashed #444; border-radius: 13px; background: #0d0d0d; cursor: pointer; transition: .2s; }
.upload-zone:hover, .upload-zone.drag { border-color: var(--red); background: #160d0f; }
.upload-zone input { display: none; }
.upload-zone i { width: 27px; margin-bottom: 10px; color: var(--red); }
.upload-zone strong { font-size: 11px; }
.upload-zone span { margin-top: 6px; color: #666; font-size: 9px; }
.file-preview { display: flex; align-items: center; gap: 12px; margin: 18px 0; padding: 14px; border: 1px solid #254031; border-radius: 11px; background: #0c1912; }
.file-preview i { width: 23px; color: var(--green); }
.file-preview div { flex: 1; }
.file-preview strong, .file-preview span { display: block; font-size: 10px; }
.file-preview span { margin-top: 3px; color: #777; }
.file-preview button { border: 0; background: none; color: #aaa; font-size: 22px; cursor: pointer; }
.review-box { margin: 22px 0; padding: 19px; border: 1px solid #292929; border-radius: 12px; background: #0c0c0c; }
.review-box > span { color: #777; font-size: 8px; font-weight: 750; letter-spacing: 1px; }
.review-box dl { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 16px 0 0; }
.review-box dt { color: #666; font-size: 8px; text-transform: uppercase; }
.review-box dd { margin: 4px 0 0; font-size: 11px; line-height: 1.5; }
.check { display: flex; align-items: center; gap: 9px; color: #aaa; font-size: 11px; font-weight: 400; }
.check input { accent-color: var(--red); }
.form-actions { display: flex; justify-content: space-between; margin-top: 25px; }

.success-screen { max-width: 680px; margin: auto; padding: 65px 24px; text-align: center; }
.success-icon { width: 56px; height: 56px; display: grid; place-items: center; margin: 0 auto 23px; border-radius: 50%; background: var(--red); box-shadow: 0 0 40px rgba(239,35,60,.25); }
.success-icon i { width: 24px; }
.success-screen h1 { font-size: 39px; }
.success-screen > p { color: #888; }
.issued-ticket { min-height: 210px; max-width: 490px; display: grid; grid-template-columns: 1fr 150px; margin: 34px auto 22px; overflow: hidden; border: 1px solid #292929; border-radius: 14px; background: #000; color: #fff; text-align: left; }
.issued-info { display: flex; flex-direction: column; padding: 24px; }
.issued-info img { width: 60px; filter: none; }
.issued-info h3 { margin: auto 0 4px; font-size: 19px; letter-spacing: -.5px; }
.issued-info p { margin: 0; color: #aaa; font-size: 9px; }
.qr-area { display: grid; place-items: center; gap: 10px; padding: 18px; border-left: 1px dashed #555; }
.qr-code-value { color: #111; font-family: monospace; font-size: 11px; font-weight: 800; letter-spacing: 1.5px; }
.real-qr { width: 112px; height: 112px; display: block; padding: 5px; background: #fff; }
.qr-placeholder { width: 112px; height: 112px; display: grid; place-items: center; padding: 12px; background: #eee; color: #555; font-size: 10px; text-align: center; }
.success-actions { display: flex; justify-content: center; gap: 9px; }
.success-by-stamp { width: 52px; margin: 28px auto 0; opacity: .6; }

.modal-backdrop { position: fixed; inset: 0; z-index: 20; display: none; place-items: center; padding: 20px; overflow-y: auto; overscroll-behavior: contain; background: rgba(0,0,0,.75); backdrop-filter: blur(8px); }
.modal-backdrop.open { display: grid; }
.modal { width: 100%; max-width: 520px; max-height: calc(100dvh - 40px); position: relative; padding: 34px; overflow-y: auto; overscroll-behavior: contain; scrollbar-gutter: stable; -webkit-overflow-scrolling: touch; border: 1px solid #333; border-radius: 18px; background: #121212; box-shadow: 0 30px 90px #000; }
.modal::-webkit-scrollbar { width: 7px; }
.modal::-webkit-scrollbar-track { background: #111; }
.modal::-webkit-scrollbar-thumb { border-radius: 99px; background: #444; }
.modal-close { position: absolute; top: 10px; right: 14px; border: 0; background: none; color: #888; font-size: 26px; cursor: pointer; }
.modal .issued-ticket { margin: 17px 0 0; }
.modal .download-ticket-modal { margin-top: 14px; }
.modal .edit-ticket { margin-top: 14px; }
.support-modal { max-width: 410px; text-align: center; }
.admin-login-modal { max-width: 410px; }
.admin-login-modal .field { margin-top: 20px; }
.admin-login-modal .field input { height: 52px; padding: 0 14px; border: 1px solid #353535; border-radius: 11px; background: #0d0d0d; }
.quota-editor { overflow: hidden; border: 1px solid #303030; border-radius: 12px; background: #0d0d0d; }
.quota-editor-title { display: block; padding: 14px 16px; border-bottom: 1px solid #292929; color: #777; font-size: 8px; font-weight: 750; letter-spacing: 1px; }
.quota-editor-row { display: grid; grid-template-columns: 1fr 150px; align-items: center; gap: 20px; padding: 14px 16px; border-bottom: 1px solid #252525; }
.quota-editor-row:last-child { border-bottom: 0; }
.quota-editor-row > div strong, .quota-editor-row > div span { display: block; }
.quota-editor-row > div strong { margin-bottom: 4px; font-size: 13px; }
.quota-editor-row > div span { color: #888; font-size: 10px; }
.quota-editor-row > div span b { color: #ddd; }
.quota-editor-row label { margin: 0; color: #888; font-size: 9px; }
.quota-editor-row input { height: 38px; margin-top: 5px; text-align: center; }
.admin-chart-card { margin: 18px 0 28px; padding: 24px; border: 1px solid #292929; border-radius: 16px; background: #101010; }
.admin-chart-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
.admin-chart-heading span { color: #777; font-size: 8px; font-weight: 750; letter-spacing: 1px; }
.admin-chart-heading h2 { margin: 6px 0 0; font-size: 19px; letter-spacing: -.5px; }
.admin-chart-total { text-align: right; }
.admin-chart-total strong, .admin-chart-total span { display: block; }
.admin-chart-total strong { color: var(--red); font-size: 25px; }
.admin-chart { min-height: 250px; margin-top: 22px; }
.admin-chart svg { width: 100%; height: auto; display: block; overflow: visible; }
.chart-grid line { stroke: #292929; stroke-width: 1; }
.chart-grid text { fill: #666; font-size: 10px; text-anchor: end; }
.chart-area { fill: rgba(239,35,60,.08); }
.chart-line { fill: none; stroke: var(--red); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.chart-points circle { fill: #101010; stroke: var(--red); stroke-width: 3; }
.chart-points .x-label { fill: #777; font-size: 10px; text-anchor: middle; }
.admin-chart-empty { min-height: 220px; display: grid; place-items: center; color: #777; font-size: 12px; }
.admin-loading { position: fixed; inset: 0; z-index: 100; display: none; place-items: center; align-content: center; gap: 10px; background: rgba(8,8,8,.94); backdrop-filter: blur(10px); }
.admin-loading.show { display: grid; }
.admin-loading-spinner { width: 42px; height: 42px; margin-bottom: 8px; border: 3px solid #292929; border-top-color: var(--red); border-radius: 50%; animation: admin-spin .8s linear infinite; }
.admin-loading strong { font-size: 16px; }
.admin-loading span { color: #777; font-size: 11px; }
@keyframes admin-spin { to { transform: rotate(360deg); } }
.admin-users-modal { max-width: 620px; }
.admin-users-list { display: grid; gap: 8px; max-height: 250px; margin: 20px 0; overflow-y: auto; }
.admin-user-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 13px 15px; border: 1px solid #292929; border-radius: 10px; background: #0d0d0d; }
.admin-user-row > div:last-child { text-align: right; }
.admin-user-row strong, .admin-user-row span, .admin-user-row small { display: block; }
.admin-user-row strong { margin-bottom: 3px; font-size: 12px; }
.admin-user-row span, .admin-user-row small { color: #777; font-size: 9px; }
.admin-user-row .admin-pill { display: inline-block; margin-bottom: 5px; color: var(--green); }
.admin-users-loading { padding: 20px; color: #777; font-size: 11px; text-align: center; }
.support-icon { width: 52px; height: 52px; display: grid; place-items: center; margin: 0 auto 18px; border-radius: 50%; background: #251015; color: var(--red); }
.support-icon i { width: 24px; }
.event-modal { max-width: 570px; }
.event-modal-head { padding-bottom: 21px; border-bottom: 1px solid #292929; }
.event-details { padding: 6px 0 15px; }
.event-detail { display: flex; gap: 14px; padding: 17px 0; border-bottom: 1px solid #242424; }
.event-detail > i { width: 21px; flex: 0 0 21px; margin-top: 2px; color: var(--red); }
.event-detail small, .event-detail strong, .event-detail span { display: block; }
.event-detail small { margin-bottom: 5px; color: #666; font-size: 8px; font-weight: 750; letter-spacing: 1px; }
.event-detail strong { margin-bottom: 4px; font-size: 12px; }
.event-detail span { color: #888; font-size: 10px; line-height: 1.5; }
.event-callout { display: flex; gap: 12px; margin-bottom: 20px; padding: 13px; border-radius: 10px; background: #1d1214; }
.event-callout strong { color: #ff7787; font-size: 10px; }
.event-callout span { color: #aaa; font-size: 9px; line-height: 1.5; }
.floating-support { width: 58px; height: 58px; position: fixed; right: 24px; bottom: 24px; z-index: 15; display: grid; place-items: center; padding: 0; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; background: var(--red); color: #fff; box-shadow: 0 12px 35px rgba(0,0,0,.5),0 0 0 5px rgba(239,35,60,.1); cursor: pointer; transition: transform .2s,background .2s,box-shadow .2s; }
.floating-support:hover { background: #ff314b; box-shadow: 0 15px 40px rgba(0,0,0,.55),0 0 0 7px rgba(239,35,60,.12); transform: translateY(-2px); }
.floating-support:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }
.floating-support i { width: 24px; height: 24px; }
.toast { position: fixed; left: 50%; bottom: 25px; z-index: 50; padding: 12px 18px; border-radius: 10px; background: #fff; color: #111; font-size: 11px; font-weight: 700; opacity: 0; pointer-events: none; transform: translate(-50%,15px); transition: .25s; }
.toast.show { opacity: 1; transform: translate(-50%,0); }
.loading .btn-primary { opacity: .72; pointer-events: none; }
.loading .btn-primary span::after { content: "..."; }

/* Direção editorial inspirada no ecossistema SAFE */
.login-screen { position: relative; grid-template-columns: 1fr; row-gap: 0; padding-top: 58px; }
.login-copy { min-height: 610px; position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 65px 0 90px; text-align: center; }
.login-copy::after { content: ""; position: absolute; z-index: -2; inset: 0 calc(50% - 50vw); background: linear-gradient(0deg,#090909 0%,rgba(9,9,9,.25) 52%,#090909 100%),linear-gradient(90deg,#090909 0%,transparent 38%,transparent 62%,#090909 100%),url('assets/ingresso.jpg') center 45%/cover; opacity: .32; filter: grayscale(.12) contrast(1.1); }
.login-copy::before { content: ""; width: 54px; height: 3px; position: static; order: -1; margin-bottom: 23px; background: var(--red); }
.login-copy .hero-kicker { margin-bottom: 16px; color: #fff; font-size: clamp(12px,1.25vw,16px); font-weight: 800; letter-spacing: 2.2px; }
.login-copy h1 { position: relative; z-index: 1; max-width: 820px; font-size: clamp(48px,6vw,74px); line-height: .98; letter-spacing: -4.2px; }
.login-copy > p { position: relative; z-index: 1; max-width: 570px; margin: 22px auto 28px; color: #bbb; }
.event-meta { position: relative; z-index: 1; justify-content: center; }
.hero-actions { position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 31px; }
.hero-actions .btn { min-width: 210px; }
.hero-actions .hero-confirm-button { min-width: 260px; min-height: 58px; padding: 0 30px; font-size: 14px; }
.hero-actions .text-action { margin: 0; }
.access-card { width: 100%; display: grid; grid-template-columns: .8fr 1.2fr; grid-template-rows: auto auto 1fr; column-gap: 75px; align-items: start; justify-self: center; margin: 50px 0 85px; padding: 48px 55px; border: 0; border-radius: 3px; background: #f0eee9; color: #101010; box-shadow: none; }
.access-card::before { width: 54px; height: 3px; inset: 0 auto auto 55px; background: var(--red); }
.access-card .eyebrow, .access-card h2, .access-card > p { grid-column: 1; }
.access-card .eyebrow { margin-top: 4px; }
.access-card h2 { max-width: 320px; margin-bottom: 11px; font-size: 32px; line-height: 1.06; letter-spacing: -1.4px; }
.access-card > p { max-width: 330px; margin: 0; color: #686868; }
.access-card form { grid-column: 2; grid-row: 1 / span 3; width: 100%; padding-top: 3px; }
.access-card form label { color: #242424; }
.access-card .input-shell { border-color: #d2d0ca; background: #fff; }
.access-card .input-shell:focus-within { border-color: var(--red); }
.access-card .input-shell input { color: #111; }
.access-card .demo-hint { grid-column: 2; justify-self: start; margin-top: 13px; color: #777; }
.access-card .demo-hint button { color: #333; }
.access-card .field-error { color: #cf1730 !important; }
.input-shell, .field input { border-radius: 4px; }
.btn { border-radius: 3px; }
.scroll-hint { margin-top: -45px; }
.landing-event-info { position: relative; padding-top: 105px; }
.landing-event-info::before { content: "SAFE"; position: absolute; top: 60px; right: 0; color: #111; font-size: 150px; font-weight: 850; line-height: 1; letter-spacing: -10px; pointer-events: none; }
.landing-section-head { position: relative; z-index: 1; align-items: start; }
.landing-section-head h2 { max-width: 720px; font-size: 39px; line-height: 1.08; letter-spacing: -2.1px; }
.landing-section-head > p { padding-top: 28px; }
.info-bento { position: relative; z-index: 1; grid-template-columns: .72fr 1.28fr; grid-template-rows: 215px 215px; }
.bento-card { border-radius: 4px; }
.bento-date { background: var(--red); border-color: var(--red); }
.bento-date > span, .bento-date p { color: rgba(255,255,255,.72); }
.bento-date .bento-icon { background: rgba(0,0,0,.15); color: #fff; }
.bento-date > strong { font-size: 52px; }
.bento-location { background: #f0eee9; color: #0b0b0b; border-color: #f0eee9; }
.bento-location > span, .bento-location p { color: #666; }
.bento-location a { color: #111; }
.bento-credential { border-color: #49232a; background: #1b0d10; }
.bento-experience { border-radius: 4px; }
.landing-cta { border-radius: 4px; border-left: 3px solid var(--red); }

.landing-event-info { width: 100vw; margin-left: calc(50% - 50vw); padding: 90px max(24px,calc((100vw - 1080px)/2)) 65px; background: #f0eee9; color: #101010; }
.landing-event-info::before { top: 47px; right: max(24px,calc((100vw - 1080px)/2)); color: #e5e2dc; }
.landing-section-head { min-height: 220px; align-items: flex-start; padding-top: 27px; border-top: 1px solid #cbc8c1; }
.landing-section-head .eyebrow { color: var(--red); }
.landing-section-head h2 { max-width: 690px; }
.landing-section-head > p { max-width: 320px; color: #646464; }
.event-facts { padding: 43px 0; border-color: #c9c6bf; }
.event-fact { border-color: #ccc9c2; }
.event-fact > span { color: #777; }
.event-fact > strong { color: #111; }
.event-fact p { color: #646464; }
.fact-date > strong { color: var(--red); }
.fact-place a { color: #111; }
.credential-strip { grid-template-columns: 72px 1fr auto; gap: 25px; margin-top: 0; padding: 25px 28px; border: 0; background: var(--red); color: #fff; }
.credential-strip-date { border: 1px solid rgba(255,255,255,.55); background: transparent; }
.credential-strip-copy > span { color: rgba(255,255,255,.72); }
.credential-strip-copy p { color: rgba(255,255,255,.78); }
.credential-strip > button { padding: 11px 14px; border: 1px solid rgba(255,255,255,.45); color: #fff; }
.credential-strip > button:hover { border-color: #fff; color: #fff; }
.event-statement { min-height: 275px; margin-top: 18px; background: linear-gradient(90deg,rgba(5,5,5,.94),rgba(5,5,5,.18)),url('assets/ingresso.jpg') center 43%/cover; color: #fff; }
.event-statement p { max-width: 500px; font-size: 25px; }
.landing-cta { margin: 18px 0 0; padding: 23px 26px; border: 0; background: #111; color: #fff; }
.landing-cta span { color: #969696; }

.landing-event-info { background: #090909; color: #f6f6f6; }
.landing-event-info { padding-top: 55px; }
.landing-event-info::before { display: none; }
.timeline-heading { display: grid; grid-template-columns: 1fr 1.2fr; align-items: end; gap: 20px 60px; margin-bottom: 38px; }
.timeline-heading > span { grid-column: 1 / -1; color: var(--red); font-size: 8px; font-weight: 750; letter-spacing: 1.3px; }
.timeline-heading h2 { margin: 0; font-size: 38px; line-height: 1; letter-spacing: -2px; }
.timeline-heading p { margin: 0; color: #838383; font-size: 12px; line-height: 1.55; }
.landing-section-head { border-color: #292929; }
.landing-section-head > p { color: #888; }
.event-timeline { position: relative; display: grid; grid-template-columns: repeat(4,1fr); padding: 45px 0 48px; border-top: 1px solid #303030; border-bottom: 1px solid #303030; }
.event-timeline::before { content: ""; position: absolute; top: 62px; left: 12.5%; right: 12.5%; height: 1px; background: linear-gradient(90deg,#3a3a3a 0%,#3a3a3a 33.33%,var(--red) 33.33%,var(--red) 100%); }
.event-range-label { position: absolute; top: 13px; left: 25%; right: 0; color: #8c353f; font-size: 7px; font-weight: 750; letter-spacing: 1.2px; text-align: center; }
.timeline-day { position: relative; padding: 42px 26px 0; text-align: center; }
.timeline-day + .timeline-day { border-left: 1px solid #222; }
.timeline-node { width: 11px; height: 11px; position: absolute; z-index: 1; top: 12px; left: calc(50% - 5px); border: 2px solid #6a6a6a; border-radius: 50%; background: #090909; }
.timeline-day > span { display: block; margin-bottom: 11px; color: #666; font-size: 8px; font-weight: 750; letter-spacing: 1.3px; }
.timeline-day > strong { display: block; font-size: 49px; line-height: .95; letter-spacing: -3px; }
.timeline-day h3 { margin: 11px 0 4px; font-size: 13px; }
.timeline-day p { margin: 0; color: #777; font-size: 10px; }
.credential-day .timeline-node { border-color: var(--red); background: var(--red); box-shadow: 0 0 0 5px rgba(239,35,60,.1); }
.credential-day .timeline-node { border-color: var(--red); background: #090909; box-shadow: 0 0 0 4px rgba(239,35,60,.09); }
.credential-day > span { color: #aaa; }
.credential-day > strong { color: #f2f2f2; }
.credential-day h3 { color: #fff; }
.credential-day p { color: #aaa; }
.event-day .timeline-node { border-color: var(--red); background: var(--red); box-shadow: 0 0 0 4px rgba(239,35,60,.09); }
.event-day > strong { color: #fff; }
.event-essentials { display: grid; grid-template-columns: 1fr 1fr; margin-top: 48px; }
.event-essentials > div { padding: 5px 50px 5px 0; }
.event-essentials > div + div { padding: 5px 0 5px 50px; border-left: 1px solid #2c2c2c; }
.event-essentials span { display: block; margin-bottom: 21px; color: #777; font-size: 8px; font-weight: 750; letter-spacing: 1.2px; }
.event-essentials h3 { margin: 0 0 9px; font-size: 21px; letter-spacing: -.7px; }
.event-essentials p { margin: 0; color: #858585; font-size: 10px; line-height: 1.65; }
.event-essentials a, .event-essentials button { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; padding: 0; border: 0; background: none; color: #eee; font-size: 10px; font-weight: 700; text-decoration: none; cursor: pointer; }
.event-essentials a:hover, .event-essentials button:hover { color: var(--red); }
.event-essentials i { width: 13px; }

/* Painel administrativo */
.admin-screen { max-width: 1240px; margin: auto; padding: 52px 24px 90px; }
.admin-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 35px; margin-bottom: 34px; }
.admin-heading h1 { margin: 0; font-size: 39px; letter-spacing: -1.8px; }
.admin-heading p { margin: 9px 0 0; color: #888; font-size: 13px; }
.admin-heading-actions { display: flex; align-items: center; gap: 14px; }
.admin-heading-actions span { color: #777; font-size: 10px; }
.admin-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-bottom: 25px; }
.admin-stat { padding: 20px; border: 1px solid #292929; border-top: 2px solid var(--red); background: #111; }
.admin-stat strong { display: block; margin-bottom: 7px; font-size: 28px; letter-spacing: -1.3px; }
.admin-stat span { color: #777; font-size: 8px; font-weight: 750; letter-spacing: 1px; }
.admin-category-summary { margin-bottom: 25px; padding: 20px; border: 1px solid #292929; border-radius: 14px; background: #101010; }
.admin-category-summary-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 15px; }
.admin-category-summary-heading span { color: var(--red); font-size: 8px; font-weight: 800; letter-spacing: 1.1px; }
.admin-category-summary-heading h2 { margin: 5px 0 0; font-size: 18px; }
.admin-category-summary-heading small { color: #666; font-size: 9px; }
.admin-confirmed-total { text-align: right; }
.admin-confirmed-total strong { display: block; color: #ddd; font-size: 18px; line-height: 1; }
.admin-confirmed-total small { display: block; margin-top: 5px; color: #666; font-size: 8px; }
.admin-category-summary-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 9px; }
.admin-category-confirmed { position: relative; overflow: hidden; padding: 15px; border: 1px solid #2c2c2c; border-radius: 9px; background: #151515; }
.admin-category-confirmed::before { content: ''; position: absolute; inset: 0 auto 0 0; width: 3px; background: var(--red); }
.admin-category-confirmed strong { display: block; font-size: 23px; }
.admin-category-confirmed span { display: block; margin-top: 4px; color: #888; font-size: 8px; font-weight: 800; letter-spacing: .8px; }
.admin-table-tabs { display: flex; gap: 5px; margin: 32px 0 15px; border-bottom: 1px solid #292929; }
.admin-table-tabs button { min-height: 45px; display: flex; align-items: center; gap: 9px; padding: 0 18px; border: 0; border-bottom: 2px solid transparent; background: none; color: #777; font-size: 11px; font-weight: 700; cursor: pointer; }
.admin-table-tabs button:hover { color: #ddd; }
.admin-table-tabs button.active { border-bottom-color: var(--red); color: #fff; }
.admin-table-tabs span { min-width: 21px; padding: 4px 6px; border-radius: 99px; background: #202020; color: #999; font-size: 8px; text-align: center; }
.admin-table-tabs button.active span { background: rgba(239,35,60,.12); color: #ff6375; }
.admin-toolbar { display: grid; grid-template-columns: minmax(280px,1fr) 210px auto; gap: 10px; margin-bottom: 16px; }
.admin-toolbar-actions { display: flex; gap: 10px; }
.admin-search { height: 48px; }
.admin-toolbar select { min-height: 48px; padding: 0 13px; border: 1px solid #353535; border-radius: 4px; outline: 0; background: #111; color: #ddd; font-size: 11px; }
.admin-advanced-filters { display: grid; grid-template-columns: 180px 210px minmax(190px,1fr) auto auto; gap: 9px; padding: 12px; border: 1px solid #292929; border-radius: 10px; background: #0e0e0e; }
.admin-advanced-filters select, .admin-advanced-filters input { min-height: 44px; padding: 0 12px; border: 1px solid #353535; border-radius: 6px; outline: 0; background: #151515; color: #ddd; font: inherit; font-size: 10px; }
.admin-advanced-filters input:focus, .admin-advanced-filters select:focus { border-color: var(--red); }
.admin-advanced-filters .btn { min-height: 44px; padding: 0 15px; white-space: nowrap; }
.admin-filter-result { min-height: 15px; margin: 8px 2px 0; color: #777; font-size: 9px; }
.admin-list-section { margin-top: 25px; }
.admin-list-heading { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 13px; }
.admin-list-heading span { display: block; margin-bottom: 7px; color: var(--red); font-size: 8px; font-weight: 750; letter-spacing: 1.2px; }
.admin-list-heading h2 { margin: 0; font-size: 20px; letter-spacing: -.5px; }
.admin-list-heading > strong { color: #666; font-size: 24px; }
.admin-table-wrap { overflow-x: auto; border: 1px solid #292929; background: #101010; }
.admin-table { width: 100%; min-width: 1050px; border-collapse: collapse; }
.admin-table th { padding: 13px 15px; border-bottom: 1px solid #303030; color: #666; font-size: 8px; font-weight: 750; letter-spacing: .8px; text-align: left; text-transform: uppercase; }
.admin-table td { padding: 15px; border-bottom: 1px solid #242424; color: #aaa; font-size: 10px; vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: 0; }
.admin-table tbody tr:hover { background: #141414; }
.admin-person strong, .admin-person span { display: block; }
.admin-person strong { margin-bottom: 4px; color: #eee; font-size: 11px; }
.admin-person span { color: #6f6f6f; font-size: 9px; }
.admin-relation { margin-top: 5px; color: #b96772 !important; }
.admin-pill { display: inline-flex; padding: 5px 7px; border-radius: 3px; background: rgba(72,199,142,.1); color: var(--green); font-size: 8px; font-weight: 750; }
.admin-pill.pending { background: rgba(239,35,60,.1); color: #ff6375; }
.admin-flag-pills { display: flex; flex-wrap: wrap; gap: 4px; max-width: 190px; }
.admin-flag-pills span { padding: 4px 6px; border: 1px solid #3b3334; border-radius: 99px; background: #1b1415; color: #ff8996; font-size: 7px; font-weight: 750; white-space: nowrap; }
.admin-flags { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 9px; margin: 4px 0 0; padding: 18px; border: 1px solid #303030; border-radius: 12px; background: linear-gradient(145deg,#101010,#0b0b0b); }
.admin-flags legend { padding: 0 9px; color: #8b8b8b; font-size: 8px; font-weight: 800; letter-spacing: 1.15px; }
.admin-flags label { position: relative; display: flex; align-items: center; gap: 10px; min-height: 48px; margin: 0; padding: 10px 12px; overflow: hidden; border: 1px solid #2d2d2d; border-radius: 9px; background: #141414; cursor: pointer; transition: border-color .18s ease,background .18s ease,transform .18s ease; }
.admin-flags label:hover { border-color: #4a4a4a; background: #181818; transform: translateY(-1px); }
.admin-flags input { appearance: none; -webkit-appearance: none; flex: 0 0 20px; width: 20px; height: 20px; min-height: 20px; margin: 0; border: 1px solid #555; border-radius: 6px; outline: 0; background: #090909; cursor: pointer; transition: all .18s ease; }
.admin-flags input::after { content: ''; display: block; width: 9px; height: 5px; margin: 5px 0 0 4px; border-bottom: 2px solid transparent; border-left: 2px solid transparent; transform: rotate(-45deg); }
.admin-flags input:checked { border-color: var(--red); background: var(--red); box-shadow: 0 0 0 3px rgba(239,35,60,.13); }
.admin-flags input:checked::after { border-color: #fff; }
.admin-flags input:focus-visible { box-shadow: 0 0 0 3px rgba(239,35,60,.25); }
.admin-flags label:has(input:checked) { border-color: rgba(239,35,60,.55); background: linear-gradient(135deg,rgba(239,35,60,.13),rgba(239,35,60,.035)); }
.admin-flags label:has(input:checked)::after { content: 'ATIVO'; position: absolute; top: 5px; right: 7px; color: #ff7081; font-size: 6px; font-weight: 850; letter-spacing: .7px; }
.admin-flags span { color: #aaa; font-size: 9px; font-weight: 700; line-height: 1.25; transition: color .18s ease; }
.admin-flags label:has(input:checked) span { color: #fff; }
.admin-proof { color: #ccc; text-decoration: underline; cursor: pointer; }
.admin-note-preview { display: block; max-width: 150px; overflow: hidden; color: #888; text-overflow: ellipsis; white-space: nowrap; }
.admin-table .btn { min-height: 34px; padding: 0 11px; font-size: 9px; white-space: nowrap; }
.admin-empty { padding: 45px; border: 1px solid #292929; color: #777; text-align: center; }
.admin-person-modal { max-width: 720px; text-align: left; }
.admin-category-modal { max-width: 560px; text-align: left; }
.admin-category-list { display: grid; gap: 8px; margin: 24px 0; }
.admin-category-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 12px; border: 1px solid #292929; background: #101010; }
.admin-category-row span { color: #eee; font-size: 11px; font-weight: 700; }
.admin-category-row input { flex: 1; min-height: 38px; padding: 8px 10px; border: 1px solid #353535; background: #0c0c0c; color: #fff; font: inherit; font-size: 11px; }
.admin-category-form { padding-top: 18px; border-top: 1px solid #292929; }
.admin-category-form > label { display: block; margin-bottom: 8px; color: #aaa; font-size: 10px; }
.admin-category-form > div { display: flex; gap: 8px; }
.admin-category-form input { flex: 1; min-height: 44px; padding: 10px 12px; border: 1px solid #353535; background: #0c0c0c; color: #fff; font: inherit; font-size: 12px; }
.admin-form { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-top: 24px; }
.admin-form .full { grid-column: 1 / -1; }
.admin-form label { color: #aaa; }
.admin-form input, .admin-form select, .admin-form textarea { width: 100%; min-height: 46px; padding: 10px 12px; border: 1px solid #353535; border-radius: 4px; outline: 0; background: #0c0c0c; color: #fff; font: inherit; font-size: 12px; }
.admin-form textarea { min-height: 90px; resize: vertical; }
.admin-form input:focus, .admin-form select:focus, .admin-form textarea:focus { border-color: var(--red); }
#admin-holder-field { position: relative; }
.admin-holder-results { width: 100%; max-height: 220px; position: absolute; top: calc(100% + 5px); left: 0; z-index: 30; overflow-y: auto; border: 1px solid #3a3a3a; background: #111; box-shadow: 0 16px 35px rgba(0,0,0,.55); }
.admin-holder-results button { width: 100%; display: block; padding: 11px 12px; border: 0; border-bottom: 1px solid #282828; background: transparent; color: #ddd; font-size: 10px; line-height: 1.4; text-align: left; cursor: pointer; }
.admin-holder-results button:last-child { border-bottom: 0; }
.admin-holder-results button:hover, .admin-holder-results button:focus { outline: 0; background: #1d1d1d; color: #fff; }
.admin-holder-results > span { display: block; padding: 13px; color: #777; font-size: 10px; }
.admin-form-actions { grid-column: 1 / -1; position: sticky; bottom: -34px; z-index: 10; display: flex; justify-content: flex-end; gap: 9px; margin: 6px -34px -34px; padding: 17px 34px; border-top: 1px solid #292929; background: rgba(18,18,18,.97); backdrop-filter: blur(10px); }
.admin-quotas { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(4,1fr); gap: 9px; padding: 15px; border: 1px solid #292929; }
.admin-quotas > span { grid-column: 1 / -1; color: #777; font-size: 9px; font-weight: 750; letter-spacing: 1px; }
.admin-quotas label { margin: 0; }
.admin-quotas label small { display: block; margin-top: 4px; color: var(--green); font-size: 8px; font-weight: 600; }
.admin-quotas input { margin-top: 7px; }

.app-screen { max-width: 1120px; }
.app-top h1 { font-size: 43px; }
.stats-row { gap: 0; padding: 0; border: 0; border-radius: 0; background: transparent; }
.stat { min-width: 170px; padding: 0 28px 0 0; }
.stat span { font-size: 25px; }
.event-card { border-radius: 4px; border-left: 3px solid var(--red); }
.ticket-card { border-radius: 4px; background: #101010; }
.ticket-card:hover { transform: none; border-color: #484848; }
.ticket-stripe { background: #090909; }
.status { border-radius: 3px; }
.form-panel, .ticket-summary, .badge-preview, .badge-preview > div, .upload-zone, .review-box, .file-preview { border-radius: 4px; }
.ticket-summary { border-top: 3px solid var(--red); }
.modal, .issued-ticket { border-radius: 4px; }

@media (max-width: 800px) {
  .site-header { height: 66px; padding: 0 18px; }
  .brand img { width: 68px; }
  .header-event { display: none; }
  .header-actions { gap: 12px; }
  .event-link { font-size: 10px; }
  .floating-support { width: 54px; height: 54px; right: 16px; bottom: max(16px,env(safe-area-inset-bottom)); }
  .login-screen.active { display: block; padding: 46px 18px; }
  .login-copy h1 { font-size: 39px; letter-spacing: -2px; }
  .login-copy { padding: 20px 0 42px; }
  .login-copy { min-height: 580px; padding: 50px 0 70px; }
  .login-copy h1 { max-width: 370px; font-size: 46px; line-height: .98; letter-spacing: -3px; }
  .login-copy::after { inset: 0 -18px; width: auto; height: auto; opacity: .28; }
  .login-copy::before { display: block; }
  .hero-actions { width: 100%; flex-direction: column; gap: 15px; }
  .hero-actions .btn { width: 100%; max-width: 330px; }
  .event-countdown { margin: -45px auto 60px; }
  .access-card { display: block; margin: 20px auto 80px; padding: 37px 24px 25px; }
  .access-card::before { left: 24px; }
  .access-card h2 { max-width: 100%; font-size: 28px; }
  .access-card > p { margin-bottom: 26px; }
  .access-card form { padding: 0; }
  .input-shell input, .field input { font-size: 16px; }
  .btn { min-height: 50px; }
  .login-support { line-height: 1.6; }
  .access-card .demo-hint { margin-top: 14px; }
  .login-copy > p { font-size: 14px; }
  .event-meta { flex-direction: column; gap: 15px; margin-bottom: 38px; }
  .access-card { padding: 29px 23px; }
  .scroll-hint { margin-top: 42px; }
  .landing-event-info { padding-top: 75px; }
  .landing-event-info::before { top: 45px; font-size: 85px; letter-spacing: -7px; }
  .landing-section-head { display: block; margin-bottom: 30px; }
  .landing-section-head h2 { font-size: 31px; }
  .landing-section-head > p { margin-top: 17px; }
  .info-bento { grid-template-columns: 1fr; grid-template-rows: auto; }
  .bento-card { min-height: 205px; padding: 24px; }
  .bento-card { border-radius: 3px; }
  .bento-date > strong { margin-top: 34px; }
  .bento-location { padding-right: 75px; }
  .bento-location h3 { margin-top: 30px; }
  .bento-credential { grid-template-columns: 74px 1fr; gap: 18px; min-height: 190px; }
  .credential-date strong { font-size: 29px; }
  .bento-experience { min-height: 225px; }
  .event-facts { grid-template-columns: 1fr 1fr; padding: 0; }
  .event-fact { min-height: 150px; padding: 25px 18px; border-bottom: 1px solid #2c2c2c; }
  .event-fact:first-child { padding-left: 0; }
  .event-fact:nth-child(2) { padding-right: 0; border-right: 0; }
  .event-fact:last-child { grid-column: 1 / -1; min-height: 175px; padding: 27px 0 20px; border-bottom: 0; }
  .event-fact > span { margin-bottom: 23px; }
  .credential-strip { grid-template-columns: 58px 1fr; gap: 16px; margin-top: 25px; }
  .credential-strip-date { width: 56px; height: 56px; }
  .credential-strip-date strong { font-size: 23px; }
  .credential-strip > button { grid-column: 2; justify-self: start; padding: 0; }
  .event-statement { min-height: 190px; margin-top: 38px; padding: 23px; }
  .event-statement p { max-width: 290px; font-size: 19px; }
  .landing-event-info { width: 100vw; margin-left: -18px; padding: 65px 18px 45px; }
  .landing-event-info { padding-top: 40px; }
  .landing-event-info::before { top: 35px; right: 18px; }
  .landing-section-head { min-height: 0; padding: 22px 0 45px; }
  .event-facts { padding: 0; }
  .credential-strip { margin-top: 0; padding: 20px 18px; }
  .credential-strip > button { padding: 9px 11px; }
  .event-statement { min-height: 220px; margin-top: 12px; }
  .landing-cta { padding: 21px; }
  .event-timeline { grid-template-columns: repeat(4,1fr); padding: 35px 0 37px; overflow: hidden; }
  .event-timeline::before { top: 48px; left: 11%; right: 11%; }
  .timeline-day { padding: 35px 5px 0; }
  .timeline-node { top: 8px; }
  .timeline-day > span { font-size: 7px; letter-spacing: .7px; }
  .timeline-day > strong { font-size: 37px; letter-spacing: -2px; }
  .timeline-day h3 { font-size: 10px; }
  .timeline-day p { font-size: 8px; }
  .event-essentials { grid-template-columns: 1fr; margin-top: 37px; }
  .event-essentials > div { padding: 0 0 30px; }
  .event-essentials > div + div { padding: 30px 0 0; border-top: 1px solid #2c2c2c; border-left: 0; }
  .timeline-heading { display: block; margin-bottom: 28px; }
  .timeline-heading h2 { margin-top: 10px; font-size: 32px; }
  .timeline-heading p { margin-top: 10px; }
  .event-range-label { top: 6px; font-size: 6px; letter-spacing: .7px; }
  .location-feature { grid-template-columns: 1fr; min-height: 0; }
  .location-copy { padding: 31px 25px; }
  .location-copy h3 { font-size: 33px; }
  .location-visual { min-height: 285px; padding: 28px; }
  .schedule-grid { grid-template-columns: 1fr; }
  .schedule-card { min-height: 190px; padding: 26px; }
  .schedule-card h3 { margin-top: 40px; }
  .credential-feature { grid-template-columns: 1fr; }
  .credential-photo { min-height: 320px; }
  .credential-copy { padding: 32px 25px; }
  .credential-copy h3 { font-size: 27px; }
  .landing-cta { align-items: flex-start; flex-wrap: wrap; margin-top: 35px; padding: 22px; }
  .landing-cta div { min-width: calc(100% - 90px); }
  .landing-cta .btn { width: 100%; }
  .app-screen { padding: 40px 18px 65px; }
  .admin-screen { padding: 40px 18px 70px; }
  .admin-heading { display: block; }
  .admin-heading h1 { font-size: 31px; }
  .admin-heading-actions { justify-content: space-between; margin-top: 22px; }
  .admin-stats { grid-template-columns: 1fr 1fr; }
  .admin-category-summary-grid { grid-template-columns: 1fr 1fr; }
  .admin-table-tabs button { flex: 1; justify-content: center; padding: 0 10px; }
  .admin-toolbar { grid-template-columns: 1fr; }
  .admin-advanced-filters { grid-template-columns: 1fr 1fr; }
  .admin-advanced-filters input { grid-column: 1 / -1; }
  .admin-toolbar-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .admin-toolbar select, .admin-toolbar .btn { width: 100%; }
  .admin-table-wrap { overflow: visible; border: 0; background: transparent; }
  .admin-table { min-width: 0; }
  .admin-table thead { display: none; }
  .admin-table, .admin-table tbody, .admin-table tr, .admin-table td { display: block; width: 100%; }
  .admin-table tr { margin-bottom: 12px; padding: 18px; border: 1px solid #292929; border-top: 2px solid var(--red); background: #101010; }
  .admin-table td { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 9px 0; border: 0; text-align: right; }
  .admin-table td::before { content: attr(data-label); color: #666; font-size: 8px; font-weight: 750; letter-spacing: .7px; text-align: left; text-transform: uppercase; }
  .admin-table td:first-child { display: block; padding-top: 0; text-align: left; }
  .admin-table td:first-child::before { display: none; }
  .admin-table td:last-child { padding-bottom: 0; }
  .admin-table td:last-child::before { display: none; }
  .admin-table td:last-child .btn { width: 100%; }
  .admin-note-preview { max-width: 190px; }
  .admin-form { grid-template-columns: 1fr; }
  .admin-form .full, .admin-quotas, .admin-form-actions { grid-column: 1; }
  .admin-quotas { grid-template-columns: 1fr 1fr; }
  .admin-quotas > span { grid-column: 1 / -1; }
  .app-top, .section-heading { display: block; }
  .app-top h1 { font-size: 32px; }
  .progress-card { width: 100%; margin-top: 25px; }
  .stats-row { justify-content: space-between; gap: 8px; margin: 27px 0 43px; padding: 14px; }
  .stat { min-width: 0; flex: 1; display: block; padding-right: 10px; }
  .stat span, .stat small { display: block; }
  .stat span { margin-bottom: 3px; }
  .section-heading p { margin-top: 7px; }
  .event-card { align-items: flex-start; flex-wrap: wrap; margin: -22px 0 40px; }
  .event-card-copy { min-width: calc(100% - 85px); }
  .event-card-actions { width: 100%; padding-left: 75px; }
  .event-card-actions button, .event-card-actions a { flex: 1; justify-content: center; }
  .hotel-section { margin: -10px 0 42px; padding: 24px 18px; }
  .hotel-heading { display: block; }
  .hotel-heading > p { margin-top: 9px; }
  .hotel-grid { grid-template-columns: 1fr; }
  .hotel-card { min-height: 130px; }
  .hotel-card h3 { margin-top: 23px; }
  .hotel-contact { align-items: flex-start; flex-direction: column; }
  .hotel-contact-actions { width: 100%; flex-direction: column; align-items: stretch; }
  .hotel-contact-actions a { justify-content: center; }
  .ticket-grid { grid-template-columns: 1fr; }
  .ticket-card { grid-template-columns: 70px minmax(0,1fr); }
  .ticket-body { min-width: 0; }
  .ticket-stripe img { width: 43px; }
  .form-layout { display: block; }
  .ticket-summary { min-height: 180px; position: relative; top: auto; margin-bottom: 14px; }
  .ticket-summary .big-sector { margin-top: 25px; }
  .form-panel { padding: 29px 21px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .badge-preview { grid-template-columns: 1fr; }
  .badge-preview > span { margin-bottom: 9px; }
  .badge-preview > div { border-top: 1px dashed #333; border-left: 0; }
  .review-box dl { grid-template-columns: 1fr; }
  .form-actions, .success-actions { gap: 8px; }
  .form-actions .btn, .success-actions .btn { flex: 1; padding: 0 9px; }
  .success-screen h1 { font-size: 34px; }
  .issued-ticket { grid-template-columns: 1fr 120px; }
  .real-qr, .qr-placeholder { width: 96px; height: 96px; }
  .modal-backdrop { padding: 16px; }
  .modal { max-height: calc(100dvh - 32px); padding: 28px 18px; }
  .admin-form-actions { bottom: -28px; margin: 6px -18px -28px; padding: 15px 18px; }
  .modal .issued-ticket { transform: scale(.94); transform-origin: center; }
}

@media (max-width: 420px) {
  .site-header { padding: 0 14px; }
  .header-actions { gap: 8px; }
  .help-link { font-size: 11px; }
  .event-link { font-size: 9px; }
  .login-screen.active { padding-right: 14px; padding-left: 14px; }
  .login-copy::after { right: -14px; left: -14px; }
  .login-copy h1 { font-size: clamp(38px,12vw,46px); letter-spacing: -2.5px; }
  .login-copy .hero-kicker { max-width: 310px; line-height: 1.5; }
  .countdown-units { gap: 9px; }
  .countdown-units > div { min-width: 52px; }
  .countdown-units strong { font-size: 24px; }
  .access-card { padding: 29px 19px; }
  .stats-row { padding-right: 8px; padding-left: 8px; }
  .stat { padding-right: 5px; }
  .stat span { font-size: 22px; }
  .stat small { font-size: 7px; }
  .event-card-actions { padding-left: 0; }
  .issued-ticket { grid-template-columns: minmax(0,1fr) 104px; }
  .issued-info { min-width: 0; padding: 18px; }
  .issued-info h3 { overflow-wrap: anywhere; font-size: 16px; }
  .qr-area { padding: 10px; }
  .real-qr, .qr-placeholder { width: 84px; height: 84px; }
  .form-actions, .success-actions { flex-direction: column; }
  .form-actions .btn, .success-actions .btn { width: 100%; flex: none; }
}

/* Hero mobile: mantém a arte como fundo, mas libera uma coluna limpa para o conteúdo. */
@media (max-width: 800px) {
  .login-copy {
    min-height: 590px;
    justify-content: flex-start;
    padding: 76px 0 54px;
  }
  .login-copy::after {
    inset: 0 -18px;
    background: linear-gradient(0deg,#090909 0%,rgba(9,9,9,.34) 48%,rgba(9,9,9,.82) 100%),linear-gradient(90deg,#090909 0%,rgba(9,9,9,.08) 38%,rgba(9,9,9,.08) 62%,#090909 100%),url('assets/ingresso.jpg') center top/100% auto no-repeat;
    opacity: .26;
  }
  .login-copy .hero-kicker { margin-bottom: 18px; }
  .login-copy h1 { margin: 0; }
  .login-copy > p { max-width: 330px; margin: 20px auto 27px; }
  .event-meta { width: 190px; gap: 13px; margin: 0 auto; }
  .event-meta > div { width: 100%; justify-content: center; gap: 10px; }
  .hero-actions { margin-top: 31px; gap: 15px; }
  .hero-actions .text-action { margin-top: 0; }
}

@media (max-width: 420px) {
  .login-copy {
    min-height: 470px;
    padding: 32px 0 25px;
  }
  .login-copy .hero-kicker { margin-bottom: 14px; font-size: 10px; letter-spacing: 1.6px; }
  .login-copy h1 { font-size: clamp(38px,12vw,43px); }
  .login-copy > p { margin: 14px auto 20px; font-size: 12.5px; line-height: 1.45; }
  .event-meta { gap: 10px; }
  .event-meta span { font-size: 10px; }
  .event-meta small { font-size: 8px; }
  .hero-actions { margin-top: 22px; }
  .hero-actions .hero-confirm-button { min-height: 48px; font-size: 11px; }
  .hero-actions .text-action { font-size: 11px; }
}

@media (max-width: 800px) {
  .event-meta > div {
    justify-content: flex-start;
  }
  .event-meta > div > i {
    flex: 0 0 19px;
  }
  .event-meta > div > span {
    flex: 1;
    text-align: center;
  }
}

@media (max-width: 700px) {
  .admin-flags { grid-template-columns: repeat(2,minmax(0,1fr)); padding: 14px; }
}

@media (max-width: 420px) {
  .admin-flags { grid-template-columns: 1fr; }
  .admin-advanced-filters { grid-template-columns: 1fr; }
  .admin-advanced-filters input { grid-column: auto; }
  .admin-category-summary-heading { align-items: flex-start; flex-direction: column; }
}
