

:root {
  --gold-1: #fff1b7;
  --gold-2: #f2cf72;
  --gold-3: #d8a53b;
  --gold-4: #8e6115;
  --gold-grad: linear-gradient(135deg, var(--gold-1) 0%, var(--gold-2) 28%, var(--gold-3) 68%, var(--gold-4) 100%);
  --gold-text: linear-gradient(180deg, #fff4c9 0%, #f1d37f 34%, #d59e34 70%, #8a5c11 100%);
  --gold-soft: rgba(242, 207, 114, .18);
  --gold-line: rgba(242, 207, 114, .34);

  --pink: #ff5cb8;
  --pink-soft: rgba(255, 92, 184, .22);
  --cyan: #42d9ff;
  --cyan-soft: rgba(66, 217, 255, .18);
  --violet: #8b6bff;
  --violet-soft: rgba(139, 107, 255, .18);
  --green: #44d38c;
  --red: #ff7a72;

  --bg: #071326;
  --bg-2: #0b1830;
  --bg-3: #102242;
  --bg-4: #162d57;
  --panel: rgba(255, 255, 255, .06);
  --panel-2: rgba(255, 255, 255, .1);
  --stroke: rgba(255, 255, 255, .14);
  --txt: #ffffff;
  --txt-2: rgba(255, 255, 255, .80);
  --txt-3: rgba(255, 255, 255, .56);
  --txt-4: rgba(255, 255, 255, .36);

  --shadow-soft: 0 18px 60px rgba(0, 0, 0, .30);
  --shadow-hero: 0 24px 100px rgba(0, 0, 0, .34);
  --shadow-gold: 0 18px 42px rgba(216, 165, 59, .28);
  --shadow-glow: 0 0 0 1px rgba(255, 255, 255, .05), 0 16px 70px rgba(0, 0, 0, .32);

  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-display: 'Playfair Display', serif;

  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-pill: 999px;
  --max-w: 1240px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

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

html {
  min-height: 100%;
  background: #04101f;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth
}

body {
  min-height: 100dvh;
  margin: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 92, 184, .11), transparent 26%),
    radial-gradient(circle at 88% 16%, rgba(66, 217, 255, .14), transparent 28%),
    radial-gradient(circle at 52% 88%, rgba(139, 107, 255, .14), transparent 30%),
    linear-gradient(180deg, #071326 0%, #08172b 22%, #0c1d3a 60%, #0a1730 100%);
  color: var(--txt);
  display: flex;
  flex-direction: column;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  overflow-x: hidden;
}

main {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}

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

a {
  color: inherit
}

button,
input,
textarea,
select {
  font: inherit
}

button {
  cursor: pointer
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0
}

.container {
  width: min(100%, var(--max-w));
  margin: 0 auto;
  padding-inline: 28px
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 17px 32px;
  border: 0;
  border-radius: var(--radius-pill);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -.02em;
  text-decoration: none;
  line-height: 1.1;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), opacity .25s var(--ease);
  will-change: transform;
}

.btn:active {
  transform: scale(.98) !important
}

.btn--gold {
  color: #291700;
  background: var(--gold-grad);
  box-shadow: 0 12px 26px rgba(216, 165, 59, .26), 0 0 0 1px rgba(255, 255, 255, .16) inset;
}

.btn--gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(216, 165, 59, .35), 0 0 0 1px rgba(255, 255, 255, .22) inset;
}

.btn--gold.is-loading {
  opacity: .72;
  cursor: not-allowed
}

.btn--ghost {
  color: var(--txt);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
  backdrop-filter: blur(10px);
}

.btn--ghost:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .26);
}

.btn--lg {
  padding: 20px 36px;
  font-size: 1.08rem
}

.btn--xl {
  padding: 23px 48px;
  font-size: 1.2rem
}

.btn--full {
  width: 100%
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, .14);
  background: linear-gradient(135deg, rgba(255, 255, 255, .11), rgba(255, 255, 255, .05));
  color: var(--gold-2);
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
}

.universary-wordmark {
  display: inline-block;
  color: inherit;
  font-weight: 400;
  letter-spacing: inherit;
}

.universary-wordmark strong {
  color: inherit;
  font-weight: 900;
  letter-spacing: inherit;
}

.section-head,
.carousel-section__head,
.form-intro,
.info-wrapper {
  text-align: center
}

.section-title {
  margin: 18px 0 16px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.8rem, 5.8vw, 5.6rem);
  line-height: .96;
  letter-spacing: -.045em;
}

.section-title span,
.section-title em,
.trailer__title em,
.grad-pink {
  font-style: normal;
  color: #ffd6f0;
  text-shadow: 0 0 26px rgba(255, 92, 184, .24);
}

.section-subtitle {
  width: min(100%, 900px);
  margin: 0 auto;
  font-size: clamp(1.08rem, 1.7vw, 1.42rem);
  line-height: 1.7;
  color: var(--txt-2);
  font-weight: lighter;
}
.section-subtitle strong {
  font-weight: bold;
  color: #fff;
}


.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  background: rgba(7, 19, 38, .76);
  backdrop-filter: blur(18px) saturate(1.3);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.topbar__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand__logo {
  height: 30px;
  width: auto
}

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  order: 3
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  order: 2
}

.nav__link,
.mobile-menu__link {
  color: var(--txt-2);
  text-decoration: none;
  font-size: .98rem;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 12px;
  transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}

.nav__link:hover,
.mobile-menu__link:hover {
  background: rgba(255, 255, 255, .08);
  color: var(--txt);
}

.nav__link--gold,
.mobile-menu__link--gold {
  color: var(--gold-2)
}

.nav__cta,
.mobile-menu__cta {
  text-decoration: none;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  background: var(--gold-grad);
  color: #291700;
  font-size: .98rem;
  font-weight: 900;
  box-shadow: var(--shadow-gold);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

.nav__cta:hover,
.mobile-menu__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(216, 165, 59, .34)
}

