:root {
  --bg: #050505;
  --bg-soft: #0c0c0c;
  --panel: #111111;
  --panel-strong: #171717;
  --line: rgba(255, 255, 255, 0.12);
  --muted: #b7b7b7;
  --text: #ffffff;
  --yellow: #ffcc18;
  --yellow-soft: #ffe46b;
  --yellow-dark: #9f7900;
  --cyan: #38e8ff;
  --led: rgba(255, 204, 24, 0.54);
  --led-soft: rgba(255, 204, 24, 0.18);
  --steel: #263238;
  --green: #18d866;
  --header-h: 88px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Arial Black", "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    #050505;
  background-size: 96px 96px;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 23%, rgba(255, 204, 24, 0.08) 23.15%, transparent 23.45% 68%, rgba(56, 232, 255, 0.045) 68.15%, transparent 68.45%),
    repeating-linear-gradient(90deg, transparent 0 86px, rgba(255, 204, 24, 0.025) 88px, transparent 90px);
  background-size: 180% 180%, 100% 100%;
  mix-blend-mode: screen;
  opacity: 0.54;
  animation: gridScan 12s linear infinite;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

@keyframes gridScan {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 100% 100%, 0 0;
  }
}

@keyframes ledPulse {
  0%,
  100% {
    box-shadow:
      0 0 0 rgba(255, 204, 24, 0),
      0 0 26px rgba(255, 204, 24, 0.12);
  }

  50% {
    box-shadow:
      0 0 22px rgba(255, 204, 24, 0.24),
      0 0 64px rgba(255, 204, 24, 0.18);
  }
}

@keyframes ledSweep {
  from {
    transform: translateX(-120%);
  }

  to {
    transform: translateX(120%);
  }
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--yellow);
  color: #050505;
  padding: 10px 14px;
  border-radius: 4px;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 36px;
  background: rgba(2, 2, 2, 0.9);
  border-bottom: 1px solid rgba(255, 204, 24, 0.2);
  box-shadow:
    0 1px 0 rgba(255, 204, 24, 0.2),
    0 14px 40px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
}

.brand img,
.footer-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.desktop-nav,
.header-actions,
.hero-actions,
.location-actions {
  display: flex;
  align-items: center;
}

.desktop-nav {
  gap: 36px;
  margin-left: auto;
}

.desktop-nav a,
.mobile-menu a:not(.btn),
.site-footer nav a {
  font-size: 0.76rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.86);
  transition: color 0.18s ease;
}

.desktop-nav a:hover,
.mobile-menu a:hover,
.site-footer nav a:hover {
  color: var(--yellow);
}

.header-actions {
  gap: 16px;
}

.icon-link {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 204, 24, 0.26);
  border-radius: 4px;
  color: var(--yellow);
  box-shadow: inset 0 0 18px rgba(255, 204, 24, 0.06);
}

.icon-link svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.82rem;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease;
}

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

.btn-small {
  min-height: 40px;
  padding: 0 22px;
  font-size: 0.7rem;
}

.btn-yellow {
  background: var(--yellow);
  color: #070707;
  box-shadow:
    0 0 24px rgba(255, 204, 24, 0.28),
    0 14px 40px rgba(255, 204, 24, 0.16);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 204, 24, 0.22);
  color: var(--text);
}

.btn-outline:hover {
  border-color: rgba(255, 204, 24, 0.75);
}

.btn-dark {
  background: #050505;
  color: var(--yellow);
}

.btn-ghost-dark {
  border-color: rgba(5, 5, 5, 0.4);
  color: #050505;
}

.menu-toggle {
  width: 48px;
  height: 48px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  display: block;
  background: currentColor;
  border-radius: 2px;
  transition:
    transform 0.18s ease,
    opacity 0.18s ease;
}

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

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

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

.mobile-menu {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 45;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 32px 24px 120px;
  background:
    linear-gradient(rgba(5, 5, 5, 0.5), rgba(5, 5, 5, 0.96)),
    url("../img/star-hero-titulo.webp") center / cover;
}

.mobile-menu a:not(.btn) {
  font-size: 1.24rem;
}

.mobile-menu[hidden] {
  display: none;
}

