:root {
  --bg: #07131d;
  --bg-deep: #040d14;
  --surface: #0b1b26;
  --surface-2: #0d202c;
  --surface-3: #102735;
  --text: #f5f7fa;
  --muted: #a9b8c4;
  --line: rgba(255, 255, 255, .12);
  --line-strong: rgba(255, 255, 255, .18);
  --blue: #168cff;
  --blue-strong: #0876e7;
  --cyan: #1dbad4;
  --green: #13bd5c;
  --white: #fff;
  --container: 1120px;
  --shadow: 0 22px 60px rgba(0, 0, 0, .32);
  --radius: 10px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

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

img,
video {
  display: block;
  width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

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

.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 9999;
  padding: 10px 14px;
  border-radius: 7px;
  background: #fff;
  color: #07131d;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5, 15, 23, .97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-crop {
  position: relative;
  width: 132px;
  height: 48px;
  overflow: hidden;
}

.brand-crop img {
  position: absolute;
  top: 50%;
  left: 0;
  width: 132px;
  height: 132px;
  max-width: none;
  object-fit: cover;
  transform: translateY(-50%);
}

.brand-crop-small {
  width: 102px;
  height: 38px;
}

.brand-crop-small img {
  width: 102px;
  height: 102px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 27px;
}

.main-nav a {
  position: relative;
  color: #dce5ec;
  font-size: .84rem;
  font-weight: 760;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transition: right .2s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  right: 0;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255, 255, 255, .035);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: #fff;
  transition: transform .2s ease, opacity .2s ease;
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: .88rem;
  font-weight: 850;
  line-height: 1.05;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

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

.btn img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.btn-primary,
.btn-header {
  color: #fff;
  background: linear-gradient(135deg, var(--blue-strong), var(--blue));
  box-shadow: 0 10px 26px rgba(8, 118, 231, .28);
}

.btn-primary:hover,
.btn-primary:focus-visible,
.btn-header:hover,
.btn-header:focus-visible {
  box-shadow: 0 14px 32px rgba(8, 118, 231, .4);
}

.btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, .5);
  background: rgba(4, 14, 22, .38);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--cyan);
  background: rgba(29, 186, 212, .08);
}

.btn-large {
  min-height: 50px;
  padding-inline: 22px;
}

.hero {
  background: #07141e;
}

.hero-inner {
  min-height: 505px;
  display: flex;
  align-items: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-inline: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(4, 14, 22, .99) 0%, rgba(4, 14, 22, .94) 36%, rgba(4, 14, 22, .56) 57%, rgba(4, 14, 22, .06) 100%),
    url("assets/portao1.jpg") center right / cover no-repeat;
}

.hero-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, transparent 74%, rgba(4, 14, 22, .42)),
    radial-gradient(circle at 68% 42%, rgba(22, 140, 255, .11), transparent 30%);
}

.hero-content {
  width: min(550px, 52%);
  padding: 55px 0 55px 34px;
}

.hero-kicker,
.eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--cyan);
  font-size: .68rem;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero h1 {
  margin-bottom: 16px;
  color: #fff;
  font-size: clamp(3rem, 5.8vw, 4.9rem);
  line-height: .92;
  letter-spacing: -.065em;
}

.hero h1 span {
  display: block;
  color: var(--blue);
}

.hero h2 {
  max-width: 500px;
  margin-bottom: 13px;
  color: #f4f7fa;
  font-size: clamp(1.15rem, 2.1vw, 1.65rem);
  line-height: 1.28;
}

.hero-content > p {
  max-width: 505px;
  color: #becbd4;
  font-size: .91rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 22px;
}

.hero-proof,
.trust-strip {
  display: none;
}

.section {
  padding-block: 74px;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-heading-left {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr .56fr;
  gap: 48px;
  align-items: end;
  text-align: left;
}

.section-heading h2,
.location-content h2,
.video-copy-block h2 {
  color: #fff;
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  line-height: 1.06;
  letter-spacing: -.045em;
}

.section-heading > p,
.section-heading-left > p,
.location-content > p,
.video-copy-block > p {
  color: var(--muted);
  font-size: .94rem;
}

.section-heading > p {
  margin-top: 12px;
}

.services {
  background:
    linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px),
    #0b1b26;
  background-size: 42px 42px;
}

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

.service-card {
  grid-column: span 3;
  display: block;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #0e2330, #0a1c27);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .2);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(22, 140, 255, .52);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .28);
}

.service-card-featured {
  grid-column: span 6;
  display: block;
}

.service-photo,
.service-card-featured .service-photo {
  position: relative;
  min-height: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #07131d;
}

.service-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(4, 14, 22, .46));
}

.service-photo img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .45s ease;
}

.service-card:hover .service-photo img {
  transform: scale(1.035);
}

