/* ════════════════════════════════════════════════════════
   PADILHA MADEIRA — Design System
   Paleta extraída dos criativos da campanha Caixa 300x
   ════════════════════════════════════════════════════════ */

:root {
  /* Cores */
  --c-bg-deep:    #0F0C0A;   /* preto-terra (background principal) */
  --c-bg-soft:    #1F1B17;   /* terra escuro */
  --c-bg-card:    #2A2520;   /* card sobre dark */
  --c-bg-light:   #F8F4ED;   /* creme (light sections) */
  --c-bg-cream:   #E8DCC4;   /* areia */

  --c-accent:     #C8742C;   /* laranja queimado — primário */
  --c-accent-hi:  #E8902F;   /* laranja claro hover */
  --c-accent-lo:  #8B4F1E;   /* laranja escuro pressed */

  --c-green:      #A8C547;   /* verde — disponível */
  --c-green-deep: #6B8A2A;
  --c-yellow:     #E8B53C;   /* amarelo — reservado */
  --c-red:        #C44537;   /* (uso pontual) */

  --c-text:       #F8F4ED;
  --c-text-mute:  rgba(248, 244, 237, 0.62);
  --c-text-soft:  rgba(248, 244, 237, 0.78);
  --c-text-dark:  #1F1B17;

  --c-border:     rgba(248, 244, 237, 0.08);
  --c-border-strong: rgba(248, 244, 237, 0.16);

  /* Tipografia */
  --ff-display: 'DM Serif Display', Georgia, serif;
  --ff-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Espaçamento — container preenche a tela (até 92vw) mas
     elementos internos mantêm tamanhos originais. Em monitores
     ultrawide 3440px+, o container chega a ~3160px de largura. */
  --container: 92vw;
  --pad-x: clamp(20px, 4vw, 48px);

  /* Sombra */
  --shadow-md: 0 8px 24px rgba(0,0,0,.35);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.45);
  --shadow-glow: 0 0 0 1px rgba(200,116,44,.4), 0 12px 40px rgba(200,116,44,.18);

  /* Easing */
  --ease: cubic-bezier(.2,.8,.2,1);
}

/* ════════════════════════════════════════════════════════
   RESET + BASE
   ════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 14px;
  line-height: 1.55;
  color: var(--c-text);
  background: var(--c-bg-deep);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--pad-x);
}

/* ════════════════════════════════════════════════════════
   TIPOGRAFIA
   ════════════════════════════════════════════════════════ */
.kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 18px;
}
.kicker--light { color: var(--c-text-soft); }

.section-title {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(32px, 5.1vw, 61px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 0 0 22px;
  color: var(--c-text);
}
.section-sub {
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.55;
  color: var(--c-text-soft);
  max-width: 720px;
  margin: 0;
}
.text-accent { color: var(--c-accent); font-style: italic; }

/* ════════════════════════════════════════════════════════
   NAV
   ════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(15, 12, 10, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--c-border);
  transition: background .3s var(--ease);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__brand img { width: 40px; height: auto; filter: drop-shadow(0 2px 6px rgba(0,0,0,.4)); }
.nav__brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav__brand-text strong {
  font-weight: 800;
  font-size: 16px;
  letter-spacing: .02em;
}
.nav__brand-text em {
  font-style: normal;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--c-text-mute);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 32px);
  font-size: 15px;
  font-weight: 500;
}
.nav__links > a {
  color: var(--c-text-soft);
  transition: color .2s var(--ease);
}
.nav__links > a:hover { color: var(--c-text); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--c-accent);
  color: var(--c-text-dark) !important;
  font-weight: 700;
  letter-spacing: .02em;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.nav__cta:hover { background: var(--c-accent-hi); transform: translateY(-1px); }
.nav__cta-icon {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #1f1b17;
  box-shadow: 0 0 0 4px rgba(31,27,23,.25);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(31,27,23,.0); }
  50%      { box-shadow: 0 0 0 6px rgba(31,27,23,.45); }
}

@media (max-width: 760px) {
  .nav__links > a:not(.nav__cta) { display: none; }
  .nav__brand-text em { display: none; }
}

/* ════════════════════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-family: var(--ff-body);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .01em;
  cursor: pointer;
  transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}
.btn--xl { padding: 18px 32px; font-size: 18px; }
.btn--primary {
  background: var(--c-accent);
  color: var(--c-text-dark);
  box-shadow: var(--shadow-glow);
}
.btn--primary:hover { background: var(--c-accent-hi); transform: translateY(-2px); }
.btn--secondary {
  background: var(--c-green);
  color: var(--c-text-dark);
}
.btn--secondary:hover { background: #b8d652; transform: translateY(-2px); }
.btn--ghost {
  background: transparent;
  color: var(--c-text);
  border-color: var(--c-border-strong);
}
.btn--ghost:hover {
  background: rgba(248,244,237,.05);
  border-color: var(--c-text-soft);
}

/* Acessibilidade — foco visível em tudo que é interativo */
:where(.btn, .chip, .nav__cta, .nav__links a, .footer__col a, .sticky-wa, .faq__q):focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 3px;
  border-radius: 8px;
}
.lot:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 2px;
}

