/* =============================================
   VARIÁVEIS GLOBAIS
   ============================================= */
:root {
  --bg-deepest:    #0e0400;
  --bg-dark:       #170600;
  --bg-mid:        #1a0a05;
  --bg-brown:      #210b04;
  --bg-card:       #210b04;
  --bg-card-hover: #2a1008;

  /* Ouro premium — alinhado ao hero / CTAs (horizontal) */
  --gold-solid:     #d9a441;
  --gold-light:     #ffe27a;
  --gold-dark:      #9f651f;
  --gold-base:      #b87924;
  --gold-mid:       #d9a441;
  --gold-warm:      #d99b38;
  --gold-honey:     #f4c85a;
  --gold-champagne: #e8cc88;
  --gold-highlight: #fff0c8;
  --gold-antique:   #c88a2c;
  --gold-bronze:    #9f651f;
  --gold-bronze-deep: #6b4518;

  --gold-dim:       rgba(217, 164, 65, 0.12);

  --gold-gradient: linear-gradient(
    90deg,
    #b87924 0%,
    #d99b38 25%,
    #f4c85a 55%,
    #ffe27a 75%,
    #c88a2c 100%
  );

  /* Texto metálico — vertical suave (champagne → bronze) */
  --gold-gradient-text: linear-gradient(
    180deg,
    #fff2c4 0%,
    #f4c85a 18%,
    #d99b38 38%,
    #d9a441 58%,
    #b87924 82%,
    #9f651f 100%
  );

  --gold-gradient-line: linear-gradient(
    90deg,
    transparent 0%,
    rgba(159, 101, 31, 0.35) 18%,
    rgba(244, 200, 90, 0.45) 50%,
    rgba(159, 101, 31, 0.35) 82%,
    transparent 100%
  );

  --white:         #f5f0ea;
  --text-white:    #f5f0ea;
  --off-white:     #e8e0d6;
  --text-muted:    #c8bcb3;
  --text-dim:      #8a7a70;

  --border-gold:         rgba(217, 164, 65, 0.28);
  --border-gold-strong:  rgba(230, 190, 110, 0.42);
  --border-gold-soft:    rgba(120, 72, 36, 0.22);
  --border-card:         rgba(200, 160, 100, 0.1);

  --font-sans:      'Inter', Arial, sans-serif;

  --font-imperial:  'Cinzel Decorative', 'Inter', Arial, sans-serif;
  --font-serif:     'Inter', Georgia, serif;
  --font-display:   var(--font-sans);

  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;

  --shadow-gold:   0 4px 24px rgba(12, 6, 0, 0.45), 0 0 16px rgba(180, 130, 60, 0.06);
  --shadow-gold-btn: 0 10px 28px rgba(16, 8, 0, 0.4), 0 0 14px rgba(200, 150, 70, 0.08), 0 1px 0 rgba(255, 245, 220, 0.22) inset;
  --shadow-card:   0 4px 28px rgba(0, 0, 0, 0.45);

  --transition:    0.3s ease;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-white);
  font-family: 'Inter', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

