/* ============================================================
   SmartDoctor · Portal de Desenvolvedores
   Design system — dark-first, tech, acessível (WCAG AA)
   ============================================================ */

:root {
  /* Marca */
  --brand:       #3b82f6;
  --brand-2:     #22d3ee;
  --brand-3:     #6366f1;
  --grad:        linear-gradient(135deg, #3b82f6 0%, #22d3ee 100%);
  --grad-soft:   linear-gradient(135deg, rgba(59,130,246,.18), rgba(34,211,238,.12));

  /* Superfícies (dark default) */
  --bg:          #080b13;
  --bg-2:        #0b0f1a;
  --surface:     #0f1626;
  --surface-2:   #131c30;
  --surface-3:   #18233b;
  --border:      rgba(148, 176, 255, .10);
  --border-2:    rgba(148, 176, 255, .18);

  /* Texto */
  --text:        #e8eef8;
  --text-dim:    #9fb0c9;
  --text-faint:  #64748b;

  /* Métodos HTTP */
  --get:    #34d399;
  --post:   #3b82f6;
  --put:    #f59e0b;
  --delete: #f43f5e;

  /* Estados */
  --ok:      #34d399;
  --warn:    #f59e0b;
  --danger:  #f43f5e;

  /* Tipografia */
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", "Cascadia Code", "Fira Code", Menlo, Consolas, monospace;

  /* Métricas */
  --sidebar: 288px;
  --header-h: 64px;
  --content-max: 900px;
  --radius: 14px;
  --radius-sm: 9px;
  --shadow: 0 24px 60px -20px rgba(0,0,0,.6);
  --shadow-glow: 0 0 0 1px var(--border), 0 20px 50px -24px rgba(34,211,238,.25);
}

[data-theme="light"] {
  --bg:          #f6f8fc;
  --bg-2:        #eef2f9;
  --surface:     #ffffff;
  --surface-2:   #f4f7fc;
  --surface-3:   #eaf0fa;
  --border:      rgba(18, 38, 84, .10);
  --border-2:    rgba(18, 38, 84, .16);
  --text:        #0f1b2e;
  --text-dim:    #46586f;
  --text-faint:  #7688a0;
  --shadow:      0 24px 60px -28px rgba(20,40,90,.28);
  --shadow-glow: 0 0 0 1px var(--border), 0 18px 40px -24px rgba(59,130,246,.28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 24px); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { animation: none !important; transition: none !important; } }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Fundo tecnológico: grade + glows */
body::before {
  content: "";
  position: fixed; inset: 0;
  z-index: -2;
  background:
    radial-gradient(900px 500px at 78% -8%, rgba(34,211,238,.14), transparent 60%),
    radial-gradient(800px 500px at 10% 0%, rgba(59,130,246,.16), transparent 55%),
    radial-gradient(700px 600px at 90% 100%, rgba(99,102,241,.10), transparent 60%);
  pointer-events: none;
}
body::after {
  content: "";
  position: fixed; inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 0%, black, transparent 72%);
  opacity: .5;
  pointer-events: none;
}

a { color: var(--brand-2); text-decoration: none; }
a:hover { text-decoration: underline; }

::selection { background: rgba(34,211,238,.28); }

/* ------------------------------------------------ Scrollbar */
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-thumb { background: var(--surface-3); border-radius: 20px; border: 3px solid transparent; background-clip: content-box; }
::-webkit-scrollbar-thumb:hover { background: var(--border-2); background-clip: content-box; }

