/* FAB - Botón flotante */
.fab-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}

.fab-button {
  background-color: #0a1833;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.fab-button img {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
}

.fab-button.rotate {
  transform: rotate(45deg);
}

.fab-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  bottom: 70px;
  right: 0;
  display: none;
  flex-direction: column;
  gap: 10px;
}

.fab-menu.show {
  display: flex;
}

.fab-menu li a img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s;
}

.fab-menu li a img:hover {
  transform: scale(1.1);
}
