a {
  color: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

h1 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2.5rem;

}

/* Contenedor del carrusel */
.carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

/* Carrusel */
.carousel {
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

/* Tarjetas de productos */
.carousel-card {
  flex: 0 0 25%;
  /* En escritorio, mostrar 4 tarjetas */
  min-width: 25%;
  padding: 10px;
  transition: all 0.3s ease;
}

.product-image {
  background-color: #1e90ff;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  padding: 15px 10px;
  text-align: center;
}

.product-info h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.product-description {
  font-weight: bold;
  font-size: 0.9rem;
  margin-bottom: 5px;
}

/* Botones de navegación */
.carousel-button {
  background-color: rgba(255, 255, 255, 0.7);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.carousel-button:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

.prev {
  left: -20px;
}

.next {
  right: -20px;
}

/* Indicadores de puntos */
.carousel-dots {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.dot {
  width: 12px;
  height: 12px;
  background-color: #bbb;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #1e90ff;
}

/* Responsive */
@media (max-width: 992px) {
  .carousel-card {
    flex: 0 0 33.33%;
    min-width: 33.33%;
  }
}

@media (max-width: 768px) {
  .carousel-card {
    flex: 0 0 50%;
    min-width: 50%;
  }
}

@media (max-width: 576px) {
  .carousel-card {
    flex: 0 0 100%;
    min-width: 100%;
  }

  h1 {
    font-size: 2rem;
  }

  .carousel-button {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}


@media (max-width: 768px) {
  .row-cols-md-4 {
    flex-direction: column;
  }
}


/* Estilos para el icono de WhatsApp flotante */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  text-align: center;
  font-size: 30px;
  line-height: 60px;
  z-index: 1000;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #128C7E;
}

.whatsapp-float i {
  margin-top: 15px;
}

/* Ocultar en pantallas muy pequeñas (opcional, puedes ajustar el ancho) */
@media (max-width: 200px) {
  .whatsapp-float {
    display: none;
  }
}

/* Ajustar la posición en pantallas pequeñas (opcional) */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    font-size: 24px;
    line-height: 50px;
  }

  .whatsapp-float i {
    margin-top: 13px;
  }
}