/* ================================================= HEADER */
.header {
  position: fixed; top: 0; left: 0; right: 0; height: var(--header-h);
  z-index: 100;
  display: flex; align-items: center; gap: 20px;
  padding: 0 22px;
  background: color-mix(in srgb, var(--bg) 72%, transparent);
  backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid var(--border);
}
.brand { display: flex; align-items: center; gap: 11px; font-weight: 700; letter-spacing: -.02em; color: var(--text); }
.brand:hover { text-decoration: none; }
.brand .logo { width: 34px; height: 34px; border-radius: 9px; flex: none; box-shadow: 0 6px 18px -6px rgba(34,211,238,.6); }
.brand .name { font-size: 15px; line-height: 1.1; }
.brand .name b { display: block; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.brand .name span { font-size: 11px; color: var(--text-faint); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }

.header-search { flex: 1; max-width: 460px; position: relative; }
.header-search input {
  width: 100%; height: 40px; padding: 0 14px 0 40px;
  background: var(--surface); border: 1px solid var(--border); border-radius: 10px;
  color: var(--text); font-family: var(--font); font-size: 14px; outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.header-search input::placeholder { color: var(--text-faint); }
.header-search input:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(59,130,246,.18); }
.header-search svg { position: absolute; left: 12px; top: 11px; width: 18px; height: 18px; color: var(--text-faint); }
.header-search kbd {
  position: absolute; right: 10px; top: 9px; font-family: var(--mono); font-size: 11px;
  color: var(--text-faint); background: var(--surface-3); border: 1px solid var(--border);
  border-radius: 6px; padding: 2px 7px;
}
.search-results {
  position: absolute; top: 48px; left: 0; right: 0; z-index: 120;
  background: var(--surface); border: 1px solid var(--border-2); border-radius: 12px;
  box-shadow: var(--shadow); overflow: hidden; display: none;
}
.search-results.open { display: block; }
.search-results a {
  display: flex; flex-direction: column; gap: 2px; padding: 10px 14px; color: var(--text);
  border-bottom: 1px solid var(--border);
}
.search-results a:last-child { border-bottom: 0; }
.search-results a:hover, .search-results a.active { background: var(--surface-2); text-decoration: none; }
.search-results .r-title { font-weight: 600; font-size: 14px; }
.search-results .r-sec { font-size: 12px; color: var(--text-faint); }
.search-results .empty { padding: 14px; color: var(--text-faint); font-size: 14px; }

.header-actions { display: flex; align-items: center; gap: 8px; }
.icon-btn {
  width: 40px; height: 40px; display: grid; place-items: center; cursor: pointer;
  background: var(--surface); border: 1px solid var(--border); border-radius: 10px; color: var(--text-dim);
  transition: .15s;
}
.icon-btn:hover { color: var(--text); border-color: var(--border-2); background: var(--surface-2); }
.icon-btn svg { width: 18px; height: 18px; }
.btn-cta {
  height: 40px; padding: 0 16px; display: inline-flex; align-items: center; gap: 7px;
  background: var(--grad); color: #041018; font-weight: 700; font-size: 14px;
  border: 0; border-radius: 10px; cursor: pointer; white-space: nowrap;
  box-shadow: 0 8px 22px -8px rgba(34,211,238,.55); transition: transform .12s, box-shadow .12s;
}
.btn-cta:hover { transform: translateY(-1px); box-shadow: 0 12px 28px -8px rgba(34,211,238,.7); text-decoration: none; }
.menu-toggle { display: none; }

/* ================================================= SHELL */
.shell { display: grid; grid-template-columns: var(--sidebar) 1fr; }

/* --------------------------------- SIDEBAR */
.sidebar {
  position: fixed; top: var(--header-h); bottom: 0; left: 0; width: var(--sidebar);
  overflow-y: auto; padding: 26px 14px 60px;
  border-right: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg-2) 60%, transparent);
}
.nav-group { margin-bottom: 26px; }
.nav-group > h4 {
  margin: 0 0 8px; padding: 0 12px;
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase; font-weight: 700;
  color: var(--text-faint);
}
.nav-group a {
  display: flex; align-items: center; gap: 9px; padding: 8px 12px; border-radius: 9px;
  color: var(--text-dim); font-size: 14.5px; font-weight: 500; transition: .12s; position: relative;
}
.nav-group a:hover { background: var(--surface-2); color: var(--text); text-decoration: none; }
.nav-group a.active { color: var(--text); background: var(--grad-soft); }
.nav-group a.active::before {
  content: ""; position: absolute; left: -14px; top: 50%; transform: translateY(-50%);
  width: 3px; height: 20px; border-radius: 3px; background: var(--grad);
}
.nav-group a .m {
  font-family: var(--mono); font-size: 9.5px; font-weight: 800; letter-spacing: .04em;
  padding: 2px 5px; border-radius: 5px; flex: none; min-width: 40px; text-align: center;
}
.m.get    { color: var(--get);    background: color-mix(in srgb, var(--get) 16%, transparent); }
.m.post   { color: var(--post);   background: color-mix(in srgb, var(--post) 18%, transparent); }
.m.put    { color: var(--put);    background: color-mix(in srgb, var(--put) 18%, transparent); }
.m.delete { color: var(--delete); background: color-mix(in srgb, var(--delete) 18%, transparent); }

