:root {
  color-scheme: light;
  --paper: #fbf1e4;
  --wash: #ead3b9;
  --ink: #24140e;
  --muted: #765c4d;
  --green: #3f2419;
  --gold: #c99a45;
  --clay: #8e3f2f;
  --rose: #e7bca8;
  --line: #d6b78e;
  --cocoa: #2b1711;
  --white: #fff9ef;
  --shadow: 0 18px 42px rgba(47, 27, 18, 0.16);
  font-family: Arial, Helvetica, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(rgba(218, 203, 187, 0.24) 1px, transparent 1px) 0 0 / 100% 66px,
    var(--paper);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.topbar {
  position: fixed;
  top: 0;
  z-index: 50;
  width: 100%;
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 8px 14px 7px;
  border-bottom: 2px solid var(--gold);
  background: var(--green);
  color: var(--white);
  font-size: 0.68rem;
  line-height: 1;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0;
}

.topbar span + span::before {
  content: "|";
  margin-right: 12px;
  color: var(--gold);
}

.shell {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 74px 0;
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(218, 203, 187, 0.2) 1px, transparent 1px) 0 0 / 100% 66px,
    linear-gradient(90deg, transparent calc(50% - 512px), rgba(218, 203, 187, 0.24) calc(50% - 512px), rgba(218, 203, 187, 0.24) calc(50% - 511px), transparent calc(50% - 511px), transparent calc(50% + 511px), rgba(218, 203, 187, 0.24) calc(50% + 511px), rgba(218, 203, 187, 0.24) calc(50% + 512px), transparent calc(50% + 512px));
}

.section > .shell {
  position: relative;
  z-index: 1;
}

.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 84px 0 54px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  background:
    linear-gradient(rgba(218, 203, 187, 0.28) 1px, transparent 1px) 0 0 / 100% 72px,
    var(--paper);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, var(--green) 0 92px, transparent 92px),
    linear-gradient(90deg, transparent 0, rgba(218, 203, 187, 0.22) 1px, transparent 1px) 132px 0 / 34px 100%;
}

.hero::after {
  content: "CATÁLOGO DE AULAS";
  position: absolute;
  left: 42px;
  bottom: 64px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 380px);
  align-items: center;
  gap: 48px;
  padding-left: 112px;
  color: var(--ink);
}

.eyebrow,
.section-kicker {
  position: relative;
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  margin: 0 0 16px;
  padding: 8px 18px 7px;
  background: var(--green);
  color: var(--white);
  font-size: 0.68rem;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow::after,
.section-kicker::after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 18px solid currentColor;
  color: var(--green);
}

.section-kicker {
  margin-right: auto;
  margin-left: auto;
}

.section-kicker.green {
  background: var(--gold);
  color: var(--ink);
}

.section-kicker.green::after {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

h1 {
  max-width: 680px;
  font-size: clamp(3.6rem, 8vw, 6.85rem);
  line-height: 0.94;
  font-weight: 700;
  text-wrap: balance;
}

h1::after {
  content: "";
  display: block;
  width: min(360px, 64vw);
  height: 4px;
  margin: 28px 0 12px;
  background: var(--gold);
  box-shadow: 330px 12px 0 -1px var(--line);
}

h2 {
  max-width: 800px;
  margin: 0 auto;
  color: var(--ink);
  font-size: clamp(2.15rem, 4.8vw, 4rem);
  line-height: 1.02;
  font-weight: 700;
  text-align: center;
  text-wrap: balance;
}

h3 {
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.14;
  font-weight: 700;
}

.hero-copy {
  max-width: 540px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.7vw, 1.35rem);
  line-height: 1.48;
}

.section-subtitle {
  max-width: 690px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.58;
  text-align: center;
}

.phone-mockup {
  grid-column: 2;
  grid-row: 1 / span 4;
  width: min(360px, 100%);
  justify-self: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  box-shadow: var(--shadow);
  transform: rotate(-1.5deg);
}

.phone-screen {
  position: relative;
  aspect-ratio: 9 / 14;
  overflow: hidden;
  border-radius: 2px;
  background: var(--cocoa);
  isolation: isolate;
}

.vsl-poster,
.hero-vsl {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.02);
}

.vsl-poster {
  z-index: 0;
  opacity: 1;
  transition: opacity 220ms ease;
}

.hero-vsl {
  z-index: 1;
  opacity: 0;
  background: var(--cocoa);
  transition: opacity 220ms ease;
}