html, body {
  max-width: 100%;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* =============================================
   UTILITÁRIOS
   ============================================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-pad {
  padding: 100px 0;
}

.label-gold {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  margin-bottom: 16px;
  background: var(--gold-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.text-gold {
  font-family: var(--font-sans);
  font-style: italic;
  font-weight: 700;
  background: var(--gold-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.desktop-only {
  display: block;
}

/* =============================================
   BOTÕES
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 44px;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  transition: var(--transition);
}

.btn--primary {
  background: var(--gold-gradient);
  color: #0c0604;
  font-weight: 800;
  letter-spacing: 0.08em;
  border: 1px solid rgba(255, 236, 210, 0.38);
  box-shadow: var(--shadow-gold-btn);
  transition: filter 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn--primary:hover {
  filter: brightness(1.05) saturate(1.02);
  transform: translateY(-2px);
  box-shadow:
    0 16px 40px rgba(32, 18, 8, 0.48),
    0 0 0 1px rgba(255, 248, 235, 0.18) inset;
}

.btn--primary:hover::after { background: transparent; }

.btn--outline {
  background: transparent;
  color: var(--gold-champagne);
  border: 1px solid var(--border-gold-strong);
  box-shadow: none;
}

.btn--outline:hover {
  background: var(--gold-dim);
  border-color: rgba(236, 210, 170, 0.55);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.btn--disabled {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-dim);
  cursor: not-allowed;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* =============================================
   ANIMAÇÕES FADE-UP
   ============================================= */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }
.delay-4 { transition-delay: 0.48s; }

/* =============================================
   1. HERO — clean, mobile first
   ============================================= */

/* mobile base */
.hero-clean {
  width: 100%;
  margin: 0;
  padding: 0;
  background: var(--bg-dark);
  overflow: hidden;
}

.hero-clean-wrap {
  position: relative;
  width: 100%;
  /* Arte inteira na proporção natural — sem crop */
  height: auto;
  min-height: 0;
  max-height: none;
  overflow: hidden;
  background: var(--bg-dark);
  line-height: 0;
}

.hero-clean-img {
  display: block;
  position: relative;
  z-index: 0;
  width: 100%;
  height: auto;
  background: var(--bg-dark);
  /* Mantém leitura do texto pintado na arte */
  filter: brightness(1.12) contrast(1.1) saturate(1.03);
}

.hero-clean-overlay {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  /* Faixa mínima — não escurece a copy da arte acima do botão */
  height: clamp(40px, 14%, 100px);
  min-height: 40px;
  max-height: min(14vh, 112px);
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(23, 6, 0, 0) 0%,
    rgba(23, 6, 0, 0) 82%,
    rgba(23, 6, 0, 0.1) 90%,
    rgba(23, 6, 0, 0.45) 97%,
    var(--bg-dark) 100%
  );
}

/* container do botão abaixo da imagem */
.hero-clean-cta {
  background: var(--bg-dark);
  display: flex;
  justify-content: center;
  margin-top: 0;
  padding: clamp(20px, 5vw, 28px) 24px clamp(24px, 6vw, 36px);
}

.hero-clean-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: min(400px, 100%);
  min-height: 56px;
  margin-top: 4px;
  margin-bottom: 4px;
  padding: 16px 22px;
  border-radius: 8px;
  background: var(--gold-gradient);
  color: #0c0604;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  border: 1px solid rgba(255, 236, 210, 0.38);
  box-shadow: var(--shadow-gold-btn);
  transition: filter 0.25s ease, transform 0.25s ease;
}

.hero-clean-btn:hover {
  filter: brightness(1.05) saturate(1.02);
  transform: translateY(-2px);
}

/* tablet e desktop: botão do hero */
@media (min-width: 768px) {
  .hero-clean-cta {
    padding: clamp(24px, 3.5vw, 36px) 32px clamp(28px, 4vw, 44px);
  }

  .hero-clean-btn {
    max-width: 300px;
    font-size: 0.8rem;
  }
}

@media (min-width: 1025px) {
  .hero-clean-btn {
    max-width: 320px;
    font-size: 0.82rem;
    bottom: 56px;
  }
}

/* =============================================
   1-OLD — estilos antigos do hero (mantidos para não quebrar referências internas)
   ============================================= */

/* Container principal — full-viewport em desktop e mobile */
.hero {
  position: relative;
  width: 100%;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

/* Camada visual: imagem fullbleed */
.hero__visual {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* exibe Rhuane + arco dourado + logo da imagem */
  object-position: center 12%;
  display: block;
}

/* Overlay gradiente: topo limpo, transição suave com a nova base escura da imagem */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(14, 4, 0, 0.04) 0%,
    rgba(14, 4, 0, 0.06) 50%,
    rgba(22, 6, 0, 0.55) 72%,
    rgba(22, 6, 0, 0.85) 86%,
    #170600 100%
  );
}

/* Logo HTML oculto — já está embutido na imagem */
.hero__logo { display: none; }

/* Conteúdo: sobre a base escura, centralizado */
.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 0 40px 90px;
}

.hero__logo {
  margin-bottom: 24px;
}

.hero__logo-text {
  font-family: 'Cinzel Decorative', 'Inter', Arial, serif;
  font-size: clamp(3rem, 8vw, 8.5rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
  color: transparent;
  background: var(--gold-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: none;
}

.hero__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 6px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.hero__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(228, 202, 168, 0.88);
  line-height: 1;
  padding: 0 8px;
}

.hero__meta-item svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  opacity: 0.8;
  stroke: currentColor;
}

