:root {
  --ink: #0f172a;
  --ink-soft: #334155;
  --muted: #5a6b7b;
  --faint: #93a0ad;
  --line: #e4ebf2;
  --bg: #ffffff;
  --bg-alt: #f5f8fb;
  --brand: #3498db;
  --brand-deep: #1b4f72;
  --brand-navy: #12384f;
  --brand-tech: #2e86c1;
  --brand-soft: #ebf5fb;
  --accent: #5dade2;
  --ok: #16a34a;
  --ok-bg: #dcfce7;
  --warn: #b26b00;
  --warn-bg: #fcefd9;
  --wa: #25d366;
  --grad: linear-gradient(135deg, #3aa0e0 0%, #12384f 100%);
  --radius: 16px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Poppins", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
h1,
h2,
h3 {
  letter-spacing: -0.02em;
  margin: 0;
}
section {
  padding: 80px 0;
}
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
}
.sec-title {
  font-size: 34px;
  font-weight: 800;
  margin: 8px 0 12px;
}
.sec-sub {
  color: var(--muted);
  font-size: 16px;
  max-width: 640px;
}

/* header */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  position: relative;
  gap: 3px;
  height: 68px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 2px;
}
.logo .mark {
  width: 34px;
  height: 34px;
  flex: none;
}
.logo .word {
  font-weight: 800;
  font-size: 20px;
  color: var(--brand-deep);
  letter-spacing: -0.02em;
}
.logo .word span {
  color: var(--brand-tech);
  font-weight: 500;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-links a {
  font-size: 14 px;
  color: var(--ink-soft);
  position: relative;
  font-weight: 500;
}
.nav-links a:hover {
  color: var(--brand);
}
.nav-links a.hl {
  color: var(--brand);
  font-weight: 600;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14.5px;
  padding: 11px 20px;
  border-radius: 11px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: 0.15s;
}
.btn-primary {
  background: var(--brand);
  color: #fff;
}
.btn-primary:hover {
  background: var(--brand-tech);
}
.btn-ghost {
  background: #fff;
  color: var(--brand-deep);
  border-color: var(--line);
}
.btn-ghost:hover {
  border-color: var(--brand);
  color: var(--brand);
}
.btn-wa {
  background: var(--wa);
  color: #fff;
}
.btn-wa:hover {
  filter: brightness(0.95);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn-client {
  background: transparent;
  color: var(--brand-deep);
  border-color: var(--brand);
  white-space: nowrap;
  font-size: 12px;
}
.btn-client:hover,
.btn-client:focus-visible {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 8px 20px rgba(52, 152, 219, 0.18);
}
.btn-client svg {
  width: 16px;
  height: 16px;
  flex: none;
}
.nav-cta {
  white-space: nowrap;
  font-size: 12px;
}
.hamburger {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--brand-deep);
}

/* hero */
.hero {
  padding: 92px 0 56px;
  position: relative;
  overflow: hidden;
}
.hero:before {
  content: "";
  position: absolute;
  top: -160px;
  right: -140px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, #e8f3fc 0, transparent 70%);
  z-index: 0;
}
.hero .wrap {
  position: relative;
  z-index: 1;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-soft);
  color: var(--brand-deep);
  font-weight: 600;
  font-size: 13px;
  padding: 7px 15px;
  border-radius: 999px;
}
.hero h1 {
  font-size: 54px;
  font-weight: 800;
  line-height: 1.06;
  margin: 20px 0 18px;
  max-width: 900px;
}
.hero h1 em {
  font-style: normal;
  color: var(--brand);
}
.hero p.lead {
  font-size: 19px;
  color: var(--muted);
  max-width: 660px;
  margin: 0 0 30px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.btn-lg {
  padding: 14px 26px;
  font-size: 16px;
  border-radius: 12px;
}
.hero-micro {
  font-size: 13.5px;
  color: var(--faint);
  margin-top: 14px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
  border-top: 1px solid var(--line);
  padding-top: 34px;
}
.stat b {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--brand-deep);
  letter-spacing: -0.03em;
}
.stat span {
  font-size: 13.5px;
  color: var(--muted);
}
@media (max-width: 760px) {
  .stats {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

.alt {
  background: var(--bg-alt);
}

/* consultoria */
.lead-block {
  max-width: 720px;
}
.perfis {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 40px;
}
@media (max-width: 760px) {
  .perfis {
    grid-template-columns: 1fr;
  }
}
.perfil {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px;
}
.perfil .ic {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--brand-soft);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}
.perfil p {
  margin: 0;
  font-size: 14.5px;
  color: var(--ink-soft);
}

.metodo {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 26px;
}
@media (max-width: 820px) {
  .metodo {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 520px) {
  .metodo {
    grid-template-columns: 1fr;
  }
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
  position: relative;
}
.step .n {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--grad);
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.step h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 6px;
}
.step p {
  margin: 0;
  font-size: 13.5px;
  color: var(--muted);
}
.step .free {
  position: absolute;
  top: 18px;
  right: 16px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ok);
  background: var(--ok-bg);
  padding: 3px 8px;
  border-radius: 999px;
}
.metodo-note {
  margin-top: 18px;
  font-size: 14.5px;
  color: var(--brand-deep);
  font-weight: 600;
}