.phone-screen.is-video-ready .hero-vsl {
  opacity: 1;
}

.phone-screen.is-video-ready .vsl-poster {
  opacity: 0;
}

.phone-screen::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(to bottom, rgba(63, 36, 25, 0.04), transparent 45%, rgba(36, 20, 14, 0.46));
  pointer-events: none;
}

.cta-button,
.mini-cta {
  position: relative;
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 16px 30px 16px 72px;
  border: 0;
  border-radius: 0;
  background: var(--clay);
  color: var(--white);
  font-size: 0.82rem;
  line-height: 1.15;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0;
  box-shadow: 0 12px 24px rgba(158, 73, 61, 0.2);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
  overflow: hidden;
}

.cta-button::before,
.mini-cta::before {
  content: "";
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 28px;
  width: 2px;
  background: var(--gold);
}

.cta-button::after,
.mini-cta::after {
  content: "";
  position: absolute;
  left: 39px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 16px solid var(--white);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.cta-button:hover,
.mini-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.cta-button:active,
.mini-cta:active {
  transform: translateY(1px);
  box-shadow: 0 8px 18px rgba(158, 73, 61, 0.18);
}

.hero .cta-button {
  grid-column: 1;
  width: min(100%, 360px);
  margin-top: 16px;
}

.mini-cta {
  width: min(100%, 245px);
  margin: 30px auto 0;
  display: flex;
}

.light,
.showcase,
.faq-section {
  background: var(--paper);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
}

.benefit-card {
  min-height: 170px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255, 253, 248, 0.78);
  box-shadow: none;
}

.check,
.desire-grid span {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 0;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
}

.benefit-card h3 {
  margin-top: 14px;
  font-size: 1.28rem;
}

.benefit-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.48;
}

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

.dark::before,
.steps-section::before,
.package::before {
  background:
    linear-gradient(rgba(255, 253, 248, 0.06) 1px, transparent 1px) 0 0 / 100% 66px,
    linear-gradient(90deg, transparent calc(50% - 512px), rgba(255, 253, 248, 0.08) calc(50% - 512px), rgba(255, 253, 248, 0.08) calc(50% - 511px), transparent calc(50% - 511px), transparent calc(50% + 511px), rgba(255, 253, 248, 0.08) calc(50% + 511px), rgba(255, 253, 248, 0.08) calc(50% + 512px), transparent calc(50% + 512px));
}

.dark h2,
.steps-section h2,
.package h2,
.pricing-section.dark-price h2 {
  color: var(--white);
}

.photo-bg {
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(63, 36, 25, 0.94), rgba(63, 36, 25, 0.88)),
    url("assets/bolsa-fer.jpg") center / cover no-repeat;
}

.photo-bg::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 6px;
  background: var(--gold);
}

.desire-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 850px;
  margin: 34px auto 0;
}

.desire-grid div {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 15px 18px;
  border: 1px solid rgba(251, 247, 239, 0.2);
  border-radius: 0;
  background: rgba(255, 253, 248, 0.08);
  color: rgba(255, 253, 248, 0.94);
  font-size: 0.86rem;
  line-height: 1.36;
  font-weight: 700;
}

.steps-section {
  background:
    linear-gradient(145deg, rgba(63, 36, 25, 0.96), rgba(63, 36, 25, 0.9)),
    url("assets/bolsa-dom.jpg") center / cover no-repeat;
  color: var(--white);
}

.steps-section .section-subtitle,
.package .section-subtitle {
  color: rgba(251, 247, 239, 0.72);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.steps-grid article {
  min-height: 170px;
  padding: 22px;
  border: 1px solid rgba(251, 247, 239, 0.36);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.steps-grid strong {
  color: var(--gold);
  font-size: 1.1rem;
  line-height: 1;
  font-weight: 900;
}

.steps-grid span {
  display: block;
  margin-top: 10px;
  color: var(--clay);
  font-size: 0.64rem;
  font-weight: 900;
}

.steps-grid h3 {
  margin-top: 8px;
  font-size: 1.23rem;
}

.steps-grid p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.44;
}

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

.package-box {
  max-width: 1080px;
}

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

.product-grid article {
  position: relative;
  min-height: 244px;
  padding: 10px 10px 16px;
  border: 1px solid rgba(251, 247, 239, 0.28);
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  overflow: hidden;
}

.product-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 4px solid var(--wash);
  border-radius: 0;
  object-fit: cover;
  background: var(--wash);
}