.lang-switcher {
  position: relative
}

.lang-switcher__trigger {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .08);
  display: grid;
  place-items: center;
  transition: background .2s var(--ease), transform .2s var(--ease);
}

.lang-switcher__trigger:hover {
  background: rgba(255, 255, 255, .12);
  transform: translateY(-1px)
}

.lang-switcher__flag,
.lang-switcher__option-flag {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .12);
}

.lang-switcher__popover {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 190px;
  padding: 10px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(10, 23, 48, .94);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .34);
}

.lang-switcher__list {
  display: grid;
  gap: 4px
}

.lang-switcher__option {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 10px 12px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--txt-2);
  font-size: .95rem;
  text-align: left;
}

.lang-switcher__option:hover {
  background: rgba(255, 255, 255, .08);
  color: var(--txt)
}

.lang-switcher__option[aria-pressed="true"] {
  background: rgba(255, 255, 255, .1);
  color: var(--txt)
}

.hamburger {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 14px;
  background: rgba(255, 255, 255, .08);
  align-items: center;
  justify-content: center;
}

.hamburger__lines,
.hamburger__lines::before,
.hamburger__lines::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: var(--txt);
  border-radius: 2px;
  position: relative;
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}

.hamburger__lines::before {
  position: absolute;
  top: -6px;
  left: 0
}

.hamburger__lines::after {
  position: absolute;
  top: 6px;
  left: 0
}

.mobile-menu {
  background: rgba(8, 22, 45, .96);
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.mobile-menu__inner {
  display: grid;
  gap: 6px;
  padding-block: 18px 24px
}


.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 96px;
  overflow: hidden;
}

.hero__bg,
.hero__overlay {
  position: absolute;
  inset: 0
}

.hero__bg {
  background:
    linear-gradient(90deg, rgba(7, 19, 38, .5), rgba(7, 19, 38, .08)),
    url("../img/hero-10anos-desktop.svg") center/cover no-repeat;
  opacity: .96;
}

.hero__overlay {
  background:
    linear-gradient(180deg, rgba(6, 14, 31, .28) 0%, rgba(6, 14, 31, .08) 28%, rgba(6, 14, 31, .62) 74%, rgba(6, 14, 31, .95) 100%);
}

.hero__orbs {
  position: absolute;
  inset: -8%;
  pointer-events: none;
  overflow: hidden;
}

.hero__orbs::before,
.hero__orbs::after {
  content: "";
  position: absolute;
  inset: 0;
  will-change: transform, opacity, filter, background-position;
}


.hero__orbs::before {
  background:
    radial-gradient(circle at 14% 24%, rgba(255, 92, 184, .34) 0%, transparent 20%),
    radial-gradient(circle at 84% 16%, rgba(66, 217, 255, .30) 0%, transparent 18%),
    radial-gradient(circle at 68% 66%, rgba(242, 207, 114, .24) 0%, transparent 22%),
    radial-gradient(circle at 28% 80%, rgba(139, 107, 255, .26) 0%, transparent 21%),
    radial-gradient(circle at 48% 38%, rgba(255, 255, 255, .10) 0%, transparent 16%);
  filter: blur(18px);
  opacity: .95;
  transform-origin: center;
  animation:
    hero-orbs-drift 14s linear infinite alternate,
    hero-orbs-pulse 8s ease-in-out infinite alternate;
}


.hero__orbs::after {
  background-image:
    radial-gradient(circle at 8% 16%, rgba(255, 255, 255, .95) 0 1px, transparent 2px),
    radial-gradient(circle at 15% 66%, rgba(255, 255, 255, .70) 0 1.4px, transparent 2.4px),
    radial-gradient(circle at 22% 36%, rgba(255, 241, 183, .90) 0 1.2px, transparent 2.4px),
    radial-gradient(circle at 33% 74%, rgba(255, 255, 255, .78) 0 1.2px, transparent 2.2px),
    radial-gradient(circle at 46% 18%, rgba(255, 255, 255, .92) 0 1px, transparent 2px),
    radial-gradient(circle at 58% 42%, rgba(255, 241, 183, .88) 0 1.4px, transparent 2.4px),
    radial-gradient(circle at 66% 70%, rgba(255, 255, 255, .74) 0 1.2px, transparent 2.2px),
    radial-gradient(circle at 76% 14%, rgba(255, 255, 255, .82) 0 1px, transparent 2px),
    radial-gradient(circle at 88% 54%, rgba(255, 241, 183, .82) 0 1.2px, transparent 2px),
    radial-gradient(circle at 71% 82%, rgba(255, 255, 255, .76) 0 1.2px, transparent 2px),
    radial-gradient(circle at 92% 28%, rgba(255, 255, 255, .88) 0 1px, transparent 2px),
    radial-gradient(circle at 39% 52%, rgba(255, 255, 255, .60) 0 1.2px, transparent 2px);
  opacity: .6;
  animation:
    hero-stars-drift 18s linear infinite alternate,
    twinkle 4.5s ease-in-out infinite alternate;
}


@keyframes hero-orbs-drift {
  0% {
    transform: translate3d(0%, 0%, 0) scale(1) rotate(0deg);
  }

  20% {
    transform: translate3d(-2.5%, 1.5%, 0) scale(1.06) rotate(-1deg);
  }

  40% {
    transform: translate3d(3%, -2%, 0) scale(1.1) rotate(1deg);
  }

  60% {
    transform: translate3d(-1.5%, 3%, 0) scale(1.07) rotate(-1.2deg);
  }

  80% {
    transform: translate3d(2.8%, 1.4%, 0) scale(1.11) rotate(.8deg);
  }

  100% {
    transform: translate3d(-3%, -2.5%, 0) scale(1.08) rotate(-.8deg);
  }
}


