/* CONTENEDOR GENERAL */
.tktx-images {
  display: flex;
  flex-wrap: wrap;              /* MISMA FILA */
  justify-content: center;      /* CENTRADO */
  gap: 30px;
  margin-top: 40px;
}

/* CAJA DE IMAGEN */
.tktx-img-box {
  width: 500px;                 /* TAMAÑO PC */
  max-width: 100%;              /* RESPONSIVE */
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
}

/* IMAGEN */
.tktx-img-box img {
  width: 100%;
  height: auto;                 /* NO RECORTA */
  display: block;
  transition: transform 0.4s ease;
}

/* ZOOM SOLO EN PC */
@media (hover: hover) {
  .tktx-img-box img:hover {
    transform: scale(1.08);
  }
}

/* CELULAR */
@media (max-width: 768px) {
  .tktx-img-box {
    width: 100%;                /* 1 POR FILA */
    border-radius: 16px;
  }
}
