
.d-flex {
  display: flex;
}

.align-items-center {
  align-items: center;
}

.justify-content-center {
  justify-content: center;
}

.text-left {
  text-align: left;
}

.image-container {
  position: relative;
  width: 100%; /* Ancho de la imagen */
  height: 500px; /* Altura de la imagen */
  overflow: hidden;
  position: relative;
  background-image: url(Fondos/fondo_index.jpg);
  background-size: cover;
  background-position: center center;
}

.image-container::after{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
}


.background-image {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
  /* Degradado blanco-transparente desde la izquierda */
}


/* Estilos para la burbuja flotante de WhatsApp */
.whatsapp-bubble {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.whatsapp-bubble img {
  width: 60px; /* Ajusta el tamaño de la imagen según tu preferencia */
  height: auto;
}
