body {
  margin: 0;
  font-family: "Helvetica Neue", sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

.marugoto-header {
  background: #fff;
  padding: 16px 24px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 10;
}

.marugoto-header-inner {
  display: flex;
  align-items: center;
  width: 100%;
}

.marugoto-header__logo img {
  height: 35px;
}

.marugoto-header__buttons {
  display: flex;
  gap: 8px;
  margin-left: auto;
}

.btn-dark,
.btn-yellow {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: bold;
  border: none;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
}

.btn-dark {
  background: #3b3734;
}

.btn-yellow {
  background: #f2b800;
  color: #2b2b2b;
}

@media (max-width: 768px) {
  .marugoto-header__nav,
  .marugoto-header__buttons {
    display: none;
  }

  .hamburger {
    display: block;
  }
}
