/* ============================================================
   Estratégia Patrimonial — linguagem visual inspirada na Rolex:
   imagem full-bleed, um enunciado por seção, tipografia confiante,
   botões em pílula, muito espaço negativo.
   Paleta: branco/preto neutro + verde profundo (confiança/crescimento).
   O dourado aparece SÓ em dois momentos de clímax — por isso significa algo.
   ============================================================ */
:root {
  --white: #FFFFFF;
  --off-white: #FAFAF9;
  --black: #0F0F0F;
  --near-black: #161616;
  --grey: #6B6B6B;
  --grey-mid: #8A8A88;
  --line: rgba(15, 15, 15, 0.1);
  --line-light: rgba(255, 255, 255, 0.16);

  --accent: #14532D;
  --accent-light: #1F7A42;
  --gold: #C8A961;
  --gold-light: #DFC286;

  --font: "Inter", Arial, sans-serif;
  --wrap: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  color: var(--black);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

h1, h2, h3 {
  font-weight: 800;
  letter-spacing: -0.022em;
  line-height: 1.1;
  margin: 0 0 0.45em;
  color: inherit;
}
h1 { font-size: clamp(2.1rem, 5.4vw, 4.2rem); }
h2 { font-size: clamp(1.85rem, 4vw, 3rem); }
h3 { font-size: 1.12rem; font-weight: 700; letter-spacing: -0.01em; }

p { margin: 0; }
strong { font-weight: 700; }

.hl { color: var(--gold-light); }

/* -------------------- Eyebrow -------------------- */
.eyebrow {
  display: block;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 1.1em;
}
.eyebrow--dark { color: var(--accent); }
.eyebrow--gold { color: var(--gold); }

/* -------------------- Ledes -------------------- */
.section-lede {
  max-width: 56ch;
  color: var(--grey);
  font-size: 1.05rem;
  margin-top: 4px;
}
.section-lede--light,
.dark-section .section-lede,
.plan-section .section-lede { color: rgba(255, 255, 255, 0.78); }
.section-inner--center .section-lede { margin-left: auto; margin-right: auto; }

/* -------------------- Pill buttons -------------------- */
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 17px 34px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease, border-color 0.25s ease;
}
.pill--ghost {
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(6px);
}
.pill--ghost:hover { background: var(--white); color: var(--black); transform: translateY(-2px); }
.pill--solid { background: var(--gold); color: var(--black); }
.pill--solid:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ==================== NAV ==================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px 0;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}
.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  padding: 15px 0;
  box-shadow: 0 1px 0 var(--line);
}
.nav-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-mark {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: var(--white);
  transition: color 0.3s ease;
}
.nav-link {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--white);
  transition: color 0.3s ease;
}
.nav.is-scrolled .nav-mark { color: var(--black); }
.nav.is-scrolled .nav-link { color: var(--accent); }

/* ==================== SECTION SHELLS ==================== */
.section-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}
.section-inner--center { text-align: center; }

.light-section {
  padding: 140px 0;
  background: var(--off-white);
  color: var(--black);
}
.dark-section {
  padding: 140px 0;
  background: var(--black);
  color: var(--white);
}
.plan-section {
  padding: 150px 0;
  background: linear-gradient(180deg, var(--black) 0%, #12190F 100%);
  color: var(--white);
}

/* ==================== FULL-BLEED PANELS ==================== */
.panel {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}
.panel-media { position: absolute; inset: 0; overflow: hidden; }
.panel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.12);
  transition: transform 1.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.panel.is-visible .panel-img,
.panel-half.is-visible .panel-img { transform: scale(1); }

.panel-scrim { position: absolute; inset: 0; }
.panel-scrim--full { background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.72) 100%); }
.panel-scrim--top { background: linear-gradient(180deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.55) 50%, rgba(0,0,0,0.72) 100%); }
.panel-scrim--bottom { background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.05) 62%); }

.panel-content {
  position: relative;
  z-index: 2;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}
.panel-content--center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.panel-content--bottom { align-self: flex-end; padding-bottom: 64px; }

.hero { min-height: 100vh; }
.hero .lede {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.12rem;
  max-width: 50ch;
  margin: 0 auto 34px;
}