@keyframes hero-orbs-pulse {
  0% {
    opacity: .82;
    filter: blur(16px);
  }

  50% {
    opacity: 1;
    filter: blur(22px);
  }

  100% {
    opacity: .88;
    filter: blur(18px);
  }
}


@keyframes hero-stars-drift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  25% {
    transform: translate3d(1.5%, -1%, 0) scale(1.02);
  }

  50% {
    transform: translate3d(-1.8%, 1.6%, 0) scale(1.04);
  }

  75% {
    transform: translate3d(1.2%, 2%, 0) scale(1.01);
  }

  100% {
    transform: translate3d(-2%, -1.5%, 0) scale(1.03);
  }
}

@keyframes twinkle {
  0% {
    opacity: .28;
  }

  50% {
    opacity: .62;
  }

  100% {
    opacity: .9;
  }
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-block: 70px 96px;
}

.hero__inner {
  width: min(100%, 1200px);
  margin: 0 auto;
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 18px;
}

.hero__pill {
  padding: 12px 18px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .06));
  border: 1px solid rgba(255, 255, 255, .16);
  color: var(--gold-1);
  font-size: .92rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  box-shadow: 0 18px 36px rgba(0, 0, 0, .12);
}

.hero__anniversary {
  position: relative;
  display: grid;
  justify-items: center;
  margin-top: 2px;
}

.hero__num {
  font-family: var(--font-display);
  font-size: clamp(8rem, 21vw, 18rem);
  line-height: .82;
  letter-spacing: -.08em;
  background: var(--gold-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 8px 32px rgba(216, 165, 59, .18);
  filter: drop-shadow(0 16px 50px rgba(216, 165, 59, .18));
}

.hero__anos {
  margin-top: -12px;
  font-size: clamp(1.4rem, 3vw, 2.5rem);
  font-weight: 900;
  letter-spacing: .82em;
  color: var(--gold-1);
  padding-left: .82em;
}

.uv10-logo-svg img {
  width: 80vw;
  margin: 16vh 0 1vh;
}

.hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 6vw, 7rem);
  line-height: .92;
  letter-spacing: -.055em;
  max-width: 80vw;
}

.hero__title b {
  font-size: 12vw;
}

.hero__desc {
  width: min(100%, 900px);
  font-size: clamp(1.16rem, 2vw, 1.46rem);
  line-height: 1.72;
  color: var(--txt-2);
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 10px;
}

.hero__scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 2;
}

.hero__scroll-hint span {
  display: block;
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, .32);
  border-radius: 999px;
  position: relative;
}

.hero__scroll-hint span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  transform: translateX(-50%);
  width: 4px;
  height: 10px;
  border-radius: 999px;
  background: var(--gold-2);
  animation: scroll-bob 1.8s ease-in-out infinite;
}

@keyframes scroll-bob {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 1
  }

  75% {
    transform: translateX(-50%) translateY(14px);
    opacity: 0
  }
}


.trailer {
  position: relative;
  padding: 100px 0 20px;
}

.timeline-section,
.carousel-section,
.form-section,
.promo-section,
.info-section {
  padding: 80px 0 40px;
}

.trailer__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 35%, rgba(255, 92, 184, .10), transparent 28%),
    radial-gradient(circle at 82% 30%, rgba(66, 217, 255, .10), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, .02), transparent 40%);
}

.trailer__inner {
  text-align: center
}

.trailer__title {
  margin: 20px auto 30px;
  max-width: 14ch;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.6vw, 6.2rem);
  line-height: .97;
  letter-spacing: -.05em;
}

.trailer__video-wrap {
  width: min(100%, 1080px);
  margin: 0 auto;
  padding: 18px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .05));
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: var(--shadow-hero);
}

.trailer__video-wrap .plyr {
  overflow: hidden;
  border-radius: 24px;
  background: #000;
  --plyr-color-main: var(--gold-2);
  --plyr-video-background: #000;
  --plyr-video-controls-background: linear-gradient(180deg, rgba(7, 19, 38, 0) 0%, rgba(7, 19, 38, .94) 100%);
  --plyr-video-control-color: var(--txt);
  --plyr-video-control-color-hover: #291700;
  --plyr-video-control-background-hover: var(--gold-1);
  --plyr-control-radius: 999px;
  --plyr-control-spacing: 12px;
  --plyr-font-family: var(--font-body);
  --plyr-menu-background: rgba(7, 19, 38, .96);
  --plyr-menu-color: var(--txt);
  --plyr-tooltip-background: rgba(7, 19, 38, .92);
  --plyr-tooltip-color: var(--txt);
}

.trailer__video-wrap .plyr__video-embed,
.trailer__video-wrap .plyr__video-wrapper,
.trailer__video-wrap .plyr__poster {
  border-radius: inherit;
}

.trailer__video-wrap .plyr__control--overlaid {
  color: #291700;
  background: rgba(242, 207, 114, .94);
  box-shadow: 0 12px 32px rgba(216, 165, 59, .28);
}

.trailer__video-wrap .plyr__control--overlaid:hover,
.trailer__video-wrap .plyr__control--overlaid:focus-visible {
  background: #fff1b7;
}

.trailer__video-wrap .plyr__menu__container {
  backdrop-filter: blur(16px);
}

.trailer__video-wrap .plyr__menu__container [role=menuitemradio][aria-checked=true]::before {
  background: var(--gold-2);
}

.trailer__video-wrap .plyr__control[data-plyr=fullscreen] {
  margin-right: 4px;
}

.trailer__video-wrap .plyr__video-embed iframe,
.trailer__video-wrap iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: 0;
  border-radius: 24px;
  background: #000;
}



.timeline {
  position: relative;
  margin-top: 60px;
  display: grid;
  gap: 34px;
}

.timeline__spine {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(242, 207, 114, .45), rgba(255, 255, 255, .08));
}

.timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 88px 1fr;
  align-items: stretch;
  gap: 22px;
}

.timeline__item--left .timeline__card {
  grid-column: 1;
}