/* separador losango fino */
.hero__meta-sep {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  opacity: 0.55;
  color: var(--gold-honey);
}

.hero__meta-sep::before {
  content: '◆';
  font-size: 5px;
  color: var(--gold-honey);
}

/* compatibilidade com nome antigo */
.hero__meta-divider { display: none; }

.hero__headline {
  font-family: var(--font-sans);
  font-size: clamp(1.6rem, 3.2vw, 2.8rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 16px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.hero__sub {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* =============================================
   2. MARQUEE
   ============================================= */
.marquee-wrapper {
  position: relative;
  overflow: hidden;
  transform: rotate(-1deg);
  margin: -4px 0 -2px;
  padding: 11px 0 10px;
  z-index: 2;
  border-top: 1px solid var(--border-gold-soft);
  border-bottom: 1px solid var(--border-gold-soft);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.18);
  /* Continuidade com o hero (#170600) → fundo da página */
  background: linear-gradient(
    180deg,
    #170600 0%,
    rgba(26, 10, 5, 0.97) 32%,
    var(--bg-mid) 100%
  );
}

.marquee-track {
  overflow: hidden;
  white-space: nowrap;
}

.marquee-content {
  display: inline-flex;
  animation: marquee-scroll 28s linear infinite;
  will-change: transform;
}

.marquee-text {
  display: inline-block;
  white-space: nowrap;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-white);
  padding-right: 56px;
}

.marquee-symbol {
  font-weight: 900;
  padding: 0 0.12em;
  background: var(--gold-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =============================================
   3. POSICIONAMENTO
   ============================================= */
.positioning {
  background: var(--bg-dark);
}

.positioning.section-pad {
  padding-top: clamp(76px, 11vw, 104px);
  padding-bottom: clamp(88px, 12vw, 112px);
}

.positioning__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 80px);
  align-items: start;
}

.positioning__left {
  max-width: 36rem;
}

.positioning__title {
  font-family: var(--font-sans);
  font-size: clamp(2.1rem, 9vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--text-white);
  letter-spacing: -0.035em;
  text-transform: none;
  text-shadow: none;
  overflow-wrap: break-word;
}

.positioning__title em,
.positioning__title .positioning__braba {
  font-style: normal;
  color: transparent;
  background: var(--gold-gradient);
  background-size: 120% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.positioning__left .label-gold {
  margin-bottom: clamp(18px, 3vw, 26px);
  letter-spacing: 0.28em;
  font-size: 0.78rem;
}

.positioning__right {
  max-width: 34rem;
}

.positioning__body {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 3.8vw, 1.08rem);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-muted);
  margin-top: 0;
}

.positioning__body + .positioning__body {
  margin-top: 1.25rem;
}

/* =============================================
   3.5 MANIFESTO / JARGÕES
   ============================================= */
.manifesto {
  background: var(--bg-mid);
  padding: 80px 0;
  border-top: 1px solid var(--border-card);
  border-bottom: 1px solid var(--border-card);
}

.manifesto__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.manifesto__item {
  flex: 1;
  min-width: 180px;
  text-align: center;
  padding: 20px 32px;
  position: relative;
}

.manifesto__label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: var(--gold-base);
  opacity: 0.6;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.manifesto__phrase {
  font-family: 'Cinzel Decorative', 'Cinzel', 'Marcellus SC', serif;
  font-size: clamp(1.3rem, 2.2vw, 2.1rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.manifesto__phrase em {
  font-style: normal;
  color: transparent;
  background: var(--gold-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.manifesto__divider {
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--border-gold), transparent);
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .manifesto { padding: 56px 0; }

  .manifesto__grid { flex-direction: column; gap: 0; }

  .manifesto__item { padding: 24px 20px; width: 100%; min-width: unset; }

  .manifesto__divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-gold), transparent);
  }

  .manifesto__phrase { font-size: clamp(2rem, 9vw, 3rem); }
}

/* =============================================
   4. LOCAL / DATA — imagem arte (mobile-safe: sem fade-up invisível)
   ============================================= */
.location-img-section {
  width: 100%;
  background: #170600;
  overflow: hidden;
  padding: clamp(12px, 3vw, 40px) 0;
}

.location-img-wrapper {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  /* Reserva espaço até o carregamento (evita colapso em redes lentas) */
  min-height: 160px;
}