/* ════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 112px 0 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(200,116,44,.18), transparent 55%),
    linear-gradient(180deg, #0F0C0A 0%, #1a1410 60%, #251a12 100%);
}
.hero__sun {
  position: absolute;
  top: 18%;
  right: 12%;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,144,47,.45) 0%, rgba(200,116,44,.0) 65%);
  filter: blur(2px);
  animation: sunPulse 8s ease-in-out infinite;
  will-change: transform, opacity;
}
@keyframes sunPulse {
  0%, 100% { transform: scale(1);   opacity: .9; }
  50%      { transform: scale(1.1); opacity: 1; }
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(248,244,237,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248,244,237,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 60%, black, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 60%, black, transparent 70%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--c-border-strong);
  background: rgba(255,255,255,.03);
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text-soft);
  letter-spacing: .02em;
  margin-bottom: 28px;
}
.dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c-text-mute);
}
.dot--live {
  background: var(--c-green);
  box-shadow: 0 0 0 0 rgba(168,197,71,.7);
  animation: livePulse 2s infinite;
}
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(168,197,71,.7); }
  70%  { box-shadow: 0 0 0 10px rgba(168,197,71,0); }
  100% { box-shadow: 0 0 0 0 rgba(168,197,71,0); }
}

.hero__title {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(43px, 7.2vw, 99px);
  line-height: .98;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
  color: var(--c-text);
}
.hero__accent { color: var(--c-accent); font-style: italic; }

.hero__sub {
  font-size: clamp(14px, 1.6vw, 18px);
  line-height: 1.5;
  color: var(--c-text-soft);
  max-width: 640px;
  margin: 0 0 40px;
}
.hero__sub strong { color: var(--c-text); font-weight: 600; }

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 64px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 24px 32px;
  padding-top: 40px;
  border-top: 1px solid var(--c-border);
  max-width: 800px;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat strong {
  font-family: var(--ff-display);
  font-size: clamp(29px, 3.2vw, 38px);
  line-height: 1;
  color: var(--c-accent);
  font-weight: 400;
}
.stat span {
  font-size: 13px;
  color: var(--c-text-mute);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px; height: 36px;
  border: 2px solid var(--c-text-mute);
  border-radius: 14px;
}
.hero__scroll span {
  display: block;
  width: 3px; height: 8px;
  margin: 6px auto 0;
  background: var(--c-accent);
  border-radius: 2px;
  animation: scrollDown 1.6s infinite;
}
@keyframes scrollDown {
  0%   { transform: translateY(0);  opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

/* ════════════════════════════════════════════════════════
   MAPA INTERATIVO
   ════════════════════════════════════════════════════════ */
