/* =========================================================
   1. Configurações globais
   ========================================================= */
:root {
  --font-main: "Manrope", Arial, Helvetica, sans-serif;
  --blue: #2a3f61;
  --blue-section: #2e4369;
  --blue-dark: #1d2e4b;
  --yellow: #f7b417;
  --yellow-light: #ffd66f;
  --white: #ffffff;
  --off-white: #f7f8fa;
  --gray-100: #eef0f3;
  --gray-200: #e3e6ea;
  --gray-500: #747c88;
  --black: #0a0d12;
  --shadow: 0 24px 70px rgba(24, 40, 65, 0.18);
  --radius: 24px;
  --container: 1280px;
  --header-height: 124px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}


/* Força Manrope em todos os elementos textuais.
   Arial/Helvetica entram apenas se o Google Fonts estiver indisponível. */
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
li,
strong,
small,
label,
button,
input,
textarea,
select,
option,
address,
code {
  font-family: var(--font-main) !important;
  font-synthesis: none;
}

input::placeholder,
textarea::placeholder {
  font-family: var(--font-main) !important;
}


html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  color: var(--blue);
  background: var(--white);
  font-family: var(--font-main);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body,
button,
a {
  font: inherit;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
}

code {
  padding: 0.12em 0.35em;
  color: inherit;
  background: rgba(42, 63, 97, 0.1);
  border-radius: 0.35em;
  font-size: 0.9em;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: 0.75rem 1rem;
  color: var(--yellow);
  background: var(--blue);
  border-radius: 999px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

/* ESPAÇO INTERNO --*/
.section {
  padding-block: clamp(3rem, 3vw, 5rem);
}

.eyebrow {
  margin: 0 0 0.95rem;
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow--blue {
  color: var(--blue);
}

.lead {
  font-size: clamp(1.08rem, 1.6vw, 1.34rem);
  font-weight: 600;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0.92rem 1.45rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button--primary,
.button--yellow {
  color: var(--blue);
  background: var(--yellow);
}

.button--primary:hover,
.button--yellow:hover {
  background: var(--yellow-light);
}

.button--blue {
  color: var(--yellow);
  background: var(--blue);
}

.button--blue:hover {
  color: var(--white);
  background: var(--blue-dark);
}

/* =========================================================
   2. Cabeçalho
   ========================================================= */

/* FAIXA TOPO LOGO -- aqui muda as configurações, BG e etc da faixa do topo que tem a logo ---*/
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: var(--header-height);
  color: var(--blue);
	/*
  background: rgba(247, 180, 23, 0.98);
	*/
  background-image: url("../bg/bg_topo.jpg"); background-repeat: repeat-x;
  border-bottom: 1px solid rgba(42, 63, 97, 0.18);
  box-shadow: 0 12px 35px rgba(42, 63, 97, 0.12);
  backdrop-filter: blur(14px);
}

.header__inner {
  display: grid;
  min-height: var(--header-height);
  grid-template-columns: minmax(280px, 1fr) auto minmax(150px, 1fr);
  align-items: center;
  gap: clamp(1.25rem, 3.5vw, 3.5rem);
}

.brand {
  display: inline-flex;
  width: fit-content;
}

/* LOGO - topo -- aqui muda o tamanho da altura da logo do topo ----*/
.brand img {
  width: clamp(245px, 20vw, 330px);
  height: 150px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 8px 15px rgba(42, 63, 97, 0.14));
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.2rem, 2.7vw, 2.75rem);
  white-space: nowrap;
}


/* MENU TOPO -- aqui muda a cor dos itens do menu do topo ---*/
.main-nav a {
  position: relative;
  padding-block: 0.72rem;
	color: #111111;
	/*
  color: var(--blue);
	*/
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  font-weight: 800;
  letter-spacing: -0.025em;
}


/* MENU TOPO -- aqui muda a cor do traço que aparece embaixo dos itens do menu quando passamos o mouse por cima -----*/
.main-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 0.18rem;
  left: 0;
  height: 3px;
  background: #111111;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav a:not(.nav-cta):hover::after,
.main-nav a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}


/* MENU TOPO -- aqui muda a cor da borda do botão 'tenho interesse' -----*/
.nav-cta {
  padding-inline: 1.2rem;
  border: 2px solid #ffffff;
  border-radius: 999px;
}

/* MENU TOPO -- aqui muda a cor HOVER do botão 'tenho interesse' -----*/
.nav-cta:hover {
	/*
  color: var(--yellow);
  background: var(--blue);
	*/
  color: #ffffff;
  background: #111111;
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.7rem;
}

