body {
  background: #222327 !important; 
}

/* =========================================
   menú social
   ========================================= */
.share-menu {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
}

.share-menu .toggle {
  position: relative;
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 3px 4px rgba(0,0,0,0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333;
  cursor: pointer;
  font-size: 2em;
  transition: 1.25s;
  z-index: 5;
}

.share-menu:hover .toggle {
  transform: rotate(360deg);
  box-shadow: 0 6px 8px rgba(0,0,0,0.15),
              0 0 0 2px #333,
              0 0 0 8px #fff,
              0 0 20px 5px rgba(255, 255, 255, 0.6); 
}

.share-menu li {
  position: absolute;
  left: 0;
  list-style: none;
  transition: 0.5s;
  transform-origin: 140px;
  transition-delay: calc(0.1s * var(--i));
  transform: rotate(0deg) translateX(110px);
}

.share-menu:hover li {
  transform: rotate(calc(360deg / 8 * var(--i)));
}

.share-menu li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  font-size: 1.5em;
  color: var(--clr);
  box-shadow: 0 3px 4px rgba(0,0,0,0.15);
  transform: rotate(calc(360deg / -8 * var(--i)));
  transition: 1s;
  text-decoration: none;
}

.share-menu li a:hover {
  color: #fff;
  background: var(--clr);
}

/* =========================================
   barra de navegación
   ========================================= */
.navigation {
  position: relative;
  width: 400px;
  height: 70px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
}

.navigation ul {
  display: flex;
  width: 350px;
  padding: 0;
  margin: 0;
}

.navigation ul li {
  position: relative;
  list-style: none;
  width: 70px;
  height: 70px;
  z-index: 1;
}

.navigation ul li a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  text-align: center;
  font-weight: 500;
  text-decoration: none;
}

.navigation ul li a .icon {
  position: relative;
  display: block;
  line-height: 75px;
  font-size: 1.5em;
  text-align: center;
  transition: 0.5s;
  color: #222327;
}

.navigation ul li.active a .icon {
  transform: translateY(-32px);
  color: #007bff; /* ícono cambia a azul al seleccionarlo/pasar el cursor */
}

.navigation ul li a .text {
  position: absolute;
  color: #222327;
  font-weight: 400;
  font-size: 0.75em;
  letter-spacing: 0.05em;
  transition: 0.5s;
  opacity: 0;
  transform: translateY(20px);
}

.navigation ul li.active a .text {
  opacity: 1;
  transform: translateY(10px);
  color: #007bff; /* texto cambia a azul para combinar con el ícono */
}

/* burbuja indicadora blanca */
.indicator {
  position: absolute;
  top: -50%;
  width: 70px;
  height: 70px;
  background: #fff; 
  border-radius: 50%;
  border: 6px solid #222327; 
  transition: 0.5s;
}

.indicator::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -22px;
  width: 20px;
  height: 20px;
  background: transparent;
  border-top-right-radius: 20px;
  box-shadow: 1px -10px 0 0 #222327;
}

.indicator::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -22px;
  width: 20px;
  height: 20px;
  background: transparent;
  border-top-left-radius: 20px;
  box-shadow: -1px -10px 0 0 #222327;
}

.navigation ul li:nth-child(1).active ~ .indicator { transform: translateX(calc(70px * 0)); }
.navigation ul li:nth-child(2).active ~ .indicator { transform: translateX(calc(70px * 1)); }
.navigation ul li:nth-child(3).active ~ .indicator { transform: translateX(calc(70px * 2)); }
.navigation ul li:nth-child(4).active ~ .indicator { transform: translateX(calc(70px * 3)); }
.navigation ul li:nth-child(5).active ~ .indicator { transform: translateX(calc(70px * 4)); }