.hero {
  position: relative;
  min-height: 86svh;
  display: grid;
  place-items: center;
  padding: calc(var(--header-h) + 38px) 24px 56px;
  overflow: hidden;
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.05);
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.32) 38%, rgba(0, 0, 0, 0.92) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.78)),
    repeating-linear-gradient(90deg, transparent 0 82px, rgba(255, 204, 24, 0.08) 84px, transparent 86px);
}

.hero-content {
  width: min(100%, 1080px);
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin: 0 0 20px;
  padding: 6px 12px;
  border: 1px solid rgba(255, 204, 24, 0.34);
  border-radius: 4px;
  background: rgba(255, 204, 24, 0.08);
  color: var(--yellow);
  font-size: 0.72rem;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  text-transform: uppercase;
  line-height: 0.96;
}

h1 {
  max-width: 980px;
  margin: 0 auto;
  font-size: 4.45rem;
}

.hero-slogan {
  margin: 18px auto 0;
  color: var(--yellow);
  font-size: 2.25rem;
  line-height: 1;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 740px;
  margin: 28px auto 0;
  color: rgba(255, 255, 255, 0.86);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.6;
}

.hero-actions {
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.status-strip {
  width: min(calc(100% - 48px), var(--max));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: -24px auto 0;
  position: relative;
  z-index: 4;
  border: 1px solid rgba(255, 204, 24, 0.28);
  background: rgba(255, 204, 24, 0.22);
  box-shadow:
    0 0 34px rgba(255, 204, 24, 0.11),
    0 24px 70px rgba(0, 0, 0, 0.42);
}

.status-strip div {
  min-height: 96px;
  display: grid;
  place-items: center;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 204, 24, 0.065), transparent),
    #0d0d0d;
  text-align: center;
}

.status-strip strong {
  color: var(--yellow);
  font-size: 1.02rem;
  text-transform: uppercase;
}

.status-strip span {
  color: var(--muted);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
}

.offer-video-section {
  width: min(calc(100% - 48px), var(--max));
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 30px;
  margin: 72px auto 0;
  text-align: center;
}

.offer-video-copy {
  max-width: 780px;
  display: grid;
  justify-items: center;
}

.offer-video-copy h2 {
  margin-bottom: 20px;
  font-size: 2.8rem;
  text-transform: uppercase;
}

.offer-video-copy p:not(.eyebrow) {
  color: var(--muted);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.7;
}

.offer-video-copy .btn {
  margin-top: 18px;
}

.offer-video-frame {
  position: relative;
  width: min(100%, 980px);
  overflow: hidden;
  border: 1px solid rgba(255, 204, 24, 0.22);
  border-radius: 8px;
  background: #050505;
  box-shadow:
    0 0 34px rgba(255, 204, 24, 0.16),
    0 28px 90px rgba(0, 0, 0, 0.34);
}

.offer-video-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.22));
}

.offer-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  background: #050505;
}

.video-sound-toggle {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 16px;
  border: 1px solid rgba(255, 204, 24, 0.54);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 204, 24, 0.2), rgba(255, 204, 24, 0.08)),
    rgba(5, 5, 5, 0.78);
  color: #fff;
  cursor: pointer;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  box-shadow:
    0 0 24px rgba(255, 204, 24, 0.28),
    inset 0 0 18px rgba(255, 204, 24, 0.12);
  backdrop-filter: blur(14px);
}

.video-sound-toggle:hover,
.video-sound-toggle:focus-visible {
  border-color: rgba(255, 204, 24, 0.86);
  color: var(--yellow);
  outline: none;
  box-shadow:
    0 0 34px rgba(255, 204, 24, 0.38),
    inset 0 0 22px rgba(255, 204, 24, 0.16);
}

.sound-icon {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
}

.sound-icon-on {
  display: none;
}

.video-sound-toggle.is-unmuted .sound-icon-on {
  display: block;
}

.video-sound-toggle.is-unmuted .sound-icon-off {
  display: none;
}

.section {
  scroll-margin-top: calc(var(--header-h) + 16px);
  padding: 116px 24px;
  border-bottom: 1px solid var(--line);
}

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

