body{
  font-family: Montserrat, sans-serif;
}
.title-organigrama {
    text-align: center;
    margin-top: 22px;
    margin-bottom: 22px;
    color: #7a1333;
  }

  .img-container {
    position: relative;
    max-width: 100%;
    max-height: 133vh;
    overflow: hidden;
    touch-action: none; /* evita comportamiento por defecto del navegador */
  }

  .img-container.zoomed {
    overflow: auto;
    cursor: grab;
  }

  .img-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
    transform-origin: top left;
    user-select: none;
    pointer-events: none; /* evita interferencia en móviles */
  }

  .img-container.zoomed img {
    transform: scale(2);
    cursor: zoom-out;
    pointer-events: auto;
  }