    /* Estilos para el modal */
    .modal {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.5);
    }
  
    .modal-content {
      position: relative;
      background-color: #fff;
      margin: 15% auto;
      padding: 20px;
      border-radius: 5px;
      width: 80%;
      max-width: 500px;
      text-align: center;
    }
  
    .close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    width: 30px;
    height: 30px;
    background-color: #000;
    color: #fff;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.close-btn:hover {
    background-color: #333;
}
  
    .modal-btn {
      display: inline-block;
      padding: 10px 20px;
      margin-top: 20px;
      background-color: #CE6B00;
      color: white;
      text-decoration: none;
      border-radius: 5px;
      border: none;
    }
  
    .modal-btn:hover {
      background-color: #b30000;
      color: white;
      text-decoration: none;
    }
  
    .modal-image {
      max-width: 100%;
      height: auto;
      margin-bottom: 20px;
    }