.location-img {
  display: block;
  position: relative;
  z-index: 0;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

/* overlay: funde topo e base na cor da página */
.location-img-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    linear-gradient(
      to bottom,
      #170600 0%,
      rgba(23, 6, 0, 0.45) 8%,
      rgba(23, 6, 0, 0) 22%,
      rgba(23, 6, 0, 0) 76%,
      rgba(23, 6, 0, 0.2) 88%,
      rgba(23, 6, 0, 0.55) 96%,
      #170600 100%
    );
}

@media (min-width: 768px) {
  .location-img-section {
    padding: clamp(32px, 5vw, 64px) 0;
  }
}

@media (min-width: 1025px) {
  .location-img-section {
    padding: clamp(40px, 6vw, 80px) 0;
  }
}

/* =============================================
   4-OLD STUBS (removidos — manter vazio para não quebrar referências)
   ============================================= */
.location {
  background: var(--bg-mid);
}

.location__city-bg {
  position: relative;
  height: 340px;
  overflow: hidden;
}

.location__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%) brightness(0.35);
}

.location__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(22, 6, 0, 0.3), rgba(22, 6, 0, 0.82));
}

.location__city-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
}

.location__icon {
  width: 36px;
  height: 36px;
  color: var(--gold-champagne);
  margin-bottom: 4px;
}

.location__icon svg {
  width: 100%;
  height: 100%;
}

.location__city {
  font-family: 'Cinzel Decorative', 'Cinzel', 'Marcellus SC', serif;
  font-size: clamp(2.2rem, 6vw, 4.8rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--white);
  text-shadow: 0 0 40px rgba(0,0,0,0.8);
  text-transform: uppercase;
}

.location__venue {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-style: italic;
  color: transparent;
  background: var(--gold-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}

.location__reveal {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.location__info {
  background: var(--bg-mid);
  padding: 60px 0;
}

.location__cols {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.location__col {
  flex: 1;
  text-align: center;
  padding: 0 40px;
}

.location__divider {
  width: 1px;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--border-gold), transparent);
}

.location__label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  font-weight: 500;
  color: transparent;
  background: var(--gold-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.location__value {
  font-family: 'Cinzel Decorative', 'Cinzel', 'Marcellus SC', serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 8px;
}

.location__sub {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

.location__map-btn {
  text-align: center;
  margin-top: 40px;
}

.location__map-btn .btn--outline {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

/* =============================================
   5. PRA QUEM É
   ============================================= */
.forwhom {
  background: var(--bg-dark);
}

.forwhom__header {
  text-align: center;
  margin-bottom: clamp(40px, 8vw, 64px);
}

.forwhom__headline {
  font-family: var(--font-sans);
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.12;
  margin-top: 12px;
  letter-spacing: -0.03em;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: clamp(20px, 4.5vw, 32px) clamp(18px, 4vw, 28px);
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(180, 140, 88, 0.06) 0%, transparent 58%);
  opacity: 0;
  transition: var(--transition);
}

.card:hover {
  border-color: var(--border-gold);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.38), 0 0 20px rgba(180, 130, 70, 0.06);
}

.card:hover::before {
  opacity: 1;
}

.card--highlight {
  border-color: var(--border-gold-strong);
  box-shadow: 0 0 28px rgba(32, 20, 10, 0.35), 0 0 0 1px rgba(200, 168, 118, 0.12);
}

.card__num {
  display: block;
  font-family: var(--font-sans);
  font-size: clamp(2.65rem, 10.5vw, 3.6rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
  background: var(--gold-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.card__title {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
}

.card__text {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.6;
}

.forwhom__closing {
  text-align: center;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 600;
  color: var(--off-white);
  line-height: 1.6;
}

/* =============================================
   6. IMAGEM DE IMPACTO — mobile first
   ============================================= */
.impact {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  line-height: 0;
  background: var(--bg-dark);
  display: block;
}

.impact__bg {
  position: relative;
  width: 100%;
}

/* mobile: imagem flui na proporção original */
.impact__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center top;
}

/* fade inferior — integra com lotes / fundo */
.impact__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(72px, 32%, 200px);
  min-height: 56px;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(23, 6, 0, 0) 0%,
    rgba(23, 6, 0, 0.08) 28%,
    rgba(23, 6, 0, 0.45) 62%,
    rgba(23, 6, 0, 0.88) 88%,
    var(--bg-dark) 100%
  );
}

/* desktop: altura controlada para não ficar muito alta */
@media (min-width: 1025px) {
  .impact__img {
    max-height: 85vh;
    object-fit: cover;
    object-position: center 20%;
  }
}

/* =============================================
   7. LOTES / PREÇOS — mobile first
   ============================================= */

.lotes-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-deepest) 100%);
  padding: clamp(48px, 8vw, 100px) 16px;
  margin-top: -2px;
}

