/* ----- VARIÁVEIS GLOBAIS ----- */
:root{
  --preto:#000000;
  --cinza:#cacaca;
  --cinza-escuro:#6f6e6e;
  --vermelho:#bf0702;
  --branco:#ffffff;
  --fonte-titulo:'Montserrat',sans-serif;
  --fonte-texto:'Open Sans',sans-serif;
}

/* ----- MENU ÚNICO FIXO ----- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #000;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.logo {
  height: 60px;
}
.nav-list {
  display: flex;
  gap: 20px;
  list-style: none;
}
.nav-link {
  color: #fff;
  font-weight: 600;
  transition: color .3s;
}
.nav-link:hover,
.nav-link.active {
  color: #ff8200;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}
.bar {
  width: 24px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: .3s;
}

/* ----- HERO LOGO GRANDE + FONTE EXTRA BOLD ----- */
.hero-logo {
  height: 120px;
  margin: 0 auto 20px;
}
.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 4rem;
  letter-spacing: 2px;
  margin-bottom: .5rem;
}
.hero-tag {
  font-size: 1.4rem;
  margin-bottom: 2rem;
}

/* ----- CARDS MENORES (600×400 SEM CORTAR) ----- */
.evento-card {
  max-width:
  /* ----- MENU HAMBURGER ----- */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  z-index: 1100;
}

.bar {
  width: 24px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

.nav-menu {
  display: flex;
}

@media (max-width: 992px) {
  .nav-toggle {
    display: flex !important;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: #000;
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
    transition: left 0.3s ease;
    overflow-y: auto;
    z-index: 999;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 25px;
  }

  body.no-scroll {
    overflow: hidden;
  }
}