/**
 * Estilos para os botões de redes sociais flutuantes
 */

/* Container dos botões sociais */
.social-buttons-container {
  position: fixed;
  bottom: 6.5em;
  right: 0.75rem; /* 3 = 0.75rem em Tailwind */
  display: flex;
  flex-direction: column;
  gap: 0.5rem; /* space-y-2 = 0.5rem */
  z-index: 30; /* Baixo para não sobrepor footer */
  font-size: 0.875rem; /* text-sm */
  pointer-events: none; /* Permite clicar através do container */
  font-weight: 500; /* font-medium */
}

/* Estilos base dos botões */
.social-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem; /* py-2 px-3 */
  border-radius: 0.5rem; /* rounded-lg */
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* shadow-lg */
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  transform: scale(1);
  pointer-events: auto; /* Re-habilita cliques nos botões */
}

.social-button:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); /* hover:shadow-xl */
  text-decoration: none;
  color: white;
}

/* Botão WhatsApp */
.social-button--whatsapp {
  background: linear-gradient(to right, #059669, #10b981); /* from-emerald-600 to-green-500 */
}

.social-button--whatsapp:hover {
  background: linear-gradient(to right, #047857, #059669); /* hover:from-emerald-700 hover:to-green-600 */
}

/* Botão Instagram */
.social-button--instagram {
  background: linear-gradient(to right, #db2777, #a855f7); /* from-pink-600 to-purple-500 */
}

.social-button--instagram:hover {
  background: linear-gradient(to right, #be185d, #9333ea); /* hover:from-pink-700 hover:to-purple-600 */
}

/* Ícone dos botões */
.social-button__icon {
  width: 1.25rem; /* w-5 */
  height: 1.25rem; /* h-5 */
  stroke: currentColor;
  flex-shrink: 0;
}

/* Responsive - ajustar para mobile */
@media (max-width: 991px) {
  .social-buttons-container {
    bottom: 8em; /* Aumentar espaço no mobile por causa do menu flutuante */
    right: 0.5rem;
  }
}

@media (max-width: 640px) {
  .social-buttons-container {
    bottom: 9em;
    right: 0.5rem;
  }

  .social-button {
    padding: 0.5rem;
    font-size: 0.75rem;
  }

  .social-button span {
    display: none; /* Esconder texto em mobile, mostrar só ícone */
  }

  .social-button__icon {
    width: 1.5rem;
    height: 1.5rem;
  }
}

/* Animação de entrada */
@keyframes slideInFromRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.social-button {
  animation: slideInFromRight 0.5s ease-out;
}

.social-button:nth-child(2) {
  animation-delay: 0.1s;
}

.social-button:nth-child(3) {
  animation-delay: 0.2s;
}