.cons-lower {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 44px;
  align-items: start;
  margin-top: 48px;
}
@media (max-width: 920px) {
  .cons-lower {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.grp-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 14px;
}
.props {
  list-style: none;
  padding: 0;
  margin: 0;
}
.props li {
  position: relative;
  padding-left: 30px;
  margin: 12px 0;
  font-size: 15px;
  color: var(--ink-soft);
}
.props li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  color: #fff;
  background: var(--brand);
  width: 20px;
  height: 20px;
  border-radius: 6px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.taglist {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.taglist .t {
  font-size: 12.5px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  padding: 6px 12px;
  border-radius: 8px;
}

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 10px 40px rgba(16, 24, 40, 0.06);
}
.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
}
@media (max-width: 520px) {
  .frow {
    grid-template-columns: 1fr;
  }
}
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.field label .req {
  color: var(--brand);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 14.5px;
  color: var(--ink);
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  transition: 0.15s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.14);
}
.field textarea {
  resize: vertical;
  min-height: 88px;
}
.sep {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 20px 0;
}
.form-note {
  font-size: 12px;
  color: var(--faint);
  margin: 14px 0 0;
  text-align: center;
}
.or-wa {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-top: 18px;
  font-size: 13.5px;
  color: var(--muted);
  flex-wrap: wrap;
}
/* card de agendamento */
.sched-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.sched-ic {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--grad);
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sched-ic svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}
.sched-head h3 {
  font-size: 20px;
  margin: 0;
  color: var(--brand-navy);
  letter-spacing: -0.2px;
}
.sched-lead {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin: 0 0 22px;
  line-height: 1.55;
}
.sched-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.sched-steps li {
  position: relative;
  padding-left: 40px;
  margin: 15px 0;
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.45;
}
.sched-steps li b {
  color: var(--brand-deep);
}
.sched-steps .sn {
  position: absolute;
  left: 0;
  top: -2px;
  width: 27px;
  height: 27px;
  border-radius: 9px;
  background: var(--brand-soft);
  color: var(--brand-deep);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sched-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 22px 0 16px;
  color: var(--faint);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.sched-divider:before,
.sched-divider:after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.sched-wa {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.sched-wa span {
  font-size: 13.5px;
  color: var(--muted);
}

/* prova / produtos */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}
@media (max-width: 920px) {
  .cards {
    grid-template-columns: 1fr;
  }
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 1px 2px rgba(16, 24, 40, 0.04),
    0 10px 30px rgba(16, 24, 40, 0.04);
}
.card.hl {
  border-color: #cfe6f8;
  box-shadow:
    0 1px 2px rgba(16, 24, 40, 0.04),
    0 14px 40px rgba(52, 152, 219, 0.12);
}
.status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 999px;
  width: fit-content;
  margin-bottom: 14px;
}
.status:before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}
.s-op {
  background: var(--ok-bg);
  color: var(--ok);
}
.s-test {
  background: var(--warn-bg);
  color: var(--warn);
}
.s-dev {
  background: var(--brand-soft);
  color: var(--brand-tech);
}
.card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
}
.card .tagline {
  font-size: 13.5px;
  color: var(--brand);
  font-weight: 600;
  margin: 2px 0 12px;
}
.card p {
  font-size: 14.5px;
  color: var(--muted);
  margin: 0 0 16px;
}
.card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}
.card ul li {
  font-size: 14px;
  color: var(--ink-soft);
  padding-left: 24px;
  position: relative;
  margin: 8px 0px;
}
.card ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: var(--brand-soft);
  border: 1px solid #cfe6f8;
}
.card .visit {
  margin-top: auto;
  color: var(--brand);
  font-weight: 600;
  font-size: 14.5px;
}
.stack {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.chip {
  font-size: 11.5px;
  color: var(--brand-deep);
  background: var(--brand-soft);
  padding: 4px 10px;
  border-radius: 7px;
  font-weight: 500;
}
.prova-cta {
  margin-top: 34px;
  background: var(--brand-soft);
  border: 1px solid #d5e6f5;
  border-radius: 16px;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.prova-cta p {
  margin: 0;
  font-size: 15.5px;
  color: var(--brand-deep);
  font-weight: 600;
  max-width: 640px;
}

/* split (conteudo) */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
  margin-top: 20px;
}
@media (max-width: 920px) {
  .split {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
.dark-card {
  background: var(--brand-navy);
  color: #fff;
  border-radius: 20px;
  padding: 30px;
}
.dark-card h4 {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
}
.dark-card .meta {
  color: #9fc4de;
  font-size: 13px;
  margin: 4px 0 22px;
}
.dark-card .row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 14px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}
.dark-card .row b {
  color: var(--accent);
  font-weight: 700;
}
.dark-card .row span {
  color: #c9deec;
}

.note-line {
  font-size: 13px;
  color: var(--faint);
  margin-top: 20px;
}

/* empresa */
.mv {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 36px;
}
@media (max-width: 760px) {
  .mv {
    grid-template-columns: 1fr;
  }
}
.mv .box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.mv .box .k {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
}
.mv .box p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
}
.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 22px;
}
@media (max-width: 760px) {
  .values {
    grid-template-columns: 1fr 1fr;
  }
}
.val {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}
.val .ico {
  font-size: 24px;
}
.val b {
  display: block;
  font-size: 15px;
  margin: 10px 0 6px;
}
.val p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