.product-grid h3 {
  margin-top: 12px;
  padding-right: 68px;
  font-size: 1.05rem;
}

.product-grid p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.product-grid span {
  position: absolute;
  top: 122px;
  right: 10px;
  padding: 5px 9px 4px;
  background: var(--green);
  color: var(--white);
  font-size: 0.56rem;
  font-weight: 900;
}

.product-grid small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
}

.product-grid b {
  display: block;
  margin-top: 3px;
  color: var(--clay);
  font-size: 0.95rem;
  font-weight: 900;
}

.package-price {
  margin: 28px 0 16px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
}

.package .cta-button {
  display: flex;
  width: min(100%, 340px);
  margin: 0 auto;
}

.pricing-section {
  background:
    linear-gradient(rgba(218, 203, 187, 0.28) 1px, transparent 1px) 0 0 / 100% 66px,
    var(--paper);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 860px;
  margin: 32px auto 0;
}

.price-card {
  position: relative;
  display: flex;
  min-height: 548px;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.price-card.highlight {
  border: 4px solid var(--gold);
}

.popular,
.plan-label {
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 7px 12px 6px;
  background: var(--green);
  color: var(--white);
  font-size: 0.58rem;
  font-weight: 900;
  text-transform: uppercase;
}

.popular {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  max-width: calc(100% - 32px);
  background: var(--clay);
  color: var(--white);
  text-align: center;
}

.price-card h3 {
  font-size: 1.6rem;
}

.price-card p {
  margin-top: 10px;
  min-height: 48px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.42;
}

.price-card ul {
  margin: 20px 0 auto;
  padding: 0;
  list-style: none;
}

.price-card li {
  margin-top: 10px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
}

.price-card small {
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.price-card strong {
  color: var(--clay);
  font-size: 2.65rem;
  line-height: 1;
  font-weight: 900;
}

.price-card em {
  color: var(--muted);
  font-size: 0.58rem;
  font-style: normal;
  font-weight: 900;
}

.saving {
  margin-top: 9px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 900;
}

.price-card .cta-button {
  width: 100%;
  min-height: 50px;
  margin-top: 16px;
  padding-right: 16px;
  font-size: 0.68rem;
}

.price-card .cta-button.secondary {
  background: var(--cocoa);
}

.showcase {
  overflow: hidden;
}

.carousel {
  position: relative;
  margin: 30px -24px 0;
  padding: 10px 24px 24px;
  overflow: hidden;
}

.carousel::before,
.carousel::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: 64px;
  pointer-events: none;
}

.carousel::before {
  left: 0;
  background: linear-gradient(90deg, var(--paper), rgba(251, 247, 239, 0));
}

.carousel::after {
  right: 0;
  background: linear-gradient(270deg, var(--paper), rgba(251, 247, 239, 0));
}

.track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: marquee 54s linear infinite;
}

.carousel:hover .track {
  animation-play-state: paused;
}

.track img {
  width: clamp(230px, 34vw, 320px);
  aspect-ratio: 16 / 10;
  flex: 0 0 auto;
  border: 8px solid var(--white);
  outline: 1px solid var(--line);
  border-radius: 0;
  object-fit: cover;
  box-shadow: 0 12px 26px rgba(33, 26, 22, 0.16);
}

.faq-section {
  padding-bottom: 86px;
}

.faq-shell {
  max-width: 760px;
}

.faq-list {
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
  box-shadow: none;
  overflow: hidden;
}

details {
  border-bottom: 1px solid var(--line);
}

details:last-child {
  border-bottom: 0;
}

summary {
  position: relative;
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 16px 50px 16px 18px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 13px;
  color: var(--clay);
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 900;
}

details[open] summary::after {
  content: "-";
}

details p {
  padding: 0 18px 18px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.support-card {
  margin-top: 26px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--green);
  color: var(--white);
  text-align: center;
}

.support-card p {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
}

.support-card span {
  display: block;
  margin-top: 8px;
  color: rgba(251, 247, 239, 0.76);
  font-size: 0.82rem;
}

.support-card .cta-button {
  min-height: 48px;
  margin-top: 18px;
  padding-top: 14px;
  padding-bottom: 14px;
  font-size: 0.68rem;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 8px));
  }
}

