/* Customizações adicionais para o site Viva Fitness */

body {
    font-family: 'Arial', sans-serif;
}

/* Estilização extra do botão flutuante do WhatsApp */
.fixed-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    border-radius: 50%;
    background-color: #25d366;
    padding: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Exemplo de hover geral para botões */
.button-hover:hover {
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

/* Scroll horizontal leve nos carrosséis */
section .overflow-x-auto::-webkit-scrollbar {
    height: 6px;
}
section .overflow-x-auto::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 10px;
}

/* Badge de quantidade no carrinho */
.carrinho-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: #ec4899; /* Rosa */
  color: #fff;
  font-size: 12px;
  width: 20px;
  height: 20px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}