/* CTA final */
.cta-final {
  background: var(--grad);
  color: #fff;
  border-radius: 24px;
  padding: 56px;
  text-align: center;
  margin: 0 24px;
}
.cta-final h2 {
  font-size: 34px;
  font-weight: 800;
  max-width: 640px;
  margin: 0 auto 12px;
}
.cta-final p {
  color: #dcebf7;
  font-size: 17px;
  max-width: 580px;
  margin: 0 auto 26px;
}
.cta-final .btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-final .btn-primary {
  background: #fff;
  color: var(--brand-deep);
}
.cta-final .btn-primary:hover {
  background: #eaf3fb;
}

footer {
  background: var(--brand-navy);
  color: #c9deec;
  padding: 56px 0 30px;
  margin-top: 80px;
}
.foot-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 30px;
}
@media (max-width: 760px) {
  .foot-top {
    grid-template-columns: 1fr 1fr;
  }
}
footer .logo .word {
  color: #fff;
}
footer .logo .word span {
  color: var(--accent);
}
footer .tag {
  font-size: 13.5px;
  color: #9fc4de;
  margin-top: 14px;
  max-width: 280px;
}
footer .col h5 {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7ea6c2;
  margin: 0 0 14px;
}
footer .col a,
footer .col p {
  display: block;
  font-size: 14px;
  color: #c9deec;
  margin: 8px 0;
}
footer .col a:hover {
  color: #fff;
}
.foot-bot {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 36px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12.5px;
  color: #7ea6c2;
}

.fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--wa);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 60;
}
.fab svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

@media (max-width: 820px) {
  .nav-links {
    display: none;
  }
  .nav-actions {
    gap: 8px;
  }
  .nav-cta {
    display: none;
  }
  .btn-client {
    padding: 9px 13px;
    font-size: 13px;
  }
  .hamburger {
    display: block;
  }
  .hero h1 {
    font-size: 37px;
  }
  .sec-title {
    font-size: 27px;
  }
  .cons-lower {
    grid-template-columns: 1fr;
  }
  .cta-final {
    padding: 40px 22px;
  }
  .cta-final h2 {
    font-size: 26px;
  }
}
@media (max-width: 420px) {
  .btn-client {
    width: 40px;
    height: 40px;
    padding: 0;
    justify-content: center;
  }
  .btn-client .client-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
}

/* ── Animações (sutis, com propósito) ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.card {
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 44px rgba(16, 24, 40, 0.1);
}
.card.hl:hover {
  box-shadow: 0 18px 50px rgba(52, 152, 219, 0.2);
}
.perfil {
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}
.perfil:hover {
  transform: translateY(-2px);
  border-color: #cfe6f8;
  box-shadow: 0 8px 22px rgba(16, 24, 40, 0.06);
}
.step {
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.step:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(16, 24, 40, 0.07);
}
.val {
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.val:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(16, 24, 40, 0.06);
}
.btn {
  transition:
    transform 0.15s ease,
    background 0.15s ease,
    filter 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease,
    box-shadow 0.15s ease;
}
.btn-primary:hover,
.btn-wa:hover {
  transform: translateY(-1px);
}
.taglist .t {
  transition:
    transform 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease;
}
.taglist .t:hover {
  border-color: var(--brand);
  color: var(--brand);
  transform: translateY(-1px);
}
.hero:before {
  animation: floaty 10s ease-in-out infinite;
}
@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(26px);
  }
}
.fab {
  animation: fab-pop 0.5s ease 0.3s both;
}
@keyframes fab-pop {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.form-card {
  scroll-margin-top: 90px;
}
.form-card.pulse {
  animation: formpulse 1.3s ease;
}
@keyframes formpulse {
  0% {
    box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.4);
  }
  100% {
    box-shadow:
      0 10px 40px rgba(16, 24, 40, 0.06),
      0 0 0 4px rgba(52, 152, 219, 0);
  }
}
@media print {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hero:before,
  .fab {
    animation: none !important;
  }
  html {
    scroll-behavior: auto;
  }
}
