:root {
  --navy-dark: #031126;
  --navy: #061a3a;
  --navy-light: #082653;

  --blue: #0a4dbb;
  --blue-light: #0e5ed7;
  --blue-soft: #eaf3ff;

  --yellow: #ffc400;
  --yellow-light: #ffd33d;

  --green: #25d366;

  --white: #ffffff;
  --background: #f5f7fb;
  --border: #e7ecf3;

  --gray: #6f7b8e;
  --gray-dark: #354156;

  --text: #101828;

  --shadow-small: 0 12px 35px rgba(3, 17, 38, 0.08);
  --shadow-large: 0 25px 70px rgba(3, 17, 38, 0.16);

  --container: 1180px;
  --header-height: 82px;
}

/* Configuração geral */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
}

h1,
h2,
h3 {
  line-height: 1.15;
}

h1,
h2 {
  font-family: "Montserrat", sans-serif;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;

  padding: 10px 16px;

  color: var(--white);
  background: var(--navy);

  border-radius: 8px;

  transform: translateY(-150%);
  transition: 0.25s;
}

.skip-link:focus {
  transform: translateY(0);
}

/* Cabeçalho */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  z-index: 1000;

  height: var(--header-height);

  color: var(--white);
  background: rgba(3, 17, 38, 0.88);

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(16px);

  transition: 0.25s;
}

.header.scrolled {
  background: rgba(3, 17, 38, 0.98);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.header-content {
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 28px;
}

/* Logo */

.logo {
  display: inline-flex;
  align-items: center;

  gap: 10px;

  flex-shrink: 0;
}

.logo-icon {
  width: 46px;
  height: 46px;

  display: grid;
  place-items: center;

  color: var(--white);
  background: var(--blue-light);

  border-radius: 50%;

  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.08);
}

.logo-icon i {
  font-size: 1.35rem;
}

.logo-text {
  display: flex;
  flex-direction: column;

  line-height: 1;
}

.logo-text strong {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
}

.logo-text small {
  margin-top: 5px;

  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;

  opacity: 0.8;
}

/* Menu */

.navigation {
  margin-left: auto;
}

.menu {
  display: flex;
  align-items: center;

  gap: 25px;
}

.menu a {
  position: relative;

  color: rgba(255, 255, 255, 0.84);

  font-size: 0.86rem;
  font-weight: 700;

  transition: 0.25s;
}

.menu a::after {
  content: "";

  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;

  height: 2px;

  background: var(--yellow);

  transform: scaleX(0);
  transition: 0.25s;
}

.menu a:hover,
.menu a.active {
  color: var(--white);
}

.menu a:hover::after,
.menu a.active::after {
  transform: scaleX(1);
}

.menu-button {
  display: none;

  width: 45px;
  height: 45px;

  padding: 10px;

  background: transparent;
  border: none;
}

.menu-button span {
  display: block;

  width: 100%;
  height: 2px;

  margin: 5px 0;

  background: var(--white);

  transition: 0.25s;
}

.menu-button.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-button.open span:nth-child(2) {
  opacity: 0;
}

.menu-button.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header-whatsapp {
  min-height: 44px;

  display: inline-flex;
  align-items: center;

  gap: 9px;

  padding: 0 18px;

  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;

  font-size: 0.86rem;
  font-weight: 800;

  transition: 0.25s;
}

.header-whatsapp:hover {
  color: var(--navy-dark);
  background: var(--white);

  transform: translateY(-2px);
}

/* Botões */

.button {
  min-height: 52px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  padding: 0 24px;

  border: 1px solid transparent;
  border-radius: 10px;

  font-weight: 800;

  transition: 0.25s;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  color: var(--navy-dark);

  background: linear-gradient(
    135deg,
    var(--yellow-light),
    var(--yellow)
  );

  box-shadow: 0 12px 30px rgba(255, 196, 0, 0.25);
}

.button-primary:hover {
  box-shadow: 0 18px 38px rgba(255, 196, 0, 0.36);
}

