/* Botón Flotante de WhatsApp */
/* Contenedor flotante que permanece fijo siempre en la pantalla */
.desplegable-whatsapp {
  position: fixed;
  bottom: 20px; /* Distancia desde abajo */
  right: 20px;  /* Distancia desde la derecha */
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* Botón principal circular de WhatsApp */
.boton-whatsapp-fijo {
  background-color: #25d366;
  border: none;
  border-radius: var(--radio-pildora);
  width: 60px;
  height: 60px;
  cursor: pointer;
  box-shadow: var(--sombra-elevada);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.boton-whatsapp-fijo:hover {
  transform: scale(1.08);
  background-color: #20ba5a;
}

.boton-whatsapp-fijo img {
  width: 35px;
  height: 35px;
}

/* Menú de opciones (oculto por defecto) */
.opciones-whatsapp {
  display: none;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

/* Mostrar opciones al pasar el cursor sobre el contenedor */
.desplegable-whatsapp:hover .opciones-whatsapp {
  display: flex;
}

/* Estilo individual de cada opción de WhatsApp */
.opcion-whatsapp {
  background-color: var(--color-fondo);
  color: var(--color-primario);
  padding: 10px 16px;
  border-radius: var(--radio-pildora);
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  border: 1px solid var(--color-borde);
  box-shadow: var(--sombra-suave);
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.opcion-whatsapp:hover {
  background-color: #128c7e;
  color: #ffffff;
}