.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  margin-bottom: 0;
  padding: calc(10px + var(--safe-top)) 20px 10px;
  transition: background-color 0.8s ease, box-shadow 0.8s ease;
}

@media (min-width: 1025px) {
  .site-header:not(.site-header--inner) {
    margin-bottom: var(--header-overlap);
    background-color: transparent;
  }

  .site-header:not(.site-header--inner).is-scrolled {
    background-color: var(--header-sticky);
  }
}

.site-header.is-scrolled {
  background-color: var(--header-sticky);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.site-header--inner {
  margin-bottom: 0;
}

.site-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  max-width: var(--container);
  margin-inline: auto;
}

.site-header__nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-header__nav a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1em;
  color: var(--white);
  transition: color 0.3s;
}

.site-header.is-scrolled .site-header__nav a,
.site-header.is-scrolled .site-header__burger span {
  color: var(--white);
}

.site-header__nav a:hover {
  color: var(--mm-cream);
}

.site-header__logo {
  justify-self: center;
}

.site-header__logo img {
  width: clamp(120px, 12vw, 180px);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.25));
}

.site-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.site-header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 8px;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}

.site-header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: background 0.3s;
}

.site-header__cart {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transition: background 0.3s;
}

.site-header__cart svg {
  width: 22px;
  height: 22px;
  fill: var(--white);
}

.site-header__cart:hover {
  background: rgba(255, 255, 255, 0.28);
}

.site-header.is-scrolled .site-header__cart {
  background: rgba(255, 255, 255, 0.2);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  visibility: hidden;
}

.mobile-menu.is-open {
  pointer-events: auto;
  visibility: visible;
}

.mobile-menu__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  transition: opacity 0.5s;
}

.mobile-menu.is-open .mobile-menu__overlay {
  opacity: 1;
}

.mobile-menu__panel {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: 100%;
  padding: calc(16px + var(--safe-top)) 20px calc(24px + var(--safe-bottom));
  background: linear-gradient(180deg, var(--mm-green-dark) 0%, var(--mm-navy) 100%);
  transform: translateX(100%);
  transition: transform 0.5s;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.mobile-menu.is-open .mobile-menu__panel {
  transform: translateX(0);
}

.mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.mobile-menu__logo img {
  width: 120px;
  filter: brightness(0) invert(1);
}

.mobile-menu__close {
  border: none;
  background: transparent;
  color: var(--white);
  font-size: 35px;
  line-height: 1;
  cursor: pointer;
  width: 44px;
  height: 44px;
}

.mobile-menu__links {
  list-style: none;
  margin: 0 0 auto;
  padding: 0;
  flex: 1;
}

.mobile-menu__links a {
  display: block;
  padding: 14px 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 6vw, 2.2rem);
  letter-spacing: 1.5px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-menu__link-secondary a {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  opacity: 0.85;
}

.mobile-menu__footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 24px;
}

.mobile-menu__cta {
  width: 100%;
  text-align: center;
}

.mobile-menu__cart-link {
  text-align: center;
  color: var(--mm-tan);
  font-weight: 600;
  font-size: 0.95em;
}

@media (max-width: 1024px) {
  .site-header__nav--left,
  .site-header__nav--right,
  .site-header__ingressos {
    display: none;
  }
}

/* Footer */
.site-footer {
  color: var(--white);
}

.site-footer__newsletter {
  background: var(--mm-green-dark);
  padding: 50px 0;
}

.site-footer__newsletter-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer__newsletter h2 {
  font-family: var(--font-display);
  font-size: 2em;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.newsletter-form {
  display: flex;
  gap: 0;
  min-width: min(100%, 420px);
}

.newsletter-form input {
  flex: 1;
  padding: 14px 18px;
  border: none;
  border-radius: var(--radius-btn) 0 0 var(--radius-btn);
  outline: none;
}

.newsletter-form button {
  padding: 14px 28px;
  border: none;
  border-radius: 0 var(--radius-btn) var(--radius-btn) 0;
  background: var(--mm-green-light);
  color: var(--mm-green-dark);
  font-weight: 700;
  cursor: pointer;
}

.site-footer__main {
  background: var(--footer-bg);
  padding: 50px 0;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.site-footer h3 {
  font-family: var(--font-display);
  font-size: 1.1em;
  letter-spacing: 1px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.site-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__list li + li {
  margin-top: 8px;
}

.site-footer__list a:hover {
  color: var(--mm-tan);
}

.site-footer__hours {
  font-weight: 700;
  font-size: 1.05em;
}

.site-footer__social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.site-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.site-footer__social svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
}

.site-footer__bottom {
  background: #0d1f33;
  padding: 24px 0;
  text-align: center;
  font-size: 0.85em;
}

.site-footer__bottom .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.site-footer__logo {
  width: 80px;
  opacity: 0.9;
}

@media (max-width: 900px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input,
  .newsletter-form button {
    border-radius: var(--radius-btn);
  }
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1001;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px calc(16px + var(--safe-bottom));
  background: var(--mm-navy);
  color: var(--white);
  font-size: 0.9em;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 640px) {
  .site-footer__newsletter {
    padding: 36px 0;
  }

  .site-footer__newsletter h2 {
    font-size: 1.6em;
  }

  .site-footer__main {
    padding: 36px 0;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 16px 16px calc(16px + var(--safe-bottom));
    font-size: 0.85em;
  }

  .cookie-banner button {
    width: 100%;
    padding: 14px;
  }
}

.cookie-banner a {
  text-decoration: underline;
  color: var(--mm-tan);
}

.cookie-banner button {
  flex-shrink: 0;
  padding: 12px 28px;
  border: none;
  border-radius: var(--radius-btn);
  background: var(--mm-green-light);
  color: var(--mm-green-dark);
  font-weight: 700;
  cursor: pointer;
}
