/* ===== Selector de idioma (dropdown) ===== */
.lang-toggle {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 8px;
}

.lang-toggle select {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.8rem;
  color: #333;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.lang-toggle select:hover,
.lang-toggle select:focus {
  border-color: #0b5fff;
  outline: none;
}

/* Columna derecha del header: selector arriba, tabs de navegación abajo */
.header-right {
  display: grid;
  justify-items: end;
  gap: 6px;
}

.header-right nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

@media (max-width: 600px) {
  .header-right {
    align-items: stretch;
    width: 100%;
  }

  .lang-toggle {
    justify-content: center;
    margin-bottom: 6px;
  }

  .header-right nav {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* Link del logo (vuelve al inicio) sin subrayado ni cambios de layout */
.logo-title a {
  display: flex;
  align-items: center;
  line-height: 0;
}
