
/* ==============================
   SECCIÓN ASOCIADOS
=================================*/
.seccion-asociados {
  padding: 60px 20px;
  text-align: left;
}

.seccion-asociados h2 {
  font-size: 28px;
  margin-bottom: 40px;
  color: #611232;
 }

/* ==============================
   CAROUSEL CONTENEDOR
=================================*/
.carouselSI {
  position: relative;
  max-width: 1000px;
  margin: auto;
  overflow: hidden;
}

.carouselSI-track-container {
  overflow: hidden;
  height: 320px;
}

.carouselSI-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

/* ==============================
   TARJETAS
=================================*/
.card-asociado {
  min-width: 280px;
  margin: 0 10px;
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 16px;
  text-decoration: none;
  color: #002f2a;
  box-shadow: 0 8px 20px #e6d194;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-asociado:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px #1e5b4f;
}

.card-asociado img {
  max-height: 200px;
  height: 150px;
  width: auto;
  object-fit: contain;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.card-asociado:hover img {
  transform: scale(1.08);
}

.card-asociado span {
  display: block;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

/* ==============================
   BOTONES DEL CARRUSEL
=================================*/
.carouselSI-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #2e6da4;
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 18px;
  border-radius: 50%;
  z-index: 2;
}

.carouselSI-btn.prev {
  left: 0;
}

.carouselSI-btn.next {
  right: 0;
}

.carouselSI-btn:hover {
  background: #204d74;
}