.section-heading.align-left {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.location-copy h2,
.final-cta h2 {
  margin-bottom: 20px;
  font-size: 3.4rem;
}

.section-heading p:not(.eyebrow),
.location-copy p,
.final-cta h2 + p {
  color: var(--muted);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.7;
}

.topic-covers {
  background:
    linear-gradient(135deg, transparent 0 19%, rgba(255, 204, 24, 0.09) 19.15%, transparent 19.6% 73%, rgba(56, 232, 255, 0.04) 73.15%, transparent 73.6%),
    linear-gradient(180deg, rgba(12, 12, 12, 0.94), #050505 72%),
    var(--bg);
}

.topic-cover-grid,
.benefit-grid,
.plans-grid,
.carousel-shell,
.location-section,
.site-footer {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.topic-cover-grid {
  display: grid;
  gap: 18px;
}

.topic-cover {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 204, 24, 0.28);
  border-radius: 8px;
  aspect-ratio: 16 / 9;
  background: #050505;
  box-shadow:
    0 0 34px rgba(255, 204, 24, 0.12),
    0 24px 70px rgba(0, 0, 0, 0.38);
}

.topic-cover::before {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 3;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--yellow), var(--cyan), transparent);
  opacity: 0.82;
  animation: ledSweep 5.6s linear infinite;
}

.topic-cover::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(255, 204, 24, 0.12);
  background:
    linear-gradient(180deg, transparent 72%, rgba(255, 204, 24, 0.08)),
    repeating-linear-gradient(0deg, transparent 0 9px, rgba(255, 255, 255, 0.035) 10px, transparent 11px);
}

.topic-cover picture,
.topic-cover img {
  width: 100%;
  height: 100%;
}

.topic-cover picture {
  display: block;
}

.topic-cover img {
  object-fit: cover;
  background: #050505;
  transition:
    filter 0.25s ease,
    transform 0.25s ease;
}

.topic-cover:hover img,
.topic-cover:focus-visible img {
  filter: contrast(1.04) saturate(1.04);
  transform: scale(1.018);
}

.plan-card,
.benefit-grid article,
.plan-note,
.map-panel,
.carousel-card {
  border: 1px solid rgba(255, 204, 24, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 204, 24, 0.045), transparent 42%),
    rgba(18, 18, 18, 0.9);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.24);
}

.plan-top p,
.plan-badge,
.carousel-card figcaption {
  color: var(--yellow);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.benefit-grid p,
.plan-desc,
.plan-card li,
.plan-note span,
.site-footer span {
  color: var(--muted);
  font-family: "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.65;
}

.split-section {
  background: #080808;
}

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

.benefit-grid article {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 26px;
  overflow: hidden;
  text-align: center;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease;
}

.benefit-grid article::before {
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 204, 24, 0.9), transparent);
}

.benefit-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 204, 24, 0.45);
  animation: ledPulse 1.8s ease-in-out infinite;
}

.benefit-grid span {
  color: var(--yellow);
  font-size: 0.85rem;
}

.benefit-grid h3 {
  min-height: 68px;
  margin: 26px 0 12px;
  font-size: 1.46rem;
}

.plans-section {
  position: relative;
  background:
    linear-gradient(135deg, transparent 0 28%, rgba(255, 204, 24, 0.08) 28.15%, transparent 28.55%),
    linear-gradient(90deg, rgba(255, 204, 24, 0.07), transparent 44%, rgba(38, 50, 56, 0.22)),
    #050505;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  max-width: 880px;
}

.plan-card {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 30px;
  overflow: hidden;
  text-align: center;
}

.plan-card::before {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 204, 24, 0.9), transparent);
}

.featured-plan {
  border-color: var(--yellow);
  background:
    linear-gradient(180deg, rgba(255, 204, 24, 0.11), rgba(17, 17, 17, 0.96)),
    var(--panel);
  box-shadow: 0 24px 70px rgba(255, 204, 24, 0.12);
}

.plan-badge {
  width: fit-content;
  margin: -48px auto 18px;
  padding: 10px 18px;
  border-radius: 4px;
  background: var(--yellow);
  color: #050505;
}

.plan-top h3 {
  margin: 12px 0 0;
  font-size: 2rem;
}

.plan-price {
  margin: 34px 0 8px;
  color: #fff;
  font-size: 2.35rem;
  line-height: 1;
  text-transform: uppercase;
}

.plan-price span {
  display: inline-block;
  margin-right: 8px;
  color: var(--yellow);
  font-size: 0.9rem;
  vertical-align: 0.72em;
}

.plan-price small {
  display: inline-block;
  margin-left: 8px;
  color: var(--muted);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.95rem;
  text-transform: lowercase;
}

.plan-desc {
  min-height: 78px;
  max-width: 360px;
  margin-inline: auto;
  margin-bottom: 24px;
}

