/* Golden Minas — localização e mapa integrado */
.location-section {
  background: linear-gradient(180deg, #0c1112, #050606);
}
.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(380px, 1.18fr);
  gap: clamp(26px, 5vw, 62px);
  align-items: stretch;
}
.location-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(228, 179, 75, 0.28);
  border-radius: 20px;
  background: linear-gradient(
    145deg,
    rgba(228, 179, 75, 0.1),
    rgba(255, 255, 255, 0.018)
  );
}
.location-copy h2 {
  margin-top: 14px;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(1.9rem, 3.4vw, 2.85rem);
}
.location-copy > p {
  margin-top: 14px;
  color: var(--white-muted);
  line-height: 1.7;
}
.location-copy address {
  margin-top: 24px;
  color: var(--gold-pale);
  font-style: normal;
  font-weight: 700;
  line-height: 1.75;
}
.location-copy .button-row {
  margin-top: 25px;
}
.map-card {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  border: 1px solid rgba(228, 179, 75, 0.35);
  border-radius: 20px;
  background: #0d1518;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.26);
}
.map-card iframe {
  display: block;
  width: 100%;
  min-height: 410px;
  height: 100%;
  border: 0;
  filter: saturate(0.78) contrast(1.03) brightness(0.94);
}
.map-card__caption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 12px 14px;
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: rgba(5, 7, 8, 0.74);
  backdrop-filter: blur(7px);
  font-size: 0.77rem;
}
.map-card__caption strong {
  color: var(--gold-light);
}
@media (max-width: 860px) {
  .location-grid {
    grid-template-columns: 1fr;
  }
  .map-card,
  .map-card iframe {
    min-height: 330px;
  }
}
@media (max-width: 560px) {
  .location-copy {
    padding: 23px 18px;
  }
  .map-card,
  .map-card iframe {
    min-height: 285px;
    border-radius: 14px;
  }
}

/* Seletor Street View 3D / Mapa sobre o cartão de localização */
.map-card__toggle {
  position: absolute;
  z-index: 3;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(228, 179, 75, 0.35);
  border-radius: 999px;
  background: rgba(5, 7, 8, 0.78);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}
.map-card__toggle-btn {
  min-height: 34px;
  padding: 6px 14px;
  color: #fff0c4;
  border: 0;
  border-radius: 999px;
  background: transparent;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
}
.map-card__toggle-btn:hover {
  color: #ffe9a5;
  background: rgba(228, 179, 75, 0.14);
}
.map-card__toggle-btn.is-active {
  color: #201504;
  background: linear-gradient(135deg, #ffe498, #e4b34b);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}
.map-card iframe {
  transition: opacity 0.2s ease;
}
@media (max-width: 560px) {
  .map-card__toggle {
    top: 10px;
    left: 10px;
  }
  .map-card__toggle-btn {
    min-height: 32px;
    padding: 5px 11px;
    font-size: 0.7rem;
  }
}