.mapa {
  padding: 80px 0 96px;
  background: linear-gradient(180deg, var(--c-bg-deep) 0%, var(--c-bg-soft) 100%);
  position: relative;
}
.mapa__header { max-width: 760px; margin-bottom: 56px; }

.mapa__controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 36px;
}
.mapa__legend { display: flex; flex-wrap: wrap; gap: 18px; }
.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--c-text-soft);
  font-weight: 500;
}
.legend-item em {
  font-style: normal;
  color: var(--c-text-mute);
  font-size: 12px;
  font-weight: 700;
  padding: 2px 8px;
  background: rgba(255,255,255,.06);
  border-radius: 999px;
  margin-left: 4px;
}
.legend-swatch {
  width: 14px; height: 14px;
  border-radius: 4px;
  display: inline-block;
}
.legend--ok   { background: var(--c-green); box-shadow: 0 0 0 1px rgba(168,197,71,.3); }
.legend--paid { background: #8B5CF6;        box-shadow: 0 0 0 1px rgba(139,92,246,.3); }
.legend--sold { background: #4a4239;        box-shadow: 0 0 0 1px rgba(255,255,255,.08); }

.mapa__filters { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--c-border-strong);
  color: var(--c-text-soft);
  padding: 8px 16px;
  border-radius: 999px;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all .2s var(--ease);
}
.chip:hover { color: var(--c-text); border-color: var(--c-text-soft); }
.chip--active {
  background: var(--c-accent);
  color: var(--c-text-dark);
  border-color: var(--c-accent);
}

.mapa__viewport {
  position: relative;
  background: transparent;
  border: 1px solid var(--c-border);
  border-radius: 16px;
  overflow: hidden;
}
.mapa__live {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(15, 12, 10, .82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--c-border-strong);
  border-radius: 999px;
  font-size: 12px;
  color: var(--c-text-soft);
  font-weight: 600;
  letter-spacing: .02em;
}
.mapa__live strong { color: var(--c-text); font-variant-numeric: tabular-nums; }

.mapa__compass {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--c-accent);
  background: rgba(15,12,10,.82);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  color: var(--c-accent);
}

.mapa__svg {
  width: 100%;
  height: auto;
  display: block;
  cursor: grab;
  user-select: none;
}
.lot {
  cursor: pointer;
  transition: filter .15s var(--ease), opacity .3s var(--ease), stroke-width .15s var(--ease);
}
.lot:hover { filter: brightness(1.5); stroke-width: 1.4 !important; }
.lot--filtered { opacity: 0.12; pointer-events: none; }
.lot--just-changed { animation: lotPop 1.2s var(--ease); }
@keyframes lotPop {
  0%   { filter: brightness(3) drop-shadow(0 0 6px var(--c-accent)); }
  100% { filter: brightness(1); }
}

.mapa__tooltip {
  position: absolute;
  z-index: 5;
  pointer-events: none;
  background: var(--c-bg-card);
  border: 1px solid var(--c-accent);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 13px;
  min-width: 220px;
  box-shadow: var(--shadow-md);
  transition: opacity .15s var(--ease);
}
.tooltip__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.tooltip__head strong { font-size: 15px; color: var(--c-text); }
.tooltip__status {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
}
.tooltip__status[data-s="ok"]   { background: var(--c-green);  color: var(--c-text-dark); }
.tooltip__status[data-s="res"]  { background: var(--c-yellow); color: var(--c-text-dark); }
.tooltip__status[data-s="sold"] { background: #4a4239;         color: var(--c-text); }
.tooltip__body { display: flex; justify-content: space-between; color: var(--c-text-soft); }
.tooltip__hint {
  display: block;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px dashed var(--c-border-strong);
  color: var(--c-accent);
  font-size: 11px;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 700;
}

.mapa__feed {
  margin-top: 32px;
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: 14px;
  padding: 24px;
}
.feed__head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.feed__head strong {
  color: var(--c-accent-hi);
  letter-spacing: .04em;
  font-size: 13px;
  text-transform: uppercase;
}
.feed__head span { color: var(--c-text-mute); font-size: 13px; }
.feed__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 220px;
  overflow-y: auto;
}
.feed__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(255,255,255,.02);
  border-left: 3px solid var(--c-accent);
  border-radius: 6px;
  font-size: 14px;
  color: var(--c-text-soft);
  animation: feedIn .4s var(--ease);
}
@keyframes feedIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.feed__item time {
  color: var(--c-text-mute);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  margin-left: auto;
  flex-shrink: 0;
}
.feed__item--placeholder {
  font-style: italic;
  color: var(--c-text-mute);
  border-left-color: transparent;
  background: transparent;
}

