.header {
  position: fixed;
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
  z-index: 1000;
  color: black;
  transition: all 0.3s ease;
}

.logo {
  font-size: 28px;
  font-weight: bold;
  margin-top: 0; /* 🔥 sacamos el desplazamiento */
}

.logo img {
  height: 65px;
  object-fit: contain;
}

/* HEADER SCROLLEADO */
.header.scrolled {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}



@media (max-width: 768px) {
  .logo img {
    height: 50px;
  }

  .header {
  padding: 10px 20px;
 }
}

@media (min-width: 769px) {
  .logo {
    display: flex;
    align-items: center;
    height: 100%;
  }

  .logo img {
    height: 55px;
  }
}