.lotes-inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}

.lotes-header {
  text-align: center;
  margin-bottom: clamp(44px, 7vw, 64px);
}

.lotes-header .label-gold {
  margin-bottom: clamp(22px, 4vw, 38px);
  letter-spacing: 0.26em;
}

.lotes-title {
  font-family: var(--font-sans);
  font-size: clamp(1.6rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-white);
  margin-top: 0;
  line-height: 1.08;
}

.lotes-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.lote-card {
  width: 100%;
  max-width: 380px;
  background: var(--bg-brown);
  border: 1px solid var(--border-gold-soft);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.lote-card--featured {
  border-color: var(--border-gold-strong);
  box-shadow: 0 0 40px rgba(28, 16, 6, 0.5), 0 0 0 1px rgba(220, 190, 150, 0.08) inset;
}

/* 3º lote — card mais escuro, selo legível */
.lote-card--soon {
  background: linear-gradient(180deg, #150802 0%, #0a0301 100%);
  border-color: rgba(140, 100, 55, 0.28);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.45) inset;
}
.lote-card--soon .lote-price__value {
  font-size: clamp(2.2rem, 8vw, 3.4rem);
}

.lote-card--disabled {
  opacity: 1;
  pointer-events: none;
  position: relative;
}

/* 1º lote: desfocado — 3º usa regra específica abaixo (sem blur) */
.lote-card--disabled:not(.lote-card--soon) .lote-card__head,
.lote-card--disabled:not(.lote-card--soon) .lote-card__body {
  opacity: 0.32;
  filter: blur(1.1px);
  user-select: none;
}

.lote-card--soon.lote-card--disabled .lote-card__head,
.lote-card--soon.lote-card--disabled .lote-card__body {
  opacity: 0.5;
  filter: none;
  user-select: none;
}

.lote-card__head {
  background: rgba(60, 30, 10, 0.7);
  padding: 16px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border-gold-soft);
}

