/* Gamehitsbrasil — MONGIL: STAR DIVE hub — leitura única, sem dependências externas */
:root {
  --void: #05070d;
  --panel: #0c101c;
  --panel-2: #12182a;
  --stroke: rgba(201, 164, 84, 0.35);
  --gold: #d4b978;
  --gold-deep: #9a7b3c;
  --ink-on-gold: #1a1408;
  --blue: #1d4ed8;
  --blue-hover: #2563eb;
  --cyan-glow: rgba(94, 231, 255, 0.12);
  --text: #ece9e4;
  --muted: #a8aeb8;
  --max: 1180px;
  --radius: 14px;
  --font-display: "Cinzel", "Times New Roman", serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--void);
  min-height: 100vh;
}

body.no-scroll {
  overflow: hidden;
}

a {
  color: var(--gold);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: #f0e6cc;
}

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

.screen-reader-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* fundo global */
.body-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(
      ellipse 90% 60% at 50% -10%,
      rgba(124, 58, 237, 0.14),
      transparent 55%
    ),
    radial-gradient(
      ellipse 70% 50% at 100% 40%,
      rgba(29, 78, 216, 0.08),
      transparent 50%
    ),
    linear-gradient(180deg, #070a12 0%, #05070d 40%, #04050a 100%);
}

.body-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.35;
  pointer-events: none;
}

/* topo */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: linear-gradient(
    180deg,
    rgba(5, 7, 13, 0.92),
    rgba(5, 7, 13, 0.78)
  );
  border-bottom: 1px solid var(--stroke);
}

.site-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text);
}

.brand:hover {
  color: var(--gold);
}

.brand__logo {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  box-shadow:
    0 0 0 1px var(--stroke),
    0 8px 32px var(--cyan-glow);
}

.brand__text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-main {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.1rem;
  align-items: center;
  justify-content: flex-end;
}

.nav-main a {
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}

.nav-main a:hover,
.nav-main a[aria-current="page"] {
  color: var(--gold);
  border-bottom-color: rgba(201, 164, 84, 0.55);
}

/* botão play store */
.play-badge {
  display: inline-block;
  line-height: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.play-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(29, 78, 216, 0.35);
}

.play-badge img {
  height: 54px;
  width: auto;
}

.play-badge--small img {
  height: 48px;
}

/* hero */
.hero {
  position: relative;
  padding: clamp(2.5rem, 6vw, 5rem) 1.25rem 3rem;
  overflow: hidden;
  border-bottom: 1px solid var(--stroke);
}

.hero__visual {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  border: 1px solid var(--stroke);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.55),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.hero__visual img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
}

@media (max-width: 900px) {
  .hero__visual img {
    aspect-ratio: 16 / 10;
  }
}

.hero__rays {
  pointer-events: none;
  position: absolute;
  inset: -20% -10% auto;
  height: 70%;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(255, 255, 255, 0.16),
    transparent 62%
  );
  mix-blend-mode: screen;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 7, 13, 0.05) 0%,
    rgba(5, 7, 13, 0.75) 100%
  );
}

.hero__content {
  position: relative;
  max-width: var(--max);
  margin: -4rem auto 0;
  padding: 0 1.25rem;
  z-index: 2;
  text-align: center;
}

.hero__content h1 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  letter-spacing: 0.08em;
  color: var(--gold);
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.8);
}

.hero__subtitle {
  margin: 0 auto 1.5rem;
  max-width: 44rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem 1.5rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-display);
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f8fafc;
  background: linear-gradient(180deg, var(--blue-hover), var(--blue));
  border: 2px solid rgba(201, 164, 84, 0.65);
  clip-path: polygon(8% 0, 92% 0, 100% 50%, 92% 100%, 8% 100%, 0% 50%);
  cursor: pointer;
  text-decoration: none;
  transition:
    filter 0.2s ease,
    transform 0.2s ease;
}

.btn-primary:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  color: #fff;
}

/* seções */
.section {
  padding: clamp(2.5rem, 5vw, 4rem) 1.25rem;
  max-width: var(--max);
  margin: 0 auto;
}

.section__head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section__eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 0.5rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  letter-spacing: 0.06em;
  color: var(--gold);
  margin: 0 0 0.75rem;
}

.section__lead {
  max-width: 52rem;
  margin: 0 auto;
  color: var(--muted);
}

/* disponível */
.platform-strip {
  text-align: center;
  padding: 2rem 1.25rem 2.5rem;
  border-bottom: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(12, 16, 28, 0.5), transparent);
}

.platform-strip__inner {
  max-width: 720px;
  margin: 0 auto;
}

.platform-strip h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--gold);
  margin: 0 0 1rem;
}

.platform-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.pill {
  display: inline-block;
  padding: 0.55rem 1.15rem;
  border: 1px solid var(--stroke);
  border-radius: 4px;
  color: var(--text);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  background: rgba(18, 24, 42, 0.85);
}

/* vídeos placeholder - cards estilo ref */
.video-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

@media (max-width: 1000px) {
  .video-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .video-row {
    grid-template-columns: 1fr;
  }
}

.video-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--stroke);
  background: var(--panel);
  aspect-ratio: 16 / 9;
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
}

.video-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5, 7, 13, 0.85));
}

.video-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(12, 16, 28, 0.82);
  border: 2px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--gold);
  pointer-events: none;
}