@media (max-width: 960px) {
  .hero::before {
    background:
      linear-gradient(90deg, var(--green) 0 58px, transparent 58px),
      linear-gradient(90deg, transparent 0, rgba(218, 203, 187, 0.18) 1px, transparent 1px) 96px 0 / 34px 100%;
  }

  .hero::after {
    left: 23px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-left: 62px;
    text-align: left;
  }

  .phone-mockup {
    grid-column: 1;
    grid-row: auto;
    width: min(320px, 82vw);
    justify-self: start;
  }

  .hero .cta-button {
    grid-column: 1;
  }

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

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

@media (max-width: 640px) {
  .topbar {
    flex-direction: column;
    gap: 2px;
    min-height: 44px;
    font-size: 0.58rem;
  }

  .topbar span + span::before {
    content: "";
    margin: 0;
  }

  .shell {
    padding: 0 20px;
  }

  .section {
    padding: 52px 0;
  }

  .section::before {
    background:
      linear-gradient(rgba(218, 203, 187, 0.2) 1px, transparent 1px) 0 0 / 100% 62px,
      linear-gradient(90deg, transparent 20px, rgba(218, 203, 187, 0.2) 21px, transparent 22px, transparent calc(100% - 22px), rgba(218, 203, 187, 0.2) calc(100% - 21px), transparent calc(100% - 20px));
  }

  .hero {
    min-height: auto;
    padding: 76px 0 52px;
  }

  .hero::before {
    background:
      linear-gradient(var(--green), var(--green)) top / 100% 8px no-repeat,
      linear-gradient(rgba(218, 203, 187, 0.24) 1px, transparent 1px) 0 0 / 100% 62px;
  }

  .hero::after {
    content: "";
    display: none;
  }

  .hero-inner {
    justify-items: center;
    padding: 0 20px;
    gap: 24px;
    text-align: center;
  }

  .eyebrow,
  .section-kicker {
    min-height: 26px;
    padding: 7px 13px 6px;
    font-size: 0.58rem;
  }

  .eyebrow::after,
  .section-kicker::after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    border-left-width: 14px;
  }

  h1 {
    max-width: 330px;
    font-size: clamp(2.55rem, 18vw, 4.1rem);
    text-align: center;
  }

  h1::after {
    width: min(230px, 72vw);
    margin: 20px auto 12px;
    box-shadow: none;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-copy {
    max-width: 310px;
    font-size: 0.98rem;
    text-align: center;
  }

  .phone-mockup {
    width: min(255px, 80vw);
    justify-self: center;
  }

  .hero .cta-button {
    justify-self: center;
  }

  .cta-button,
  .mini-cta {
    width: 100%;
    min-height: 52px;
    padding-right: 14px;
    padding-left: 64px;
    font-size: 0.68rem;
  }

  .cta-button::before,
  .mini-cta::before {
    left: 24px;
  }

  .cta-button::after,
  .mini-cta::after {
    left: 35px;
    border-left-width: 14px;
    border-top-width: 9px;
    border-bottom-width: 9px;
  }

  .benefit-grid,
  .desire-grid,
  .steps-grid,
  .product-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: 138px;
    text-align: center;
  }

  .desire-grid div {
    grid-template-columns: 1fr;
    justify-items: center;
    min-height: 58px;
    text-align: center;
  }

  .steps-grid article {
    min-height: 142px;
    text-align: center;
  }

  .product-grid {
    gap: 11px;
  }

  .product-grid article {
    display: flex;
    min-height: auto;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    text-align: center;
  }

  .product-grid img {
    width: min(100%, 178px);
    aspect-ratio: 1;
    border-width: 3px;
  }

  .product-grid h3 {
    margin-top: 9px;
    padding-right: 0;
    font-size: 0.98rem;
  }

  .product-grid p {
    font-size: 0.64rem;
  }

  .product-grid span {
    position: static;
    order: 4;
    align-self: center;
    margin-top: 7px;
    font-size: 0.52rem;
  }

  .product-grid small {
    margin-top: 4px;
  }

  .product-grid b {
    margin-top: 3px;
  }

  .price-card {
    min-height: auto;
    padding: 22px 20px;
    align-items: center;
    text-align: center;
  }

  .price-card ul {
    width: 100%;
  }

  .price-card li {
    text-align: center;
  }

  .popular {
    top: -17px;
    font-size: 0.52rem;
  }

  .track {
    animation-duration: 38s;
  }

  .track img {
    width: 74vw;
    border-width: 6px;
  }
}

@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;
  }
}