/* ==================== EVIDENCE (milionários) ==================== */
.light-section h2 { max-width: 20ch; }
.evidence-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 72px;
}
.evidence { text-align: left; }
.evidence-figure {
  display: block;
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 20px;
}
.evidence p { color: var(--grey); font-size: 0.96rem; }
.evidence-source {
  display: block;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey);
}

/* ==================== BENEFIT LIST ==================== */
.dark-section h2 { max-width: 20ch; }
.dark-section .section-lede { margin-top: 20px; }
.benefit-list {
  list-style: none;
  margin: 76px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--line-light);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}
.benefit {
  display: flex;
  gap: 20px;
  padding: 38px 34px;
  background: var(--black);
}
.benefit-num {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold);
  padding-top: 3px;
  flex-shrink: 0;
}
.benefit h3 { color: var(--white); margin-bottom: 8px; }
.benefit p { color: rgba(255, 255, 255, 0.66); font-size: 0.93rem; }

/* ==================== STAT TRIO (o que paga) ==================== */
.stat-trio {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 24px;
  margin: 68px auto 0;
  max-width: 940px;
  align-items: stretch;
}
.stat-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 46px 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
}
.stat-block--feature {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}
.stat-tag {
  font-size: 0.82rem;
  color: var(--grey);
  font-weight: 500;
  margin-bottom: 18px;
  text-align: center;
}
.stat-block--feature .stat-tag { color: rgba(255, 255, 255, 0.82); }
.big-figure {
  font-size: clamp(2.3rem, 5vw, 3.3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}
.big-figure--md { font-size: clamp(1.9rem, 3.6vw, 2.5rem); }
.stat-unit { font-size: 0.84rem; color: var(--grey); margin-top: 12px; }
.stat-block--feature .stat-unit { color: rgba(255, 255, 255, 0.8); }

.fine-note {
  max-width: 60ch;
  margin: 52px auto 0;
  color: var(--grey);
  font-size: 0.94rem;
}

/* ==================== IA PANEL ==================== */
.ia-panel { align-items: center; }
.ia-panel .panel-content { padding-top: 120px; padding-bottom: 100px; }
.ia-panel h2 { max-width: 22ch; }
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 60px 0 48px;
}
.pillar {
  padding: 32px 28px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line-light);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}
.pillar h3 { color: var(--gold-light); margin-bottom: 10px; }
.pillar p { color: rgba(255, 255, 255, 0.78); font-size: 0.92rem; }
.panel-close {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  max-width: 34ch;
}

/* ==================== GALLERY ==================== */
.gallery-intro {
  padding: 130px 32px 66px;
  text-align: center;
  max-width: var(--wrap);
  margin: 0 auto;
}
.gallery-intro h2 { max-width: 22ch; margin-left: auto; margin-right: auto; }
.gallery-intro .section-lede { margin: 4px auto 0; }

.panel.property { min-height: 86vh; }
.property-tag {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.panel.property h3, .panel-half h3 { font-size: clamp(1.3rem, 2.4vw, 1.8rem); }
.property-figures {
  display: flex;
  align-items: baseline;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.property-figures span:first-child {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.property-figures span:last-child { font-size: 0.88rem; color: rgba(255, 255, 255, 0.78); }

.property-pair { display: grid; grid-template-columns: repeat(2, 1fr); }
.panel-half {
  position: relative;
  min-height: 74vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
}
.panel-half .panel-content { padding: 0 30px 50px; }

/* ==================== PLAN TIMELINE ==================== */
.plan-section h2 { max-width: 20ch; margin-left: auto; margin-right: auto; }
.plan-timeline {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  margin: 76px 0 72px;
}
.plan-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 36px 24px;
  border: 1px solid var(--line-light);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}
.plan-step--climax {
  border-color: var(--gold);
  background: rgba(200, 169, 97, 0.1);
}
.plan-year {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}
.plan-step--climax .plan-year { color: var(--gold); }
.plan-figure {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--white);
}
.plan-step--climax .plan-figure { color: var(--gold-light); }
.plan-desc {
  margin-top: 14px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  max-width: 26ch;
}
.plan-arrow {
  flex: 0 0 44px;
  align-self: center;
  height: 1px;
  background: var(--line-light);
  position: relative;
}
.plan-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  transform: rotate(45deg);
}

