@charset "utf-8";

/* Estreito de Posicionamento Fixo dos Botões */
.floating-btn-box {
  position: fixed;
  bottom: 150px;
  width: 70px;
  height: 70px;
  z-index: 999;
}

/* Posições Opostas */
.phone-position {
  left: 30px;
}

.whatsapp-position {
  right: 30px;
}

/* Base dos Botões e Anéis de Pulso */
.zp1, .pulse {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  height: 70px;
  width: 70px;
  cursor: pointer;
}

/* Estilo e Cores dos Botões Principais */
.zp1 {
  z-index: 2;
  font-size: 35px;
  transform: scale(1.0);
  transition: transform 0.3s ease;
  text-decoration: none;
}

.whatsapp-btn {
  background: #1ab744;
}

.phone-btn {
  background: #007bff; /* Azul de destaque para ligação */
}

.zp1:hover {  
  transform: scale(1.1);
}

.zp1 p {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

a.zp1:link, a.zp1:visited, a.zp1:focus, a.zp1:hover, a.zp1:active {
  color: #ffffff;
}

/* Animação e Cores do Pulso */
@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.8;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

.pulse {
  z-index: 1;
}

.pulse-whatsapp {
  background: #1ab744;
}

.pulse-phone {
  background: #007bff;
}

/* Delays das Ondas do Pulso */
.floating-btn-box .pulse:nth-child(1) {
  animation: pulse 2s infinite;
}

.floating-btn-box .pulse:nth-child(2) {
  animation: pulse 2s infinite 0.4s;
}

.floating-btn-box .pulse:nth-child(3) {
  animation: pulse 2s infinite 0.8s;
}