.service-body {
  min-height: 176px;
  padding: 18px 18px 20px;
}

.service-card-featured .service-body {
  min-height: 172px;
}

.service-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.service-icon svg,
.benefit-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-badge {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 8px;
  border: 1px solid rgba(29, 186, 212, .28);
  border-radius: 999px;
  background: rgba(29, 186, 212, .06);
  color: var(--cyan);
  font-size: .59rem;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.service-body h3 {
  margin-bottom: 8px;
  color: #fff;
  font-size: 1.08rem;
}

.service-body p {
  color: var(--muted);
  font-size: .84rem;
}

.projects {
  background: #07131d;
}

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

.project-item,
.project-item-main,
.project-item-tall,
.project-item-wide {
  grid-column: auto;
  grid-row: auto;
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #0b1d29;
  cursor: pointer;
}

.project-item img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .4s ease, filter .3s ease;
}

.project-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 54%, rgba(3, 10, 16, .84));
}

.project-item span {
  position: absolute;
  left: 15px;
  bottom: 13px;
  z-index: 2;
  color: #fff;
  font-size: .82rem;
  font-weight: 850;
}

.project-item:hover img,
.project-item:focus-visible img {
  transform: scale(1.04);
  filter: contrast(1.05);
}

.work-video {
  border-block: 1px solid var(--line);
  background: linear-gradient(135deg, #0a2030, #07131d 68%);
}

.video-layout {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 48px;
  align-items: center;
}

.video-copy-block h2 {
  margin-bottom: 15px;
}

.video-points {
  display: grid;
  gap: 9px;
  margin-top: 22px;
  list-style: none;
}

.video-points li {
  position: relative;
  padding-left: 26px;
  color: #d9e4eb;
  font-size: .9rem;
  font-weight: 750;
}

.video-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 950;
}

.video-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
}

.video-card,
.video-card-main {
  grid-column: auto;
  grid-row: auto;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #0c202d;
  box-shadow: 0 16px 38px rgba(0, 0, 0, .25);
}

.video-card video,
.video-card-main video {
  height: 370px;
  background: #02070b;
  object-fit: contain;
}

.video-card > div {
  display: grid;
  padding: 14px 15px 16px;
}

.video-card strong {
  color: #fff;
  font-size: .88rem;
}

.video-card span {
  color: var(--muted);
  font-size: .73rem;
}

.benefits {
  position: relative;
  overflow: hidden;
  background: #081620;
}

.benefits::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .09;
  background-image: repeating-linear-gradient(135deg, transparent 0 18px, rgba(255, 255, 255, .08) 18px 19px);
  pointer-events: none;
}

.benefits .container {
  position: relative;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.benefits-grid article {
  position: relative;
  min-height: 220px;
  padding: 34px 31px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.benefits-grid article:last-child {
  border-right: 0;
}

.benefit-number {
  display: none;
}

.benefit-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.benefit-icon svg {
  width: 43px;
  height: 43px;
  stroke-width: 1.7;
}

.benefits-grid h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.benefits-grid p {
  color: var(--muted);
  font-size: .82rem;
}

.location-section {
  padding-block: 78px;
  background: #0a1a25;
  border-top: 1px solid var(--line);
}

.location-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 46px;
  align-items: center;
}

.location-content h2 {
  margin-bottom: 13px;
}

.location-card {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 24px;
  padding: 17px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .025);
}

.location-card img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.location-card strong,
.location-card span {
  display: block;
}

.location-card strong {
  color: #fff;
}

.location-card span {
  color: var(--muted);
  font-size: .84rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--cyan);
  font-size: .88rem;
  font-weight: 850;
}

