body {
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
}

.title-font {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
}

.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/images/background hero.jpg');
  background-size: cover;
  background-position: center;
  height: 150vh;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(255, 0, 0, 0.2);
}

.graffiti-bg {
  background: url('/images/modelo_background_expandido.jpg');
  background-size: 85%;
  background-position: center;
  background-color: black;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.whatsapp-btn {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}
.border-t span {
  color: crimson;
  font-family:'Times New Roman', Times, serif
}