/* ════════════════════════════════════════════════════════
   EMPREENDIMENTOS
   ════════════════════════════════════════════════════════ */
.empreendimentos {
  padding: 96px 0;
  background: var(--c-bg-deep);
}
.emp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 32px;
  margin-top: 56px;
}
.emp-grid--single {
  grid-template-columns: minmax(0, 820px);
  justify-content: center;
}
.emp-card {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: 18px;
  padding: 29px;
  position: relative;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.emp-card:hover { transform: translateY(-4px); border-color: var(--c-border-strong); }
.emp-card--feature {
  background: linear-gradient(160deg, var(--c-bg-card) 0%, #2e1f12 100%);
  border-color: rgba(200,116,44,.4);
  box-shadow: var(--shadow-glow);
}
.emp-card__tag {
  display: inline-block;
  background: var(--c-accent);
  color: var(--c-text-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.emp-card__tag--alt { background: var(--c-green); }
.emp-card h3 {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.05;
  margin: 0 0 14px;
}
.emp-card__lead {
  color: var(--c-text-soft);
  font-size: 16px;
  margin: 0 0 22px;
}
.emp-card__features {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.emp-card__features li {
  font-size: 15px;
  color: var(--c-text-soft);
}
.emp-card__features li strong { color: var(--c-text); }
.emp-card__ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.emp-card__disclaimer {
  display: block;
  margin-top: 18px;
  font-size: 12px;
  color: var(--c-text-mute);
  font-style: italic;
}

/* ════════════════════════════════════════════════════════
   POR QUE A GENTE
   ════════════════════════════════════════════════════════ */
.porque {
  padding: 96px 0;
  background: var(--c-bg-soft);
  border-top: 1px solid var(--c-border);
}
.porque-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 56px;
}
.porque-card {
  background: var(--c-bg-deep);
  border: 1px solid var(--c-border);
  border-radius: 14px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.porque-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 0;
  background: var(--c-accent);
  transition: height .3s var(--ease);
}
.porque-card:hover::before { height: 100%; }
.porque-card__num {
  font-family: var(--ff-display);
  font-size: 56px;
  line-height: 1;
  color: var(--c-accent-hi);
  opacity: .85;
  margin-bottom: 16px;
}
.porque-card h3 {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.1;
  margin: 0 0 12px;
}
.porque-card p {
  font-size: 14.5px;
  color: var(--c-text-soft);
  margin: 0;
  line-height: 1.55;
}

/* ════════════════════════════════════════════════════════
   CTA FINAL
   ════════════════════════════════════════════════════════ */
.cta-final {
  padding: 96px 0;
  background:
    radial-gradient(ellipse at center, rgba(200,116,44,.18), transparent 65%),
    var(--c-bg-deep);
  position: relative;
}
.cta-final__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.cta-final__title {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(42px, 6.4vw, 77px);
  line-height: 1;
  margin: 16px 0 24px;
}
.cta-final__sub {
  font-size: clamp(14px, 1.6vw, 16px);
  color: var(--c-text-soft);
  margin: 0 0 36px;
}
.cta-final__buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════ */
.footer {
  background: #07060a;
  border-top: 1px solid var(--c-border);
  padding: 64px 0 24px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 36px 24px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--c-border);
}
@media (max-width: 800px) {
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer__inner { grid-template-columns: 1fr; }
}

.footer__brand {
  display: flex;
  gap: 14px;
  align-items: center;
}
.footer__brand img { width: 50px; height: auto; }
.footer__brand div { display: flex; flex-direction: column; }
.footer__brand strong { font-weight: 800; font-size: 15px; line-height: 1.3; }
.footer__brand span { color: var(--c-text-mute); font-size: 13px; }

.footer__col h4 {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin: 0 0 14px;
  font-weight: 800;
}
.footer__col a {
  display: block;
  color: var(--c-text-soft);
  font-size: 14px;
  padding: 4px 0;
  transition: color .2s var(--ease);
}
.footer__col a:hover { color: var(--c-text); }

.footer__bottom { padding-top: 24px; }
.footer__bottom small {
  display: block;
  text-align: center;
  color: var(--c-text-mute);
  font-size: 12px;
  line-height: 1.6;
}

/* ════════════════════════════════════════════════════════
   STICKY FAB (WhatsApp + Instagram)
   ════════════════════════════════════════════════════════ */
.sticky-wa,
.sticky-ig {
  position: fixed;
  bottom: 24px;
  z-index: 60;
  width: 60px; height: 60px;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s var(--ease);
}
.sticky-wa {
  right: 24px;
  background: #25D366;
  box-shadow: 0 8px 24px rgba(37,211,102,.45);
  animation: waPulse 2.4s infinite;
}
.sticky-ig {
  right: 96px;
  background: linear-gradient(135deg, #FEDA75 0%, #FA7E1E 25%, #D62976 50%, #962FBF 75%, #4F5BD5 100%);
  box-shadow: 0 8px 24px rgba(214,41,118,.4);
}
.sticky-wa:hover,
.sticky-ig:hover { transform: scale(1.1); animation-play-state: paused; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,.5), 0 8px 24px rgba(37,211,102,.45); }
  50%      { box-shadow: 0 0 0 16px rgba(37,211,102,0), 0 8px 24px rgba(37,211,102,.45); }
}

/* ════════════════════════════════════════════════════════
   DOIS CAMINHOS (300x vs 60x)
   ════════════════════════════════════════════════════════ */
.caminhos {
  padding: 96px 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(168,197,71,.06), transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(200,116,44,.08), transparent 50%),
    var(--c-bg-deep);
}
.caminhos .section-sub { margin-bottom: 56px; }
.caminhos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}
.caminho-card {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: 18px;
  padding: 32px 29px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.caminho-card--feature {
  background: linear-gradient(165deg, #2e1f12 0%, var(--c-bg-card) 100%);
  border-color: rgba(200,116,44,.45);
  box-shadow: var(--shadow-glow);
}
.caminho-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  gap: 12px;
  flex-wrap: wrap;
}
.caminho-card__tag {
  background: var(--c-accent);
  color: var(--c-text-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  padding: 6px 12px;
  border-radius: 999px;
}
.caminho-card__tag--alt { background: var(--c-green); }
.caminho-card__brand {
  font-size: 12px;
  color: var(--c-text-mute);
  letter-spacing: .04em;
}
.caminho-card h3 {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(34px, 4vw, 46px);
  line-height: 1.05;
  margin: 0 0 12px;
}
.caminho-card__title-long {
  font-size: clamp(26px, 2.8vw, 34px) !important;
  line-height: 1.12 !important;
  margin-bottom: 6px !important;
}
.big-num {
  color: var(--c-accent);
  font-style: italic;
  white-space: nowrap;
}
.caminho-card__star {
  color: var(--c-accent);
  font-size: 0.6em;
  vertical-align: super;
  margin-left: 2px;
  font-style: italic;
}
.caminho-card__asterisco {
  display: block;
  margin: 0 0 18px;
  font-size: 12px;
  color: var(--c-text-mute);
  font-style: italic;
  letter-spacing: .02em;
}
.caminho-card__lead {
  color: var(--c-text-soft);
  font-size: 16px;
  margin: 0 0 22px;
}
.caminho-card__features {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.caminho-card__features li {
  font-size: 15px;
  color: var(--c-text-soft);
  padding-left: 22px;
  position: relative;
}
.caminho-card__features li::before {
  content: '✓';
  color: var(--c-accent);
  position: absolute;
  left: 0;
  font-weight: 800;
}
.caminho-card__features li strong { color: var(--c-text); font-weight: 600; }
.caminho-card__warn {
  display: block;
  margin-top: 14px;
  font-size: 12px;
  color: var(--c-text-mute);
  font-style: italic;
}

/* ════════════════════════════════════════════════════════
   EXTERIOR / NEWARK
   ════════════════════════════════════════════════════════ */
.exterior {
  padding: 96px 0;
  background:
    linear-gradient(180deg, var(--c-bg-deep) 0%, #14110e 100%);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  overflow: hidden;
}
.exterior__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: center;
}
.exterior__lead {
  font-size: clamp(14px, 1.4vw, 15px);
  color: var(--c-text-soft);
  line-height: 1.55;
  margin: 0 0 28px;
  max-width: 580px;
}
.exterior__lead strong { color: var(--c-text); font-weight: 600; }
.exterior__features {
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.exterior__features li {
  font-size: 15px;
  color: var(--c-text-soft);
  padding-left: 28px;
  position: relative;
  line-height: 1.5;
}
.exterior__features li::before {
  content: '→';
  color: var(--c-accent);
  position: absolute;
  left: 0;
  font-weight: 800;
}
.exterior__features li strong { color: var(--c-text); }

.exterior__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.globe {
  position: relative;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, #2a4d6e 0%, #14283d 60%, #0a1623 100%);
  box-shadow:
    inset -20px -20px 60px rgba(0,0,0,.5),
    0 24px 48px rgba(0,0,0,.4),
    0 0 0 1px var(--c-border-strong),
    0 0 80px rgba(200,116,44,.12);
  animation: globeRotate 60s linear infinite;
}
@keyframes globeRotate {
  0%   { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
.globe::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 25% 35%, rgba(168,197,71,.18) 0%, transparent 22%),
    radial-gradient(ellipse at 60% 55%, rgba(168,197,71,.18) 0%, transparent 18%),
    radial-gradient(ellipse at 75% 30%, rgba(168,197,71,.14) 0%, transparent 16%);
}
.globe__pin {
  position: absolute;
  width: 36px;
  height: 36px;
  background: var(--c-accent);
  color: var(--c-text-dark);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .04em;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(200,116,44,.5), 0 0 0 6px rgba(200,116,44,.18);
  animation: pinPulse 2s ease-in-out infinite;
  z-index: 2;
}
.globe__pin--us { top: 32%; left: 18%; }
.globe__pin--br { top: 58%; right: 22%; animation-delay: 1s; }
@keyframes pinPulse {
  0%, 100% { box-shadow: 0 4px 14px rgba(200,116,44,.5), 0 0 0 6px rgba(200,116,44,.18); }
  50%      { box-shadow: 0 4px 14px rgba(200,116,44,.7), 0 0 0 14px rgba(200,116,44,0); }
}
.globe__line {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* ════════════════════════════════════════════════════════
   DEPOIMENTOS
   ════════════════════════════════════════════════════════ */
.depoimentos {
  padding: 96px 0;
  background: var(--c-bg-soft);
}
.dep-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 56px;
}
.dep-card {
  background: var(--c-bg-deep);
  border: 1px solid var(--c-border);
  border-radius: 16px;
  padding: 36px 32px;
  margin: 0;
  position: relative;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.dep-card:hover { transform: translateY(-4px); border-color: var(--c-border-strong); }
.dep-card--featured {
  background: linear-gradient(160deg, var(--c-bg-card) 0%, #2e1f12 100%);
  border-color: rgba(200,116,44,.4);
}
.dep-card::before {
  content: '"';
  position: absolute;
  top: 8px;
  left: 22px;
  font-family: var(--ff-display);
  font-size: 96px;
  color: var(--c-accent);
  opacity: .25;
  line-height: 1;
}
.dep-card blockquote {
  margin: 0 0 24px;
  padding: 0;
  position: relative;
  z-index: 1;
}
.dep-card blockquote p {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  color: var(--c-text);
  font-style: italic;
}
.dep-card blockquote p strong { color: var(--c-accent); font-style: normal; font-weight: 700; }
.dep-card figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--c-border-strong);
}
.dep-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-accent), var(--c-accent-lo));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  color: var(--c-text-dark);
  letter-spacing: .04em;
  flex-shrink: 0;
}
.dep-card__who { display: flex; flex-direction: column; line-height: 1.3; }
.dep-card__who strong { font-size: 15px; font-weight: 700; }
.dep-card__who em {
  font-style: normal;
  color: var(--c-text-mute);
  font-size: 13px;
}

/* ════════════════════════════════════════════════════════
   FAQ
   ════════════════════════════════════════════════════════ */
.faq {
  padding: 96px 0;
  background: var(--c-bg-deep);
}
.faq__intro { max-width: 720px; margin-bottom: 56px; }
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 880px;
}
.faq__item {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .2s var(--ease);
}
.faq__item:hover { border-color: var(--c-border-strong); }
.faq__item[open] { border-color: rgba(200,116,44,.45); }
.faq__q {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 22px 26px;
  cursor: pointer;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 17px;
  color: var(--c-text);
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: '+';
  font-family: var(--ff-display);
  font-size: 28px;
  color: var(--c-accent);
  line-height: 1;
  transition: transform .25s var(--ease);
  flex-shrink: 0;
}
.faq__item[open] .faq__q::after { content: '−'; transform: rotate(180deg); }
.faq__a {
  padding: 0 26px 24px;
  color: var(--c-text-soft);
  font-size: 16px;
  line-height: 1.6;
}
.faq__a p { margin: 0; }
.faq__a a { color: var(--c-accent); text-decoration: underline; text-underline-offset: 3px; }