/* ==================== HONESTY BOX ==================== */
.honesty-box {
  max-width: 780px;
  margin: 0 auto;
  padding: 44px 42px;
  border: 1px solid var(--line-light);
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.35);
  text-align: left;
}
.honesty-box h3 {
  color: var(--white);
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  margin-bottom: 14px;
}
.honesty-box > p { color: rgba(255, 255, 255, 0.76); font-size: 0.96rem; }
.honesty-figures {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin: 32px 0;
  padding: 28px 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}
.honesty-value {
  display: block;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
}
.honesty-value--gold { color: var(--gold-light); }
.honesty-label {
  display: block;
  margin-top: 6px;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.62);
}
.honesty-fine {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.83rem;
  line-height: 1.6;
  margin: 0;
}

/* ==================== LEGACY ==================== */
.legacy { min-height: 100vh; }
.legacy .panel-content { padding-top: 120px; padding-bottom: 120px; }
.legacy-title { max-width: 16ch; }
.legacy-body {
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  margin-bottom: 20px;
}
.legacy-kicker {
  margin-top: 28px;
  font-size: clamp(1.25rem, 2.6vw, 1.8rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.35;
}

/* ==================== CTA ==================== */
.cta {
  background: var(--black);
  color: var(--white);
  padding: 160px 0;
  text-align: center;
}
.cta-inner { max-width: 720px; margin: 0 auto; padding: 0 32px; }
.cta h2 { margin: 0 auto 20px; max-width: 18ch; }
.cta-lede {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.02rem;
  max-width: 52ch;
  margin: 0 auto 40px;
}
.cta-secondary {
  display: block;
  margin-top: 26px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.66);
  transition: color 0.2s ease;
}
.cta-secondary:hover { color: var(--white); }

/* ==================== FOOTER ==================== */
.site-footer { background: var(--off-white); padding: 52px 32px; text-align: center; }
.footer-disclaimer {
  max-width: 78ch;
  margin: 0 auto 18px;
  color: var(--grey);
  font-size: 0.76rem;
  line-height: 1.65;
}
.footer-credit {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--grey);
}

/* ==================== REVEAL ==================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.evidence.reveal:nth-child(2), .pillar.reveal:nth-child(2) { transition-delay: 0.1s; }
.evidence.reveal:nth-child(3), .pillar.reveal:nth-child(3) { transition-delay: 0.2s; }
.benefit.reveal:nth-child(even) { transition-delay: 0.08s; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 980px) {
  .evidence-grid { grid-template-columns: 1fr; gap: 44px; }
  .benefit-list { grid-template-columns: 1fr; }
  .stat-trio { grid-template-columns: 1fr; max-width: 460px; }
  .pillar-grid { grid-template-columns: 1fr; gap: 18px; }
  .plan-timeline { flex-direction: column; gap: 18px; }
  .plan-arrow {
    flex: 0 0 28px;
    width: 1px;
    height: 28px;
    align-self: center;
  }
  .plan-arrow::after {
    right: -3px;
    top: auto;
    bottom: 0;
    transform: rotate(135deg);
  }
  .property-pair { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .panel { min-height: 100svh; }
  .panel.property { min-height: 76vh; }
  .panel-half { min-height: 66vh; }
  .light-section, .dark-section { padding: 96px 0; }
  .plan-section { padding: 104px 0; }
  .gallery-intro { padding: 90px 24px 44px; }
  .cta { padding: 112px 0; }
  .ia-panel .panel-content { padding-top: 96px; padding-bottom: 80px; }
  .legacy .panel-content { padding-top: 96px; padding-bottom: 96px; }
}

@media (max-width: 560px) {
  .nav-inner { padding: 0 20px; }
  .panel-content, .section-inner { padding-left: 22px; padding-right: 22px; }
  .panel-content--bottom { padding-bottom: 46px; }
  .benefit { padding: 30px 24px; }
  .honesty-box { padding: 32px 24px; }
  .honesty-figures { grid-template-columns: 1fr; gap: 22px; }
  .stat-block { padding: 36px 22px; }
}
