/* ============================================================
   ESTILOS GLOBALES DEL HEADER - INNOVARTE DESIGN
   ============================================================ */

.id-main-header {
  width: 100%;
  height: 90px;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
}

.id-nav-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.id-left-block {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 15px;
}
.id-logo-center {
  flex: 1;
  display: flex;
  justify-content: center;
}
.id-right-spacer {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.id-brand-name a {
  text-decoration: none;
  color: #f5f5f5;
  font-weight: 700;
  font-size: 1.5rem;
  font-family: "Montserrat", sans-serif;
}

.id-logo-accent {
  color: #6a1b9a;
}

.id-header-logo {
  height: 70px;
  width: auto;
}

.id-hamburger {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.id-bar {
  width: 24px;
  height: 2px;
  background-color: #00e5ff;
  display: block;
  transition: opacity 0.2s ease;
}

.id-hamburger:hover .id-bar {
  opacity: 0.75;
}

/* --- VENTANA DE MENÚ FLOTANTE --- */
.id-side-menu {
  position: fixed;
  top: 100px;
  left: -400px;
  width: 300px;
  background: #111111;
  border: 1px solid rgba(0, 229, 255, 0.12);
  border-radius: 20px;
  padding: 36px;
  z-index: 10000;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.id-side-menu.active {
  left: 20px;
}

.id-close-menu {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #f5f5f5;
  font-size: 1rem;
  transition: background 0.2s ease;
}

.id-close-menu:hover {
  background: rgba(255, 255, 255, 0.15);
}

.id-side-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.id-side-links li {
  margin-bottom: 18px;
}

.id-side-links a {
  color: #f5f5f5;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: color 0.2s ease;
}

.id-side-links a:hover {
  color: #00e5ff;
}

/* Separador horizontal */
.id-menu-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
  margin: 22px 0;
}

/* Botón de Idioma dentro del menú */
.id-lang-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.id-lang-label {
  color: rgba(245, 245, 245, 0.5);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.id-visual-lang-btn {
  background: #6a1b9a;
  border: none;
  color: white;
  padding: 7px 16px;
  border-radius: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  transition: background 0.2s ease;
}

.id-visual-lang-btn:hover {
  background: #7b1fa2;
}

.id-sphere {
  width: 8px;
  height: 8px;
  background: #00e5ff;
  border-radius: 50%;
}

.id-nav-cta {
  background: #6a1b9a;
  color: white;
  padding: 11px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.id-nav-cta:hover {
  background: #7b1fa2;
  transform: translateY(-1px);
}
