:root {
  --bg: #f7f0dc;
  --bg-soft: #efe3bc;
  --surface: rgba(255, 249, 235, 0.88);
  --surface-strong: #fff8ea;
  --surface-light: #fffaf0;
  --text: #341313;
  --text-soft: #6b4740;
  --text-dark: #24110f;
  --line: rgba(137, 86, 41, 0.16);
  --line-strong: rgba(205, 163, 72, 0.38);
  --primary: #8f1f1d;
  --primary-strong: #b52f26;
  --accent: #c89b3c;
  --accent-strong: #efc96d;
  --accent-soft: #fff1cb;
  --success: #1c8b6b;
  --shadow: 0 24px 60px rgba(92, 45, 19, 0.14);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: min(1120px, calc(100% - 1rem));
  --header-height: 78px;
  --mobile-header-height: 64px;
  --bottom-nav-height: 92px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(239, 201, 109, 0.44), transparent 34%),
    radial-gradient(circle at 85% 12%, rgba(143, 31, 29, 0.14), transparent 20%),
    linear-gradient(180deg, #fff6df 0%, #f6e8bf 48%, #f3dfad 100%);
  -webkit-tap-highlight-color: transparent;
  overscroll-behavior-y: contain;
}

body.is-scrolled .site-header {
  background: rgba(255, 247, 230, 0.72);
  box-shadow: 0 10px 26px rgba(98, 50, 18, 0.08);
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(255, 247, 230, 0.82);
  border-bottom: 1px solid rgba(137, 86, 41, 0.12);
  padding-top: env(safe-area-inset-top, 0);
  transition: background 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.header-inner {
  min-height: var(--mobile-header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  min-width: 0;
}

.brand img {
  width: 84px;
  height: 54px;
  object-fit: contain;
  border-radius: 10px;
  padding: 0;
  background: transparent;
  border: 0;
  filter: drop-shadow(0 8px 14px rgba(98, 50, 18, 0.18));
}

.brand span {
  font-size: 1rem;
  color: var(--primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mobile-header-actions {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  color: #fff7e2;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  box-shadow: 0 12px 24px rgba(143, 31, 29, 0.18);
}

.menu-toggle {
  width: 42px;
  height: 42px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(143, 31, 29, 0.08);
  color: var(--text);
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  position: fixed;
  top: calc(env(safe-area-inset-top, 0) + var(--mobile-header-height) - 4px);
  left: 0.75rem;
  right: 0.75rem;
  display: grid;
  gap: 0.35rem;
  padding: 0.85rem;
  background:
    linear-gradient(180deg, rgba(255, 248, 233, 0.98), rgba(248, 232, 190, 0.98));
  border: 1px solid rgba(137, 86, 41, 0.12);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
}

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

.site-nav a,
.footer-nav a {
  color: var(--text-soft);
  transition: color 0.22s ease;
}

.site-nav a {
  padding: 1rem;
  border-radius: 16px;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--text);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(143, 31, 29, 0.08);
}

.site-nav a.is-active {
  background: rgba(143, 31, 29, 0.08);
  color: var(--primary);
}

.hero {
  position: relative;
  min-height: min(68svh, 600px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(45, 12, 11, 0.46), rgba(45, 12, 11, 0.76)),
    url("imagens/banner_v1.jpg") center/cover no-repeat;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(239, 201, 109, 0.2), transparent 28%),
    linear-gradient(120deg, rgba(111, 18, 19, 0.88), rgba(111, 18, 19, 0.26) 46%, rgba(28, 11, 6, 0.8));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 2.35rem 0 1.75rem;
  text-align: center;
}

.eyebrow,
.section-label,
.stat-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--accent-soft);
}

.section-label,
.stat-tag {
  color: var(--primary);
}

.eyebrow::before,
.section-label::before,
.stat-tag::before {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
}

.hero h1,
.section-heading h2 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  line-height: 1.02;
}

.hero h1 {
  max-width: none;
  margin-top: 1rem;
  font-size: clamp(2.5rem, 11vw, 5.8rem);
  color: #ffffff;
}

.hero-text {
  margin: 1rem 0 0;
  font-size: clamp(1.15rem, 3vw, 1.45rem);
  color: #fff7e7;
}

.hero-support,
.section-heading p,
.feature-card p,
.stat-card p,
.finance-card p,
.group-grid p,
.intro-grid p,
.site-footer p {
  color: var(--text-soft);
  line-height: 1.75;
}

.hero-support {
  max-width: 42rem;
  margin: 1rem 0 0;
  color: rgba(255, 247, 231, 0.94);
}

.hero .hero-support,
.hero .hero-text,
.hero .eyebrow,
.hero-highlights {
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.24s ease, background 0.24s ease, color 0.24s ease, border-color 0.24s ease;
}

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

.button:active,
.bottom-nav__item:active,
.mobile-cta:active {
  transform: scale(0.97);
}

