/* Estilos para os ícones flutuantes de contato */
.floating-contact-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

.main-button {
  width: 60px;
  height: 60px;
  background-color: #007bff;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
}

.main-button:hover {
  transform: scale(1.1);
  background-color: #0056b3;
}

.main-button i {
  color: white;
  font-size: 24px;
}

.contact-options {
  position: absolute;
  bottom: 70px;
  right: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.contact-option {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
  animation: fadeIn 0.3s ease-out;
}

.contact-option:hover {
  transform: scale(1.1);
}

.whatsapp {
  background-color: #25D366;
}

.telegram {
  background-color: #0088cc;
}

.contact-option i {
  color: white;
  font-size: 22px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Estilo para o tooltip */
.tooltip-text {
  position: absolute;
  right: 65px;
  background-color: #333;
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.contact-option:hover .tooltip-text {
  opacity: 1;
  visibility: visible;
}

/* Seta do tooltip */
.tooltip-text::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -5px;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-style: solid;
  border-color: transparent transparent transparent #333;
}