.lote-card__head h3 {
  font-family: var(--font-sans);
  font-size: clamp(1.4rem, 5vw, 1.9rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0;
  line-height: 1;
  color: transparent;
  background: var(--gold-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lote-card__head--featured { background: rgba(80, 43, 14, 0.85); }
.lote-card__head--featured h3 {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lote-card__body {
  padding: clamp(18px, 4.5vw, 24px) clamp(18px, 4vw, 22px) clamp(16px, 4vw, 22px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  gap: 12px;
}

.lote-period {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(72, 44, 20, 0.55);
  border: 1px solid var(--border-gold-soft);
  color: var(--gold-champagne);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 4px;
}

.lote-period--muted { background: rgba(255,255,255,0.05); color: var(--text-muted); }
.lote-period--soon  { background: rgba(100,55,15,0.4); color: var(--text-muted); }

.lote-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
}

.lote-price__currency {
  font-size: clamp(1.4rem, 4vw, 1.8rem);
  font-weight: 900;
  color: var(--text-muted);
  line-height: 1;
}

.lote-price__value {
  font-size: clamp(2.8rem, 9vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--white);
  line-height: 0.9;
}

.lote-price--featured .lote-price__currency,
.lote-price--featured .lote-price__value {
  background: var(--gold-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lote-payment { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

.lote-benefits {
  width: 100%;
  list-style: none;
  padding: 12px 0;
  margin: 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.lote-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.lote-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 5px;
  font-size: 0.7rem;
  color: var(--text-dim);
  flex-shrink: 0;
}

.lote-check--green { border-color: rgba(82,220,100,0.4); color: #52dc64; }

.lote-btn {
  width: 100%;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-gradient);
  color: #0c0604;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  border: 1px solid rgba(255, 236, 210, 0.35);
  box-shadow: var(--shadow-gold-btn);
  transition: filter 0.25s ease, transform 0.25s ease;
}

.lote-btn:hover { filter: brightness(1.07); transform: translateY(-2px); }

.lote-payment-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  opacity: 0.55;
}

.lote-payment-icons span {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 3px 7px;
  border-radius: 3px;
}

.lote-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lote-status--closed { background: rgba(180,30,30,0.15); border: 1px solid rgba(220,60,60,0.3); color: #e05555; }
.lote-status--soon   { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); color: var(--text-dim); }

/* ── overlay badge centralizado sobre card desabilitado ── */
.lote-overlay-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
}

.lote-overlay-badge--closed {
  background: rgba(140, 20, 20, 0.92);
  border: 1px solid rgba(220, 60, 60, 0.6);
  color: #ff7070;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.lote-overlay-badge--soon {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  min-width: unset;
  background: rgba(8, 4, 2, 0.94);
  border: 1px solid rgba(200, 160, 100, 0.35);
  border-radius: 8px;
  white-space: nowrap;
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.45);
  color: var(--gold-honey);
  text-transform: none;
}

.lote-overlay-badge__icon-soon {
  flex-shrink: 0;
  align-self: center;
  color: var(--gold-champagne);
  opacity: 0.95;
  display: block;
}

.lote-overlay-badge__soon-title {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.lotes-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
  text-align: center;
}

.lotes-footer span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.lotes-footer__dot { color: rgba(196, 168, 120, 0.5) !important; letter-spacing: 0 !important; }

/* desktop */
@media (min-width: 768px) {
  .lotes-section { padding: 80px 32px; }
  .lotes-grid { flex-direction: row; align-items: stretch; justify-content: center; gap: 20px; }
  .lote-card { max-width: none; flex: 1; }
  .lote-card--featured { transform: scale(1.04); z-index: 1; }
}

/* Respiro entre impacto e “PAGUE PRA VER” — mais curto no mobile */
.pricing--after-impact {
  padding-top: clamp(32px, 8vw, 96px) !important;
  margin-top: 0;
}

.pricing__header {
  text-align: center;
  margin-bottom: 60px;
}

.pricing__headline {
  font-family: var(--font-sans);
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-top: 8px;
  line-height: 1.08;
}

.pricing__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 48px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-card--closed {
  opacity: 0.5;
  filter: blur(0.3px);
}

.pricing-card--featured {
  border-color: var(--border-gold-strong);
  background: #200f04;
  box-shadow: 0 0 48px rgba(28, 16, 8, 0.4), var(--shadow-card);
  transform: scale(1.04);
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(100, 60, 20, 0.9);
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  padding: 4px 16px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

.pricing-card__badge--active {
  background: var(--gold-gradient);
  color: #0c0604;
  border: 1px solid rgba(255, 236, 210, 0.35);
}

.pricing-card__lot {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-top: 8px;
  color: transparent;
  background: var(--gold-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-card__period {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.pricing-card__period-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(100, 72, 40, 0.35);
  border: 1px solid var(--border-gold-soft);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-champagne);
  margin: 0 auto;
}

.pricing-card__period-pill--soon {
  background: rgba(100, 72, 40, 0.2);
  color: var(--text-muted);
  border-color: var(--border-gold-soft);
}

.pricing-card__status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-sm);
  padding: 13px 20px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 4px;
}

.pricing-card__status--closed {
  background: rgba(180, 30, 30, 0.15);
  border: 1px solid rgba(220, 60, 60, 0.3);
  color: #e05555;
}

.pricing-card__status--soon {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-dim);
}

.pricing-card__price {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1;
}

.pricing-card--featured .pricing-card__price {
  background: var(--gold-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
}

.pricing-card__type {
  font-size: 0.78rem;
  color: var(--text-dim);
}

.pricing-card__list {
  text-align: left;
  padding: 12px 0;
  border-top: 1px solid var(--border-card);
  border-bottom: 1px solid var(--border-card);
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 4px 0;
}

.pricing-card__list li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-left: 24px;
  position: relative;
}

.pricing-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold-honey);
  font-weight: 700;
}

.pricing-card .btn {
  width: 100%;
  margin-top: 4px;
}

.pricing-card__payment-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}

.pricing-card__payment-icons span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 3px 8px;
  border-radius: 4px;
}