.button-primary {
  background: linear-gradient(135deg, #f2cf75, #ca9b38);
  color: #231709;
  box-shadow: 0 18px 38px rgba(200, 155, 60, 0.28);
  min-height: 60px;
  padding-inline: 1.55rem;
}

.button-secondary {
  border: 1px solid rgba(255, 241, 203, 0.34);
  background: rgba(143, 31, 29, 0.2);
  color: #fff8e8;
}

.hero-highlights {
  display: grid;
  gap: 0.9rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-highlights li {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #f8f4ea;
}

.hero-highlights li::before {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-strong), var(--primary-strong));
  box-shadow: 0 0 0 6px rgba(198, 162, 82, 0.14);
}

.section {
  padding: 1.15rem 0;
}

.app-main {
  padding-bottom: calc(var(--bottom-nav-height) + env(safe-area-inset-bottom, 0) + 1.25rem);
}

.app-panel .container {
  padding: 1.35rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(205, 163, 72, 0.18);
  box-shadow: 0 16px 34px rgba(98, 50, 18, 0.1);
}

.section-dark {
  background:
    radial-gradient(circle at top right, rgba(239, 201, 109, 0.2), transparent 24%),
    linear-gradient(180deg, rgba(143, 31, 29, 0.08), rgba(255, 250, 240, 0));
}

.section-highlight {
  background:
    linear-gradient(180deg, rgba(143, 31, 29, 0.1), rgba(255, 250, 240, 0)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), rgba(239, 201, 109, 0.08) 45%);
}

.section-heading {
  max-width: 42rem;
  margin-bottom: 1.35rem;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.section-heading h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin-top: 0.75rem;
}

.intro-strip {
  padding-top: 0;
  margin-top: -1rem;
  position: relative;
  z-index: 2;
}

.intro-grid,
.feature-grid,
.stats-grid,
.sponsor-grid,
.group-grid,
.finance-grid,
.lineup-grid {
  display: grid;
  gap: 1rem;
}

.intro-grid article,
.feature-card,
.stat-card,
.pitch-card,
.finance-card,
.group-photo,
.sponsor-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.intro-grid article {
  padding: 1.5rem;
  background:
    linear-gradient(180deg, rgba(255, 251, 240, 0.98), rgba(247, 236, 203, 0.95));
}

.intro-grid strong,
.feature-card h3,
.finance-card h3,
.site-footer strong {
  font-family: "Poppins", sans-serif;
}

.feature-card,
.stat-card,
.finance-card,
.sponsor-card {
  padding: 1.35rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 244, 231, 0.94));
}

.feature-card,
.stat-card,
.finance-card,
.sponsor-card,
.intro-grid article,
.group-photo,
.pitch-card {
  position: relative;
  overflow: hidden;
}

.feature-card::after,
.stat-card::after,
.finance-card::after,
.sponsor-card::after,
.intro-grid article::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-strong), rgba(143, 31, 29, 0.55));
}

.feature-grid,
.stats-grid,
.sponsor-grid {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.feature-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  margin-bottom: 1rem;
  background: linear-gradient(145deg, rgba(239, 201, 109, 0.28), rgba(143, 31, 29, 0.16));
  border: 1px solid var(--line-strong);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--accent-strong);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.stats-grid {
  align-items: stretch;
}

.stat-card {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.stat-card-accent {
  background:
    linear-gradient(135deg, rgba(239, 201, 109, 0.36), rgba(143, 31, 29, 0.2)),
    rgba(255, 248, 235, 0.92);
}

.stat-value {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.4rem, 7vw, 4rem);
  line-height: 1;
  color: var(--primary);
}

.stat-title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.lineup-grid,
.finance-grid,
.group-grid {
  align-items: center;
}

.pitch-card {
  padding: 1rem;
  background:
    linear-gradient(180deg, rgba(36, 90, 54, 0.94), rgba(19, 61, 36, 0.98));
}

.pitch {
  position: relative;
  min-height: 420px;
  border-radius: 24px;
  border: 2px solid rgba(255, 255, 255, 0.28);
  background:
    linear-gradient(90deg, transparent 49.5%, rgba(255, 255, 255, 0.5) 50%, transparent 50.5%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 50%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0, rgba(255, 255, 255, 0.02) 13%, transparent 13%, transparent 26%);
}

.pitch::before,
.pitch::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border: 2px solid rgba(255, 255, 255, 0.38);
}

.pitch::before {
  top: 50%;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.pitch::after {
  top: 0;
  bottom: 0;
  width: 0;
  border-left-width: 2px;
  border-right: 0;
  border-top: 0;
  border-bottom: 0;
}

.player {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff7dd, var(--accent-strong) 70%);
  box-shadow: 0 0 0 6px rgba(198, 162, 82, 0.16);
}

.player-1 { top: 14%; left: 50%; }
.player-2 { top: 28%; left: 26%; }
.player-3 { top: 28%; left: 74%; }
.player-4 { top: 42%; left: 16%; }
.player-5 { top: 42%; left: 50%; }
.player-6 { top: 42%; left: 84%; }
.player-7 { top: 66%; left: 34%; }
.player-8 { top: 66%; left: 66%; }

