:root {
  --bg: #eef1f6;
  --surface: #ffffff;
  --surface2: #f4f6fa;
  --ink: #191d25;
  --muted: #5b6472;
  --line: rgba(25, 29, 37, .12);
  --accent: #4a6fa5;
}
[data-theme="dark"] {
  --bg: #0f1218;
  --surface: #161a21;
  --surface2: #1c212b;
  --ink: #e7e9ee;
  --muted: #96a0af;
  --line: rgba(255, 255, 255, .13);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  min-height: 100vh;
  background: radial-gradient(135% 95% at 50% -20%, color-mix(in srgb, var(--accent) 12%, var(--bg)) 0%, var(--bg) 52%);
  color: var(--ink);
  font-family: 'Manrope', system-ui, sans-serif;
  position: relative;
  overflow-x: hidden;
  transition: background .5s ease, color .5s ease;
}
a { color: var(--accent); text-decoration: none; }
a:hover { opacity: .72; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes floatIn { from { opacity: 0; } to { opacity: 1; } }

@media (max-width: 820px) {
  .two-col { grid-template-columns: 1fr !important; }
  .grid-2 { grid-template-columns: 1fr !important; }
  .hide-sm { display: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  #cursor, .blob { display: none !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .tab-panel { animation: none !important; }
}

/* Background blobs */
#blobs { position: fixed; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.blob { position: absolute; border-radius: 50%; will-change: transform; }
.blob-0 { top: -8vh; left: -6vw; width: 46vw; height: 46vw; background: radial-gradient(circle at 40% 40%, var(--accent), transparent 68%); opacity: .28; filter: blur(28px); }
.blob-1 { bottom: -14vh; right: -8vw; width: 52vw; height: 52vw; background: radial-gradient(circle at 50% 50%, var(--accent), transparent 66%); opacity: .20; filter: blur(38px); }
.blob-2 { top: 34vh; left: 52vw; width: 30vw; height: 30vw; background: radial-gradient(circle at 50% 50%, var(--ink), transparent 70%); opacity: .09; filter: blur(32px); }

/* Custom cursor */
#cursor {
  position: fixed; top: 0; left: 0; width: 26px; height: 26px;
  border: 1.5px solid var(--accent); border-radius: 50%;
  pointer-events: none; z-index: 9999; opacity: 0;
  transition: width .2s, height .2s;
  will-change: transform;
  transform: translate(-100px, -100px);
}
#cursor.hovering { width: 60px; height: 60px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: color-mix(in srgb, var(--bg) 72%, transparent);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: 1120px; margin: 0 auto; padding: 15px 26px;
  display: flex; align-items: center; gap: 20px;
}
.logo { background: none; border: none; cursor: pointer; padding: 0; display: flex; align-items: baseline; gap: 9px; flex: none; }
.logo-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); display: inline-block; flex: none; }
.logo-word { font-family: 'Manrope', sans-serif; font-weight: 600; font-size: 21px; letter-spacing: .01em; color: var(--ink); white-space: nowrap; }

.brand-group { display: flex; align-items: center; gap: 14px; flex: none; }
.brand-divider { width: 1px; height: 22px; background: var(--line); flex: none; }
.brand-logo-chip { display: flex; align-items: center; flex: none; height: 34px; }
.brand-logo-img { height: 100%; width: auto; display: block; }

.logo-dark { display: none; }
[data-theme="dark"] .logo-light { display: none; }
[data-theme="dark"] .logo-dark { display: block; }