.video-card__play::after {
  content: "";
  border-style: solid;
  border-width: 9px 0 9px 14px;
  border-color: transparent transparent transparent var(--gold);
  margin-left: 4px;
}

.video-card__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.6rem 0.75rem;
  font-size: 0.8rem;
  color: var(--text);
  background: rgba(5, 7, 13, 0.72);
  border-top: 1px solid var(--stroke);
}

/* features Z */
.feature-z {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.feature-z + .feature-z {
  margin-top: 3rem;
}

.feature-z--flip .feature-z__img {
  order: 2;
}

@media (min-width: 880px) {
  .feature-z {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .feature-z--flip .feature-z__img {
    order: 2;
  }

  .feature-z--flip .feature-z__box {
    order: 1;
  }
}

.feature-z__img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--stroke);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.feature-z__img img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.feature-z__box {
  padding: 1.5rem 1.75rem;
  background: linear-gradient(145deg, #e8d4a8 0%, #c9a454 48%, #a9843e 100%);
  color: var(--ink-on-gold);
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid rgba(42, 32, 12, 0.35);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.feature-z__box h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  margin: 0 0 0.75rem;
  text-transform: uppercase;
}

.feature-z__box p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
}

/* galeria */
.shot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

@media (max-width: 900px) {
  .shot-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .shot-grid {
    grid-template-columns: 1fr;
  }
}

.shot-grid figure {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  background: var(--panel);
}

.shot-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

/* bloco descritivo home */
.info-panel {
  display: grid;
  gap: 2rem;
  padding: 2.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background:
    linear-gradient(135deg, rgba(29, 78, 216, 0.07), transparent 45%),
    var(--panel);
}

@media (min-width: 820px) {
  .info-panel {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }
}

.info-panel h2 {
  font-family: var(--font-display);
  color: var(--gold);
  margin: 0 0 1rem;
  letter-spacing: 0.05em;
}

.info-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
}

.info-list li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--muted);
}

.info-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--gold), #5ee7ff);
  box-shadow: 0 0 12px rgba(94, 231, 255, 0.35);
}

/* awards / destaques - sem alegações falsas */
.award-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 800px) {
  .award-grid {
    grid-template-columns: 1fr;
  }
}

.award-card {
  padding: 1.35rem 1.25rem;
  text-align: center;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.award-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.75rem;
  border-radius: 12px;
  background:
    radial-gradient(
      circle at 30% 30%,
      rgba(94, 231, 255, 0.25),
      transparent 60%
    ),
    var(--panel-2);
  border: 1px solid var(--stroke);
}

.award-card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin: 0 0 0.4rem;
}

.award-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.award-note {
  font-size: 0.82rem;
  color: var(--muted);
  max-width: 40rem;
  margin: 1rem auto 0;
  text-align: center;
}

/* CTA twin */
.cta-twin {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1rem;
}

@media (max-width: 720px) {
  .cta-twin {
    grid-template-columns: 1fr;
  }
}

.cta-twin__box {
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  background: linear-gradient(145deg, #e8d4a8 0%, #c9a454 50%, #9a7b3c 100%);
  color: var(--ink-on-gold);
  border: 1px solid rgba(42, 32, 12, 0.4);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.cta-twin__box h3 {
  font-family: var(--font-display);
  margin: 0 0 0.75rem;
  letter-spacing: 0.06em;
}

.cta-twin__box p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
}

/* footer */
.site-footer {
  margin-top: 4rem;
  padding: 2.5rem 1.25rem 4rem;
  border-top: 1px solid var(--stroke);
  background: linear-gradient(180deg, transparent, rgba(8, 11, 20, 0.85));
}

.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  margin-bottom: 1.25rem;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.88rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--gold);
  text-decoration: underline;
}

.domain-line {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0 0 1.25rem;
}

.footer-legal {
  font-size: 0.75rem;
  color: #7b8290;
  max-width: 52rem;
  margin: 0 auto;
  line-height: 1.6;
}

.footer-badge {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
}

/* páginas legais */
.legal-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
}

.legal-page h1 {
  font-family: var(--font-display);
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.legal-page h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gold-deep);
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
}

.legal-page ul {
  padding-left: 1.25rem;
}

.legal-meta {
  font-size: 0.85rem;
  color: #7b8290;
  margin-bottom: 2rem;
}

.page-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: flex-start;
}

/* cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 1.25rem;
  background: rgba(10, 13, 22, 0.96);
  border-top: 1px solid var(--stroke);
  backdrop-filter: blur(10px);
  box-shadow: 0 -12px 48px rgba(0, 0, 0, 0.45);
  transform: translateY(110%);
  transition: transform 0.35s ease;
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner p {
  margin: 0;
  flex: 1 1 280px;
  font-size: 0.92rem;
  color: var(--muted);
}

.cookie-banner a {
  color: var(--gold);
}

.cookie-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.cookie-actions button {
  font-family: var(--font-body);
  font-size: 0.88rem;
  padding: 0.55rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid var(--stroke);
  background: var(--panel);
  color: var(--text);
}

.cookie-actions button.primary {
  background: var(--blue);
  border-color: rgba(201, 164, 84, 0.45);
  color: #fff;
}

/* cards opinião */
.quote-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 720px) {
  .quote-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.quote-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: var(--panel);
}

.quote-card blockquote {
  margin: 0;
  font-style: italic;
  color: var(--text);
}

.quote-card footer {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--muted);
}
