.sam-carousel {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto 40px auto;
  overflow: hidden;
  /* background-color: cadetblue; */
  padding: 14px;
}

#paquetes_bajos {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
  flex-direction: row;
}

.sam-track {
  display: flex;
  gap: 20px;
  transition: transform .45s ease;
}

.sam-card {
  flex: 0 0 23.85%;
  background: #fff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 10px 15px -5px #00000014;
}

/* Imagen consistencia 16:9 */
.sam-img {
  aspect-ratio: 16 / 16;
  width: 100%;
  overflow: hidden;
  border-radius: 6px;
}

.sam-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;

}

/* Cuerpo */
.sam-body {
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  text-align: center;
}

.sam-body h3 {
  font-size: 1.1rem;
  line-height: 1.2;
  height: 2.6rem;
  /* Mantiene título alineado */
  overflow: hidden;
}

.sam-body p {
  flex-grow: 1;
  font-size: .9rem;
  color: #555;
  margin: 10px 0;
}

/* Footer fijo abajo */
.sam-footer {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: auto;
  align-items: center;
}

.sam-footer .btn {
  display: flex;
  padding: 7px 12px;
  background: #0c7890;
  color: #fff;
  text-align: center;
  border-radius: 4px;
  font-size: .9rem;
  text-decoration: none;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex: 0 1 75%;
  max-width: 200px;
  min-width: 200px;
}

.precio {
  color: #000;
  font-weight: bold;
}

/* Flechas */
.nav {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  border: none;
  background: rgba(0, 0, 0, .4);
  color: white;
  font-size: 26px;
  width: 55px;
  height: 55px;
  padding: 12px 15px;
  cursor: pointer;
  z-index: 20;
  border-radius: 50%;
  backdrop-filter: blur(3px);
}

.nav:hover {
  background: rgba(0, 0, 0, .6);
}

.nav.left {
  left: 10px;
}

.nav.right {
  right: 10px;
}

/* Dots */
.sam-dots {
  width: 100%;
  text-align: center;
  margin-top: 15px;
}

.sam-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #bbb;
  margin: 0 4px;
  cursor: pointer;
}

.sam-dots button.active {
  background: #0c7890;
}

/* Responsive */
@media (max-width: 1024px) {
  .sam-card {
    flex: 0 0 32%;
  }
}

@media (max-width: 768px) {
  .sam-card {
    flex: 0 0 48.6%;
  }
}

@media (max-width: 480px) {
  .sam-card {
    flex: 0 0 100%;
  }
}