.site-header {
  background: #111;
  padding: 15px 40px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 3px 10px rgba(0,0,0,0.5);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img { height: 50px; border-radius: 8px; }

.logo span {
  font-size: 1.8rem;
  font-weight: bold;
  color: #FFD700;
  text-shadow: 1px 1px 5px #000;
}

.lang-switcher {
  display: flex;
  gap: 10px;
  margin-left: auto; /* empuja a la derecha */
  align-items: center;
}

.flag {
  cursor: pointer;
  width: 25px;
  height: auto;
  transition: transform 0.2s ease;
}

.flag:hover {
  transform: scale(1.1);
}




