:root {
  --blue-dark: #0a0f2a;
  --yellow-soft: #f2d675;
}

/* Reset */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  background: var(--blue-dark);
  font-family: "Inter", sans-serif;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 12px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;

  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(8px);

  z-index: 10;
}

.logo-img {
  height: 42px;
  width: auto;
}

.menu a {
  margin-left: 20px;
  color: var(--yellow-soft);
  text-decoration: none;
}

/* MAPA */
#map {
  position: absolute;
  top: 70px; /* deja espacio para el header */
  left: 0;
  width: 100%;
  height: calc(100vh - 70px);
  z-index: 1;
}

