/* ===== ESTILOS DEL MODAL ===== */

/* Fondo oscuro del modal */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0,0,0,0.7);
}

/* Contenido del modal */
.modal-content {
  margin: auto;
  display: block;
  max-width: 80%;
  max-height: 80%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  animation: zoom 0.3s ease;
}

/* Botón de cerrar */
.close {
  position: absolute;
  top: 15px;
  right: 30px;
  color: #fff;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: #f00;
}

/* Animación al abrir */
@keyframes zoom {
  from {transform: scale(0);}
  to {transform: scale(1);}
}