.main-nav { margin-left: auto; display: flex; gap: 22px; overflow-x: auto; scrollbar-width: none; }
.main-nav::-webkit-scrollbar { display: none; }
.nav-item {
  position: relative; background: none; border: none; cursor: pointer;
  font-family: 'Manrope', sans-serif; font-size: 14px; letter-spacing: .01em;
  padding: 6px 1px; white-space: nowrap;
}
.nav-label { color: var(--muted); font-weight: 500; transition: color .3s; }
.nav-item.active .nav-label { color: var(--ink); font-weight: 600; }
.nav-bar {
  position: absolute; left: 0; right: 0; bottom: -3px; height: 2px;
  background: var(--accent); transform-origin: left; transform: scaleX(0);
  transition: transform .35s cubic-bezier(.2, .7, .2, 1);
  display: block;
}
.nav-item.active .nav-bar { transform: scaleX(1); }

.nav-toggle {
  display: none; flex: none; width: 36px; height: 36px; margin-left: auto;
  background: none; border: none; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s, opacity .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 720px) {
  .header-inner { padding: 12px 20px; gap: 12px; }
  .logo-word { font-size: 18px; }
  .brand-group { gap: 10px; }
  .brand-logo-chip { height: 26px; }
  .nav-toggle { display: flex; }
  .main-nav {
    margin-left: 0; position: fixed; top: 61px; left: 0; right: 0; z-index: 49;
    flex-direction: column; align-items: flex-start; gap: 2px; overflow: hidden;
    background: var(--surface); border-bottom: 1px solid var(--line);
    max-height: 0; padding: 0 20px; opacity: 0;
    transition: max-height .3s ease, opacity .25s ease, padding .3s ease;
  }
  .main-nav.open { max-height: 70vh; opacity: 1; padding: 10px 20px 18px; overflow-y: auto; }
  .nav-item { width: 100%; padding: 12px 2px; }
  .nav-bar { display: none; }
}

.theme-toggle {
  flex: none; width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--line); background: var(--surface2); color: var(--ink);
  cursor: pointer; font-size: 14px; display: grid; place-items: center;
  transition: transform .3s;
}
.theme-toggle:hover { transform: rotate(18deg); }

/* Main / tabs */
.site-main { position: relative; z-index: 10; max-width: 1120px; margin: 0 auto; padding: 0 26px 120px; min-height: 70vh; }
.tab-panel { animation: fadeUp .6s ease both; padding: 70px 0; }
.tab-panel[hidden] { display: none; }
.tab-inicio { padding: min(15vh, 120px) 0 70px; text-align: center; }

.eyebrow { font-family: 'Manrope', sans-serif; font-size: 13px; letter-spacing: .28em; text-transform: uppercase; color: var(--accent); margin: 0 0 20px; }
.eyebrow.center { margin: 0 0 26px; }

