/* ===============================
   HEADER
================================ */
.site-header {
  background: var(--white);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.nav__list {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav__list a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
}

.nav__list a:hover {
  color: var(--primary);
}

/* ===============================
 LOGO
================================ */
.header__logo img {
  height: 55px;
  width: auto;
  display: block;
}

/* ===============================
   MENU TOGGLE (HAMBURGUESA)
================================ */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}
/* ===============================
   FOOTER
================================ */
.site-footer {
  background: var(--secondary);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer__bottom {
  text-align: center;
  margin-top: 40px;
}