/* BOTÓN FLOTANTE - VOLVER A COMPLEMENTOS */

.back-complementos-btn{
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 60;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: #1f1c19;
  text-decoration: none;
  font-size: .92rem;
  font-weight: 500;
  box-shadow: 0 10px 25px rgba(0,0,0,.10);
  border: 1px solid rgba(31,28,25,.08);
  transition: .25s ease;
}

.back-complementos-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,.14);
}

/* MÓVIL */
@media (max-width: 768px){
  .back-complementos-btn{
    bottom: 16px;
    right: 16px;
    padding: 9px 14px;
    font-size: 12px;
  }
}

@media (max-width: 640px){
  .back-complementos-btn{
    left: 12px;
    bottom: 12px;
    font-size: .86rem;
    padding: 10px 14px;
  }
  .pro-scroll-top{
    right: 12px;
    bottom: 12px;
    font-size: .86rem;
    padding: 10px 14px;
  }
}

.back-complementos-btn{
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 50;
}

.pro-scroll-top{
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
}