/* =====================================================
   INICIO 08 - SPONSORS DINÁMICOS
===================================================== */

.cabp-sponsors {
  width: 100%;
  overflow: hidden;
  padding: 28px 0 24px;
  background: #146135;
  font-family: Arial, Helvetica, sans-serif;
}

.cabp-sponsors,
.cabp-sponsors * {
  box-sizing: border-box;
}

.cabp-sponsors__title {
  margin: 0 0 22px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.9;
}

.cabp-sponsors__viewport {
  width: 100%;
  overflow: hidden;
}

.cabp-sponsors__track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.cabp-sponsors__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* Cada sponsor ocupa exactamente el mismo espacio */

.cabp-sponsors__item {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 240px;
  height: 86px;
  padding: 8px 42px;

  flex: 0 0 240px;
}

/* Logo */

.cabp-sponsors__item img {
  display: block;
  width: auto !important;
  height: auto !important;
  max-width: 156px !important;
  max-height: 70px !important;
  object-fit: contain;
  opacity: 0.85;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.cabp-sponsors__item img:hover {
  opacity: 1;
  transform: scale(1.03);
}

/* Mensaje cuando no hay sponsors */

.cabp-sponsors__empty {
  margin: 0;
  padding: 10px 20px;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}

/* Tablet */

@media (max-width: 767px) {
  .cabp-sponsors {
    padding: 24px 0 20px;
  }

  .cabp-sponsors__title {
    margin-bottom: 18px;
    font-size: 0.92rem;
  }


  .cabp-sponsors__item {
    width: 190px;
    height: 72px;
    padding: 6px 30px;
    flex-basis: 190px;
  }

  .cabp-sponsors__item img {
    max-width: 130px !important;
    max-height: 58px !important;
  }
}

/* Celular */


  .cabp-sponsors__item {
    width: 165px;
    height: 64px;
    padding: 5px 24px;
    flex-basis: 165px;
  }

  .cabp-sponsors__item img {
    max-width: 112px !important;
    max-height: 52px !important;
  }