.timeline__item--right .timeline__card {
  grid-column: 3;
}

.timeline__item--left .timeline__node {
  grid-column: 2
}

.timeline__item--right .timeline__node {
  grid-column: 2
}

.timeline__card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 34px 36px;
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .05));
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

.timeline__card-media {
  display: flex;
  align-items: stretch;
}

.timeline__card-placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(9, 18, 40, .28);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .03);
  overflow: hidden;
}

.timeline__card-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.timeline__item--left .timeline__tag {
  align-self: flex-end;
}

.timeline__item--right .timeline__tag {
  align-self: flex-start;
}

.timeline__item--left .timeline__card-content {
  text-align: right;
}

.timeline__item--right .timeline__card-content {
  text-align: left;
}

.timeline__tag {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.tl--blue {
  background: rgba(66, 217, 255, .16);
  color: #9fecff
}

.tl--green {
  background: rgba(68, 211, 140, .16);
  color: #9df0c1
}

.tl--gold {
  background: rgba(242, 207, 114, .18);
  color: #ffe9ad
}

.tl--red {
  background: rgba(255, 122, 114, .16);
  color: #ffb0ab
}

.tl--purple {
  background: rgba(139, 107, 255, .18);
  color: #cab8ff
}

.timeline__heading {
  margin: 16px 0 12px;
  font-size: clamp(1.45rem, 2vw, 2.05rem);
  line-height: 1.05;
  font-weight: 900;
}

.timeline__text {
  color: var(--txt-2);
  font-size: 1.02rem;
  line-height: 1.75;
}

.timeline__node {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-inline: auto;
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .22);
}

.timeline__node svg {
  width: 30px;
  height: 30px
}

.timeline__node.tl--blue {
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .14), rgba(66, 217, 255, .18))
}

.timeline__node.tl--green {
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .14), rgba(68, 211, 140, .18))
}

.timeline__node.tl--gold {
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .14), rgba(242, 207, 114, .18))
}

.timeline__node.tl--red {
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .14), rgba(255, 122, 114, .18))
}

.timeline__node.tl--purple {
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .14), rgba(139, 107, 255, .18))
}




.live-list {
  margin-top: 48px;
  padding: 20px 2%;
}

.carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.slideLeft,
.slideRight {
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}

.slideLeft:hover,
.slideRight:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.13);
}

.slideLeft img,
.slideRight img {
  width: 18px;
  height: 18px;
}

.carousel {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 2px 10px;
  scrollbar-width: none;
  width: 100%;
}

.carousel::-webkit-scrollbar {
  display: none;
}


.carousel[data-aspect-ratio="portrait"] .carousel__item,
.carousel .carousel__item {
  flex: 0 0 calc((100% - 5 * 18px) / 6);
  min-width: calc((100% - 5 * 18px) / 6);
  scroll-snap-align: start;
}

.carousel[data-aspect-ratio="portrait"] .carousel__img,
.carousel .carousel__img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  background: linear-gradient(180deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .03));
}


.carousel[data-aspect-ratio="landscape"] .carousel__item {
  flex: 0 0 calc((100% - 3 * 18px) / 4);
  min-width: calc((100% - 3 * 18px) / 4);
}

.carousel[data-aspect-ratio="landscape"] .carousel__img {
  aspect-ratio: 16 / 9;
}

.carousel__link {
  display: block;
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.26);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.carousel__link:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.30);
}

.upcoming-section__link {
  color: var(--gold-2);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid rgba(242, 207, 114, .32);
}

.upcoming-section__link:hover {
  border-bottom-color: rgba(242, 207, 114, .7);
}

.upcoming-list {
  padding-top: 28px;
}

.upcoming-carousel-shell {
  position: relative;
  align-items: stretch;
  padding-inline: 74px;
}

.upcoming-carousel-viewport {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
}

.upcoming-carousel-viewport::-webkit-scrollbar {
  display: none;
}

.upcoming-carousel-stack {
  display: grid;
  width: 100%;
  min-width: 100%;
  gap: 18px;
}

.upcoming-carousel-row {
  width: 100%;
  min-width: 0;
  overflow: visible;
}

.upcoming-carousel {
  width: 100%;
  overflow: visible;
  scroll-snap-type: none;
  scroll-behavior: auto;
  padding-top: 0;
  padding-bottom: 0;
}

.upcoming-carousel__link {
  width: 100%;
  padding: 0;
  cursor: pointer;
  appearance: none;
  color: inherit;
}

.upcoming-carousel__img {
  display: block;
}

.upcoming-carousel-shell .slideLeft,
.upcoming-carousel-shell .slideRight {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
}

.upcoming-carousel-shell .slideLeft {
  left: 0;
}

.upcoming-carousel-shell .slideRight {
  right: 0;
}

.upcoming-carousel-shell .slideLeft:hover,
.upcoming-carousel-shell .slideRight:hover {
  transform: translateY(-50%) translateY(-2px);
}

.carousel li[aria-disabled="true"],
.carousel__empty {
  padding: 28px;
  color: var(--txt-3);
}

.movie-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity .28s var(--ease), visibility .28s var(--ease);
}

.movie-lightbox.is-open {
  visibility: visible;
  opacity: 1;
}

.movie-lightbox__overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 10, 20, .78);
  backdrop-filter: blur(8px);
}

.movie-lightbox__dialog {
  position: relative;
  width: min(100% - 32px, 940px);
  padding: 24px;
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(14, 33, 65, .96), rgba(11, 25, 49, .98));
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .38);
}

.movie-lightbox__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .08);
  color: var(--txt);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  z-index: 1;
}

.movie-lightbox__content {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.movie-lightbox__media {
  min-width: 0;
}

.movie-lightbox__image {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .3);
}

.movie-lightbox__body {
  min-width: 0;
}

.movie-lightbox__title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: .95;
}

