/* === Estilo dos Botões de Compartilhamento - Comunidade Vida Evangélica === */

#shareBox {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  font-family: Arial, sans-serif;
}

/* Botão principal */
#shareToggle {
  background: #6fbdf7;
  border: none;
  border-radius: 50%;
  padding: 12px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#shareToggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
}

#shareToggle img {
  width: 38px;
  height: 38px;
}

/* Modal dos ícones */
#shareModal {
  display: none;
  position: absolute;
  bottom: 70px;
  right: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  padding: 15px 20px;
  width: 250px;
  animation: fadeIn 0.3s ease;
}

#shareModal.active {
  display: block;
}

#shareModal h3 {
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
  text-align: center;
}

#shareModal .icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

/* Ícones individuais */
#sh

