:root {
  --ink: #07110b;
  --ink-soft: #102018;
  --green: #4f9540;
  --green-deep: #2f6d32;
  --orange: #f68410;
  --gold: #f7b21c;
  --ivory: #fff8e7;
  --paper: #f4f0e5;
  --white: #ffffff;
  --muted: #657060;
  --line: rgba(7, 17, 11, 0.14);
  --light-line: rgba(255, 255, 255, 0.18);
  --shadow: 0 24px 70px rgba(7, 17, 11, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

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

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

.site-header {
  align-items: center;
  background: rgba(7, 17, 11, 0.78);
  border-bottom: 1px solid transparent;
  color: #fff;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  left: 0;
  padding: 0.75rem 5rem;
  position: fixed;
  right: 0;
  top: 0;
  transition: background-color 220ms ease, border-color 220ms ease;
  z-index: 20;
}

.site-header.is-scrolled {
  background: rgba(7, 17, 11, 0.94);
  border-bottom-color: var(--light-line);
}

.brand {
  display: inline-flex;
  min-width: 7.5rem;
  text-decoration: none;
}

.brand img {
  height: 4rem;
  object-fit: contain;
  width: auto;
}

.site-header nav {
  align-items: center;
  display: flex;
  gap: 1.35rem;
}

.site-header nav a {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
}

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

.menu-toggle {
  align-items: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  display: none;
  flex-direction: column;
  gap: 0.26rem;
  height: 2.65rem;
  justify-content: center;
  width: 2.65rem;
}

.menu-toggle span:not(.sr-only) {
  background: #fff;
  border-radius: 999px;
  display: block;
  height: 2px;
  transition: transform 180ms ease, opacity 180ms ease;
  width: 1.15rem;
}

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

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

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

.hero {
  align-items: end;
  color: #fff;
  display: flex;
  min-height: 76svh;
  overflow: hidden;
  padding: 7.25rem 5rem 3.5rem;
  position: relative;
}

.hero > picture,
.hero__shade {
  inset: 0;
  position: absolute;
}

.hero > picture {
  display: block;
}

.hero__image {
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  width: 100%;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(7, 17, 11, 0.96), rgba(7, 17, 11, 0.68) 52%, rgba(7, 17, 11, 0.16)),
    linear-gradient(0deg, rgba(7, 17, 11, 0.92), rgba(7, 17, 11, 0.08) 56%);
}

.hero__content {
  max-width: 66rem;
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker,
.game-panel__label,
.room-card__city {
  color: var(--orange);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 0.8rem;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  line-height: 1.04;
}

h1 {
  font-size: 4.9rem;
  margin-bottom: 1.25rem;
  max-width: 12ch;
}

h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.hero__lead {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.28rem;
  max-width: 48rem;
}

.hero__actions,
.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.age-badge {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.82);
  display: inline-flex;
  gap: 0.6rem;
  margin: 1.1rem 0 0;
  min-height: 2.6rem;
  padding: 0.5rem 0.75rem;
}

.age-badge strong {
  background: var(--gold);
  border-radius: 999px;
  color: #1b1306;
  display: inline-grid;
  font-weight: 900;
  height: 2rem;
  place-items: center;
  width: 2rem;
}

.button,
.contact-link,
.room-card a,
.socials a,
.city-filter button {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1rem;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.button--primary,
.contact-link--primary {
  background: var(--orange);
  color: #151006;
}

.button--secondary {
  border: 1px solid rgba(255, 255, 255, 0.36);
  color: #fff;
}

.button:hover,
.button:focus-visible,
.contact-link:hover,
.contact-link:focus-visible,
.room-card a:hover,
.room-card a:focus-visible,
.socials a:hover,
.socials a:focus-visible,
.city-filter button:hover,
.city-filter button:focus-visible {
  transform: translateY(-1px);
}

.signal {
  background: var(--orange);
  color: #1b1306;
}

.signal__inner {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1280px;
}

.signal-card {
  background: rgba(255, 255, 255, 0.14);
  display: grid;
  gap: 0.12rem;
  min-height: 6rem;
  padding: 1.2rem 1.3rem;
}

.signal-card strong {
  font-size: 2rem;
  line-height: 1;
}

.signal-card--text strong {
  font-size: 1.15rem;
}

.signal-card span {
  font-weight: 800;
}

.section {
  background: var(--white);
  padding: 5.5rem 5rem;
}

.section--warm {
  background: var(--ivory);
}

.section--dark {
  background: var(--ink);
  color: #fff;
}

.section-inner {
  margin: 0 auto;
  max-width: 1180px;
  width: 100%;
}

.intro__grid,
.responsible__grid,
.contact__grid,
.legal__grid {
  align-items: center;
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.intro__copy,
.section-heading p,
.contact__grid p,
.legal__grid p {
  color: var(--muted);
}

.intro__copy p:last-child,
.contact__grid p:last-child {
  margin-bottom: 0;
}

.section-heading,
.rooms__heading {
  margin-bottom: 2rem;
  max-width: 50rem;
}

.section--dark .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.game-panel picture,
.responsible__image picture {
  display: block;
}

.game-panel--large picture,
.responsible__image picture {
  height: 100%;
}

.game-showcase {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.game-panel {
  background: var(--ink-soft);
  border-radius: 8px;
  color: #fff;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.game-panel:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.game-panel--large {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.game-panel img {
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.game-panel--large img {
  height: 100%;
  min-height: 24rem;
}

.game-panel > div {
  align-self: center;
  display: flex;
  flex-direction: column;
  padding: 1.45rem;
}

.game-panel--large > div {
  padding: 2rem;
}

.game-panel h3 {
  color: var(--gold);
  font-size: 1.55rem;
}

.game-panel--large h3 {
  font-size: 2.1rem;
}

.game-panel p:not(.game-panel__label) {
  color: rgba(255, 255, 255, 0.76);
}

.game-panel p:last-child {
  margin-bottom: 0;
}

.rooms__heading p {
  color: rgba(255, 255, 255, 0.72);
}

.rooms-toolbar {
  background: #102018;
  border: 1px solid var(--light-line);
  border-radius: 8px;
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1.2rem;
  padding: 1rem;
  position: sticky;
  top: 5.9rem;
  z-index: 5;
}

.search-field input {
  background: #fff;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--ink);
  min-height: 3.15rem;
  outline: 0;
  padding: 0.8rem 1rem;
  width: 100%;
}

.search-field input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(247, 178, 28, 0.22);
}

.city-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.city-filter button {
  background: transparent;
  border: 1px solid var(--light-line);
  color: #fff;
  cursor: pointer;
  min-height: 2.75rem;
}

.city-filter button.is-active {
  background: var(--gold);
  border-color: var(--gold);
  color: #1b1306;
}

.room-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.room-card {
  background: var(--ink-soft);
  border: 1px solid var(--light-line);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  min-height: 15rem;
  padding: 1.25rem;
  transition: border-color 180ms ease, transform 180ms ease, background-color 180ms ease;
}

.room-card:hover,
.room-card:focus-within {
  background: #14271d;
  border-color: rgba(247, 178, 28, 0.62);
  transform: translateY(-3px);
}

.room-card[hidden] {
  display: none;
}

.room-card__city {
  color: var(--gold);
}

.room-card h3 {
  color: #fff;
  font-size: 1.28rem;
}

.room-card__place {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.room-card__hours {
  border-bottom: 1px solid var(--light-line);
  border-top: 1px solid var(--light-line);
  color: var(--gold);
  font-weight: 900;
  margin: auto 0 1rem;
  padding: 0.75rem 0;
}

.room-card a {
  background: var(--green);
  color: #fff;
  margin-top: auto;
  width: 100%;
}

.room-card a:hover,
.room-card a:focus-visible {
  background: var(--orange);
  color: #151006;
}

.empty-state {
  border: 1px solid var(--light-line);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
  margin: 1rem 0 0;
  padding: 1rem;
  text-align: center;
}

.responsible__grid,
.contact__grid,
.legal__grid {
  align-items: start;
}

.responsible__image {
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

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

.responsible-list {
  display: grid;
  gap: 0.8rem;
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}

.responsible-list li {
  border-top: 1px solid var(--line);
  color: #384536;
  font-weight: 800;
  padding-top: 0.8rem;
}

.contact-actions {
  display: grid;
  gap: 0.85rem;
}

.contact-link,
.socials a {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
}

.contact-link--primary {
  background: var(--orange);
  color: #151006;
}

.contact-link--whatsapp {
  background: var(--green-deep);
  color: #fff;
}

.socials {
  gap: 0.75rem;
}

.socials a {
  flex: 1 1 10rem;
}

.legal-list {
  display: grid;
  gap: 0.8rem;
}

.legal-list details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem 1.1rem;
}

.legal-list summary {
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.legal-list p {
  margin: 0.8rem 0 0;
}

.legal-list a {
  color: var(--green-deep);
  font-weight: 900;
}

.site-footer {
  background: #040805;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.74);
  padding: 2rem 5rem;
}

.site-footer__inner {
  align-items: center;
  display: grid;
  gap: 1rem;
  grid-template-columns: auto 1fr;
  margin: 0 auto;
  max-width: 1180px;
}

.site-footer img {
  height: 3rem;
  width: auto;
}

.site-footer p {
  margin: 0;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1040px) {
  .site-header {
    padding: 0.65rem 1.25rem;
  }

  .hero,
  .section,
  .site-footer {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  h1 {
    font-size: 3.75rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .signal__inner,
  .intro__grid,
  .game-showcase,
  .game-panel--large,
  .room-grid,
  .responsible__grid,
  .contact__grid,
  .legal__grid,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .game-panel--large img {
    min-height: 18rem;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .site-header {
    align-items: center;
    flex-wrap: wrap;
    gap: 0.65rem;
  }

  .brand img {
    height: 3.2rem;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-header nav {
    display: none;
    flex-basis: 100%;
    gap: 0.2rem;
    width: 100%;
  }

  .site-header nav.is-open {
    display: grid;
  }

  .site-header nav a {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.65rem 0;
  }

  .hero {
    min-height: 78svh;
    padding-bottom: 3rem;
    padding-top: 7.8rem;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(7, 17, 11, 0.96), rgba(7, 17, 11, 0.72)),
      linear-gradient(0deg, rgba(7, 17, 11, 0.9), rgba(7, 17, 11, 0.08) 58%);
  }

  h1 {
    font-size: 2.85rem;
    max-width: 11ch;
  }

  h2 {
    font-size: 1.9rem;
  }

  .hero__lead {
    font-size: 1.08rem;
  }

  .hero__actions,
  .button {
    width: 100%;
  }

  .signal-card {
    min-height: 5rem;
  }

  .section {
    padding-bottom: 4rem;
    padding-top: 4rem;
  }

  .rooms-toolbar {
    gap: 0.4rem;
    padding: 0.45rem;
    top: 4.45rem;
  }

  .search-field input {
    font-size: 0.92rem;
    min-height: 2.25rem;
    padding: 0.45rem 0.65rem;
  }

  .city-filter {
    flex-wrap: nowrap;
    gap: 0.35rem;
    margin-right: -0.45rem;
    overflow-x: auto;
    padding-right: 0.45rem;
    scrollbar-width: none;
  }

  .city-filter::-webkit-scrollbar {
    display: none;
  }

  .city-filter button {
    flex: 0 0 auto;
    font-size: 0.82rem;
    min-height: 2rem;
    padding: 0.3rem 0.6rem;
  }
}
