body {
  scroll-behavior: smooth;
}

.hero-section {
  position: relative;
  background-image: url('static/body_header.jpg');
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* Oscurece la imagen */
  z-index: 1;
}

.hero-section .container {
  z-index: 2;
  position: relative;
}

.img-collage {
  border: 3px solid #ffc107; /* amarillo Bootstrap */
}

.product-link {
  text-align: center;
  background-color: rgb(0, 0, 0);
  border: solid 2px rgb(255, 126, 5);
  color: rgb(255, 255, 255);
  font-weight: bold;
  padding: 10px 15px;
  margin-bottom: 10px;
  text-decoration: none;
  border-radius: 8px;
  transition: transform 0.2s;
}

.product-link:hover {
  transform: scale(1.02);
  border: solid 2px #000000;
  color: #000000;
  background-color: rgb(255, 126, 5);
}

ul.list-unstyled {
  padding-left: 0;
  text-align: center;
}

.small-logo {
  max-width: 200px; /* Ajusta este valor según tu preferencia */
  height: auto;     /* Mantiene la proporción original */
  display: block;
  margin: 0 auto;   /* Centrado opcional */
}

#whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background-color: #25D366;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

#whatsapp-button img {
  width: 35px;
  height: 35px;
}