/* your styles go here */


.slider-text-shadow {
  text-shadow:
    0 0 6px rgba(123, 63, 0, 0.9),
    1px 1px 3px rgba(123, 63, 0, 0.9);
}


.collage-title {
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}


.btn-light.btn-sm {
  background-color: rgba(255, 255, 255, 0.9);
  color: #000;
  padding: 0.375rem 0.75rem;
  border-radius: 0.25rem;
  text-shadow: none;
}



/* Efecto hover en botones */
.btn-light:hover {
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  color: #000;
  transition: all 0.3s ease-in-out;
}

/* Animación fade-in-up */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.collage-card {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

/* Retrasos progresivos para cada bloque (opcional) */
.collage-delay-0 { animation-delay: 0s; }
.collage-delay-1 { animation-delay: 0.1s; }
.collage-delay-2 { animation-delay: 0.2s; }
.collage-delay-3 { animation-delay: 0.3s; }
.collage-delay-4 { animation-delay: 0.4s; }


@keyframes marquee {
  0%   { transform: translateX(0%); }
  100% { transform: translateX(-100%); }
}

.scroll-wrapper {
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  height: 28px;
}

.scroll-content {
  animation: scrollContinuous 50s linear infinite;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

@keyframes scrollContinuous {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


.floating-btn {
  position: fixed;
  right: 20px;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 20px;
  color: #fff;
  text-align: center;
  line-height: 48px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  transition: background 0.3s ease;
}

.floating-btn:hover {
  opacity: 0.9;
}

.floating-btn.whatsapp {
  background-color: #25D366;
  bottom: 120px;
}

.floating-btn.sms {
  background-color: #007bff;
  bottom: 65px;
}

.floating-btn.to-top {
  background-color: #333;
  bottom: 10px;
}

.floating-btn.catalogo {
  background-color: #8e44ad; /* morado llamativo */
  bottom: 175px;
}
.floating-btn.catalogo:hover {
  background-color: #732d91;
}
