:root {
  --navy: #071d42;
  --navy-2: #0c3168;
  --blue: #0099df;
  --green: #4bae2b;
  --ink: #112032;
  --muted: #617184;
  --line: #dbe3ec;
  --soft: #f3f7fa;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(7, 29, 66, 0.14);
  --header-height: 86px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-140%);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  color: var(--white);
  transition: background 220ms ease, box-shadow 220ms ease;
}

.site-header.scrolled,
body.nav-open .site-header {
  background: rgba(255, 255, 255, 0.98);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(7, 29, 66, 0.12);
}

.nav-shell {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  font-weight: 800;
  color: inherit;
}

.brand img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(7, 29, 66, 0.18);
}

.brand-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
  line-height: 1.05;
}

.brand-copy strong {
  color: inherit;
  font-size: 21px;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-copy small {
  color: currentColor;
  font-size: 12px;
  font-weight: 700;
  opacity: 0.78;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
}

.nav-menu a {
  position: relative;
  padding: 8px 0;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.language-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.site-header.scrolled .language-switch,
body.nav-open .language-switch {
  border-color: var(--line);
  background: var(--soft);
}

.language-switch button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 78px;
  min-height: 42px;
  padding: 8px 12px;
  color: inherit;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.language-switch button.active {
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 8px 18px rgba(7, 29, 66, 0.12);
}

.site-header.scrolled .language-switch button.active,
body.nav-open .language-switch button.active {
  color: var(--white);
  background: var(--navy);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  color: inherit;
  border: 1px solid currentColor;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
}

.flag {
  display: block;
  flex: 0 0 auto;
  height: 22px;
  overflow: hidden;
  border-radius: 3px;
  object-fit: cover;
  background: transparent;
  box-shadow: 0 0 0 1px rgba(7, 29, 66, 0.22), 0 4px 10px rgba(7, 29, 66, 0.08);
}

.flag-br {
  width: 32px;
}

.flag-py {
  width: 40px;
}

.language-switch .flag {
  height: 26px;
}

.language-switch .flag-br {
  width: 38px;
}

.language-switch .flag-py {
  width: 48px;
}

.unit-head .flag,
.footer-unit .flag {
  height: 26px;
}

.unit-head .flag-br,
.footer-unit .flag-br {
  width: 38px;
}

.unit-head .flag-py,
.footer-unit .flag-py {
  width: 48px;
}

.hero {
  position: relative;
  min-height: calc(100svh - 76px);
  overflow: hidden;
  color: var(--white);
  padding-top: var(--header-height);
  display: flex;
  align-items: center;
}

.hero-media,
.hero-slide,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: 0;
  background: var(--navy);
}

.hero-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 900ms ease, transform 6000ms linear;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1.11);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 20, 45, 0.94) 0%, rgba(5, 20, 45, 0.76) 34%, rgba(5, 20, 45, 0.36) 72%, rgba(5, 20, 45, 0.2) 100%),
    linear-gradient(180deg, rgba(5, 20, 45, 0.18) 0%, rgba(5, 20, 45, 0.74) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  padding: 68px 0 64px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 58px;
  line-height: 1.02;
}

.hero p:not(.eyebrow) {
  max-width: 580px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border-radius: 7px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn.primary {
  color: var(--white);
  background: var(--green);
}

.btn.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn.secondary:hover,
.btn.secondary:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 3;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.hero-controls button {
  width: 42px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.44);
  cursor: pointer;
}

.hero-controls button.active {
  background: var(--green);
}

.intro-band {
  color: var(--white);
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy-2) 58%, #113b55 100%);
}

.intro-grid {
  display: block;
  padding: 28px 0;
}

.intro-grid span {
  display: block;
  margin-bottom: 4px;
  color: #9cd7ff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.intro-grid strong {
  display: block;
  max-width: 780px;
  font-size: 22px;
  line-height: 1.3;
}

.section {
  padding: 92px 0;
}

.section:nth-of-type(even) {
  background: var(--soft);
}

.split-layout,
.trade-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 54px;
  align-items: center;
}

.section-copy h2,
.section-heading h2,
.trade-layout h2,
.contact-layout h2 {
  margin: 0;
  color: var(--navy);
  font-size: 38px;
  line-height: 1.14;
}

.section-copy p:not(.section-kicker),
.section-heading p:not(.section-kicker),
.trade-layout p:not(.section-kicker),
.contact-layout p:not(.section-kicker) {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 40px;
}

