.logos-track-outer { overflow: hidden; }

.logos-track {
  display: flex;
  will-change: transform;
  cursor: grab;
}
.logos-track.is-dragging { cursor: grabbing; }

.logos-slide { flex: 0 0 auto; }

/* Reserva la misma altura en slides con y sin etiqueta */
.logos-slide .tooltip,
.logos-slide .tag-placeholder {
  display: block;
  min-height: 44px; /* ajustar si cambia la altura del tag-exito */
}

/* ── Animación flecha fuera del tag ── */

/* Wrapper que contiene tag + flecha en fila, sin overflow hidden */
.tag-exito-wrap {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Flecha: oculta y desplazada a la izquierda (dentro del tag visualmente) */
.tag-arrow {
  display: inline-flex;
  align-items: center;
  opacity: 0;
  transform: translateX(-12px);
  transition: transform 0.25s ease, opacity 0.2s ease;
  flex-shrink: 0;
  top: 134px;
  position: relative;
  left: 8px;
}

/* Al hacer hover en el slide, la flecha sale y se ubica a la derecha del tag */
.logos-slide:hover .tag-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Tooltip clonado al body */
.tooltip-body-clone {
  box-shadow: 0 2px 9px 0 rgba(0,0,0,0.10);
  font-family: var(--font-family-body);
  font-weight: 400;
  font-size: 14px;
  background-color: #fff;
  color: #2B3C6A;
  padding: 24px 16px;
  border-radius: 9px;
  width: 272px;
  min-width: 272px;
  max-width: 272px;
  position: fixed;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.tooltip-body-clone.visible { opacity: 1; }
.tooltip-body-clone::after {
  content: '';
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-top-color: #fff;
}

.txt-cliente:hover{text-decoration: underline;}
.logos img {width:140px; height: auto;}
{#.logos figure {display: flex; align-items: center; justify-content: center;}#}
.texto-clientes h4 strong {font-weight:400; color: var(--color-blue-buk);}

/*Tag*/

.tag-exito{
  position: relative;
  top: 134px;
  left: 8px;
  z-index: 5;
  display: inline-flex;
  padding: 4px 6px;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 22px;
  max-width: 100px;
  border-radius: 20px;
  {#border: 1px solid #2F4DAA;#}
}

.tag-exito p {
  font-size:11px;
  font-weight:600;
}

.link-exito{
  position: relative;
  top: 113px;
  left: 96px;
}

.box-logo figure{
  z-index:1;
}

.box-logo{
  position:relative;
  top:-24px;
}

/*Tooltip*/

.tooltip {
  display: inline-block;
  cursor: pointer;
}

.tooltip .tooltip-source {
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.10);
  font-family: var(--font-family-body);
  font-weight: 400;
  font-size: 14px;
  visibility: hidden;
  background-color: #ffff;
  color: #2B3C6A;
  text-align: center;
  padding: 24px 16px;
  border-radius: 9px;
  opacity: 0;
  transition: opacity 0.5s;
  width: auto;
  bottom: 118px;
  top: auto;
  left: 20%;
  transform: translateX(-50%);
  min-width: 272px;
  max-width:272px;
  position: absolute;
  z-index: 10;
}

.tooltip-nombre{
  font-weight: 600;
}

.tooltip-cargo{
  font-weight: 400;
}

.tooltip:hover .tooltip-text {
  opacity: 1;
  visibility: visible;
}

.separador{
  background-color:#E1E2E4;
  width: 240px;
  height: 1px;
}

@media screen and (max-width: 1024px) {
  .logos img {
    width:120px !important;
  }
}

@media screen and (max-width: 768px) {
  .tag-exito{
    top: 94px;
    left: 50px;
  }
}