.button-outline {
  color: var(--white);

  background: rgba(255, 255, 255, 0.04);

  border-color: rgba(255, 255, 255, 0.75);
}

.button-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.button-blue {
  color: var(--white);
  background: var(--blue);

  box-shadow: 0 12px 30px rgba(10, 77, 187, 0.2);
}

/* Hero */

.hero {
  position: relative;

  min-height: 790px;

  padding: 190px 0 130px;

  color: var(--white);

  background-image: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=2000&q=90");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(3, 17, 38, 0.98) 0%,
      rgba(3, 17, 38, 0.89) 38%,
      rgba(3, 17, 38, 0.35) 75%,
      rgba(3, 17, 38, 0.14) 100%
    ),
    linear-gradient(
      180deg,
      rgba(3, 17, 38, 0.1),
      rgba(3, 17, 38, 0.58)
    );
}

.hero-content {
  position: relative;
  z-index: 2;

  max-width: 790px;
}

.eyebrow,
.section-label {
  display: inline-block;

  margin-bottom: 16px;

  color: var(--yellow);

  font-size: 0.78rem;
  font-weight: 800;

  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;

  margin-bottom: 22px;

  font-size: clamp(2.6rem, 5.8vw, 5rem);

  letter-spacing: -0.045em;
}

.hero-content > p {
  max-width: 630px;

  margin-bottom: 32px;

  color: rgba(255, 255, 255, 0.86);

  font-size: 1.12rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;

  gap: 14px;
}

/* Cards sobrepostos */

.benefits-grid {
  position: absolute;

  z-index: 3;

  left: 50%;
  bottom: -90px;

  transform: translateX(-50%);

  display: grid;
  grid-template-columns: repeat(4, 1fr);

  color: var(--text);
  background: var(--white);

  border-radius: 20px;

  box-shadow: var(--shadow-large);

  overflow: hidden;
}

.benefit-card {
  min-height: 180px;

  display: flex;

  gap: 18px;

  padding: 30px 24px;

  border-right: 1px solid var(--border);
}

.benefit-card:last-child {
  border-right: none;
}

.benefit-card > i {
  color: var(--blue);

  font-size: 2rem;
}

.benefit-card h2 {
  margin-bottom: 8px;

  font-family: "Manrope", sans-serif;
  font-size: 1rem;
}

.benefit-card p {
  color: var(--gray);

  font-size: 0.84rem;
}

/* Seções */

.section {
  padding: 110px 0;
}

.section-heading {
  max-width: 780px;

  margin: 0 auto 50px;

  text-align: center;
}

.section-heading h2,
.about-text h2,
.contact-text h2,
.portfolio-header h2 {
  margin-bottom: 18px;

  color: var(--navy-dark);

  font-size: clamp(2rem, 4vw, 3.2rem);

  letter-spacing: -0.035em;
}

.section-heading p,
.portfolio-header p {
  color: var(--gray);

  font-size: 1.02rem;
}

/* Sobre */

.about {
  padding-top: 210px;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;

  align-items: center;

  gap: 70px;
}

.about-text p {
  margin-bottom: 18px;

  color: var(--gray);
}

.check-list {
  display: grid;

  gap: 10px;

  margin: 28px 0 32px;
}

.check-list li {
  display: flex;
  align-items: center;

  gap: 10px;

  font-weight: 700;
}

.check-list i {
  color: var(--blue-light);
}

.about-image {
  position: relative;
}

.about-image > img {
  width: 100%;

  aspect-ratio: 4 / 3;
  object-fit: cover;

  border-radius: 30px;

  box-shadow: var(--shadow-large);
}

.about-image::before {
  content: "";

  position: absolute;

  top: -25px;
  right: -25px;

  z-index: -1;

  width: 150px;
  height: 150px;

  background: var(--blue-soft);

  border-radius: 30px;
}

.experience-badge {
  position: absolute;

  left: -35px;
  bottom: -35px;

  width: 160px;
  height: 160px;

  display: grid;
  place-content: center;

  padding: 20px;

  color: var(--white);
  background: var(--navy);

  border: 8px solid var(--white);
  border-radius: 50%;

  text-align: center;

  box-shadow: var(--shadow-large);
}