/* Hero */
.hero-title {
  font-family: 'Manrope', sans-serif; font-weight: 600; letter-spacing: -.01em;
  font-size: clamp(48px, 9vw, 116px); line-height: .98;
  margin: 0 auto 30px; max-width: 16ch;
}
.hero-sub { font-size: 14px; letter-spacing: .32em; text-transform: uppercase; color: var(--muted); margin: 0 auto 44px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

.btn {
  font-family: 'Manrope', sans-serif; font-size: 15px; font-weight: 600; letter-spacing: -.01em;
  border-radius: 980px; padding: 14px 32px; cursor: pointer;
}
.btn-primary {
  background: var(--accent); color: #fff; border: none;
  box-shadow: 0 8px 22px color-mix(in srgb, var(--accent) 38%, transparent);
  transition: transform .28s cubic-bezier(.2, .7, .2, 1), box-shadow .28s, filter .28s;
}
.btn-primary:hover { transform: translateY(-2px) scale(1.02); filter: brightness(1.08); box-shadow: 0 12px 30px color-mix(in srgb, var(--accent) 50%, transparent); }
.btn-secondary {
  background: color-mix(in srgb, var(--ink) 6%, transparent); color: var(--ink); border: 1px solid var(--line);
  transition: transform .28s cubic-bezier(.2, .7, .2, 1), background .28s, border-color .28s;
}
.btn-secondary:hover { transform: translateY(-2px) scale(1.02); background: color-mix(in srgb, var(--ink) 11%, transparent); border-color: var(--accent); }

.stats-grid {
  margin-top: 76px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
}
.stat-cell { background: var(--surface); padding: 26px 24px; }
.stat-num { font-family: 'Manrope', sans-serif; font-weight: 600; letter-spacing: -.02em; font-size: 38px; line-height: 1; color: var(--ink); }
.stat-num.accent { color: var(--accent); }
.stat-label { color: var(--muted); font-size: 14px; margin-top: 8px; }
.stat-cell-logo { display: flex; align-items: center; justify-content: center; }
.stat-logo { height: 56px; width: auto; }

.hero-photo-wrap { margin-top: 24px; max-width: 460px; margin-left: auto; margin-right: auto; }
.hero-photo-box {
  aspect-ratio: 3 / 4; border-radius: 24px; overflow: hidden; border: 1px solid var(--line);
  box-shadow: 0 12px 44px color-mix(in srgb, var(--ink) 9%, transparent);
}
.hero-photo { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; display: block; }

/* Section title */
.section-title { font-family: 'Manrope', sans-serif; font-weight: 600; letter-spacing: -.03em; font-size: clamp(32px, 4.5vw, 54px); line-height: 1.05; margin: 0 0 30px; }
.section-title.big-gap { margin-bottom: 56px; }
.section-title.small-gap { margin: 0 0 24px; }

/* Bio */
.bio-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 56px; align-items: start; }
.body-text { font-size: 18px; line-height: 1.7; color: var(--muted); margin: 0 0 20px; }
.body-text.last { margin: 0; }
.ink { color: var(--ink); }
.ink.strong { font-weight: 600; }
.bio-aside { background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: 28px; }
.aside-label { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.focus-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.focus-list li { display: flex; gap: 12px; align-items: baseline; }
.focus-list .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex: none; transform: translateY(-2px); }
.focus-list span:last-child { font-size: 15px; line-height: 1.4; }
.aside-divider { height: 1px; background: var(--line); margin: 24px 0; }
.aside-rows { display: flex; flex-direction: column; gap: 12px; font-size: 14px; }
.aside-row { display: flex; justify-content: space-between; }
.muted { color: var(--muted); }
.accent-text { color: var(--accent); }

/* Timeline */
.timeline { position: relative; padding-left: 34px; }
.timeline-line { position: absolute; left: 5px; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(var(--accent), var(--line)); }
.timeline-item { position: relative; padding-bottom: 44px; }
.timeline-dot { position: absolute; left: -34px; top: 6px; width: 12px; height: 12px; border-radius: 50%; background: var(--bg); border: 2px solid var(--accent); }
.timeline-year { font-family: 'Manrope', sans-serif; font-weight: 600; letter-spacing: -.02em; font-size: 28px; color: var(--accent); line-height: 1; margin-bottom: 8px; }
.timeline-title { font-size: 19px; font-weight: 600; margin-bottom: 4px; }
.timeline-local { font-size: 14px; color: var(--accent); margin-bottom: 10px; }
.timeline-desc { font-size: 16px; line-height: 1.6; color: var(--muted); max-width: 60ch; }