.map-frame {
  min-height: 410px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-frame iframe {
  width: 100%;
  height: 410px;
  border: 0;
  filter: saturate(.82) contrast(1.02);
}

.cta-section {
  padding-block: 68px;
  background: linear-gradient(135deg, #092238, #06121c 72%);
  border-top: 1px solid var(--line);
}

.cta-box {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 44px;
  align-items: center;
  padding: 36px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(12, 42, 62, .7), rgba(5, 17, 26, .72));
  box-shadow: var(--shadow);
}

.cta-copy h2 {
  max-width: 650px;
  margin-bottom: 13px;
  font-size: clamp(2.15rem, 4.5vw, 3.65rem);
  line-height: 1.03;
  letter-spacing: -.052em;
}

.cta-copy h2 span {
  color: var(--blue);
}

.cta-copy > p {
  max-width: 620px;
  color: var(--muted);
  font-size: .92rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 22px;
}

.contact-panel {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(4, 14, 22, .4);
  font-style: normal;
}

.contact-panel > a {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: center;
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
  transition: background .2s ease;
}

.contact-panel > a:last-child {
  border-bottom: 0;
}

.contact-panel > a:hover,
.contact-panel > a:focus-visible {
  background: rgba(22, 140, 255, .065);
}

.contact-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.contact-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.contact-panel strong,
.contact-panel small {
  display: block;
}

.contact-panel strong {
  color: #fff;
  font-size: .88rem;
}

.contact-panel small {
  color: var(--muted);
  font-size: .78rem;
}

.site-footer {
  padding: 23px 0 13px;
  background: #030b11;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

.footer-inner > p {
  color: #8195a4;
  font-size: .76rem;
  text-align: center;
}

.footer-social {
  display: flex;
  gap: 9px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, .02);
}

.footer-social img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.credit {
  margin-top: 9px;
  color: #617786;
  font-size: .69rem;
  text-align: center;
}

.credit a {
  color: #b9cad5;
  font-weight: 850;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 900;
  width: 58px;
  height: 58px;
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  box-shadow: 0 16px 38px rgba(0, 0, 0, .4);
  transition: transform .2s ease, box-shadow .2s ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 20px 44px rgba(0, 0, 0, .48);
}

.floating-whatsapp img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.floating-whatsapp span {
  display: none;
}

.back-to-top {
  position: fixed;
  right: 25px;
  bottom: 87px;
  z-index: 850;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(6, 18, 27, .9);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .2s ease, transform .2s ease;
}

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

.lightbox {
  width: min(94vw, 1100px);
  max-height: 92vh;
  margin: auto;
  padding: 0;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 13px;
  background: #02070b;
  box-shadow: var(--shadow);
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, .88);
  backdrop-filter: blur(7px);
}

.lightbox img {
  max-height: 88vh;
  object-fit: contain;
  border-radius: 13px;
}

.lightbox-close {
  position: absolute;
  top: -16px;
  right: -16px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  background: #0c1a24;
  color: #fff;
  cursor: pointer;
  font-size: 1.5rem;
}

:focus-visible {
  outline: 3px solid rgba(29, 186, 212, .75);
  outline-offset: 4px;
}

@media (max-width: 1040px) {
  .btn-header {
    display: none;
  }

  .service-card {
    grid-column: span 6;
  }

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

  .video-layout,
  .location-grid,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .video-layout {
    gap: 32px;
  }

  .cta-box {
    gap: 30px;
  }
}

@media (max-width: 820px) {
  .site-header,
  .header-inner {
    min-height: 66px;
  }

  .brand-crop {
    width: 118px;
    height: 43px;
  }

  .brand-crop img {
    width: 118px;
    height: 118px;
  }

  .menu-toggle {
    display: block;
    order: 3;
  }

  .main-nav {
    position: fixed;
    inset: 66px 0 auto;
    display: grid;
    gap: 0;
    padding: 11px 18px 21px;
    border-bottom: 1px solid var(--line);
    background: rgba(4, 14, 22, .99);
    box-shadow: 0 28px 44px rgba(0, 0, 0, .42);
    transform: translateY(-130%);
    visibility: hidden;
    opacity: 0;
    transition: transform .24s ease, opacity .2s ease, visibility .2s ease;
  }

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

  .main-nav a {
    padding: 15px 6px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .main-nav a::after {
    display: none;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero-inner {
    min-height: 665px;
    align-items: flex-end;
    background:
      linear-gradient(180deg, rgba(4, 14, 22, .2), rgba(4, 14, 22, .96) 72%),
      url("assets/portao1.jpg") 63% center / cover no-repeat;
  }

  .hero-content {
    width: 100%;
    padding: 160px 24px 43px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .hero-actions {
    display: grid;
  }

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

  .section {
    padding-block: 64px;
  }

  .section-heading-left {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .video-showcase {
    grid-template-columns: 1fr;
  }

  .video-card video,
  .video-card-main video {
    height: 440px;
  }

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

  .benefits-grid article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .benefits-grid article:last-child {
    border-bottom: 0;
  }

  .location-section {
    padding-block: 64px;
  }

  .cta-box {
    padding: 30px;
  }

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

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 22px), var(--container));
  }

  .hero-inner {
    min-height: 650px;
  }

  .hero-content {
    padding-inline: 18px;
  }

  .service-card,
  .service-card-featured {
    grid-column: span 12;
  }

  .service-photo,
  .service-card-featured .service-photo {
    aspect-ratio: 16 / 11;
  }

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

  .video-card video,
  .video-card-main video {
    height: 450px;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 350px;
    height: 350px;
  }

  .cta-box {
    padding: 25px 19px;
  }

  .cta-actions {
    display: grid;
  }

  .cta-actions .btn {
    width: 100%;
  }

  .floating-whatsapp {
    right: 13px;
    bottom: 13px;
  }

  .back-to-top {
    right: 21px;
    bottom: 82px;
  }
}

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

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