/* =========================================
   CTA PRINCIPAL
========================================= */

.cta {
  position: relative;
  padding-block: var(--space-2xl);

  background:
    radial-gradient(
      circle at 50% 100%,
      rgba(214, 160, 74, 0.14),
      transparent 55%
    ),
    var(--color-bg);

  text-align: center;
  overflow: hidden;
}

/* brilho dourado central */
.cta::before {
  content: "";

  position: absolute;
  top: 50%;
  left: 50%;

  width: 260px;
  height: 260px;

  transform: translate(-50%, -50%);

  border: 1px solid rgba(214, 160, 74, 0.16);
  border-radius: 50%;

  box-shadow:
    0 0 80px rgba(214, 160, 74, 0.08);

  pointer-events: none;
}

.cta::after {
  content: "";

  position: absolute;
  top: 50%;
  left: 50%;

  width: 140px;
  height: 140px;

  transform: translate(-50%, -50%) rotate(45deg);

  border: 1px solid rgba(214, 160, 74, 0.12);

  pointer-events: none;
}

.cta__inner {
  position: relative;
  z-index: 2;

  max-width: 700px;
  margin-inline: auto;
}

.cta__title {
  font-size: clamp(2rem, 3vw + 1rem, 3.1rem);

  line-height: 1.12;

  color: var(--color-text);

  margin-block: var(--space-md);
}

.cta__text {
  max-width: 580px;
  margin-inline: auto;

  color: var(--color-text-muted);

  margin-bottom: var(--space-lg);

  line-height: 1.7;
}

.cta .eyebrow {
  justify-content: center;
  color: var(--color-gold-light);
}

/* ---- Localização ---- */
/* ---- Localização ---- */

.location {
  position: relative;
  padding-block: var(--space-2xl);

  overflow: hidden;

  background:
    radial-gradient(
      circle at 15% 50%,
      rgba(214, 160, 74, 0.10),
      transparent 38%
    ),
    radial-gradient(
      circle at 90% 20%,
      rgba(214, 160, 74, 0.06),
      transparent 35%
    ),
    rgba(53, 37, 26, 0.92);

  border-top: 1px solid rgba(214, 160, 74, 0.18);
}

/* detalhe dourado decorativo */

.location::before {
  content: "";

  position: absolute;

  width: 260px;
  height: 260px;

  left: -150px;
  top: 50%;

  transform: translateY(-50%);

  border: 1px solid rgba(214, 160, 74, 0.10);

  border-radius: 50%;

  pointer-events: none;
}

.location__inner {
  position: relative;
  z-index: 2;

  display: grid;

  grid-template-columns: 0.9fr 1.1fr;

  gap: var(--space-xl);

  align-items: center;
}

.location__title {
  font-size: clamp(1.8rem, 2.6vw + 1rem, 2.4rem);

  color: var(--color-text);

  margin-block: var(--space-md);
}

.location__address {
  color: var(--color-text-muted);

  line-height: 1.8;

  margin-bottom: var(--space-lg);

  font-size: 1.02rem;
}

.location__address strong {
  color: var(--color-text);

  display: block;

  margin-bottom: var(--space-3xs);
}

/* MAPA */

.location__map {
  position: relative;

  border-radius: var(--radius-md);

  overflow: hidden;

  border: 1px solid var(--color-border-gold);

  aspect-ratio: 4 / 3;

  background: var(--color-bg-elevated);

  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.25),
    0 0 35px rgba(214, 160, 74, 0.06);

  filter: grayscale(0.25) contrast(1.05);
}

.location__map iframe {
  width: 100%;
  height: 100%;

  border: 0;
}