/* Eventos */
.featured-event {
  border: 1px solid var(--accent); border-radius: 22px; overflow: hidden; margin-bottom: 20px;
  background: var(--surface); display: grid; grid-template-columns: 1fr 1fr;
  font: inherit; text-align: left; cursor: pointer; padding: 0; width: 100%;
  transition: transform .3s, box-shadow .3s;
}
.featured-event:hover { transform: translateY(-2px); box-shadow: 0 14px 34px color-mix(in srgb, var(--accent) 22%, transparent); }
.featured-text { padding: 34px 36px; display: flex; flex-direction: column; justify-content: center; }
.badge { display: inline-block; align-self: flex-start; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: #fff; background: var(--accent); border-radius: 999px; padding: 4px 13px; margin-bottom: 18px; }
.featured-title { font-family: 'Manrope', sans-serif; font-weight: 600; letter-spacing: -.02em; font-size: clamp(26px, 3.4vw, 34px); line-height: 1.1; margin-bottom: 14px; }
.featured-desc { font-size: 16px; line-height: 1.65; color: var(--muted); }
.featured-photo { position: relative; min-height: 250px; border-left: 1px solid var(--line); }
.featured-img { width: 100%; height: 100%; object-fit: cover; display: block; position: absolute; inset: 0; }

/* Modal de fotos de evento */
.event-panel { max-width: 820px; padding: 34px 36px 40px; }
.event-story-list { display: flex; flex-direction: column; gap: 30px; }
.event-story {
  display: grid; grid-template-columns: 220px 1fr; gap: 24px; align-items: center;
  padding-bottom: 30px; border-bottom: 1px solid var(--line);
}
.event-story:last-child { border-bottom: none; padding-bottom: 0; }
.event-story-photo { border-radius: 14px; overflow: hidden; border: 1px solid var(--line); flex: none; }
.event-story-photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; display: block; }
.event-story-title { font-family: 'Manrope', sans-serif; font-weight: 600; font-size: 17px; margin: 0 0 8px; color: var(--ink); }
.event-story-desc { font-size: 14px; line-height: 1.7; color: var(--muted); margin: 0; }

.event-gallery {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 10px;
  margin-top: 30px; padding-top: 30px; border-top: 1px solid var(--line);
}
.event-gallery-item { display: block; aspect-ratio: 1 / 1; border-radius: 10px; overflow: hidden; border: 1px solid var(--line); }
.event-gallery-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .35s cubic-bezier(.2, .7, .2, 1);
}
.event-gallery-item:hover img { transform: scale(1.06); }

@media (max-width: 560px) {
  .event-story { grid-template-columns: 1fr; }
  .event-story-photo img { aspect-ratio: 16 / 10; }
}

.event-list { display: flex; flex-direction: column; gap: 16px; }
.event-card {
  display: grid; grid-template-columns: 130px 1fr; gap: 26px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 26px 28px;
  transition: transform .3s, border-color .3s;
}
.event-card:hover { transform: translateX(6px); border-color: var(--accent); }
.event-date { font-size: 13px; font-weight: 600; letter-spacing: .1em; color: var(--muted); padding-top: 4px; }
.tag { display: inline-block; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); border: 1px solid var(--accent); border-radius: 999px; padding: 3px 10px; margin-bottom: 12px; }
.event-title { font-family: 'Manrope', sans-serif; font-weight: 600; letter-spacing: -.02em; font-size: 23px; line-height: 1.2; margin-bottom: 8px; }
.event-text { font-size: 15px; line-height: 1.6; color: var(--muted); }

