* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  font-family: "Segoe UI", sans-serif;
  background: linear-gradient(to right, #001f3f, #003366);
  color: white;
  min-height: 100vh;
}

header {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 1rem 2rem;
}

.container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.col.center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.logo-text {
  font-family: "Posterama 2001 W04 Regular";
  font-weight: 300;
  font-size: 2rem;
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

nav a.active,
nav a:hover {
  color: #00ffff;
}

.btn-whatsapp {
  background-color: #25d366;
  color: white;
  border: none;
  padding: 0.7rem 1.3rem;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

header {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 1rem 2rem;
}

.galeria {
  padding: 3rem 2rem;
  text-align: center;
}

.eventos {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.evento {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: 8px;
  cursor: pointer;
  width: 250px;
  transition: transform 0.3s ease;
}

.evento:hover {
  transform: scale(1.05);
}

.evento img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 0.5rem;
}

.galeria-evento {
  display: none;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin: 2rem auto;
  max-width: 1000px;
}

.galeria-evento img {
  width: 200px;
  height: auto;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.3s;
}

.galeria-evento img:hover {
  transform: scale(1.1);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.lightbox img {
  max-width: 90%;
  max-height: 80%;
}

.lightbox .close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

.nav-arrows {
  position: absolute;
  bottom: 50px;
  display: flex;
  gap: 3rem;
  font-size: 3rem;
  color: white;
  cursor: pointer;
}

/* Responsivo */
@media (max-width: 768px) {
  .evento {
    width: 90%;
  }

  .galeria-evento img {
    width: 100%;
    max-width: 300px;
  }
}

/* Footer */
footer {
  background-color: rgba(0, 0, 0, 0.7);
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
  }

  header {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-whatsapp {
    margin-top: 1rem;
  }
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  padding: 1rem 2rem;
  z-index: 1000;
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu a,
.mobile-menu button {
  color: white;
  text-decoration: none;
  font-weight: bold;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.mobile-menu button {
  padding: 0.5rem 0;
  background-color: #25d366;
  border-radius: 5px;
  color: white;
  font-weight: bold;
}

/* MOBILE ONLY */
@media (max-width: 768px) {
  .col.center {
    display: none;
  }

  .btn-whatsapp {
    display: none;
  }

  .menu-btn {
    display: block;
    margin-left: auto;
  }

  .mobile-menu.show {
    display: block;
  }
}
