@charset "utf-8";

/* ▬▬▬ CONTENEDOR GENERAL ▬▬▬ */
.nav-container {
  display: inline-block;     /* No expande el body */
  text-align: center;
  margin: 10px auto;
  width: auto;
  animation: fadeIn 1s ease;
}

/* Aparición suave */
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(-6px); }
  100% { opacity: 1; transform: translateY(0); }
}


/* ▬▬▬ FILAS ▬▬▬ */
.nav-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 6px 0;
  width: auto;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-row:hover {
  opacity: 0.96;
  transform: translateY(-1px);
}


/* ▬▬▬ SEPARADOR ▬▬▬ */
.separator {
  color: #aaa;
  font-weight: bold;
  padding: 0 4px;
  transform: translateY(-1px);   /* Alineación exacta */
  opacity: 0.8;
}


/* ▬▬▬ LÍNEA DIVISORA MINIMAL ▬▬▬ */
.nav-divider {
  width: 70%;
  margin: 4px auto 6px;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255,255,255,0.35),
    transparent
  );
  opacity: 0.75;
}


/* ▬▬▬ ÍCONOS ▬▬▬ */
.nav-btn img {
  height: 14px;
  vertical-align: middle;
  border: none;
  filter: drop-shadow(0 0 1px rgba(255,255,255,0.3));
  transition: transform 0.25s ease, filter 0.25s ease;
}

.nav-btn img:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 4px rgba(255,240,180,0.9));
}