.movie-lightbox__meta {
  margin: 0 0 14px;
  color: var(--gold-2);
  font-weight: 800;
  letter-spacing: .04em;
}

.movie-lightbox__description {
  margin: 0;
  color: var(--txt-2);
  font-size: 1rem;
  line-height: 1.75;
}


@media (max-width: 1200px) {
  .live-list {
    padding: 20px 0 20px 2%;
  }

  .upcoming-carousel-shell {
    padding-inline: 0;
  }

  .carousel {
    gap: 14px;
  }

  .slideLeft,
  .slideRight {
    display: none;
  }

  
  .carousel[data-aspect-ratio="portrait"] .carousel__item,
  .carousel .carousel__item {
    flex: 0 0 calc((100% - 2 * 14px) / 4.5);
    min-width: calc((100% - 2 * 14px) / 4.5);
  }

  
  .carousel[data-aspect-ratio="landscape"] .carousel__item {
    flex: 0 0 calc((100% - 14px) / 3.2);
    min-width: calc((100% - 14px) / 3.2);
  }

  .movie-lightbox__content {
    grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
    gap: 22px;
  }
}


@media (max-width: 830px) {
  .carousel {
    gap: 14px;
  }

  .slideLeft,
  .slideRight {
    display: none;
  }

  
  .carousel[data-aspect-ratio="portrait"] .carousel__item,
  .carousel .carousel__item {
    flex: 0 0 calc((100% - 2 * 14px) / 3.5);
    min-width: calc((100% - 2 * 14px) / 3.5);
  }

  
  .carousel[data-aspect-ratio="landscape"] .carousel__item {
    flex: 0 0 calc((100% - 14px) / 2.2);
    min-width: calc((100% - 14px) / 2.2);
  }

  .upcoming-carousel-stack {
    gap: 14px;
  }
}


@media (max-width: 600px) {

  
  .carousel[data-aspect-ratio="portrait"] .carousel__item,
  .carousel .carousel__item {
    flex: 0 0 calc((100% - 14px) / 2.5);
    min-width: calc((100% - 14px) / 2.5);
  }

  
  .carousel[data-aspect-ratio="landscape"] .carousel__item {
    flex: 0 0 calc((100% - 14px) / 2.1);
    min-width: calc((100% - 14px) / 2.1);
  }

  .movie-lightbox__dialog {
    padding: 18px;
  }

  .movie-lightbox__content {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .movie-lightbox__media {
    display: flex;
    justify-content: center;
  }

  .movie-lightbox__image {
    width: min(50vw, 280px);
  }

  .movie-lightbox__title {
    font-size: clamp(1.8rem, 9vw, 2.4rem);
  }
}




.form-layout {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: center;
}

.form-intro .section-subtitle {
  max-width: 720px
}

.form-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.form-badge {
  display: inline-flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  color: var(--gold-1);
  font-size: .92rem;
  font-weight: 800;
}

.form-card {
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .05));
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: var(--shadow-glow);
  backdrop-filter: blur(12px);
}

.form-section__form {
  display: grid;
  gap: 18px
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.form-field {
  display: grid;
  gap: 10px
}

.form-field__label {
  font-size: .95rem;
  font-weight: 800;
  color: var(--txt);
}

.form-field__input {
  width: 100%;
  height: 58px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .07);
  color: var(--txt);
  padding: 0 18px;
  outline: none;
  transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}

.form-field__input::placeholder {
  color: var(--txt-4)
}

.form-field__input:focus {
  border-color: rgba(242, 207, 114, .46);
  background: rgba(255, 255, 255, .1);
  box-shadow: 0 0 0 4px rgba(242, 207, 114, .12);
}

.form-actions {
  display: grid;
  gap: 14px;
  margin-top: 4px
}

.form-section__status {
  min-height: 24px;
  font-size: .96rem;
  font-weight: 700;
  color: var(--txt-2);
}

.form-section__status.is-error {
  color: #ffaca6
}

.form-section__status.is-success {
  color: #98ecc0
}


.promo-section {
  position: relative;
}

.promo-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 48%, rgba(66, 217, 255, .12), transparent 28%),
    radial-gradient(circle at 78% 40%, rgba(255, 92, 184, .10), transparent 28%);
}

.promo-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr .9fr .7fr;
  gap: 24px;
  align-items: center;
  padding: 80px 40px;
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .05));
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: var(--shadow-glow);
}

.promo-headline {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 3.5rem);
  line-height: .98;
  letter-spacing: -.04em;
}

.promo-steps {
  display: grid;
  gap: 10px;
  color: var(--txt-2);
  font-size: 1.02rem;
}

.promo-coupon-block,
.promo-cta-block {
  text-align: center
}

.coupon-label {
  margin: 0 0 12px;
  color: var(--txt-3);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .8rem;
}

.coupon-code-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.coupon-code {
  padding: 14px 22px;
  border-radius: 20px;
  border: 1px dashed rgba(242, 207, 114, .5);
  background: rgba(242, 207, 114, .08);
  font-size: clamp(1.55rem, 2.7vw, 2.5rem);
  font-weight: 900;
  letter-spacing: .08em;
  color: var(--gold-1);
}

.copy-btn {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(242, 207, 114, .3);
  background: rgba(242, 207, 114, .12);
  color: var(--gold-1);
}

.copy-btn:hover {
  background: rgba(242, 207, 114, .2)
}

.copy-feedback {
  display: block;
  min-height: 24px;
  margin-top: 10px;
  color: #9df0c1;
  font-size: .9rem;
  opacity: 0;
  transition: opacity .2s var(--ease);
}

.copy-feedback.show {
  opacity: 1
}




.info-wrapper {
  width: min(100%, 760px);
  margin: 0 auto;
}

.info-card {
  position: relative;
  padding: 46px 36px;
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .05));
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: var(--shadow-glow);
  margin-bottom: 32px;
}

.info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% -10%, rgba(242, 207, 114, .26), transparent 34%),
    radial-gradient(circle at 10% 100%, rgba(255, 92, 184, .10), transparent 24%);
}

