/* Estilos específicos para el slider personalizado */
.slider-container {
  position: relative;
  width: 100%;
  height: 150px;
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: 10px;
}

.custom-slider {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
  transition: transform 1s ease-in-out;
}

.slider-slide {
  min-width: 100%;
  flex: 0 0 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.slider-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px;
}

.slider-text {
   font-size: 16px;
}

.slider-content h2 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 4px;
}

.slider-content p {
  font-size: 12px;
  color: #555;
  margin-bottom: 8px;
}

.slider-button {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 6px 15px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.slider-content img {
  height: 100px;
  width: auto;
  object-fit: contain;
}

/* Estilos responsivos */
@media (max-width: 360px) {
  .slider-container {
    height: 140px;
  }
  
  .slider-content h2 {
    font-size: 18px;
  }
  
  .slider-content p {
    font-size: 12px;
  }
  
  .slider-button {
    font-size: 12px;
    padding: 5px 10px;
  }
  
  .slider-content img {
    height: 60px;
  }
}