/* ════════════════════════════════════════════════════════
   PREFERÊNCIAS DE MOVIMENTO REDUZIDO
   ════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ════════════════════════════════════════════════════════
   RESPONSIVO
   ════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .exterior__inner { grid-template-columns: 1fr; gap: 48px; }
  .exterior__visual { order: -1; }
  .globe { width: 240px; height: 240px; }
}

@media (max-width: 640px) {
  .hero { padding: 110px 0 60px; min-height: auto; }
  .hero__sun { width: 240px; height: 240px; right: -40px; top: 8%; }
  .hero__stats { padding-top: 28px; gap: 18px; }
  .stat strong { font-size: 32px; }
  .mapa { padding: 70px 0 80px; }
  .mapa__header { margin-bottom: 36px; }
  .mapa__controls { flex-direction: column; align-items: flex-start; }
  .mapa__live { font-size: 11px; padding: 6px 10px; }
  .empreendimentos, .porque, .cta-final, .caminhos, .exterior, .depoimentos, .faq { padding: 64px 0; }
  .emp-card, .caminho-card, .dep-card { padding: 28px; }
  .caminho-card { padding: 32px 24px; }
  .faq__q { font-size: 16px; padding: 18px 20px; }
  .faq__a { padding: 0 20px 20px; }
  .sticky-wa,
  .sticky-ig { width: 52px; height: 52px; bottom: 16px; }
  .sticky-wa { right: 16px; }
  .sticky-ig { right: 80px; }
  .globe { width: 200px; height: 200px; }
  .globe__pin { width: 30px; height: 30px; font-size: 10px; }
}