.info-badge {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 11px 22px;
  border-radius: 999px;
  background: var(--gold-grad);
  color: #291700;
  font-weight: 900;
  font-size: 1.25rem;
  box-shadow: var(--shadow-gold);
}

.info-plan-title {
  margin: 18px 0 10px;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: .95;
  letter-spacing: -.04em;
}

.info-plan-subtitle {
  margin: 0 auto 22px;
  max-width: 560px;
  color: var(--txt-2);
  font-size: 1.06rem;
}

.info-price {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  gap: 10px 14px;
}

.info-price-old {
  color: var(--txt-4);
  font-size: 1.1rem;
  text-decoration: line-through;
}

.info-price-new {
  font-size: clamp(3rem, 6vw, 4.9rem);
  font-weight: 900;
  line-height: .9;
  background: var(--gold-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.info-price-period {
  color: var(--txt-3);
  font-size: 1rem
}

.info-note {
  margin: 24px auto 0;
  max-width: 760px;
  color: var(--txt-3);
  font-size: .92rem;
}

.info-valid-until {
  margin: 18px auto 0;
  max-width: 760px;
  color: var(--txt-2);
  font-size: .92rem;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1.4;
  text-transform: uppercase;
  text-align: center;
}

[data-promo-valid-until] {
  white-space: nowrap;
}

.ended-promo-section {
  padding: 72px 0;
  background:
    radial-gradient(circle at 18% 48%, rgba(66, 217, 255, .12), transparent 28%),
    radial-gradient(circle at 78% 40%, rgba(255, 92, 184, .10), transparent 28%),
    linear-gradient(180deg, rgba(7, 19, 38, .72), rgba(4, 16, 31, .92));
}

.ended-promo__wrapper {
  max-width: 760px;
  margin: 0 auto;
  padding: 52px 32px;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .05));
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: var(--shadow-glow);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.ended-promo__eyebrow {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .78);
}

.ended-promo__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 72px);
  line-height: .95;
  font-weight: 900;
  color: var(--txt);
}

.ended-promo__description {
  margin: 0;
  max-width: 620px;
  font-size: 20px;
  line-height: 1.5;
  color: rgba(255, 255, 255, .86);
}

.btn-whatsapp-channel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 28px;
  border-radius: 999px;
  background: #25d366;
  color: var(--txt);
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .28);
}

.btn-whatsapp-channel:hover,
.btn-whatsapp-channel:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .34), 0 0 22px rgba(37, 211, 102, .35);
  filter: drop-shadow(0 0 16px rgba(37, 211, 102, .2));
}

.btn-whatsapp-channel__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}



.footer {
  position: relative;
  margin-top: auto;
  padding: 0 5%;
  background:
    radial-gradient(circle at 14% 84%, rgba(66, 217, 255, .10), transparent 24%),
    radial-gradient(circle at 86% 18%, rgba(242, 207, 114, .10), transparent 24%),
    linear-gradient(180deg, #061224 0%, #04101f 100%);
  border-top: 1px solid rgba(255, 255, 255, .08);
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 255, 255, .02) 0%, transparent 18%, transparent 82%, rgba(255, 255, 255, .02) 100%);
}

.footer__top {
  position: relative;
  z-index: 1;
  padding: 64px 0 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.footer__top-inner {
  display: flex;
  justify-content: center;
}

.footer__brand {
  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
}

.footer__brand img {
  min-height: 60px
}

.footer__tagline {
  margin: 0;
  font-size: clamp(1.12rem, 2vw, 1.46rem);
  color: var(--txt-2);
  max-width: 760px;
}

.footer__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px 44px;
  padding: 52px 0;
  align-items: start;
}

.footer__col {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer__title {
  margin: 0 0 8px;
  color: var(--gold-2);
  font-size: .84rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.footer__link {
  color: var(--txt-3);
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.5;
  word-break: break-word;
  transition: color .25s var(--ease), transform .25s var(--ease), opacity .25s var(--ease);
}

.footer__link:hover {
  color: var(--txt);
  transform: translateX(2px);
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  text-decoration: none;
  font-size: .96rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.pill--whats {
  background: linear-gradient(180deg, rgba(22, 82, 58, .92) 0%, rgba(10, 55, 39, .96) 100%);
  color: #b9ffe0;
  border: 1px solid rgba(68, 211, 140, .24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 10px 24px rgba(0, 0, 0, .18);
}

.pill--phone {
  background: linear-gradient(180deg, rgba(53, 64, 90, .92) 0%, rgba(35, 43, 63, .96) 100%);
  color: var(--txt-2);
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06), 0 10px 24px rgba(0, 0, 0, .14);
}

.pill i,
.pill svg,
.pill span {
  flex: 0 0 auto;
}

.pill span {
  display: inline-block;
  text-align: center;
}

.footer__meta {
  margin-top: 10px;
  max-width: 320px;
}

.footer__metaTitle {
  font-size: .8rem;
  font-weight: 900;
  color: var(--txt-3);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 6px;
}

.footer__metaText {
  font-size: .95rem;
  color: var(--txt-3);
  line-height: 1.6;
}

.payments {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 14px;
  width: 100%;
}

.payments img {
  height: 24px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  opacity: .95;
  filter: brightness(1.08);
}

.payments img[alt*="Pix"],
.payments img[src*="pix"] {
  height: 32px;
}

.footer__bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer__bottom-inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 0;
  color: var(--txt-3);
  text-align: center;
  font-size: .94rem;
}

.footer__gold-line {
  width: 52px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold-grad);
}



.form-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity .28s var(--ease), visibility .28s var(--ease);
}

.form-modal.is-open {
  visibility: visible;
  opacity: 1
}

.form-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 10, 20, .72);
  backdrop-filter: blur(8px);
}