.plan-card ul {
  width: 100%;
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.plan-card li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 28px;
  padding-left: 0;
  text-align: center;
}

.plan-card li::before {
  position: static;
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  content: "";
  border: 2px solid var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(255, 204, 24, 0.46);
}

.plan-card .btn {
  width: 100%;
  margin-top: auto;
}

.plan-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 22px auto 0;
  padding: 18px 20px;
  text-align: center;
}

.plan-note strong {
  color: var(--yellow);
  text-transform: uppercase;
}

.vip-access {
  width: min(100%, 880px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  margin: 22px auto 0;
  padding: 24px;
  border: 1px solid rgba(255, 204, 24, 0.3);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 204, 24, 0.13), rgba(56, 232, 255, 0.05), rgba(255, 204, 24, 0.1)),
    var(--panel);
  text-align: center;
  box-shadow: 0 0 36px rgba(255, 204, 24, 0.13);
}

.vip-access .eyebrow {
  margin-bottom: 10px;
}

.vip-access h3 {
  max-width: 520px;
  margin: 0 auto;
  font-size: 1.42rem;
  line-height: 1.05;
}

.equipment-section {
  overflow: hidden;
  background:
    repeating-linear-gradient(90deg, rgba(255, 204, 24, 0.025) 0 1px, transparent 1px 110px),
    #070707;
}

.carousel-shell {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.carousel-shell::before,
.carousel-shell::after {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 3;
  height: 2px;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 204, 24, 0.78), rgba(56, 232, 255, 0.28), transparent);
  box-shadow: 0 0 26px rgba(255, 204, 24, 0.22);
}

.carousel-shell::before {
  top: 0;
}

.carousel-shell::after {
  bottom: 0;
}

.carousel-track {
  display: flex;
  gap: 16px;
  width: max-content;
  padding: 18px 0;
  animation: carouselMove 52s linear infinite;
  will-change: transform;
}

.carousel-track-reverse {
  animation-duration: 44s;
  animation-direction: reverse;
}

.carousel-card {
  position: relative;
  width: clamp(270px, 31vw, 430px);
  height: clamp(230px, 25vw, 330px);
  flex: 0 0 auto;
  margin: 0;
  overflow: hidden;
}

.carousel-card-wide {
  width: clamp(340px, 42vw, 590px);
}

.carousel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.carousel-card:hover img {
  transform: scale(1.04);
}

.carousel-card figcaption {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  padding: 8px 12px;
  border-radius: 4px;
  background: rgba(5, 5, 5, 0.78);
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 0 24px rgba(255, 204, 24, 0.12);
}

.arsenal-heading {
  margin-top: 74px;
  margin-bottom: 30px;
}

.arsenal-carousel .carousel-card {
  width: clamp(250px, 28vw, 390px);
  height: clamp(220px, 23vw, 300px);
}

@keyframes carouselMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 8px));
  }
}

.location-section {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 34px;
  align-items: center;
  text-align: center;
  background:
    linear-gradient(135deg, transparent 0 34%, rgba(255, 204, 24, 0.06) 34.15%, transparent 34.55%),
    #060606;
}

.location-copy {
  min-width: 0;
  max-width: 820px;
  display: grid;
  justify-items: center;
}

.location-copy h2 {
  max-width: 760px;
  margin-inline: auto;
}

.location-actions {
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.map-panel {
  width: min(100%, 980px);
  height: 510px;
  overflow: hidden;
  background: #e8e8e8;
  box-shadow:
    0 0 42px rgba(255, 204, 24, 0.12),
    0 24px 70px rgba(0, 0, 0, 0.34);
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.92) contrast(1.05);
}

.social-scroll-section {
  position: relative;
  min-height: 188vh;
  padding: 0 24px;
  border-bottom: 1px solid var(--line);
  overflow: clip;
  background:
    repeating-linear-gradient(90deg, rgba(255, 204, 24, 0.035) 0 1px, transparent 1px 118px),
    linear-gradient(135deg, transparent 0 26%, rgba(255, 204, 24, 0.1) 26.15%, transparent 26.5% 72%, rgba(56, 232, 255, 0.06) 72.15%, transparent 72.5%),
    linear-gradient(180deg, #050505 0%, #0a0a0a 48%, #050505 100%);
}

.social-scroll-section::before,
.social-scroll-section::after {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 204, 24, 0.9), rgba(56, 232, 255, 0.42), transparent);
  box-shadow: 0 0 28px rgba(255, 204, 24, 0.36);
}