/* --------------------------------- MAIN */
.main { grid-column: 2; padding: 0 40px; min-width: 0; }
.container { max-width: var(--content-max); margin: 0 auto; }
section { padding-top: 40px; margin-bottom: 24px; }
section > h2 {
  font-size: 30px; letter-spacing: -.025em; margin: 8px 0 6px; scroll-margin-top: 90px;
  display: flex; align-items: center; gap: 12px;
}
section > h2 .anchor { opacity: 0; color: var(--text-faint); font-weight: 400; transition: .15s; }
section > h2:hover .anchor { opacity: 1; }
h3 { font-size: 20px; letter-spacing: -.02em; margin: 34px 0 10px; scroll-margin-top: 90px; }
.lead { font-size: 17px; color: var(--text-dim); max-width: 70ch; }
p { color: var(--text-dim); }
.main strong, .main b { color: var(--text); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--brand-2);
  padding: 5px 12px; border: 1px solid var(--border-2); border-radius: 30px;
  background: var(--grad-soft);
}

/* ================================================= HERO */
.hero { padding-top: calc(var(--header-h) + 34px); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; }
.hero h1 {
  font-size: clamp(34px, 5vw, 52px); line-height: 1.05; letter-spacing: -.035em;
  margin: 18px 0 16px; font-weight: 800;
}
.hero h1 .grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .lead { font-size: 18.5px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.btn-lg { height: 48px; padding: 0 22px; font-size: 15px; border-radius: 12px; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface); border: 1px solid var(--border-2); color: var(--text); font-weight: 600;
}
.btn-ghost:hover { background: var(--surface-2); text-decoration: none; transform: translateY(-1px); }
.hero-meta { display: flex; gap: 26px; margin-top: 30px; flex-wrap: wrap; }
.hero-meta div { display: flex; flex-direction: column; }
.hero-meta b { font-size: 22px; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-meta span { font-size: 12.5px; color: var(--text-faint); }

/* Terminal flutuante */
.terminal {
  border-radius: 16px; overflow: hidden; border: 1px solid var(--border-2);
  background: linear-gradient(180deg, #0c1424, #0a101d);
  box-shadow: var(--shadow); position: relative;
}
.terminal::before {
  content: ""; position: absolute; inset: 0; border-radius: 16px; padding: 1px;
  background: var(--grad); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; opacity: .35; pointer-events: none;
}
.terminal-bar { display: flex; align-items: center; gap: 8px; padding: 12px 15px; border-bottom: 1px solid var(--border); background: rgba(255,255,255,.02); }
.terminal-bar .dot { width: 11px; height: 11px; border-radius: 50%; }
.dot.r { background: #ff5f57; } .dot.y { background: #febc2e; } .dot.g { background: #28c840; }
.terminal-bar .t { margin-left: 8px; font-family: var(--mono); font-size: 12px; color: var(--text-faint); }
.terminal pre { margin: 0; padding: 18px 18px 20px; font-family: var(--mono); font-size: 13px; line-height: 1.7; overflow-x: auto; }

/* ================================================= FEATURE GRID */
.features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.feature {
  padding: 22px; border-radius: var(--radius); border: 1px solid var(--border);
  background: var(--surface); transition: .18s; position: relative; overflow: hidden;
}
.feature:hover { border-color: var(--border-2); transform: translateY(-3px); box-shadow: var(--shadow-glow); }
.feature .ic { width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; background: var(--grad-soft); color: var(--brand-2); margin-bottom: 14px; }
.feature .ic svg { width: 22px; height: 22px; }
.feature h4 { margin: 0 0 6px; font-size: 16.5px; letter-spacing: -.01em; }
.feature p { margin: 0; font-size: 14px; }

/* ================================================= CARDS / CALLOUTS */
.card {
  border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface);
  padding: 22px 24px; margin: 18px 0;
}
.callout {
  display: flex; gap: 13px; padding: 15px 18px; border-radius: 12px; margin: 18px 0;
  border: 1px solid var(--border-2); background: var(--surface-2); font-size: 14.5px;
}
.callout svg { width: 20px; height: 20px; flex: none; margin-top: 2px; }
.callout p { margin: 0; color: var(--text); }
.callout.info { border-color: rgba(59,130,246,.4); } .callout.info svg { color: var(--brand); }
.callout.tip  { border-color: rgba(52,211,153,.4); } .callout.tip svg { color: var(--ok); }
.callout.warn { border-color: rgba(245,158,11,.45); background: color-mix(in srgb, var(--warn) 8%, var(--surface)); } .callout.warn svg { color: var(--warn); }
.callout code { background: rgba(255,255,255,.06); }

/* ================================================= STEPS */
.steps { counter-reset: step; margin: 24px 0; border-left: 2px solid var(--border-2); padding-left: 0; }
.step { position: relative; padding: 0 0 26px 52px; }
.step:last-child { padding-bottom: 4px; }
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: -17px; top: -2px; width: 32px; height: 32px; border-radius: 50%;
  display: grid; place-items: center; font-weight: 800; font-size: 14px; color: #041018;
  background: var(--grad); box-shadow: 0 0 0 5px var(--bg);
}
.step h4 { margin: 2px 0 6px; font-size: 17px; }
.step p { margin: 0 0 10px; font-size: 14.5px; }

/* ================================================= ENDPOINTS */
.endpoint { border: 1px solid var(--border-2); border-radius: var(--radius); overflow: hidden; margin: 22px 0; background: var(--surface); }
.endpoint-head {
  display: flex; align-items: center; gap: 12px; padding: 14px 18px;
  background: linear-gradient(90deg, var(--surface-2), var(--surface));
  border-bottom: 1px solid var(--border); flex-wrap: wrap;
}
.badge {
  font-family: var(--mono); font-weight: 800; font-size: 12px; letter-spacing: .04em;
  padding: 5px 11px; border-radius: 7px; flex: none;
}
.badge.get { color: var(--get); background: color-mix(in srgb, var(--get) 15%, transparent); border: 1px solid color-mix(in srgb, var(--get) 40%, transparent); }
.badge.post { color: var(--post); background: color-mix(in srgb, var(--post) 15%, transparent); border: 1px solid color-mix(in srgb, var(--post) 40%, transparent); }
.badge.put { color: var(--put); background: color-mix(in srgb, var(--put) 15%, transparent); border: 1px solid color-mix(in srgb, var(--put) 40%, transparent); }
.badge.delete { color: var(--delete); background: color-mix(in srgb, var(--delete) 15%, transparent); border: 1px solid color-mix(in srgb, var(--delete) 40%, transparent); }
.endpoint-head .path { font-family: var(--mono); font-size: 14.5px; color: var(--text); font-weight: 600; word-break: break-all; }
.endpoint-head .desc { color: var(--text-faint); font-size: 13.5px; margin-left: auto; }
.endpoint-body { padding: 18px 20px; }

/* ================================================= PARAM TABLE */
.params { width: 100%; border-collapse: collapse; margin: 14px 0; font-size: 14px; }
.params th { text-align: left; padding: 9px 12px; color: var(--text-faint); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: .05em; border-bottom: 1px solid var(--border-2); }
.params td { padding: 11px 12px; border-bottom: 1px solid var(--border); vertical-align: top; color: var(--text-dim); }
.params tr:last-child td { border-bottom: 0; }
.params td code { color: var(--brand-2); font-weight: 600; }
.params .req { color: var(--danger); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.params .opt { color: var(--text-faint); font-size: 11px; font-weight: 600; text-transform: uppercase; }
.params .type { font-family: var(--mono); font-size: 12px; color: var(--put); }

/* ================================================= CODE */
:not(pre) > code {
  font-family: var(--mono); font-size: .88em; padding: 2px 6px; border-radius: 6px;
  background: var(--surface-3); color: var(--brand-2); border: 1px solid var(--border);
}
.code {
  border-radius: 12px; overflow: hidden; border: 1px solid var(--border-2); margin: 16px 0;
  background: #0a1120;
}
.code-tabs { display: flex; align-items: center; gap: 2px; padding: 8px 10px 0; background: rgba(255,255,255,.02); border-bottom: 1px solid var(--border); flex-wrap: wrap; }
.code-tab {
  padding: 8px 14px; font-family: var(--mono); font-size: 12.5px; color: var(--text-faint);
  cursor: pointer; border: 0; background: none; border-radius: 8px 8px 0 0; font-weight: 600;
  border-bottom: 2px solid transparent; margin-bottom: -1px; transition: .12s;
}
.code-tab:hover { color: var(--text-dim); }
.code-tab.active { color: var(--text); border-bottom-color: var(--brand-2); background: var(--surface); }
.code-copy {
  margin-left: auto; margin-bottom: 4px; display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--text-faint); background: var(--surface-2); border: 1px solid var(--border);
  border-radius: 8px; padding: 6px 11px; cursor: pointer; font-family: var(--font); transition: .12s;
}
.code-copy:hover { color: var(--text); border-color: var(--border-2); }
.code-copy.done { color: var(--ok); border-color: color-mix(in srgb, var(--ok) 40%, transparent); }
.code-panels { position: relative; }
.code-panel { display: none; }
.code-panel.active { display: block; }
.code pre { margin: 0; padding: 16px 18px; overflow-x: auto; font-family: var(--mono); font-size: 13px; line-height: 1.7; }
.code pre code { background: none; border: 0; padding: 0; color: var(--text); font-size: 13px; }

/* Syntax highlight (aplicado via JS) */
.tok-key   { color: #7cc7ff; }
.tok-str   { color: #9df3c4; }
.tok-num   { color: #f5b971; }
.tok-bool  { color: #c8a2ff; }
.tok-null  { color: #ff9ba6; }
.tok-punct { color: #6b8299; }
.tok-cmd   { color: #7cc7ff; font-weight: 600; }
.tok-flag  { color: #f5b971; }
.tok-url   { color: #9df3c4; }
.tok-comment { color: #5a7089; font-style: italic; }
[data-theme="light"] .code, [data-theme="light"] .terminal { background: #0c1424; }
[data-theme="light"] .code pre code, [data-theme="light"] .terminal pre { color: #e8eef8; }

/* ================================================= RESPONSE PILL */
.resp-status { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 13px; font-weight: 700; margin: 10px 0 4px; }
.resp-status .code2xx { color: var(--ok); }
.resp-status .code4xx { color: var(--warn); }
.resp-dot { width: 8px; height: 8px; border-radius: 50%; }
.resp-dot.ok { background: var(--ok); box-shadow: 0 0 10px var(--ok); }
.resp-dot.err { background: var(--warn); box-shadow: 0 0 10px var(--warn); }

/* ================================================= n8n RECIPE */
.flow { display: flex; align-items: stretch; gap: 0; flex-wrap: wrap; margin: 22px 0; }
.flow-node {
  flex: 1; min-width: 150px; padding: 16px; border: 1px solid var(--border-2); border-radius: 12px;
  background: var(--surface); text-align: center; position: relative;
}
.flow-node .ic { width: 40px; height: 40px; margin: 0 auto 10px; border-radius: 10px; display: grid; place-items: center; background: var(--grad-soft); color: var(--brand-2); }
.flow-node .ic svg { width: 20px; height: 20px; }
.flow-node h5 { margin: 0 0 4px; font-size: 14px; }
.flow-node p { margin: 0; font-size: 12px; color: var(--text-faint); }
.flow-arrow { display: grid; place-items: center; color: var(--brand-2); width: 34px; flex: none; font-size: 20px; }
@media (max-width: 640px) { .flow-arrow { width: 100%; height: 26px; transform: rotate(90deg); } }

/* ================================================= BADGE ROADMAP */
.soon { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--put); background: color-mix(in srgb, var(--put) 14%, transparent); border: 1px solid color-mix(in srgb, var(--put) 40%, transparent); padding: 3px 9px; border-radius: 20px; vertical-align: middle; }

/* ================================================= FOOTER */
.footer { border-top: 1px solid var(--border); margin-top: 60px; padding: 40px 0 60px; }
.footer-grid { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.footer p { font-size: 13.5px; }
.footer a { color: var(--text-dim); display: block; padding: 4px 0; font-size: 14px; }
.footer a:hover { color: var(--brand-2); }
.footer h5 { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--text-faint); margin: 0 0 8px; }

/* ================================================= MOBILE */
.scrim { display: none; }
@media (max-width: 1000px) {
  :root { --sidebar: 280px; }
  .shell { grid-template-columns: 1fr; }
  .sidebar {
    transform: translateX(-100%); transition: transform .22s ease; z-index: 90;
    background: var(--bg-2); box-shadow: var(--shadow);
  }
  .sidebar.open { transform: translateX(0); }
  .main { grid-column: 1; padding: 0 22px; }
  .menu-toggle { display: grid; }
  .scrim.show { display: block; position: fixed; inset: var(--header-h) 0 0; background: rgba(0,0,0,.5); z-index: 80; }
  .hero-grid { grid-template-columns: 1fr; }
  .header-search { display: none; }
  .btn-cta .cta-label { display: none; }
  .btn-cta { padding: 0 12px; }
}
@media (max-width: 720px) {
  .features { grid-template-columns: 1fr; }
  section > h2 { font-size: 25px; }
  .endpoint-head .desc { margin-left: 0; width: 100%; }
}

/* ================================================= REVEAL ANIM */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
.reveal.in { opacity: 1; transform: none; }
