/* Modal Background */
.modal {
    display: block; /* Mostrar al cargar */
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.7);
  }
  
  /* Modal Content Box */
  .modal-content {
    background-color: #fff;
    margin: auto;
    padding: 20px;
    border-radius: 8px;
    max-width: 600px;
    text-align: center;
    position: relative;
  }
  
  /* Imagen */
  .modal-content img {
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
  }
  
  /* Cerrar (X) */
  .close {
    color: #aaa;
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 28px;
    cursor: pointer;
  }
  
  .close:hover {
    color: #000;
  }
  
  /* Botón */
  #goHome {
    padding: 10px 20px;
    background-color: #1a9cc5;
    border: none;
    border-radius: 4px;
    color: white;
    font-size: 16px;
    cursor: pointer;
  }
  
  #goHome:hover {
    background-color: #157ba3;
  }
  
  .modal-img {
    max-height: 300px;
    max-width: 100%;
    height: auto;
    width: auto;
    display: block;
    margin: 0 auto;
  }
  