body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background: #f7f7f7;
  color: #333;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #000;
  padding: 10px 20px;
}

.menu-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.menu-container img {
  height: 55px;
}

nav {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

nav a {
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #e63946;
}

.hero {
  background: url('/assets/images/hero-mma.jpg') center/cover no-repeat;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 2.2rem;
  text-shadow: 1px 1px 5px #000;
  margin-bottom: 10px;
}

.container {
  max-width: 1000px;
  margin: auto;
  padding: 30px 20px;
}

h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  margin-bottom: 20px;
}

.evento {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.evento.visible {
  opacity: 1;
  transform: translateY(0);
}

.evento img {
  flex: 1 1 300px;
  max-width: 40%;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.4s ease; /* adicionado: animação suave para o zoom */
}

.evento img:hover {
  transform: scale(1.05); /* adicionado: efeito zoom ao passar mouse */
}

.detalhes {
  flex: 2 1 400px;
}

.detalhes h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: #e63946;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #c3263a;
}

#galeria-thunder {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10px;
}

#galeria-thunder img {
  width: 30%;
  margin: 1%;
  border-radius: 8px;
  box-shadow: 0 1px 5px rgba(0,0,0,0.2);
  transition: transform 0.3s;
  cursor: pointer;
}

#galeria-thunder img:hover {
  transform: scale(1.05);
}

footer {
  background: #111;
  color: #aaa;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  margin-top: 40px;
}

#topo {
  display: none;
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  padding: 10px 15px;
  background: #e63946;
  color: #fff;
  font-size: 1.2rem;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  transition: background 0.3s ease;
}

#topo:hover {
  background: #c3263a;
}

#lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
  z-index: 10000;
  cursor: zoom-out;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

@media (max-width: 800px) {
  .evento { flex-direction: column; }
  .evento img { max-width: 100%; }
  .hero { height: 150px; font-size: 1.8rem; }
  nav a { font-size: 1.1rem; }
  #topo {
    bottom: 15px;
    right: 15px;
    padding: 8px 12px;
    font-size: 1rem;
  }
  #galeria-thunder img {
    width: 45%;
  }
}
