/* Estilos para el modal */
    *{
        box-sizing: border-box;
        margin:0;
        padding: 0;
    }
    .contenido {
        margin-top: 5px; /* ajusta según la altura total de top-bar + menú */
        padding: 20px;
    }
    .container{ 
        display: flex;
        flex-direction:column;
        justify-content:center;
        align-items:center;
    }
    h2{ 
        text-align: center;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    h3{ 
        margin-bottom: 20px;
        font-weight:bold;
        color:#003752;
    }
    p{ 
        line-height: 1.5rem;
    }
    strong{ 
        margin-bottom: 20px;
    }
    .modal {
      display: none; /* Oculto por defecto */
      position: fixed;
      z-index: 1000;
      left: 0; top: 0;
      width: 100%; height: 100%;
      overflow: auto;
      background-color: rgba(0,0,0,0.7);
    }
    .modal-content {
      background-color: #fff;
      margin: 5% auto;
      padding: 50px;
      border-radius: 5px;
      width: 90%;
      max-width: 900px;
      max-height: 80vh;
      overflow-y: auto;
      
    }
    .close-btn {
      color: #aaa;
      float: right;
      font-size: 28px;
      font-weight: bold;
      cursor: pointer;
    }
    .close-btn:hover {
      color: #000;
    }
    .open-modal {
      padding: 10px 20px;
      margin: 8px 5px;
      cursor: pointer;
      border: none;
      background-color: #f2f2f2;
      color: #004080;
      border-radius: 4px;
      font-size: 16px;
      text-align: justify;
      transition: background-color 0.3s ease;
      width: 900PX;
    }
    .open-modal:hover {
      background-color: #0056b3;
      color: white;
    }
    th, td {
        border-bottom: 1px solid #ddd; 
        font-size:14px;
    }
    @media screen and (max-width : 750px){
        h3{ 
        margin-bottom: 20px;
        font-size:20px;
        font-weight:bold;
        color:#003752;
    }
    .container{ 
        display: flex;
        flex-direction:column;
        justify-content:center;
        align-items:center;
     
    }
    .open-modal {
      padding: 10px 20px;
      margin: 8px 5px;
      cursor: pointer;
      border: none;
      background-color: #f2f2f2;
      color: #004080;
      border-radius: 4px;
      font-size: 14px;
      text-align: justify;
      transition: background-color 0.3s ease;
      width: 350px;
    }
    th, td {
        border-bottom: 1px solid #ddd; 
        font-size:12px;

    }
    p{ 
        font-size:12px;
        text-align:justify;
    }
    ul li{  
        font-size:12px;
        text-align:justify;
    }
    
    }

  @media screen and (max-width: 991px) and (min-width: 751px) {    
    .open-modal {
  
    width: 100%;   
    height: auto;
  }
  }