.section-heading.narrow {
  max-width: 620px;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.metric-card,
.product-card,
.timeline-item,
.unit-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(7, 29, 66, 0.06);
}

.metric-card {
  padding: 24px;
}

.metric-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 34px;
  margin-bottom: 18px;
  padding: 0 9px;
  color: var(--white);
  border-radius: 6px;
  background: var(--navy);
  font-weight: 900;
}

.metric-card strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.25;
}

.metric-card p,
.product-card p,
.timeline-item p,
.unit-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.products-section {
  background:
    linear-gradient(180deg, var(--white) 0%, #eef6f9 100%);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  z-index: 1;
  background: linear-gradient(90deg, var(--blue), var(--green));
}

.product-photo {
  position: relative;
  height: 138px;
  overflow: hidden;
  background: #dce8ef;
}

.product-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.product-card:nth-child(1) .product-photo img {
  object-position: 74% 67%;
}

.product-card:nth-child(2) .product-photo img {
  object-position: 76% 58%;
}

.product-card:nth-child(3) .product-photo img {
  object-position: 78% 54%;
}

.product-card:nth-child(4) .product-photo img {
  object-position: 68% 60%;
}

.product-card-body {
  padding: 24px;
}

.product-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 40px;
  margin-bottom: 18px;
  padding: 8px 12px;
  color: var(--white);
  border-radius: 6px;
  background: var(--navy);
  font-weight: 900;
}

.product-card h3,
.timeline-item h3,
.unit-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.2;
}

.process-section {
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(7, 29, 66, 0.95), rgba(6, 63, 88, 0.93)),
    url("assets/images/hero-controle-qualidade.png") center / cover;
}

.process-section .section-heading h2 {
  color: var(--white);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.timeline-item {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
  padding: 26px 22px;
  backdrop-filter: blur(10px);
}

.timeline-item span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--navy);
  background: var(--white);
  font-weight: 900;
}

.timeline-item h3,
.timeline-item p {
  color: var(--white);
}

.timeline-item p {
  opacity: 0.78;
}

.trade-section {
  background: var(--white);
}

.route-panel {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.route-point {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(7, 29, 66, 0.07);
}

.route-point strong {
  overflow-wrap: anywhere;
}

.route-line {
  width: 4px;
  height: 64px;
  margin: 8px 0 8px 29px;
  border-radius: 999px;
  background: linear-gradient(var(--blue), var(--green));
}

.units-section {
  background: var(--soft);
}

.units-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.unit-card {
  padding: 28px;
}

.unit-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.contact-section {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.92) 48%, rgba(232, 241, 246, 0.9) 100%),
    url("assets/images/hero-logistica.png") center / cover;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
  background: linear-gradient(var(--blue), var(--green));
}

.contact-layout {
  position: relative;
  z-index: 1;
}

.contact-layout h2 {
  color: var(--navy);
}

.contact-layout p:not(.section-kicker) {
  color: var(--muted);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.whatsapp-cta,
.email-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 18px;
  border-radius: 7px;
  font-weight: 900;
  line-height: 1.15;
}

.whatsapp-cta {
  gap: 10px;
  color: var(--white);
  background: #1fad57;
}

.whatsapp-cta img {
  width: 28px;
  height: 28px;
}

.email-cta {
  color: var(--navy);
  border: 1px solid var(--line);
  background: var(--white);
}

.contact-panel {
  display: grid;
  gap: 12px;
}

.question-panel {
  display: block;
}

.question-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(0, 153, 223, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 44px rgba(7, 29, 66, 0.12);
}

.form-heading {
  padding-bottom: 4px;
}

.form-heading span,
.question-form label > span {
  display: block;
  margin-bottom: 7px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.form-heading strong {
  display: block;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.2;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.question-form input,
.question-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  border: 1px solid #cad7e3;
  border-radius: 7px;
  background: var(--white);
  font: inherit;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.question-form textarea {
  min-height: 128px;
  resize: vertical;
}

.question-form input:focus,
.question-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 153, 223, 0.12);
}

.submit-question {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 18px;
  color: var(--white);
  border: 0;
  border-radius: 7px;
  background: var(--navy);
  font-weight: 900;
  cursor: pointer;
}

.submit-question:hover,
.submit-question:focus-visible {
  background: var(--navy-2);
}

.contact-card {
  display: block;
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 38px rgba(7, 29, 66, 0.1);
}