/* Portfolio */
.portfolio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.portfolio-card { border: 1px solid var(--line); border-radius: 18px; overflow: hidden; background: var(--surface); transition: transform .35s; }
.portfolio-card:hover { transform: translateY(-6px); }
.portfolio-thumb {
  aspect-ratio: 16 / 10;
  background: repeating-linear-gradient(45deg, var(--surface2), var(--surface2) 11px, var(--surface) 11px, var(--surface) 22px);
  display: grid; place-items: center; border-bottom: 1px solid var(--line);
}
.slot-label { font-family: ui-monospace, Menlo, monospace; font-size: 12px; color: var(--muted); background: var(--bg); padding: 6px 12px; border-radius: 6px; border: 1px solid var(--line); }
.portfolio-body { padding: 22px 24px; }
.portfolio-type { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.portfolio-title { font-family: 'Manrope', sans-serif; font-weight: 600; letter-spacing: -.02em; font-size: 24px; line-height: 1.2; }

/* Artigos */
.articles-banner {
  display: flex; align-items: center; gap: 14px; background: var(--surface);
  border: 1px dashed var(--accent); border-radius: 14px; padding: 16px 20px; margin-bottom: 34px;
  font-size: 14px; line-height: 1.5; color: var(--muted);
}
.pencil { font-size: 22px; }
.articles-list { display: flex; flex-direction: column; }
.article-row {
  display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center;
  padding: 28px 4px; border-top: 1px solid var(--line); cursor: pointer;
  transition: padding-left .3s; color: inherit;
}
.article-row:hover { padding-left: 14px; opacity: 1; }
.article-meta { display: flex; gap: 12px; align-items: center; margin-bottom: 12px; }
.tag-status { display: inline-block; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; border-radius: 999px; padding: 3px 10px; }
.tag-status.published { color: var(--accent); border: 1px solid var(--accent); }
.tag-status.draft { color: var(--muted); border: 1px dashed var(--muted); }
.article-date { font-size: 13px; color: var(--muted); letter-spacing: .06em; }
.article-title { font-family: 'Manrope', sans-serif; font-weight: 600; letter-spacing: -.02em; font-size: clamp(24px, 3vw, 34px); line-height: 1.12; margin-bottom: 10px; }
.article-excerpt { font-size: 16px; line-height: 1.6; color: var(--muted); max-width: 64ch; }
.article-cta { font-size: 14px; color: var(--accent); white-space: nowrap; }
.articles-end-border { border-top: 1px solid var(--line); }

/* Footer */
.site-footer { position: relative; z-index: 10; border-top: 1px solid var(--line); background: var(--surface); }
.footer-inner { max-width: 1120px; margin: 0 auto; padding: 40px 26px; display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: space-between; }
.cvm-disclaimer {
  flex-basis: 100%; font-size: 12px; line-height: 1.7; color: var(--muted); opacity: .85;
  padding-bottom: 20px; border-bottom: 1px solid var(--line); margin-bottom: 4px;
}
.footer-legal { font-size: 13px; color: var(--muted); line-height: 1.6; }
.footer-sub { opacity: .75; }
.footer-links { display: flex; gap: 22px; font-size: 13px; }
.link-btn { background: none; border: none; color: var(--muted); cursor: pointer; font: inherit; font-size: 13px; }
.link-btn:hover { color: var(--ink); }

/* Legal modal */
.legal-overlay {
  position: fixed; inset: 0; z-index: 200; background: rgba(0, 0, 0, .42);
  backdrop-filter: blur(4px); display: grid; place-items: center; padding: 24px;
  animation: floatIn .25s ease both;
}
.legal-overlay[hidden] { display: none; }
.legal-panel {
  background: var(--surface2); color: var(--ink); border: 1px solid var(--line); border-radius: 20px;
  max-width: 640px; width: 100%; max-height: 82vh; overflow: auto; padding: 40px 42px;
  animation: fadeUp .3s ease both;
}
.legal-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; margin-bottom: 24px; }
.legal-title { font-family: 'Manrope', sans-serif; font-weight: 600; letter-spacing: -.03em; font-size: 32px; margin: 0; }
.legal-close {
  flex: none; width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line);
  background: var(--surface); color: var(--ink); cursor: pointer; font-size: 16px;
}
.legal-body { font-size: 15px; line-height: 1.7; color: var(--muted); white-space: pre-line; }
.legal-disclaimer {
  margin-top: 26px; font-size: 12px; line-height: 1.6; color: var(--muted);
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px;
}

/* Contato / quiz de qualificação */
.tab-contato { text-align: center; }
.quiz-intro { font-size: 17px; line-height: 1.6; color: var(--muted); max-width: 52ch; margin: 0 auto 44px; }

