/* Overlay comum */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0.5);
  z-index: 9998;
}

/* Mostrar popup */
.overlay.show {
  display: flex;
}

/* Conteúdo do popup */
.popup-content {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  position: relative;
}

/* Popup cookies acima do evento */
#cookiePopup {
  z-index: 9999;
}

/* Botões */
.btn, .accept-btn {
  padding: 10px 20px;
  margin: 10px 5px 0;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

/* Cores dos botões */
.btn-primary {
  background-color: #0b6f3f;
  color: white;
}

.btn-secondary, .accept-btn {
  background-color: #333;
  color: white;
}

/* Popup evento */
.event-popup img.event-image {
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}
