/* ── GMACR Header + Hero ─────────────────────────────────────────────────── */

/* Reset for full-width */
.gmacr-header-wrap {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 0;
}

/* ── HEADER ── */
.gmacr-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.gmacr-header--scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
}

.gmacr-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Logo */
.gmacr-header__logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  flex-shrink: 0;
}
.gmacr-header__logo-main {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--gmacr-green-700, #2D6A4F);
  letter-spacing: -0.02em;
}
.gmacr-header__logo-accent {
  color: var(--gmacr-accent, #E08900);
}
.gmacr-header__logo-sub {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.62rem;
  color: var(--gmacr-green-500, #52B788);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

/* Nav */
.gmacr-header__nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
}
.gmacr-header__nav-link {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--gmacr-ink, #1B2E2A);
  text-decoration: none;
  padding: 0.4rem 0.65rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.gmacr-header__nav-link:hover,
.gmacr-header__nav-link--active {
  color: var(--gmacr-green-700, #2D6A4F);
  background: rgba(45,106,79,0.07);
}

/* Phone CTA */
.gmacr-header__phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--gmacr-ink, #1B2E2A);
  text-decoration: none;
  border: 2px solid var(--gmacr-ink, #1B2E2A);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  white-space: nowrap;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  flex-shrink: 0;
}
.gmacr-header__phone:hover {
  border-color: var(--gmacr-green-700, #2D6A4F);
  color: var(--gmacr-green-700, #2D6A4F);
  background: rgba(45,106,79,0.05);
}

/* Burger */
.gmacr-header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
}
.gmacr-header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gmacr-ink, #1B2E2A);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobile nav */
.gmacr-header__mobile-nav {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.08);
  padding: 1rem 2rem 1.5rem;
  gap: 0.25rem;
}
.gmacr-header__mobile-nav--open {
  display: flex;
}
.gmacr-header__mobile-link {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  color: var(--gmacr-ink, #1B2E2A);
  text-decoration: none;
  padding: 0.6rem 0.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.gmacr-header__mobile-phone {
  margin-top: 0.5rem;
  color: var(--gmacr-green-700, #2D6A4F);
  border-bottom: none;
}

/* ── HERO ── */
.gmacr-hero {
  position: relative;
  width: 100%;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.gmacr-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.gmacr-hero__bg--loaded {
  transform: scale(1);
}

.gmacr-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.25) 0%,
    rgba(0,0,0,0.45) 60%,
    rgba(0,0,0,0.65) 100%
  );
}

.gmacr-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 4rem 2rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.gmacr-hero__title {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: #ffffff;
  line-height: 1.15;
  margin: 0 0 0.75rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.gmacr-hero__sub {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.88);
  margin: 0;
  line-height: 1.5;
}

/* CTA buttons */
.gmacr-hero__ctas {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 0.75rem;
  justify-content: flex-start;
  padding: 1.5rem 2rem 2.5rem;
  flex-wrap: wrap;
}

.gmacr-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
  white-space: nowrap;
}
.gmacr-hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.gmacr-hero__cta--tours {
  background: #1a8fe3;
  color: #fff;
}
.gmacr-hero__cta--transport {
  background: #1a8fe3;
  color: #fff;
}
.gmacr-hero__cta--whatsapp {
  background: #25D366;
  color: #fff;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .gmacr-header__nav,
  .gmacr-header__phone {
    display: none;
  }
  .gmacr-header__burger {
    display: flex;
  }
}

@media (max-width: 600px) {
  .gmacr-hero {
    min-height: 360px;
  }
  .gmacr-hero__ctas {
    padding: 1rem 1.25rem 2rem;
    gap: 0.5rem;
  }
  .gmacr-hero__cta {
    font-size: 0.78rem;
    padding: 0.55rem 1rem;
  }
}