.experience-badge strong {
  font-family: "Montserrat", sans-serif;
  font-size: 2.2rem;
}

.experience-badge span {
  font-size: 0.78rem;
}

/* Serviços */

.services {
  background: var(--background);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 16px;
}

.service-card {
  min-height: 235px;

  padding: 26px;

  background: var(--white);

  border: 1px solid var(--border);
  border-radius: 14px;

  box-shadow: 0 8px 25px rgba(3, 17, 38, 0.04);

  transition: 0.25s;
}

.service-card:hover {
  transform: translateY(-7px);

  border-color: rgba(14, 94, 215, 0.32);

  box-shadow: var(--shadow-small);
}

.service-card > i {
  width: 54px;
  height: 54px;

  display: grid;
  place-items: center;

  margin-bottom: 22px;

  color: var(--blue);
  background: var(--blue-soft);

  border-radius: 14px;

  font-size: 1.4rem;
}

.service-card h3 {
  margin-bottom: 10px;

  font-size: 1.04rem;
}

.service-card p {
  color: var(--gray);

  font-size: 0.88rem;
}

/* Estatísticas */

.statistics {
  padding: 55px 0;

  color: var(--white);

  background:
    linear-gradient(
      90deg,
      rgba(3, 17, 38, 0.98),
      rgba(6, 32, 75, 0.96)
    ),
    url("https://images.unsplash.com/photo-1621905252472-943afaa20e20?auto=format&fit=crop&w=1800&q=85");

  background-size: cover;
  background-position: center;
}

.statistics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.statistic {
  min-height: 120px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 18px;

  padding: 20px;

  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.statistic:last-child {
  border-right: none;
}

.statistic > i {
  color: var(--yellow);

  font-size: 2rem;
}

.statistic strong {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
}

.statistic p {
  color: rgba(255, 255, 255, 0.72);

  font-size: 0.78rem;
}

/* Portfólio */

.portfolio-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  gap: 30px;

  margin-bottom: 45px;
}

.portfolio-header > div:first-child {
  max-width: 750px;
}

.portfolio-controls {
  display: flex;

  gap: 10px;
}

.slider-button {
  width: 46px;
  height: 46px;

  color: var(--navy);
  background: var(--white);

  border: 1px solid #cfd8e6;
  border-radius: 50%;

  transition: 0.25s;
}

.slider-button:hover {
  color: var(--white);
  background: var(--blue);

  transform: translateY(-2px);
}

.portfolio-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);

  gap: 18px;

  overflow-x: auto;

  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.portfolio-track::-webkit-scrollbar {
  display: none;
}

.portfolio-card {
  position: relative;

  min-width: 0;
  height: 320px;

  padding: 0;

  background: var(--border);

  border: none;
  border-radius: 20px;

  overflow: hidden;

  scroll-snap-align: start;
}

.portfolio-card img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: 0.5s;
}

.portfolio-card::after {
  content: "";

  position: absolute;
  inset: 45% 0 0;

  background: linear-gradient(
    transparent,
    rgba(3, 17, 38, 0.92)
  );
}

.portfolio-card span {
  position: absolute;

  z-index: 2;

  left: 22px;
  bottom: 18px;

  color: var(--white);

  font-weight: 800;
}

.portfolio-card:hover img {
  transform: scale(1.08);
}

/* Clientes */

.clients {
  background: var(--background);

  overflow: hidden;
}

.clients-wrapper {
  overflow: hidden;

  padding: 12px 0;

  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
}

.clients-track {
  width: max-content;

  display: flex;

  gap: 16px;

  animation: moveClients 28s linear infinite;
}

.clients-track:hover {
  animation-play-state: paused;
}

.clients-track span {
  min-width: 255px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 12px;

  padding: 26px 28px;

  color: var(--navy);
  background: var(--white);

  border: 1px solid var(--border);
  border-radius: 14px;

  font-weight: 800;

  box-shadow: 0 8px 22px rgba(3, 17, 38, 0.04);
}

