/* 24 Horas Transportes Urgentes — azul e laranja (logotipo) */
:root {
  --green-dark: #0c4a6e;
  --green-mid: #ea580c;
  --green-light: #fb923c;
  --green-mint: #e0f2fe;
  --green-cta-hover: #c2410c;
  --black: #1a1a1a;
  --gray-700: #333333;
  --gray-500: #5c5c5c;
  --gray-200: #e2e8f0;
  --white: #ffffff;
  --shadow: 0 12px 40px rgba(12, 74, 110, 0.14);
  --radius: 12px;
  --radius-lg: 20px;
  --font: "DM Sans", system-ui, sans-serif;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
}

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

a {
  color: var(--green-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--green-dark);
  color: var(--white);
}

.skip-link:focus {
  left: 0;
}

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

.container-narrow {
  width: min(520px, 100% - 2.5rem);
}

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

/* Páginas internas (Quem Somos, Contato) */
.page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-mint) 0%, var(--white) 55%);
  padding: 2.75rem 0 2.5rem;
  border-bottom: 1px solid var(--gray-200);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.page-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

.page-hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(12, 74, 110, 0.35),
    rgba(12, 74, 110, 0.6)
  );
}

.page-hero--video .eyebrow {
  color: #e5f3ff;
}

.page-hero--video .page-hero-lead {
  color: #e2e8f0;
}

.page-hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Só o título “Quem somos” no hero com vídeo — laranja (evita preto do .page-hero h1) */
.page-hero.page-hero--video .page-hero-inner h1 {
  color: var(--green-mid);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.55);
}

.page-hero-lead {
  margin: 0;
  font-size: 1.05rem;
  color: var(--gray-500);
}

.section-tight {
  padding-top: 3rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.65rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: inherit;
  text-decoration: none;
}

.brand:hover {
  text-decoration: none;
}

.brand-logo {
  width: auto;
  height: 48px;
  max-width: min(220px, 42vw);
  object-fit: contain;
  object-position: left center;
  border-radius: 0;
  flex-shrink: 0;
  background: transparent;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gray-700);
}

.brand-tag {
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: lowercase;
  color: var(--green-dark);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle-bar {
  display: block;
  height: 2px;
  width: 24px;
  background: var(--green-dark);
  border-radius: 1px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-list a {
  font-weight: 500;
  color: var(--gray-700);
  text-decoration: none;
  font-size: 0.95rem;
}

.nav-list a:hover {
  color: var(--green-dark);
  text-decoration: none;
}

.nav-list a[aria-current="page"] {
  color: var(--green-dark);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid var(--green-light);
  padding-bottom: 2px;
}

.btn-nav {
  flex-shrink: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1.15rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

.btn:hover {
  text-decoration: none;
}

.btn:active {
  transform: scale(0.98);
}

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

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

.btn-outline {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
}

.btn-outline:hover {
  background: var(--green-mint);
  border-color: var(--green-dark);
  color: var(--green-dark);
}

.btn-lg {
  padding: 0.85rem 1.5rem;
  font-size: 0.95rem;
}

.btn-block {
  width: 100%;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
}

.btn-whatsapp:hover {
  background: #1fb855;
  border-color: #1fb855;
  color: #fff;
}

.contact-chips .btn-whatsapp {
  white-space: normal;
  text-align: center;
  justify-content: center;
  max-width: 100%;
}

.contact-chips .link-mail {
  overflow-wrap: anywhere;
  word-break: break-word;
  max-width: 100%;
}

.icon-wa {
  flex-shrink: 0;
}

/* Hero */
.hero {
  position: relative;
  padding: 3rem 0 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green-mint) 0%, var(--white) 45%, #fff7ed 100%);
  opacity: 0.9;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-copy h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  line-height: 1.15;
  color: var(--black);
  font-weight: 700;
}

.hero-copy h1 em {
  font-style: normal;
  color: var(--green-mid);
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-mid);
}

.lead {
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 36ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-pills {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-pills li {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  background: var(--white);
  border: 1px solid var(--green-light);
  color: var(--green-dark);
  border-radius: 999px;
}

.hero-visual {
  margin: 0;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  border: 0;
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 10px 22px rgba(12, 74, 110, 0.2));
  transform: scale(1.16);
  transform-origin: center;
}

/* Sections */
.section {
  padding: 4rem 0;
}

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

.section-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.section-head h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.section-intro {
  margin: 0;
  color: var(--gray-500);
  font-size: 1.05rem;
}

/* Cards */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.card-service {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--gray-200);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.card-service:hover {
  border-color: var(--green-light);
  box-shadow: var(--shadow);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-mint), var(--green-light));
  margin-bottom: 1rem;
  position: relative;
}

.card-icon::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-right: 3px solid var(--green-dark);
  border-bottom: 3px solid var(--green-dark);
  transform: rotate(-45deg);
  top: 10px;
  left: 14px;
  width: 14px;
  height: 14px;
  border-radius: 0 0 2px 0;
}

.card-service h3 {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
  color: var(--green-dark);
}

.card-service p {
  margin: 0 0 1.25rem;
  flex: 1;
  font-size: 0.95rem;
  color: var(--gray-500);
}

.card-cta {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--green-dark);
  text-decoration: none;
  align-self: flex-start;
}

.card-cta:hover {
  color: var(--green-mid);
  text-decoration: underline;
}

.service-list {
  list-style: none;
  margin: 0;
  padding: 1.5rem 1.75rem;
  background: var(--green-dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 2rem;
}

.service-list li {
  padding-left: 1.35rem;
  position: relative;
  font-size: 0.95rem;
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-light);
}

/* Split */
.section-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  padding: 0;
}

.split-visual {
  min-height: 420px;
}

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

