 .info-overlay{
    position: fixed;
    inset: 0;
    display: none;
    z-index: 99999;
  }
  .info-overlay.is-open{ display:block; }

  .info-backdrop{
    position:absolute;
    inset:0;
    background: rgba(0,0,0,.72);
  }

  .info-panel{
    position:absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(980px, 94vw);
    max-height: 92vh;
    background:#111;
    border-radius: 16px;
    box-shadow: 0 16px 60px rgba(0,0,0,.45);
    padding: 14px;
    color: #fff;
    overflow: auto;
  }

  .info-close{
    position: sticky;
    top: 0;
    margin-left: auto;
    display: block;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 12px;
    background: rgba(255,255,255,.12);
    color:#fff;
    font-size: 22px;
    cursor:pointer;
  }

  figure.imagen-calidad-datos{
    margin: 10px 0 0 0;
  }

  figure.imagen-calidad-datos img{
    width: 100%;
    height: auto;
    max-height: 72vh;
    object-fit: contain;
    border-radius: 12px;
    display:block;
  }

  figure.imagen-calidad-datos figcaption{
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.35;
    opacity: .92;
  }

  .info-actions{
    display:flex;
    justify-content:flex-end;
    gap: 10px;
    margin-top: 12px;
  }

  .info-more-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding: 10px 14px;
    border-radius: 12px;
    background: #fff;
    color: #111;
    text-decoration:none;
    font-weight: 600;
  }

  /* En móvil: un poco más alto, más cómodo */
  @media (max-width: 576px){
    .info-panel{
      width: 96vw;
      padding: 12px;
      border-radius: 14px;
    }
    figure.imagen-calidad-datos img{
      max-height: 66vh;
    }
  }