.quiz-card {
  text-align: left; max-width: 640px; margin: 0 auto; background: var(--surface);
  border: 1px solid var(--line); border-radius: 22px; padding: 40px 42px;
  box-shadow: 0 12px 44px color-mix(in srgb, var(--ink) 6%, transparent);
}
.quiz-progress { display: flex; gap: 8px; justify-content: center; margin-bottom: 30px; }
.quiz-step-dot { width: 26px; height: 3px; border-radius: 2px; background: var(--line); transition: background .3s; }
.quiz-step-dot.active { background: var(--accent); }

.quiz-step-label { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); margin-bottom: 22px; }
.quiz-step-label em { font-style: normal; color: var(--muted); text-transform: none; letter-spacing: 0; }
.quiz-step-note { font-size: 14px; line-height: 1.6; color: var(--muted); margin: -10px 0 24px; }

.quiz-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; font-size: 14px; color: var(--muted); }
.quiz-field span em { font-style: normal; opacity: .75; }
.quiz-field input {
  font: inherit; font-family: 'Manrope', sans-serif; font-size: 16px; color: var(--ink);
  background: var(--surface2); border: 1px solid var(--line); border-radius: 12px;
  padding: 13px 15px; outline: none; transition: border-color .25s;
}
.quiz-field input::placeholder { color: var(--muted); opacity: .7; }
.quiz-field input:focus { border-color: var(--accent); }

.quiz-consent {
  display: flex; align-items: flex-start; gap: 10px; margin: 4px 0 22px;
  font-size: 13px; line-height: 1.5; color: var(--muted); cursor: pointer;
}
.quiz-consent input { margin-top: 3px; flex: none; accent-color: var(--accent); width: 16px; height: 16px; cursor: pointer; }

.quiz-question { margin-bottom: 26px; }
.quiz-question-title { font-size: 16px; font-weight: 600; letter-spacing: -.01em; margin-bottom: 12px; }
.quiz-options { display: flex; flex-wrap: wrap; gap: 9px; }
.quiz-option {
  font: inherit; font-family: 'Manrope', sans-serif; font-size: 13.5px; color: var(--ink);
  background: var(--surface2); border: 1px solid var(--line); border-radius: 999px;
  padding: 9px 16px; cursor: pointer; transition: border-color .25s, background .25s, color .25s;
}
.quiz-option:hover { border-color: var(--accent); }
.quiz-option.selected { background: var(--accent); border-color: var(--accent); color: #fff; }

.quiz-actions { display: flex; justify-content: flex-end; margin-top: 8px; }
.quiz-actions.space-between { justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.quiz-actions-right { display: flex; align-items: center; gap: 18px; }
.btn-text { background: none; border: none; font: inherit; font-size: 13.5px; color: var(--muted); cursor: pointer; }
.btn-text:hover { color: var(--ink); }

.quiz-result { text-align: center; }
.quiz-result-profile {
  background: color-mix(in srgb, var(--accent) 8%, var(--surface2)); border: 1px solid var(--accent);
  border-radius: 16px; padding: 22px 24px; margin-bottom: 22px;
}
.quiz-result-label { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.quiz-result-value { font-family: 'Manrope', sans-serif; font-weight: 600; letter-spacing: -.02em; font-size: 30px; margin-bottom: 8px; }
.quiz-result-desc { font-size: 14px; line-height: 1.6; color: var(--muted); }
.quiz-result-thanks { font-size: 16px; color: var(--muted); margin: 0 0 20px; }
.quiz-whatsapp-btn { display: inline-block; text-decoration: none; }
.quiz-whatsapp-btn.disabled { pointer-events: none; opacity: .5; }
.quiz-disclaimer { font-size: 12px; line-height: 1.6; color: var(--muted); margin: 22px 0 0; }

/* Scroll reveal */
[data-reveal] {
  opacity: 0; transform: translateY(22px);
  transition: opacity .7s cubic-bezier(.2, .7, .2, 1), transform .7s cubic-bezier(.2, .7, .2, 1);
}
[data-reveal].revealed { opacity: 1; transform: none; }
