/* Modal 2 - Evento */
#evento-modal {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}

#evento-modal.hidden {
  display: none;
}

#evento-modal .modal-content {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  width: 90%;
  max-width: 90%;
  height: 50%;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  font-family: 'Roboto', sans-serif;
  animation: fadeInScale 0.3s ease;
}

#evento-modal .evento-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 24px;
  cursor: pointer;
  color: #333;
}

#evento-modal .evento-modal-close:hover {
  color: #0073e6;
}

#evento-modal .modal-body h2 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #0073e6;
}

#evento-modal .modal-body p {
  font-size: 15px;
  margin-bottom: 10px;
  color: #444;
}

/* Animation */
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