.form-modal__dialog {
  position: relative;
  width: min(100% - 32px, 520px);
  padding: 42px 30px;
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(14, 33, 65, .96), rgba(11, 25, 49, .98));
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .38);
  text-align: center;
}

.form-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .08);
  color: var(--txt);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
}

.form-modal__icon {
  font-size: 2.4rem;
  color: var(--gold-2);
  margin-bottom: 10px;
}

.form-modal__eyebrow {
  display: block;
  color: var(--gold-2);
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 900;
}

.form-modal__title {
  margin: 14px 0 10px;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.form-modal__description {
  margin: 0 0 24px;
  color: var(--txt-2);
}


.party-btn,
.confetti-trigger {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1800;
  width: 64px;
  height: 64px;
  border: 0;
  border-radius: 50%;
  background: var(--gold-grad);
  color: #291700;
  font-size: 1.7rem;
  box-shadow: 0 16px 34px rgba(216, 165, 59, .34), 0 0 0 4px rgba(242, 207, 114, .12);
  display: grid;
  place-items: center;
  animation: party-bob 2.8s ease-in-out infinite;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

.party-btn:hover,
.confetti-trigger:hover {
  transform: scale(1.08) rotate(-8deg);
  box-shadow: 0 18px 40px rgba(216, 165, 59, .42), 0 0 0 5px rgba(242, 207, 114, .18);
  animation: none;
}

@keyframes party-bob {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-5px)
  }
}

.confetti-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}


@media (max-width:1180px) {
  .timeline__item {
    grid-template-columns: 1fr 76px 1fr
  }

  .timeline__card {
    gap: 22px;
    padding: 28px 30px;
  }

  .promo-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px
  }

  .promo-details {
    grid-column: 1 / -1
  }

  .form-layout {
    grid-template-columns: 1fr;
    gap: 38px
  }
}

@media (max-width:830px) {
  .timeline__spine {
    left: 24px;
    transform: none;
  }

  .timeline__item {
    display: block;
    padding-left: 72px;
    margin-bottom: 16px;
  }

  .timeline__card {
    gap: 20px;
    padding: 22px;
  }

  .timeline__card-content {
    text-align: left !important;
  }

  .timeline__tag {
    align-self: flex-start !important;
  }

  .timeline__node {
    position: absolute;
    top: 8px;
    left: 0;
    width: 50px;
    height: 50px;
  }
}

@media (max-width:830px) {
  .container {
    padding-inline: 20px
  }

  .hamburger {
    display: flex
  }

  .nav {
    display: none
  }

  .hero {
    min-height: auto;
    padding-top: 92px
  }

  .hero__bg {
    background:
      linear-gradient(180deg, rgba(7, 19, 38, .26), rgba(7, 19, 38, .54)),
      url("../img/hero-10anos-mobile.svg") center top/cover no-repeat;
  }

  .hero__content {
    padding-block: 54px 86px
  }

  .hero__title {
    max-width: 11ch
  }

  .uv10-logo-svg img {
    margin: 12vh 0 1vh;
  }

  .hero__desc {
    max-width: 680px
  }

  .carousel__item {
    flex: 0 0 calc((100% - 2 * 14px) / 4);
    min-width: calc((100% - 2 * 14px) / 4);
  }

  .carousel {
    gap: 14px
  }

  .slideLeft,
  .slideRight {
    display: none
  }

  .promo-grid {
    grid-template-columns: 1fr;
    padding: 40px 26px
  }

  .topbar__actions {
    margin-left: auto;
    order: 2
  }

  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 28px;
    padding: 42px 0
  }

  .footer__col {
    align-items: flex-start;
    text-align: left
  }

  .payments {
    justify-content: flex-start
  }

  .footer {
    padding: 0 10%;
  }
}

@media (max-width:600px) {
  body {
    min-height: 100svh;
    font-size: 16px
  }

  .topbar__inner {
    min-height: 72px
  }

  .brand__logo {
    height: 26px
  }

  .hero__inner {
    gap: 16px
  }

  .hero__pill {
    font-size: .72rem;
    letter-spacing: .14em
  }

  .uv10-logo-svg img {
    margin: 8vh 0 1vh;
  }

  .hero__num {
    font-size: clamp(7rem, 34vw, 10rem)
  }

  .hero__anos {
    font-size: 1.1rem;
    letter-spacing: .55em;
    padding-left: .55em
  }

  .hero__title {
    font-size: clamp(3rem, 12vw, 4.4rem)
  }

  .hero__desc {
    font-size: 1.03rem
  }

  .hero__ctas {
    width: 100%;
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero__ctas .btn {
    width: 100%
  }

  .section-title {
    font-size: clamp(2.3rem, 11vw, 3.3rem)
  }

  .trailer,
  .timeline-section,
  .carousel-section,
  .form-section,
  .promo-section {
    padding: 50px 0 20px;
  }

  .info-section {
    padding: 10px 0 30px;
  }

  .trailer__video-wrap {
    padding: 10px;
    border-radius: 24px
  }

  .trailer__video-wrap .plyr,
  .trailer__video-wrap iframe {
    border-radius: 18px
  }

  .form-card {
    padding: 24px
  }

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

  .info-card {
    padding: 34px 22px
  }

  .ended-promo-section {
    padding: 56px 0;
  }

  .ended-promo__wrapper {
    padding: 38px 22px;
  }

  .ended-promo__description {
    font-size: 17px;
  }

  .btn-whatsapp-channel {
    width: 100%;
  }

  .info-price-new {
    font-size: clamp(2.6rem, 12vw, 3.6rem)
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 34px 0;
    justify-items: center
  }

  .footer__col {
    width: 100%;
    align-items: center;
    text-align: center
  }

  .footer__title,
  .footer__link,
  .footer__meta,
  .footer__metaTitle,
  .footer__metaText {
    text-align: center
  }

  .pill {
    width: fit-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    justify-content: center
  }

  .payments {
    justify-content: center
  }

  .footer__bottom-inner {
    flex-direction: column;
    gap: 10px;
    padding-block: 16px;
  }

  .party-btn,
  .confetti-trigger {
    right: 16px;
    bottom: 16px;
    width: 58px;
    height: 58px;
    font-size: 1.5rem;
  }
}

@media (max-width:420px) {
  .container {
    padding-inline: 16px
  }

  .carousel__item {
    flex: 0 0 calc((100% - 14px) / 2);
    min-width: calc((100% - 14px) / 2);
  }

  .coupon-code-wrapper {
    flex-direction: column
  }

  .coupon-code {
    width: 100%;
    text-align: center
  }

  .footer {
    padding: 0 2%;
  }
}



.iti {
  width: 100%;
}

.iti--allow-dropdown {
  width: 100%;
}

.iti input,
.iti input[type="tel"] {
  width: 100%;
  min-height: 56px;
  padding-left: 98px !important;
  padding-right: 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.iti input::placeholder,
.iti input[type="tel"]::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.iti input:focus,
.iti input[type="tel"]:focus {
  border-color: rgba(241, 196, 110, 0.7);
  box-shadow: 0 0 0 4px rgba(241, 196, 110, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.05) 100%);
}


.iti__selected-country {
  height: 100%;
  display: flex;
  align-items: center;
}


.iti__selected-country-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 100%;
  min-height: 56px;
  padding: 0 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px 0 0 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  box-sizing: border-box;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.iti__selected-country-primary:hover {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
}


.iti__flag {
  flex: 0 0 auto;
  transform: scale(1.05);
}


.iti__dial-code {
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}


.iti__arrow {
  margin-left: 2px;
  border-top-color: rgba(255, 255, 255, 0.72);
}

.iti__arrow--up {
  border-bottom-color: rgba(255, 255, 255, 0.72);
}


.iti__dropdown-content,
.iti__country-list {
  width: 320px;
  max-width: min(300px, calc(100vw - 32px));
  max-height: 280px;
  overflow-y: auto;
  margin-top: 8px;
  padding: 8px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(8, 20, 37, 0.98) 0%, rgba(4, 16, 30, 0.98) 100%);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  color: #ffffff;
}