.pricing__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
  flex-wrap: wrap;
}

.pricing__footer span {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.pricing__dot {
  color: var(--border-gold) !important;
  letter-spacing: 0 !important;
}

/* =============================================
   8. SOBRE
   ============================================= */
.about {
  background: var(--bg-dark);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__left {
  max-width: min(36rem, 100%);
}

.about__name {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  font-style: normal;
  color: var(--text-white);
  margin-bottom: 28px;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.about__bio {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.78;
  margin-bottom: 1.15rem;
}

.about__bio em {
  font-style: italic;
  font-weight: 600;
  color: var(--gold-champagne);
}

.about__bio strong {
  font-weight: 700;
  color: transparent;
  background: var(--gold-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about__bio:last-of-type {
  margin-bottom: 0;
}

.about__img-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__img {
  width: 100%;
  max-width: 480px;
  height: 560px;
  object-fit: cover;
  object-position: center top;
  border-radius: 12px;
  border: none;
  box-shadow: none;
  position: relative;
  z-index: 1;
  display: block;
}

/* =============================================
   9. RODAPÉ
   ============================================= */
.footer {
  background: var(--bg-deepest);
  border-top: 1px solid var(--border-card);
  padding: clamp(28px, 6vw, 40px) 0 clamp(32px, 7vw, 48px);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.footer__icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(217, 164, 65, 0.35);
  color: var(--gold-solid);
  background: rgba(255, 255, 255, 0.03);
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.footer__icon-link:hover {
  color: var(--gold-light);
  border-color: rgba(244, 200, 120, 0.5);
  background: rgba(217, 164, 65, 0.08);
  transform: translateY(-2px);
}

.footer__icon-link svg {
  flex-shrink: 0;
}

.footer__copy {
  font-size: 0.76rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-align: center;
  max-width: 100%;
  line-height: 1.55;
}

.footer__copy a {
  color: var(--gold-base);
  transition: var(--transition);
}

.footer__copy a:hover {
  color: var(--gold-mid);
}

/* =============================================
   PLACEHOLDER DE IMAGENS
   ============================================= */
.hero__visual,
.impact__bg,
.location__city-bg,
.about__img-wrapper {
  position: relative;
}

.hero__img,
.location__bg-img {
  min-height: 100%;
  width: 100%;
  height: 100%;
}

/* =============================================
   RESPONSIVO — TABLET (768px–1024px)
   ============================================= */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .section-pad { padding: 80px 0; }

  .positioning__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .about__img {
    max-width: 100%;
    height: 440px;
  }

  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card--featured {
    transform: scale(1);
  }
}

/* =============================================
   RESPONSIVO — MOBILE (< 768px)
   ============================================= */
@media (max-width: 767px) {
  :root {
    font-size: 15px;
  }

  .container { padding: 0 20px; }
  .section-pad { padding: clamp(52px, 12vw, 64px) 0; }

  .location-img-section {
    padding: clamp(8px, 2vw, 24px) 0;
  }

  .desktop-only { display: none; }

  /* Hero mobile: imagem menor, conteúdo flui abaixo */
  .hero {
    min-height: unset;
    justify-content: flex-start;
    overflow: visible;
  }

  /* visual sai do absolute — vira bloco no fluxo */
  .hero__visual {
    position: relative;
    inset: unset;
    width: 100%;
    height: auto;
    flex-shrink: 0;
  }

  /* imagem com zoom suave — sem blur, corte limpo */
  .hero__img {
    width: 100%;
    height: 78vw;
    max-height: 360px;
    object-fit: cover;
    object-position: center 8%;
    aspect-ratio: unset;
    display: block;
  }

  /* overlay mobile — funde a base extra escura da nova imagem */
  .hero__overlay {
    display: block;
    background: linear-gradient(
      to bottom,
      transparent 75%,
      rgba(22, 6, 0, 0.5) 88%,
      #170600 100%
    );
  }

  /* conteúdo colado na imagem */
  .hero__content {
    position: relative;
    z-index: 1;
    background: var(--bg-dark);
    padding: 0 24px 48px;
    margin-top: -18px;
  }

  .hero__meta {
    gap: 0 14px;
    margin-bottom: 18px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero__meta-item {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
  }

  .hero__headline {
    font-size: clamp(1.25rem, 5.2vw, 1.65rem);
    text-align: center;
    margin-bottom: 10px;
  }

  .hero__sub {
    font-size: 0.88rem;
    margin-bottom: 24px;
  }

  .btn { padding: 16px 28px; font-size: 0.82rem; }

  .btn--primary,
  section .btn--primary {
    width: 100%;
    max-width: 400px;
  }

  /* Marquee mobile */
  .marquee-wrapper {
    transform: rotate(-0.75deg);
    padding: 8px 0 7px;
    margin: -2px 0 0;
  }

  .marquee-text {
    font-size: 0.82rem;
    letter-spacing: 0.12em;
  }

  /* Posicionamento mobile */
  .positioning.section-pad {
    padding-top: clamp(52px, 11vw, 72px);
    padding-bottom: clamp(60px, 12vw, 84px);
  }

  .positioning__grid {
    grid-template-columns: 1fr;
    gap: clamp(24px, 6vw, 36px);
  }

  .positioning__left,
  .positioning__right {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .positioning__title {
    font-size: clamp(1.52rem, 7.2vw, 2.55rem);
    text-align: center;
    line-height: 1.1;
    letter-spacing: -0.03em;
  }

  /* garante 3 linhas limpas no mobile */
  .positioning__title br { display: block; }

  .positioning__left .label-gold {
    margin-bottom: 1rem;
    letter-spacing: 0.24em;
  }

  /* Local mobile */
  .location__city-bg { height: 240px; }
  .location__city { font-size: clamp(2.2rem, 12vw, 4rem); }

  .location__info { padding: 48px 0; }

  .location__cols { flex-direction: column; gap: 32px; }

  .location__divider {
    width: 80px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-gold), transparent);
  }

  /* Cards mobile */
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: clamp(40px, 10vw, 56px);
  }

  .forwhom__header {
    margin-bottom: clamp(32px, 8vw, 48px);
  }

  .forwhom__headline {
    font-size: clamp(1.22rem, 5.2vw, 1.72rem);
    text-align: center;
  }

  .forwhom__closing { font-size: 1rem; }

  /* Impact mobile — colado à faixa de preços, fade só na base */
  .impact {
    min-height: unset;
    margin-bottom: 0;
  }

  .pricing--after-impact {
    padding-top: clamp(16px, 5vw, 40px) !important;
    margin-top: 0;
  }

  .impact__overlay {
    height: clamp(64px, 28%, 160px);
    background: linear-gradient(
      to bottom,
      rgba(23, 6, 0, 0) 0%,
      rgba(23, 6, 0, 0.12) 35%,
      rgba(23, 6, 0, 0.55) 72%,
      rgba(23, 6, 0, 0.92) 92%,
      var(--bg-dark) 100%
    );
  }

  .impact__content { padding: 40px 20px 60px; }

  .impact__text { font-size: clamp(2.2rem, 10vw, 3.5rem); }

  /* Preços mobile */
  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .pricing-card--featured { transform: none; }

  .pricing-card { padding: 32px 24px; }

  .pricing-card .btn--primary { max-width: 100%; width: 100%; }

  /* Lotes / preços — mobile mais compacto e premium */
  .lotes-section {
    padding-top: clamp(36px, 9vw, 56px);
    padding-bottom: clamp(44px, 11vw, 72px);
    padding-left: 20px;
    padding-right: 20px;
  }

  .lotes-header {
    margin-bottom: clamp(32px, 8vw, 52px);
  }

  .lotes-header .label-gold {
    margin-bottom: clamp(18px, 5vw, 32px);
  }

  .lotes-title {
    line-height: 1.12;
    padding: 0 4px;
  }

  .lotes-grid {
    gap: clamp(24px, 6vw, 32px);
  }

  .lotes-footer {
    margin-top: clamp(36px, 9vw, 48px);
  }

  /* Sobre mobile */
  .about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__right { order: -1; }

  .about__img {
    height: 380px;
    max-width: 100%;
  }

  .about__name { text-align: center; }
  .label-gold { text-align: center; }
  .about__bio { text-align: center; }

  .about__left { display: flex; flex-direction: column; align-items: center; }

  .footer__inner {
    gap: 18px;
    padding: 0 4px;
  }

  .footer__icon-link {
    width: 46px;
    height: 46px;
  }
}