.split-content {
  padding: 3.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.split-content h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.steps {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  counter-increment: step;
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1.25rem;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.steps strong {
  display: block;
  color: var(--black);
  margin-bottom: 0.25rem;
}

.steps span {
  font-size: 0.95rem;
  color: var(--gray-500);
}

.split-cta-wrap {
  margin-top: 1.5rem;
}

.split-cta-wrap .btn:hover {
  text-decoration: none;
}

/* About */
.split-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.about-copy p {
  margin: 0 0 1rem;
  color: var(--gray-500);
}

.about-cta {
  margin-top: 1.5rem !important;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.about-cta .btn:hover {
  text-decoration: none;
}

.about-figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-figure img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

/* Diffs */
.section-diffs {
  background: var(--green-dark);
  color: var(--white);
}

.section-diffs .section-head h2 {
  color: var(--white);
}

.section-diffs .section-intro {
  color: var(--green-mint);
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.diff-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.diff-card-wide {
  grid-column: 1 / -1;
}

.diff-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: var(--green-light);
}

.diff-card p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.55;
}

/* Contact */
.section-contact {
  background: linear-gradient(180deg, var(--green-mint) 0%, var(--white) 35%);
  padding-bottom: 5rem;
}

.section-contact--page {
  padding-top: 2.5rem;
}

.contact-intro-text {
  margin: 0 0 1.5rem;
  color: var(--gray-500);
  max-width: 42ch;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-intro h2 {
  margin: 0 0 0.25rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-subtitle {
  margin: 0 0 1rem;
  font-weight: 600;
  color: var(--green-dark);
  font-size: 1.05rem;
}

.contact-intro > p {
  margin: 0 0 1.5rem;
  color: var(--gray-500);
  max-width: 40ch;
}

.contact-chips {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.link-mail {
  font-weight: 600;
  color: var(--green-dark);
}

.contact-watermark-logo {
  margin-top: 0.35rem;
  width: min(240px, 75%);
  height: auto;
  opacity: 0.16;
  pointer-events: none;
  user-select: none;
}

#cotacao {
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

.form-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}

.form-title {
  margin: 0 0 1.25rem;
  font-size: 1.15rem;
  color: var(--green-dark);
}

.quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.25rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
}

.req {
  color: var(--green-dark);
}

.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  background: #fafcfa;
  color: var(--gray-700);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--green-light);
  outline-offset: 0;
  border-color: var(--green-dark);
}

.field textarea {
  resize: vertical;
  min-height: 100px;
}

.form-hint {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.8rem;
  color: var(--gray-500);
}

.quote-form .btn {
  grid-column: 1 / -1;
  margin-top: 0.25rem;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  min-height: 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.form-note.ok {
  color: var(--green-dark);
}

.form-note.err {
  color: #b42318;
}

/* Footer */
.site-footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.85);
  padding: 2.5rem 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: start;
}

.footer-brand {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.footer-logo {
  width: auto;
  height: 44px;
  max-width: 180px;
  object-fit: contain;
  object-position: left center;
  border-radius: 0;
  flex-shrink: 0;
  background: transparent;
}

.footer-brand strong {
  color: var(--white);
  display: block;
  margin-bottom: 0.35rem;
}

.footer-brand p {
  margin: 0;
  font-size: 0.9rem;
  max-width: 320px;
}

.footer-nav {
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem 0.5rem;
  font-size: 0.9rem;
}

.footer-nav a {
  color: var(--green-light);
  text-decoration: none;
}

.footer-nav a:hover {
  text-decoration: underline;
}

.footer-nav-sep {
  color: rgba(255, 255, 255, 0.35);
  user-select: none;
}

.footer-contact {
  text-align: right;
}

.footer-contact p {
  margin: 0 0 0.35rem;
}

.footer-contact a {
  color: var(--green-light);
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-copy {
  grid-column: 1 / -1;
  margin: 1rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

/* FAB WhatsApp */
.fab-wa {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right, 0px));
  bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  z-index: 90;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.fab-wa:hover {
  transform: scale(1.06);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55);
  text-decoration: none;
  color: #fff;
}

/* Mobile */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy .lead {
    max-width: none;
    margin-inline: auto;
  }

  .hero-pills {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
    max-width: 560px;
    margin-inline: auto;
  }

  .cards-3 {
    grid-template-columns: 1fr;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .section-split {
    grid-template-columns: 1fr;
  }

  .split-visual {
    min-height: 280px;
  }

  .split-content {
    padding: 2.5rem 1.25rem;
  }

  .split-about {
    grid-template-columns: 1fr;
  }

  .about-figure {
    order: -1;
  }

  .contact-wrap {
    grid-template-columns: 1fr;
  }

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

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

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

  .footer-contact {
    text-align: left;
  }

  .footer-nav {
    justify-content: flex-start;
  }

  .hero-actions {
    justify-content: center;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .page-hero {
    padding: 2rem 0 2rem;
  }
}

@media (max-width: 480px) {
  .container,
  .container-narrow {
    width: min(1120px, 100% - 1.5rem);
  }

  .form-panel {
    padding: 1.35rem 1.15rem;
  }

  .footer-copy {
    overflow-wrap: anywhere;
    line-height: 1.5;
  }

  .hero-visual img {
    transform: scale(1.05);
  }

  .card-service {
    padding: 1.35rem;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--header-h);
    max-height: calc(100vh - var(--header-h));
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem max(1.5rem, env(safe-area-inset-bottom, 0px));
    border-bottom: 1px solid var(--gray-200);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s;
    z-index: 250;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-list a {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    min-height: 44px;
    border-bottom: 1px solid var(--gray-200);
  }

  .btn-nav {
    margin-top: 1rem;
    width: 100%;
    min-height: 48px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
