 /*--css de menu flotante--*/


.menu-flotante a {
  color: white;
  text-decoration: none;
  padding: 6px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  transition: background 0.3s;
}

.menu-flotante a:last-child {
  border-bottom: none;
}

.menu-flotante a:hover {
  background: rgba(255,255,255,0.1);
}
.menu-flotante {
  position: fixed;
  top: 90px;
  left: 20px;
  display: none;
  flex-direction: column;
  background: rgba(0,0,0,0.95);
  border-radius: 10px;
  padding: 20px;
  z-index: 9998;
  min-width: 200px;
  max-width: 90vw;
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
}


.menu-flotante a {
  color: white;
  text-decoration: none;
  padding: 8px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  transition: background 0.3s;
  text-align: center;
}

.menu-flotante a:last-child {
  border-bottom: none;
}

.menu-flotante a:hover {
  background: rgba(255,255,255,0.1);
}
.cerrar-menu {
  position: absolute;
  top: 5px;
  right: 10px;
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
}


.hex-menu {
  display: block;
  padding: 10px 12px;
  margin: 6px 0;
  border-radius: 6px;
  font-size: 13px;
  font-weight: bold;
  color: white;
  text-decoration: none;
  text-align: center;
  transition: transform 0.3s, background 0.3s;
}

.hex-menu:hover {
  transform: scale(1.05);
}

.hex-menu.home {
  background-color: #444;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.hex-menu.aqua { background-color: #4dd0e1; }
.hex-menu.red { background-color: #e53935; }
.hex-menu.blue { background-color: #64b5f6; }
.hex-menu.indigo { background-color: #5c6bc0; }
.hex-menu.aqua { background-color: #4dd0e1; }
.hex-menu.green { background-color: #66bb6a; }
.hex-menu.teal { background-color: #26a69a; }
.hex-menu.sky { background-color: #4fc3f7; }
.hex-menu.orange { background-color: #ffb300; color: #000; }
.hex-menu.purple { background-color: #8e24aa; }