.clients-track i {
  color: var(--blue-light);
}

@keyframes moveClients {
  to {
    transform: translateX(calc(-50% - 8px));
  }
}

/* Processo */

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);

  gap: 16px;
}

.process-card {
  position: relative;

  min-height: 250px;

  padding: 30px 22px;

  text-align: center;

  border: 1px solid var(--border);
  border-radius: 20px;

  box-shadow: var(--shadow-small);

  transition: 0.25s;
}

.process-card:hover {
  transform: translateY(-7px);
}

.process-number {
  position: absolute;

  top: 14px;
  right: 16px;

  width: 30px;
  height: 30px;

  display: grid;
  place-items: center;

  color: var(--white);
  background: var(--blue);

  border-radius: 50%;

  font-size: 0.78rem;
  font-weight: 800;
}

.process-card > i {
  margin: 18px 0 24px;

  color: var(--blue);

  font-size: 2.2rem;
}

.process-card h3 {
  margin-bottom: 10px;

  font-size: 1rem;
}

.process-card p {
  color: var(--gray);

  font-size: 0.84rem;
}

/* Contato */

.contact {
  padding: 0 0 80px;
}

.contact-box {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;

  align-items: center;

  gap: 50px;

  padding: 55px;

  color: var(--white);

  background:
    radial-gradient(
      circle at 85% 10%,
      rgba(14, 94, 215, 0.65),
      transparent 35%
    ),
    linear-gradient(
      135deg,
      var(--navy-dark),
      var(--navy-light)
    );

  border-radius: 30px;

  box-shadow: var(--shadow-large);
}

.contact-text h2 {
  color: var(--white);
}

.contact-text p {
  color: rgba(255, 255, 255, 0.75);
}

.light-label {
  color: var(--yellow-light);
}

.contact-buttons {
  display: grid;

  gap: 14px;
}

.contact-link {
  display: inline-flex;
  align-items: center;

  gap: 10px;

  color: rgba(255, 255, 255, 0.85);

  font-weight: 700;
}

/* Rodapé */

.footer {
  padding: 70px 0 0;

  color: rgba(255, 255, 255, 0.72);
  background: var(--navy-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 0.8fr 1fr;

  gap: 50px;

  padding-bottom: 55px;
}

.footer-logo {
  margin-bottom: 20px;

  color: var(--white);
}

.footer-description {
  max-width: 370px;
}

.footer h2 {
  margin-bottom: 18px;

  color: var(--white);

  font-family: "Manrope", sans-serif;
  font-size: 1rem;
}

.footer-list {
  display: grid;

  gap: 10px;
}

.footer-list a,
.footer-list span {
  display: inline-flex;
  align-items: center;

  gap: 9px;
}

.footer a {
  transition: 0.25s;
}

.footer a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  padding: 24px 0;

  border-top: 1px solid rgba(255, 255, 255, 0.1);

  font-size: 0.82rem;
}

/* WhatsApp flutuante */

.floating-whatsapp {
  position: fixed;

  z-index: 900;

  right: 22px;
  bottom: 22px;

  min-height: 54px;

  display: inline-flex;
  align-items: center;

  gap: 10px;

  padding: 0 20px;

  color: var(--white);
  background: var(--green);

  border-radius: 999px;

  font-weight: 800;

  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.35);

  transition: 0.25s;
}

.floating-whatsapp:hover {
  transform: translateY(-4px);

  box-shadow: 0 24px 46px rgba(37, 211, 102, 0.45);
}

.floating-whatsapp i {
  font-size: 1.4rem;
}

/* Modal */

.image-modal {
  position: fixed;
  inset: 0;

  z-index: 2000;

  display: grid;
  place-items: center;

  padding: 30px;

  visibility: hidden;
  opacity: 0;

  background: rgba(1, 8, 20, 0.94);

  transition: 0.25s;
}

.image-modal.open {
  visibility: visible;
  opacity: 1;
}

.modal-content {
  width: min(100%, 1100px);

  text-align: center;
}