/* MENU TOPO -- aqui muda a cor dos icones das REDES SOCIAIS -----*/
.social-links a {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: #111111;
  border: 2px solid currentColor;
  border-radius: 50%;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

/* MENU TOPO -- aqui muda a cor HOVER dos icones das REDES SOCIAIS -----*/
.social-links a:hover {
  color: #ffffff;
  background: #111111;
  border-color: #111111;
  transform: translateY(-3px);
}

.social-links svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

/* =========================================================
   3. Estrutura compartilhada dos carrosséis
   ========================================================= */
.carousel {
  position: relative;
  overflow: hidden;
}

.carousel__viewport {
  overflow: hidden;
}

.carousel__track {
  display: flex;
  transform: translate3d(0, 0, 0);
  transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.carousel__slide {
  min-width: 100%;
}

.carousel__control {
  position: absolute;
  z-index: 8;
  top: 50%;
  display: grid;
  width: clamp(46px, 4.7vw, 60px);
  height: clamp(46px, 4.7vw, 60px);
  place-items: center;
  color: var(--white);
  background: rgba(42, 63, 97, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.carousel__control:hover {
  color: var(--blue);
  background: var(--yellow);
  transform: translateY(-50%) scale(1.05);
}

.carousel__control--prev {
  left: clamp(0.65rem, 2vw, 2rem);
}

.carousel__control--next {
  right: clamp(0.65rem, 2vw, 2rem);
}

.carousel__control svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

.carousel__dots {
  display: flex;
  z-index: 10;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
}

.carousel__dot {
  width: 11px;
  height: 11px;
  padding: 0;
  color: inherit;
  background: currentColor;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.48;
  transition:
    width 180ms ease,
    opacity 180ms ease;
}

.carousel__dot[aria-selected="true"] {
  width: 32px;
  border-radius: 999px;
  opacity: 1;
}

/* =========================================================
   4. Banner principal
   ========================================================= */
.hero {
  color: var(--white);
  background: var(--blue-dark);
}

.hero__slide {
  position: relative;
  overflow: hidden;
  background: var(--blue-dark);
}

.hero__media {
  display: block;
  aspect-ratio: 16 / 5;
}


.hero__media::after {
  position: absolute;
  inset: 0;
	/*
  background:
    linear-gradient(90deg, rgba(5, 10, 18, 0.78) 0%, rgba(7, 13, 23, 0.46) 50%, rgba(7, 13, 23, 0.18) 100%);
	*/
  content: "";
  pointer-events: none;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__content {
  width: min(calc(100% - 150px), var(--container));
}

.hero__slide--overlay .hero__content {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero__slide--image-only .hero__content {
  display: none;
}

.hero__headline {
  display: grid;
  margin: 0;
  color: inherit;
  font-size: clamp(3rem, 5.7vw, 7.1rem);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.82;
  text-transform: uppercase;
  text-shadow: 0 6px 22px rgba(0, 0, 0, 0.28);
}

.hero__headline span {
  display: block;
  width: fit-content;
}

.hero__headline-line--offset {
  margin-left: clamp(1rem, 25vw, 28rem);
}

.hero__support {
  display: flex;
  max-width: 930px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: clamp(1.2rem, 2.3vw, 2.1rem);
}

.hero__support p {
  max-width: 38ch;
  margin: 0;
  font-size: clamp(0.96rem, 1.25vw, 1.18rem);
  font-weight: 600;
  line-height: 1.45;
}

.hero__content--dark {
  color: var(--blue-dark);
}

.hero__content--dark .hero__eyebrow {
  color: var(--blue);
}

.hero__content--dark .hero__headline {
  text-shadow: 0 6px 22px rgba(255, 255, 255, 0.25);
}

.hero .carousel__control {
  top: min(15.625vw, 300px);
}

.hero__dots {
  position: absolute;
  right: 0;
  bottom: 1.15rem;
  left: 0;
  color: var(--white);
}

/* =========================================================
   5. Seção "Saiba mais"
   ========================================================= */
.about {
  color: var(--white);
  background:
    radial-gradient(circle at 88% 8%, rgba(247, 180, 23, 0.18), transparent 28%),
    linear-gradient(135deg, var(--blue-section), var(--blue-dark));
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.96fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.about-carousel {
  border: 3px solid rgba(247, 180, 23, 0.92);
  border-radius: var(--radius);
  background: var(--blue-dark);
  box-shadow: 0 30px 75px rgba(4, 12, 25, 0.36);
}

.about-carousel__slide {
  margin: 0;
  aspect-ratio: 4 / 3;
}

.about-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-carousel__dots {
  position: absolute;
  right: 0;
  bottom: 1rem;
  left: 0;
  color: var(--white);
}


/* GOOGLE FORMS -- aqui muda o tamanho da fonte do TITULO que tem ao lado do formulário ---*/
.about__content h2,
.interest__intro h2 {
  max-width: 16ch;
  margin: 0 0 1.5rem;
  font-size: clamp(2.8rem, 2.4vw, 5.25rem);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 1.10;
}

.about__content h2 {
  text-transform: uppercase;
}

.about__content p {
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.82);
}

.about__content .lead {
  color: var(--yellow);
}

.about__content code {
  color: var(--yellow);
  background: rgba(255, 255, 255, 0.1);
}

.feature-list {
  display: grid;
  gap: 0.8rem;
  margin: 1.9rem 0 2.15rem;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 1.85rem;
  font-weight: 750;
}

.feature-list li::before {
  position: absolute;
  top: 0.54em;
  left: 0;
  width: 0.82rem;
  height: 0.82rem;
  background: var(--yellow);
  border: 3px solid var(--white);
  border-radius: 50%;
  content: "";
}

/* =========================================================
   6. Interesse / Google Forms
   ========================================================= */
.interest {
  color: var(--blue);
  background:
    radial-gradient(circle at 15% 12%, rgba(247, 180, 23, 0.14), transparent 28%),
    linear-gradient(135deg, #fbfbfc 0%, #f1f3f6 46%, #e5e9ef 100%);
}

.interest__grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
  gap: clamp(3rem, 7vw, 7rem);
}

.interest__intro p:not(.eyebrow) {
  max-width: 58ch;
  color: #5f6979;
}

.contact-card {
  display: grid;
  margin-top: 2rem;
  padding: 1.65rem;
  gap: 0.65rem;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(42, 63, 97, 0.12);
  border-radius: 20px;
  box-shadow: 0 18px 50px rgba(42, 63, 97, 0.08);
  backdrop-filter: blur(8px);
}

.contact-card strong {
  margin-bottom: 0.25rem;
  color: var(--blue-dark);
  font-size: 1.06rem;
}

.contact-card span {
  color: #667080;
}

.form-shell {
  min-height: 580px;
  overflow: hidden;
  color: var(--blue);
  background: var(--white);
  border: 1px solid rgba(42, 63, 97, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.google-form,
.google-form iframe {
  width: 100%;
  min-height: 580px;
}

.google-form iframe {
  display: block;
  border: 0;
}

.form-placeholder {
  display: grid;
  min-height: 650px;
  align-content: center;
  padding: clamp(1.5rem, 5vw, 3.5rem);
  text-align: center;
}

.form-placeholder__icon {
  display: grid;
  width: 62px;
  height: 62px;
  margin: 0 auto 1.25rem;
  place-items: center;
  color: var(--yellow);
  background: var(--blue);
  border-radius: 50%;
  font-size: 1.6rem;
}

.form-placeholder h3 {
  margin: 0 0 0.7rem;
  color: var(--blue-dark);
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.15;
}

.form-placeholder p {
  max-width: 48ch;
  margin: 0 auto 1.8rem;
  color: var(--gray-500);
}

.form-preview {
  display: grid;
  width: min(100%, 460px);
  margin-inline: auto;
  gap: 0.75rem;
  text-align: left;
}

.form-preview span {
  padding: 0.98rem 1rem;
  color: #7a8290;
  background: #fafbfc;
  border: 1px solid var(--gray-200);
  border-radius: 11px;
}

.form-preview .form-preview__button {
  color: var(--yellow);
  background: var(--blue);
  border-color: var(--blue);
  font-weight: 800;
  text-align: center;
}

/* =========================================================
   7. Rodapé
   ========================================================= */
.site-footer {
  color: var(--white);
  background:
    radial-gradient(circle at 8% 0%, rgba(247, 180, 23, 0.13), transparent 26%),
    var(--blue);
}


/* FOOTER -- aqui no ultimo item muda a 'altura interna' do espaço do footer rodapé ---*/
.footer__grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr 0.8fr 0.72fr;
  gap: clamp(2.25rem, 5vw, 4.8rem);
  padding-block: 3rem;
}

/* FOOTER -- Logo - aqui muda o tamanho da logo --*/
.footer__brand img {
  width: clamp(260px, 24vw, 370px);
  height: 91px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 12px 25px rgba(0, 0, 0, 0.18));
}

.footer__brand p {
  max-width: 35ch;
  margin-top: 1.25rem;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer h2 {
  margin: 0 0 1.15rem;
  color: var(--yellow);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer address,
.footer__nav {
  display: grid;
  gap: 0.62rem;
  color: rgba(255, 255, 255, 0.82);
  font-style: normal;
  font-weight: 550;
}

.site-footer address a:hover,
.footer__nav a:hover {
  color: var(--yellow);
}

.social-links--footer {
  justify-content: flex-start;
}

.social-links--footer a {
  color: var(--yellow);
  border-color: rgba(247, 180, 23, 0.75);
}

.social-links--footer a:hover {
  color: var(--blue);
  background: var(--yellow);
  border-color: var(--yellow);
}

.footer__copyright {
  color: var(--blue);
  background: var(--yellow);
  border-top: 1px solid rgba(42, 63, 97, 0.16);
}


/* COPYRIGHT -- aqui muda a altura dessa faixa e outras configurações ----*/
.footer__bottom {
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 1.15rem;
  font-size: 0.82rem;
  font-weight: 700;
}

.footer__bottom p {
  margin: 0;
}

.developer-credit {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.developer-credit > span:first-child {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.developer-logo-slot {
  display: grid;
  min-width: 180px;
  min-height: 50px;
  padding: 0.5rem 1rem;
  place-items: center;
  color: var(--blue);
  border: 2px dashed rgba(42, 63, 97, 0.52);
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

/* =========================================================
   8. Botão flutuante "Voltar ao topo"
   ========================================================= */
.back-to-top {
  position: fixed;
  z-index: 90;
  right: clamp(1rem, 2.5vw, 2.25rem);
  bottom: clamp(1rem, 2.5vw, 2.25rem);
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--yellow);
  background: var(--blue);
  border: 3px solid var(--yellow);
  border-radius: 50%;
  box-shadow: 0 15px 35px rgba(29, 46, 75, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  color: var(--blue);
  background: var(--yellow);
}

.back-to-top svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

/* =========================================================
   9. Responsividade
   ========================================================= */
@media (max-width: 1060px) {
  :root {
    --header-height: 150px;
  }

  .header__inner {
    grid-template-columns: 1fr auto;
    grid-template-rows: 92px 58px;
    gap: 0 1.25rem;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .brand img {
    width: 260px;
    height: 82px;
  }

  .social-links--header {
    grid-column: 2;
    grid-row: 1;
  }

  .main-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    align-self: stretch;
    justify-content: center;
    gap: clamp(1rem, 4vw, 3rem);
    border-top: 1px solid rgba(42, 63, 97, 0.16);
  }

  .about__grid,
  .interest__grid {
    grid-template-columns: 1fr;
  }

  .about__content,
  .interest__intro {
    max-width: 790px;
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  :root {
    --header-height: 132px;
  }

  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .header__inner {
    grid-template-rows: 78px 54px;
  }

  .brand img {
    width: 205px;
    height: 68px;
  }

  .social-links--header a {
    width: 42px;
    height: 42px;
  }

  .social-links--header svg {
    width: 22px;
    height: 22px;
  }

  .main-nav {
    justify-content: space-between;
    gap: 0.55rem;
  }

  .main-nav a {
    font-size: clamp(0.76rem, 3.25vw, 0.95rem);
  }

  .nav-cta {
    padding-inline: 0.7rem;
  }

  .hero__media {
    aspect-ratio: 1 / 1;
  }

  .hero__media::after {
    display: none;
  }

  /* No mobile, todo texto do banner fica abaixo da imagem. */
  .hero__slide--overlay .hero__content,
  .hero__slide--image-only .hero__content {
    position: static;
    display: block;
    width: 100%;
    min-height: 380px;
    padding: 2.25rem 1.25rem 5rem;
    color: var(--white);
    background: var(--blue-dark);
    transform: none;
  }

  .hero__content--dark .hero__eyebrow {
    color: var(--yellow);
  }

  .hero__headline {
    font-size: clamp(2.5rem, 13.4vw, 4.4rem);
    letter-spacing: -0.07em;
    line-height: 0.88;
  }

  .hero__headline-line--offset {
    margin-left: 0;
  }

  .hero__support {
    display: grid;
    justify-items: start;
    gap: 1.35rem;
    margin-top: 1.55rem;
  }

  .hero__support p {
    max-width: 42ch;
  }

  .hero .carousel__control {
    top: 50vw;
  }

  .hero__dots {
    bottom: 1.35rem;
  }

  .about-carousel {
    border-width: 5px;
  }

  .about-carousel__dots {
    bottom: 0.8rem;
  }

  .about__content h2,
  .interest__intro h2 {
    font-size: clamp(2.45rem, 12vw, 4rem);
  }

  .form-shell,
  .google-form,
  .google-form iframe,
  .form-placeholder {
    min-height: 650px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    padding-block: 3.5rem;
  }

  .footer__brand img {
    width: min(100%, 320px);
    height: 118px;
  }

  .footer__bottom {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
    padding-block: 1.5rem;
  }

  .developer-credit {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
  }

  .developer-logo-slot {
    width: min(100%, 230px);
  }

  .back-to-top {
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 430px) {
  .main-nav {
    gap: 0.25rem;
  }

  .main-nav a {
    letter-spacing: -0.04em;
  }

  .carousel__control {
    width: 42px;
    height: 42px;
  }

  .carousel__control--prev {
    left: 0.45rem;
  }

  .carousel__control--next {
    right: 0.45rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
