
.separador {
    width: 80%; 
    height: 4px; /* Grosor de la línea */
    background-color: #849fe0; /* Color de la línea */
    margin: 20px 0; /* Margen antes y después de la línea */
    margin-left: auto;
    margin-right: auto;
}

h1{
    text-align: right;
    margin-right: 200px;
}
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
  }

  .modal-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50vw;
    height: 50vh;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
  }

  .close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
  }

  iframe {
    width: 100%;
    height: 100%;
    border: none;
  }