.social-scroll-section::before {
  top: 0;
}

.social-scroll-section::after {
  bottom: 0;
}

.social-sticky {
  position: sticky;
  top: 0;
  width: min(100%, var(--max));
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 26px;
  align-items: center;
  margin: 0 auto;
  padding: calc(var(--header-h) + 42px) 0 58px;
  overflow: hidden;
  text-align: center;
}

.social-copy {
  position: relative;
  z-index: 2;
  max-width: 860px;
  display: grid;
  justify-items: center;
  text-align: center;
  opacity: var(--social-opacity, 0.88);
  transform: translateY(var(--social-lift, 8px));
  transition:
    opacity 0.08s linear,
    transform 0.08s linear;
}

.social-copy h2 {
  margin-bottom: 20px;
  font-size: 3.6rem;
}

.social-copy p:not(.eyebrow) {
  max-width: 530px;
  margin-inline: auto;
  color: var(--muted);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1.7;
}

.social-copy .btn {
  margin-top: 18px;
}

.social-phone-stage {
  position: relative;
  width: 100%;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.social-phone-stage::before,
.social-phone-stage::after {
  position: absolute;
  width: min(76vw, 760px);
  height: 2px;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 204, 24, 0.76), rgba(56, 232, 255, 0.38), transparent);
  box-shadow: 0 0 30px rgba(255, 204, 24, 0.3);
}

.social-phone-stage::before {
  top: 9%;
  transform: rotate(-3deg);
}

.social-phone-stage::after {
  bottom: 9%;
  transform: rotate(3deg);
}

.social-video-frame {
  position: relative;
  width: min(72vw, 430px);
  aspect-ratio: 784 / 1168;
  overflow: hidden;
  border: 1px solid rgba(255, 204, 24, 0.34);
  border-radius: 30px;
  background: #050505;
  opacity: var(--social-video-opacity, 0.9);
  transform: translateY(var(--social-video-y, 8px)) scale(var(--social-video-scale, 0.985));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 44px rgba(255, 204, 24, 0.24),
    0 0 96px rgba(56, 232, 255, 0.09),
    0 46px 90px rgba(0, 0, 0, 0.62);
  transition:
    opacity 0.08s linear,
    transform 0.08s linear;
}

.social-video-frame::before,
.social-video-frame::after {
  position: absolute;
  inset: 0;
  z-index: 4;
  content: "";
  pointer-events: none;
}

.social-video-frame::before {
  border: 1px solid rgba(255, 204, 24, 0.24);
  border-radius: inherit;
  box-shadow: inset 0 0 34px rgba(255, 204, 24, 0.12);
}

.social-video-frame::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 14%, transparent 82%, rgba(255, 204, 24, 0.08)),
    repeating-linear-gradient(0deg, transparent 0 8px, rgba(255, 255, 255, 0.03) 9px, transparent 10px);
}

.instagram-scroll-video {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0.98;
  filter: brightness(1.02) contrast(1.08) saturate(1.08);
}

.final-cta {
  padding: 86px 24px;
  text-align: center;
  background: var(--yellow);
  color: #050505;
}

.final-cta .eyebrow {
  border-color: rgba(5, 5, 5, 0.32);
  background: rgba(5, 5, 5, 0.08);
  color: #050505;
}

.final-cta h2 {
  width: min(100%, 900px);
  margin: 0 auto;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 46px 24px;
  text-align: center;
}

.site-footer div {
  display: grid;
  gap: 6px;
  margin-right: 0;
}

.site-footer strong {
  text-transform: uppercase;
}

.site-footer nav {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  box-shadow: 0 16px 38px rgba(24, 216, 102, 0.36);
}

.floating-whatsapp svg {
  width: 34px;
  height: 34px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}

@media (max-width: 1040px) {
  .desktop-nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .site-header {
    padding: 0 24px;
  }

  h1 {
    font-size: 3.35rem;
  }

  .hero-slogan {
    font-size: 1.9rem;
  }

  .offer-video-section,
  .location-section,
  .social-sticky {
    grid-template-columns: 1fr;
  }

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

  .offer-video-copy {
    max-width: 680px;
  }

  .social-scroll-section {
    min-height: 184vh;
  }

  .social-sticky {
    gap: 26px;
    align-content: center;
  }

  .social-phone-stage {
    min-height: 520px;
  }
}