.modal-content img {
  width: 100%;
  max-height: 78vh;

  object-fit: contain;

  border-radius: 16px;
}

.modal-content p {
  margin-top: 16px;

  color: var(--white);

  font-weight: 800;
}

.modal-close {
  position: absolute;

  top: 22px;
  right: 22px;

  width: 48px;
  height: 48px;

  color: var(--white);
  background: rgba(255, 255, 255, 0.1);

  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

/* Animação ao rolar */

.reveal {
  opacity: 0;

  transform: translateY(28px);

  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;

  transform: translateY(0);
}

/* Tablet */

@media (max-width: 1050px) {

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .header-whatsapp span {
    display: none;
  }

  .header-whatsapp {
    width: 46px;

    justify-content: center;

    padding: 0;
  }
}

/* Menu mobile */

@media (max-width: 900px) {

  :root {
    --header-height: 72px;
  }

  .navigation {
    order: 3;

    margin-left: 0;
  }

  .menu-button {
    display: block;
  }

  .menu {
    position: fixed;

    top: var(--header-height);
    left: 0;
    right: 0;

    height: calc(100vh - var(--header-height));

    display: grid;
    align-content: start;

    gap: 0;

    padding: 30px 24px;

    background: var(--navy-dark);

    transform: translateX(100%);

    transition: 0.32s;
  }

  .menu.open {
    transform: translateX(0);
  }

  .menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .menu a {
    display: block;

    padding: 18px 4px;

    font-size: 1rem;
  }

  .header-whatsapp {
    margin-left: auto;
  }

  .hero {
    min-height: 760px;

    padding-top: 160px;

    background-position: 62% center;
  }

  .benefits-grid {
    position: relative;

    left: auto;
    bottom: auto;

    transform: none;

    grid-template-columns: repeat(2, 1fr);

    margin-top: 70px;
  }

  .benefit-card:nth-child(2) {
    border-right: none;
  }

  .benefit-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }

  .about {
    padding-top: 110px;
  }

  .about-grid,
  .contact-box {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: -1;
  }

  .experience-badge {
    left: 18px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .statistics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .statistic:nth-child(2) {
    border-right: none;
  }

  .statistic:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .portfolio-track {
    grid-auto-columns: minmax(280px, 70%);
  }
}

/* Celular */

@media (max-width: 640px) {

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .logo-text strong {
    font-size: 1.2rem;
  }

  .logo-text small {
    font-size: 0.5rem;
  }

  .logo-icon {
    width: 40px;
    height: 40px;
  }

  .header-whatsapp {
    display: none;
  }

  .hero {
    min-height: auto;

    padding: 130px 0 60px;

    background-position: 67% center;
  }

  .hero-overlay {
    background: rgba(3, 17, 38, 0.84);
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-content > p {
    font-size: 1rem;
  }

  .hero-buttons,
  .hero-buttons .button {
    width: 100%;
  }

  .benefits-grid {
    grid-template-columns: 1fr;

    margin-top: 50px;
  }

  .benefit-card {
    min-height: auto;

    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .benefit-card:last-child {
    border-bottom: none;
  }

  .section {
    padding: 80px 0;
  }

  .about {
    padding-top: 80px;
  }

  .about-grid {
    gap: 50px;
  }

  .experience-badge {
    width: 125px;
    height: 125px;

    left: 12px;
    bottom: -28px;
  }

  .experience-badge strong {
    font-size: 1.65rem;
  }

  .services-grid,
  .statistics-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .statistic {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .statistic:last-child {
    border-bottom: none;
  }

  .portfolio-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .portfolio-track {
    grid-auto-columns: 88%;
  }

  .contact {
    padding-bottom: 60px;
  }

  .contact-box {
    padding: 34px 24px;

    border-radius: 20px;
  }

  .footer-grid {
    gap: 34px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .floating-whatsapp {
    width: 58px;
    height: 58px;

    right: 16px;
    bottom: 16px;

    justify-content: center;

    padding: 0;
  }

  .floating-whatsapp span {
    display: none;
  }
}

/* Pessoas que desativaram animações */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}