.contact-card.featured {
  position: relative;
  padding-left: 76px;
  border-color: rgba(31, 173, 87, 0.34);
  background: linear-gradient(135deg, #ffffff 0%, #edf9f1 100%);
}

.contact-card:hover,
.contact-card:focus-visible {
  border-color: rgba(0, 153, 223, 0.38);
  transform: translateY(-2px);
}

.contact-icon {
  position: absolute;
  top: 22px;
  left: 22px;
  width: 38px;
  height: 38px;
}

.contact-panel span {
  display: block;
  margin-bottom: 6px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-panel strong {
  display: block;
  overflow-wrap: anywhere;
  color: var(--navy);
  font-size: 20px;
}

.contact-panel .form-heading strong {
  font-size: 24px;
}

.contact-panel small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.site-footer {
  padding: 46px 0 22px;
  color: var(--white);
  background: #051327;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(250px, 1fr) minmax(250px, 1fr) minmax(260px, 1fr);
  gap: 28px;
  align-items: start;
}

.footer-brand {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.footer-brand img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.footer-brand strong,
.footer-contact strong,
.footer-unit strong {
  display: block;
  color: var(--white);
  font-size: 18px;
  line-height: 1.25;
}

.footer-brand strong {
  font-size: 20px;
}

.footer-brand p,
.footer-unit p {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-unit {
  display: flex;
  gap: 12px;
  margin: 0;
  font-style: normal;
}

.footer-contact {
  display: grid;
  gap: 8px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  overflow-wrap: anywhere;
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  padding: 0;
  border-radius: 50%;
  background: #25d366;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.floating-contact img {
  width: 58px;
  height: 58px;
}

.floating-contact.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 980px) {
  :root {
    --header-height: 62px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-shell {
    min-height: 62px;
  }

  .brand img {
    width: 56px;
    height: 56px;
  }

  .brand-copy strong {
    font-size: 18px;
  }

  .brand-copy small {
    display: none;
  }

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 20px 24px;
    color: var(--ink);
    background: var(--white);
    box-shadow: 0 24px 44px rgba(7, 29, 66, 0.16);
  }

  body.nav-open .nav-menu {
    display: flex;
  }

  .nav-menu a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
  }

  .language-switch {
    margin-left: auto;
  }

  .hero {
    min-height: calc(100svh - 64px);
  }

  .hero-content {
    padding-top: 56px;
  }

  .hero h1 {
    max-width: 660px;
    font-size: 42px;
  }

  .hero p:not(.eyebrow) {
    font-size: 18px;
  }

  .intro-grid,
  .split-layout,
  .trade-layout,
  .contact-layout,
  .units-grid {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 680px) {
  :root {
    --header-height: 62px;
  }

  .container {
    width: min(100% - 28px, 1160px);
  }

  .nav-shell {
    gap: 10px;
  }

  .brand-copy {
    display: none;
  }

  .language-switch button {
    min-width: 52px;
    padding: 6px 8px;
  }

  .hero {
    min-height: calc(100svh - 52px);
    padding-top: var(--header-height);
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 20, 45, 0.95) 0%, rgba(5, 20, 45, 0.78) 78%, rgba(5, 20, 45, 0.52) 100%),
      linear-gradient(180deg, rgba(5, 20, 45, 0.16) 0%, rgba(5, 20, 45, 0.78) 100%);
  }

  .hero-content {
    padding: 44px 0 74px;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.08;
  }

  .hero p:not(.eyebrow) {
    margin-top: 18px;
    font-size: 16px;
  }

  .hero-actions {
    margin-top: 26px;
  }

  .btn {
    width: 100%;
  }

  .hero-controls {
    bottom: 18px;
  }

  .intro-grid {
    padding: 24px 0;
  }

  .intro-grid strong {
    font-size: 18px;
  }

  .section {
    padding: 62px 0;
  }

  .section-copy h2,
  .section-heading h2,
  .trade-layout h2,
  .contact-layout h2 {
    font-size: 30px;
  }

  .metrics-grid,
  .product-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .metric-card,
  .timeline-item,
  .unit-card {
    padding: 22px;
  }

  .product-card-body {
    padding: 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .footer-brand img {
    width: 58px;
    height: 58px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .floating-contact {
    right: 12px;
    bottom: 12px;
    width: 52px;
    height: 52px;
  }

  .floating-contact img {
    width: 52px;
    height: 52px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