@media (max-width: 720px) {
  :root {
    --header-h: 76px;
  }

  .site-header {
    padding: 0 22px;
  }

  .brand,
  .footer-brand {
    width: 42px;
    height: 42px;
  }

  .brand img,
  .footer-brand img {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: 88svh;
    padding: calc(var(--header-h) + 38px) 24px 54px;
  }

  .eyebrow {
    margin-bottom: 16px;
    font-size: 0.68rem;
  }

  h1 {
    font-size: 2.38rem;
  }

  .hero-slogan {
    margin-top: 16px;
    font-size: 1.58rem;
  }

  .hero-copy {
    margin-top: 22px;
    font-size: 0.98rem;
  }

  .hero-actions,
  .location-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

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

  .status-strip {
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .status-strip div {
    min-height: 76px;
  }

  .offer-video-section {
    width: calc(100% - 44px);
    gap: 22px;
    margin-top: 54px;
  }

  .offer-video-copy h2 {
    font-size: 2.08rem;
  }

  .offer-video-copy p:not(.eyebrow) {
    font-size: 0.96rem;
  }

  .offer-video-frame {
    width: min(100%, 390px);
    max-width: 390px;
    margin-inline: auto;
  }

  .offer-video {
    aspect-ratio: 9 / 16;
    object-position: center;
  }

  .video-sound-toggle {
    right: 50%;
    bottom: 14px;
    transform: translateX(50%);
    width: calc(100% - 28px);
    max-width: 260px;
  }

  .section {
    padding: 76px 22px;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .section-heading h2,
  .location-copy h2,
  .final-cta h2 {
    font-size: 2.18rem;
  }

  .section-heading p:not(.eyebrow),
  .location-copy p {
    font-size: 0.98rem;
  }

  .benefit-grid,
  .plans-grid {
    grid-template-columns: 1fr;
  }

  .topic-cover-grid {
    gap: 12px;
  }

  .topic-cover {
    border-radius: 6px;
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.34);
  }

  .benefit-grid article {
    min-height: 220px;
  }

  .benefit-grid h3 {
    min-height: auto;
    font-size: 1.32rem;
  }

  .plan-card {
    min-height: 500px;
    padding: 26px;
  }

  .featured-plan {
    margin-top: 24px;
  }

  .plan-badge {
    margin-top: -44px;
  }

  .plan-price {
    font-size: 1.78rem;
  }

  .plan-note {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .vip-access {
    align-items: center;
    flex-direction: column;
  }

  .vip-access h3 {
    font-size: 1.2rem;
  }

  .carousel-track {
    gap: 12px;
    padding: 14px 0;
    animation-duration: 38s;
  }

  .carousel-card,
  .arsenal-carousel .carousel-card {
    width: 260px;
    height: 210px;
  }

  .carousel-card-wide {
    width: 300px;
  }

  .arsenal-heading {
    margin-top: 58px;
  }

  .map-panel {
    height: 420px;
  }

  .social-scroll-section {
    min-height: 176vh;
    padding: 0 22px;
  }

  .social-sticky {
    min-height: 100svh;
    gap: 14px;
    padding: calc(var(--header-h) + 20px) 0 32px;
  }

  .social-copy h2 {
    font-size: 2rem;
  }

  .social-copy p:not(.eyebrow) {
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .social-copy .btn {
    width: 100%;
    padding: 0 12px;
  }

  .social-phone-stage {
    min-height: 440px;
  }

  .social-video-frame {
    width: min(78vw, 300px);
    border-radius: 24px;
  }

  .final-cta {
    padding: 72px 22px 90px;
  }

  .site-footer {
    align-items: center;
    flex-direction: column;
    padding-bottom: 100px;
  }

  .site-footer nav {
    flex-wrap: wrap;
    gap: 18px;
  }

  .floating-whatsapp {
    display: none;
  }
}

@media (max-width: 390px) {
  h1 {
    font-size: 2.08rem;
  }

  .hero-slogan {
    font-size: 1.38rem;
  }

  .section-heading h2,
  .location-copy h2,
  .final-cta h2 {
    font-size: 1.92rem;
  }

  .btn {
    padding: 0 18px;
    font-size: 0.74rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