.iti__country {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 8px 10px;
  border-radius: 10px;
  transition: background 0.2s ease;
}

.iti__country:hover {
  background: rgba(255, 255, 255, 0.08);
}

.iti__country.iti__highlight {
  background: rgba(241, 196, 110, 0.14);
}


.iti__country-name {
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 500;
}


.iti__country .iti__dial-code {
  color: rgba(241, 196, 110, 0.92);
  font-size: 13px;
  font-weight: 700;
}


@media (max-width: 600px) {

  .iti input,
  .iti input[type="tel"] {
    min-height: 52px;
    padding-left: 92px !important;
    font-size: 15px;
  }

  .iti__selected-country-primary {
    min-height: 52px;
    padding: 0 14px;
  }

  .iti__dial-code {
    font-size: 14px;
  }

  .iti__country-name {
    font-size: 14px;
  }

  .iti__dropdown-content,
  .iti__country-list {
    width: min(100vw - 24px, 320px);
    max-width: min(100vw - 24px, 320px);
    max-height: 260px;
  }
}

.uv10-logo {
  --gold-1: #b98218;
  --gold-2: #d7a63a;
  --gold-3: #f2d36c;
  --gold-4: #c79223;

  --silver-1: #d8d8d8;
  --silver-2: #cfcfcf;
  --silver-3: #bfbfbf;

  --tag: #c7c7ca;

  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(920px, 100%);
  font-family: "Montserrat", sans-serif;
  text-align: center;
  line-height: 1;
}


.uv10-logo__title {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  white-space: nowrap;
  font-weight: 900;
  letter-spacing: -0.08em;
  text-transform: uppercase;
  line-height: .88;
  padding: 0;
  margin: -1rem 0 0 0;
}

.uv10-logo__n,
.uv10-logo__word {
  display: inline-block;
  background: linear-gradient(90deg,
      var(--gold-1) 0%,
      var(--gold-2) 24%,
      var(--gold-3) 52%,
      var(--gold-2) 75%,
      var(--gold-4) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(4rem, 15vw, 15rem);
  margin-left: -0.045em;
  padding-top: 2rem;
}


@media (max-width: 700px) {
  .uv10-logo__bar {
    width: 72%;
    margin-bottom: 14px;
  }

  .uv10-logo__title {
    letter-spacing: -0.075em;
  }

  .uv10-logo__word {
    margin-left: -0.04em;
  }

  .uv10-logo__line {
    width: 96%;
    margin-top: 6px;
    margin-bottom: 12px;
  }

}

.viewsCounter {
  position: fixed;
  top: calc(var(--header-height, 70px) + 12px);
  right: 18px;
  z-index: 9997;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(2, 34, 58, 0.78);
  border: 1px solid rgba(48, 202, 249, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  color: #ffffff;
  pointer-events: none;
}

.viewsCounter_n {
  display: inline-block;
  color: #30CAF9;
  font-size: 15px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.viewsCounter_w {
  display: inline-block;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  line-height: 1;
  font-weight: 600;
  white-space: nowrap;
}

@media (max-width: 830px) {
  .viewsCounter {
    top: calc(var(--header-height, 70px) + 10px);
    right: 14px;
    min-height: 40px;
    padding: 0 12px;
    gap: 7px;
  }

  .viewsCounter_n {
    font-size: 14px;
  }

  .viewsCounter_w {
    font-size: 12px;
  }
}

@media (max-width: 600px) {
  .viewsCounter {
    top: calc(var(--header-height, 68px) + 8px);
    right: 10px;
    min-height: 36px;
    padding: 0 11px;
    gap: 6px;
  }

  .viewsCounter_n {
    font-size: 13px;
  }

  .viewsCounter_w {
    font-size: 11px;
  }
}