.finance-card ul {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.finance-card li {
  padding-left: 1.1rem;
  position: relative;
  color: var(--text-soft);
}

.finance-card li + li {
  margin-top: 0.75rem;
}

.finance-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.group-photo {
  position: relative;
  overflow: hidden;
  min-height: 100%;
}

.group-photo img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.photo-badge {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  background: rgba(143, 31, 29, 0.78);
  border: 1px solid rgba(255, 241, 203, 0.22);
  backdrop-filter: blur(12px);
  color: #fff6de;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.sponsor-card {
  min-height: 132px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--primary);
  font-family: "Poppins", sans-serif;
  background:
    linear-gradient(135deg, rgba(239, 201, 109, 0.16), rgba(143, 31, 29, 0.12)),
    rgba(255, 249, 235, 0.92);
}

.site-footer {
  padding: 2rem 0 3rem;
  border-top: 1px solid rgba(137, 86, 41, 0.14);
  background: linear-gradient(180deg, rgba(255, 246, 223, 0.24), rgba(244, 224, 172, 0.4));
  margin-bottom: calc(var(--bottom-nav-height) + env(safe-area-inset-bottom, 0));
  padding-bottom: calc(3rem + env(safe-area-inset-bottom, 0));
}

.footer-inner,
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Estados usados pelo observer para revelar os blocos no scroll. */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.38s ease, transform 0.38s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.bottom-nav {
  position: fixed;
  left: 0.5rem;
  right: 0.5rem;
  bottom: 0.5rem;
  z-index: 30;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.5rem;
  padding: 0.6rem;
  background: rgba(255, 250, 239, 0.94);
  border: 1px solid rgba(137, 86, 41, 0.12);
  border-radius: 26px;
  box-shadow: 0 20px 45px rgba(98, 50, 18, 0.18);
  backdrop-filter: blur(18px);
  padding-bottom: calc(0.6rem + env(safe-area-inset-bottom, 0));
}

.bottom-nav__item {
  min-height: 68px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.38rem;
  border-radius: 20px;
  color: #886052;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease;
}

.bottom-nav__item svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bottom-nav__item.is-active {
  color: #fff9ed;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  box-shadow: 0 12px 24px rgba(143, 31, 29, 0.24);
  transform: scale(1.02);
}

.bottom-nav__item:not(.is-active):hover,
.bottom-nav__item:not(.is-active):focus-visible,
.site-nav a.is-active,
.footer-nav a.is-active {
  color: var(--primary);
}

.bottom-nav__item:not(.is-active):hover,
.bottom-nav__item:not(.is-active):focus-visible {
  background: rgba(143, 31, 29, 0.08);
}

.bottom-nav__item span {
  line-height: 1;
}

.back-to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 25;
  width: 56px;
  height: 56px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: #fff8eb;
  box-shadow: 0 16px 32px rgba(143, 31, 29, 0.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.96);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease, box-shadow 0.22s ease;
}

.back-to-top svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  box-shadow: 0 20px 36px rgba(143, 31, 29, 0.28);
  transform: translateY(-2px);
}

.back-to-top:active {
  transform: scale(0.97);
}

body.is-standalone .site-header {
  padding-top: max(env(safe-area-inset-top, 0), 0.4rem);
}

@media (max-width: 380px) {
  .brand span {
    font-size: 0.88rem;
  }

  .mobile-cta {
    display: none;
  }
}

@media (min-width: 720px) {
  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

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

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

  .intro-grid,
  .group-grid,
  .lineup-grid,
  .finance-grid,
  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-inner {
    display: grid;
    align-items: center;
  }

  .footer-nav {
    flex-direction: row;
    justify-content: flex-end;
  }
}

@media (min-width: 980px) {
  .app-main {
    padding-bottom: 0;
  }

  .back-to-top {
    display: inline-flex;
  }

  .bottom-nav {
    display: none;
  }

  .site-footer {
    margin-bottom: 0;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-header-actions {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .site-nav a {
    padding: 0;
    background: transparent;
  }

  .site-header {
    padding-top: 0;
  }

  .header-inner {
    min-height: var(--header-height);
    gap: 1rem;
  }

  .brand img {
    width: 100px;
    height: 64px;
  }

  .brand span {
    font-size: 1.04rem;
  }

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

  .hero-content {
    padding: 6rem 0 5rem;
    text-align: left;
  }

  .hero h1 {
    max-width: 10ch;
    font-size: clamp(2.8rem, 10vw, 5.8rem);
  }

  .hero .hero-support,
  .hero .hero-text,
  .hero .eyebrow,
  .hero-highlights {
    margin-left: 0;
    margin-right: 0;
  }

  .section {
    padding: 4.8rem 0;
  }

  .app-panel .container {
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .intro-strip {
    margin-top: -2.5rem;
  }

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

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

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

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

  .lineup-grid {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .finance-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .group-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

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

  .reveal,
  .button,
  .site-nav,
  .menu-toggle span,
  .bottom-nav__item,
  .mobile-cta,
  .back-to-top {
    transition: none;
  }
}
