/* Estilos adicionais para botões flutuantes */
.agenda-float {
  position: fixed;
  bottom: 30px;
  right: 100px; /* Posicionado à esquerda do botão do WhatsApp */
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--secondary-color);
  font-size: 1.8rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: all 0.3s ease;
}

.agenda-float:hover {
  transform: scale(1.1);
  background-color: #e0a000;
}

.talk-to-lawyer {
  display: inline-block;
  padding: 12px 24px;
  background-color: #25d366;
  color: white;
  border-radius: 30px;
  font-weight: 600;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.talk-to-lawyer:hover {
  background-color: #20ba5a;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  color: white;
}

.talk-to-lawyer i {
  margin-right: 8px;
}

.schedule-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.schedule-button:hover {
  background-color: #e0a000;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.schedule-button i {
  margin-right: 8px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.8rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #20ba5a;
}

/* Email Contact Button */
.email-contact {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.email-contact:hover {
  background-color: var(--gold-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.email-contact i {
  margin-right: 8px;
}
