/* ============================================================
   Proposta Na Montanha Eco Space — Cypher Black · RealVision
   Landing page — linguagem visual Fluid (adaptada), acento verde-serra.
   Base: site-fluid/styles.css. Tipografia: General Sans (máx. Medium,
   tracking −5% em títulos) + Aeonik Mono (labels). Cantos retos, flat.
   ============================================================ */

/* ---------- Fontes ---------- */
@font-face {
  font-family: "General Sans";
  src: url("fonts/GeneralSans-Regular.woff2") format("woff2"),
       url("fonts/GeneralSans-Regular.woff") format("woff");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "General Sans";
  src: url("fonts/GeneralSans-Medium.woff2") format("woff2"),
       url("fonts/GeneralSans-Medium.woff") format("woff");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Aeonik Mono";
  src: url("fonts/AeonikMono-500.woff2") format("woff2"),
       url("fonts/AeonikMono-500.woff") format("woff");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Aeonik Mono";
  src: url("fonts/AeonikMono-600.woff2") format("woff2"),
       url("fonts/AeonikMono-600.woff") format("woff");
  font-weight: 600; font-style: normal; font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --bg: #ffffff;
  --cream: #f3f0ec;
  --taupe: #d4cec6;
  --ink: #212325;
  --ink-deep: #141414;
  --line: #303030;
  --line-soft: #d8d3cc;
  --muted: #5f6264;              /* escurecido vs. fluid p/ contraste AA */

  --accent: #3d5a45;            /* verde-serra / pinheiro */
  --accent-deep: #2d4433;
  --accent-soft: #8fb89b;       /* verde claro p/ sobre fundo escuro */
  --accent-ink: #ffffff;        /* texto sobre o verde */

  --on-dark: #e8e6e2;
  --on-dark-muted: #a2a49f;

  --radius: 0px;
  --container: 1240px;
  --pad-x: clamp(20px, 5vw, 72px);

  --ease: cubic-bezier(.77, 0, .175, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "General Sans", Arial, sans-serif;
  font-weight: 400;
  letter-spacing: -0.01em;      /* corpo praticamente neutro (legível) */
  color: var(--ink);
  background: var(--bg);
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
strong { font-weight: 500; }
::selection { background: var(--accent); color: #fff; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ---------- Layout helpers ---------- */
.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--pad-x); }
.section { padding-block: clamp(72px, 10vw, 140px); }
.section--cream { background: var(--cream); }
.hairline { height: 1px; background: var(--line); opacity: .85; border: 0; }

/* Eyebrow mono com diamante */
.eyebrow {
  font-family: "Aeonik Mono", ui-monospace, monospace;
  font-weight: 500; font-size: 12.5px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: "\25C6"; font-size: 9px; color: var(--accent); transform: translateY(-1px); }
.eyebrow--light { color: var(--on-dark); }
.eyebrow--light::before { color: var(--accent-soft); }
.mono { font-family: "Aeonik Mono", ui-monospace, monospace; font-weight: 500; letter-spacing: .04em; }

/* Títulos: tracking −5% */
.display {
  font-weight: 500; letter-spacing: -0.05em; line-height: 1.02;
  font-size: clamp(38px, 5.4vw, 72px); text-wrap: balance;
}
.h2 {
  font-weight: 500; letter-spacing: -0.05em; line-height: 1.08;
  font-size: clamp(27px, 3vw, 42px); text-wrap: balance;
}
.h3 { font-weight: 500; letter-spacing: -0.04em; line-height: 1.15; font-size: clamp(21px, 2vw, 27px); text-wrap: balance; }
.lead { color: var(--muted); font-size: clamp(17px, 1.4vw, 20px); max-width: 58ch; text-wrap: pretty; line-height: 1.5; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  border: 1px solid transparent; border-radius: var(--radius);
  padding: 15px 22px;
  font-family: "Aeonik Mono", ui-monospace, monospace;
  font-weight: 500; font-size: 12.5px; letter-spacing: 0.12em; text-transform: uppercase;
  transition: background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.btn .arrow-svg { width: 16px; height: 13px; flex: none; order: -1; }
.btn .arrow-svg path { transition: transform .4s var(--ease); }
.btn:hover .arrow-svg path { transform: translateX(2px); }
.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-primary:hover { background: var(--accent-deep); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: var(--cream); }
.btn-on-green { background: #fff; color: var(--accent-deep); }
.btn-on-green:hover { background: var(--cream); }

.quote-link {
  font-family: "Aeonik Mono", ui-monospace, monospace;
  font-weight: 500; font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
  transition: color .4s var(--ease);
}
.quote-link:hover { color: var(--accent-soft); }

/* ---------- Nav ---------- */
.nav { position: absolute; inset: 0 0 auto 0; z-index: 20; padding-block: 24px; }
.nav__inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; }
.nav__brand { grid-column: 2; display: flex; align-items: center; gap: 10px; }
.nav__brand .sym { width: 21px; height: 21px; }
.nav__brand .word { height: 15px; }
.nav__brand svg { width: 100%; height: 100%; }
.nav__cta { grid-column: 3; justify-self: end; }
.nav--on-image, .nav--on-image a { color: #fff; }
.nav--on-image .eyebrow::before { color: var(--accent-soft); }
@media (max-width: 640px) {
  .nav__cta { display: none; }
  .nav__inner { grid-template-columns: 1fr; }
  .nav__brand { grid-column: 1; justify-content: center; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden; padding-bottom: clamp(72px, 10vw, 120px); color: #fff;
}
/* Placeholder de foto real (serra/cabana à noite). Trocar por <img>/<video>. */
.hero__media {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(18,22,19,.30) 0%, rgba(18,22,19,.55) 55%, rgba(15,19,16,.86) 100%),
    radial-gradient(120% 80% at 70% 15%, rgba(143,184,155,.16) 0%, transparent 55%),
    linear-gradient(158deg, #2c3a30 0%, #1e2a22 48%, #131a15 100%);
}
.hero__media::after {
  content: "◆ Área reservada para foto — serra / cabana";
  position: absolute; left: var(--pad-x); top: 96px;
  font-family: "Aeonik Mono", ui-monospace, monospace;
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.hero__content { position: relative; z-index: 1; }
.hero__title { max-width: 20ch; margin-top: 18px; text-shadow: 0 1px 40px rgba(0,0,0,.3); }
.hero__meta {
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
  margin-top: 30px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.28);
}
.hero__lead { max-width: 46ch; color: rgba(255,255,255,.85); }

/* ---------- Propósito (intro centrada) ---------- */
.purpose { text-align: center; }
.purpose .eyebrow { margin-bottom: 28px; }
.purpose .h2 { max-width: 22ch; margin-inline: auto; }
.purpose .lead { margin: 26px auto 0; max-width: 60ch; }

/* ---------- Split assimétrico ---------- */
.split { display: grid; grid-template-columns: 1fr 1.25fr; gap: clamp(40px, 6vw, 104px); align-items: start; }
.split__aside .eyebrow { margin-bottom: 20px; }
.split__aside .h2 { margin-bottom: 18px; }
.split__aside .lead { margin-top: 18px; max-width: 34ch; }
.split__aside--sticky { position: sticky; top: 48px; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 40px; } .split__aside--sticky { position: static; } }

/* linhas numeradas */
.rows { border-top: 1px solid var(--line); }
.row {
  display: grid; grid-template-columns: 64px 1fr; gap: 24px;
  padding: 30px 0; border-bottom: 1px solid var(--line-soft);
}
.section--cream .row { border-bottom-color: rgba(48,48,48,.16); }
.row__num {
  font-family: "Aeonik Mono", ui-monospace, monospace;
  font-weight: 500; font-size: 15px; color: var(--accent); letter-spacing: .04em; padding-top: 6px;
}
.row__title { font-size: clamp(19px, 1.7vw, 23px); font-weight: 500; letter-spacing: -0.04em; line-height: 1.2; }
.row__desc { color: var(--muted); margin-top: 9px; max-width: 58ch; text-wrap: pretty; }

/* ---------- Entregáveis (grade de cards com área de foto) ---------- */
.collection__head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 40px; }
.collection__head .lead { max-width: 34ch; }
.collection { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.work { display: flex; flex-direction: column; }
.work__media {
  position: relative; aspect-ratio: 4 / 3; border: 1px solid var(--line-soft);
  background:
    radial-gradient(90% 70% at 30% 20%, rgba(143,184,155,.14) 0%, transparent 60%),
    linear-gradient(150deg, #3a4a3f 0%, #2b382f 55%, #1d271f 100%);
  display: flex; align-items: flex-end; padding: 18px;
}
.work__media--2 {
  background:
    radial-gradient(90% 70% at 70% 25%, rgba(143,184,155,.12) 0%, transparent 60%),
    linear-gradient(150deg, #45473f 0%, #34362f 55%, #232520 100%);
}
.work__ph {
  font-family: "Aeonik Mono", ui-monospace, monospace;
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.45);
}
.work__badge {
  position: absolute; top: 14px; left: 14px;
  font-family: "Aeonik Mono", ui-monospace, monospace;
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: #fff; background: rgba(15,19,16,.72); padding: 6px 11px;
}
.work__badge::first-letter { color: var(--accent-soft); }
.work__title { margin-top: 20px; font-size: clamp(20px, 1.8vw, 25px); font-weight: 500; letter-spacing: -0.04em; }
.work__meta {
  margin-top: 6px; font-family: "Aeonik Mono", ui-monospace, monospace;
  font-size: 12px; letter-spacing: .05em; text-transform: uppercase; color: var(--muted);
}
@media (max-width: 720px) { .collection { grid-template-columns: 1fr; } }

/* ---------- Stats (investimento) ---------- */
.stats { border-top: 1px solid var(--line); }
.stat {
  display: grid; grid-template-columns: minmax(150px, auto) 1fr; align-items: baseline; gap: 24px;
  padding: 26px 0; border-bottom: 1px solid var(--line-soft);
}
.section--cream .stat { border-bottom-color: rgba(48,48,48,.16); }
.stat__num { font-size: clamp(32px, 3.6vw, 48px); font-weight: 500; letter-spacing: -0.05em; }
.stat__num small { font-size: .42em; color: var(--muted); letter-spacing: -0.02em; }
.stat__label {
  font-family: "Aeonik Mono", ui-monospace, monospace;
  font-size: 12.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted);
  text-align: right; line-height: 1.5;
}
@media (max-width: 560px) { .stat { grid-template-columns: 1fr; gap: 6px; } .stat__label { text-align: left; } }

/* ---------- Cards de investimento (escopo + inclusos) ---------- */
.plans { display: grid; grid-template-columns: 1.15fr 1fr; gap: 20px; margin-top: 56px; align-items: stretch; }
.plan {
  border: 1px solid var(--line); padding: clamp(28px, 3.5vw, 44px);
  display: flex; flex-direction: column;
}
.plan--hero { background: var(--ink-deep); color: var(--on-dark); border-color: var(--ink-deep); }
.plan__label {
  font-family: "Aeonik Mono", ui-monospace, monospace;
  font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
}
.plan--hero .plan__label { color: var(--accent-soft); }
.plan__value { font-size: clamp(44px, 5vw, 60px); font-weight: 500; letter-spacing: -0.05em; line-height: 1; margin-top: 14px; }
.plan--hero .plan__value { color: #fff; }
.plan__value small { font-size: .38em; color: var(--muted); letter-spacing: -0.02em; }
.plan--hero .plan__value small { color: var(--on-dark-muted); }
.plan__note { margin-top: 15px; color: var(--muted); font-size: 15.5px; line-height: 1.5; max-width: 44ch; }
.plan--hero .plan__note { color: var(--on-dark); }
.pay { display: grid; margin-top: 24px; border-top: 1px solid #333; }
.pay li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  padding: 14px 0; border-bottom: 1px solid #333;
  font-family: "Aeonik Mono", ui-monospace, monospace; font-size: 13px; letter-spacing: .04em;
  text-transform: uppercase; color: var(--on-dark-muted);
}
.pay li .v { color: #fff; }
.plan__list { margin-top: 22px; display: grid; gap: 11px; }
.plan__list li { position: relative; padding-left: 22px; font-size: 15px; line-height: 1.45; }
.plan__list li::before { content: "\25C6"; position: absolute; left: 0; top: 4px; font-size: 8px; color: var(--accent); }
.plan--hero .plan__list li::before { color: var(--accent-soft); }
.plan__foot { margin-top: auto; }
.fineprint { margin-top: 32px; color: var(--muted); font-size: 14px; letter-spacing: .01em; }
@media (max-width: 820px) { .plans { grid-template-columns: 1fr; } }

/* ---------- Bônus (presente) — faixa verde ---------- */
.gift {
  background: var(--accent); color: #fff; border-radius: var(--radius);
  padding: clamp(40px, 6vw, 88px);
  display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center;
}
.gift .eyebrow { color: #fff; margin-bottom: 22px; }
.gift .eyebrow::before { color: #cfe6d5; }
.gift .h2 { color: #fff; max-width: 18ch; }
.gift__body p { color: #eaf1ec; text-wrap: pretty; max-width: 52ch; }
.gift__body p + p { margin-top: 18px; }
.gift__note { font-size: 14px; color: #cfe6d5 !important; }
@media (max-width: 820px) { .gift { grid-template-columns: 1fr; } }

/* ---------- CTA final / próximo passo ---------- */
.steps { border-top: 1px solid var(--line); margin-bottom: 56px; }
.step {
  display: grid; grid-template-columns: 64px 1fr; gap: 24px; align-items: baseline;
  padding: 24px 0; border-bottom: 1px solid var(--line-soft);
}
.step__n { font-family: "Aeonik Mono", ui-monospace, monospace; font-size: 15px; color: var(--accent); letter-spacing: .06em; }
.step__t { font-size: clamp(19px, 1.7vw, 23px); font-weight: 500; letter-spacing: -0.04em; }
.cta {
  background: var(--ink-deep); color: var(--on-dark); border-radius: var(--radius);
  padding: clamp(40px, 6vw, 88px);
  display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 32px;
}
.cta .h2 { color: #fff; max-width: 16ch; }
.cta .eyebrow { color: var(--on-dark); margin-bottom: 20px; }
.cta__sign { margin-top: 22px; font-family: "Aeonik Mono", ui-monospace, monospace; font-size: 12.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--on-dark-muted); }
.cta__sign b { color: #fff; font-weight: 500; }
@media (max-width: 720px) { .cta { grid-template-columns: 1fr; align-items: start; } }

/* ---------- Footer ---------- */
.footer { background: var(--ink-deep); color: var(--on-dark); padding-top: clamp(56px, 8vw, 96px); }
.footer__top {
  display: grid; grid-template-columns: 1.5fr 1fr 1.2fr; gap: 40px;
  padding-bottom: clamp(48px, 7vw, 80px); border-bottom: 1px solid #2a2a2a;
}
.footer__word { height: 26px; }
.footer__word svg { height: 100%; width: auto; }
.footer__tag { margin-top: 20px; color: var(--on-dark-muted); max-width: 32ch; font-size: 15px; }
.footer__col h4 {
  font-family: "Aeonik Mono", ui-monospace, monospace;
  font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--on-dark-muted); font-weight: 500; margin-bottom: 18px;
}
.footer__col li { margin-bottom: 11px; }
.footer__col a, .footer__col span { font-size: 15px; transition: color .3s var(--ease); }
.footer__col a:hover { color: var(--accent-soft); }
.footer__contact span { color: var(--on-dark-muted); display: block; }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-block: 22px;
  font-family: "Aeonik Mono", ui-monospace, monospace; font-size: 12px; letter-spacing: .06em;
  text-transform: uppercase; color: var(--on-dark-muted);
}
@media (max-width: 820px) { .footer__top { grid-template-columns: 1fr 1fr; } .footer__brandcol { grid-column: 1 / -1; } }
@media (max-width: 520px) { .footer__top { grid-template-columns: 1fr; } .footer__bottom { flex-direction: column; align-items: flex-start; gap: 10px; } }

/* ---------- Dock flutuante ---------- */
.dock {
  position: fixed; left: 50%; bottom: 22px; transform: translateX(-50%); z-index: 30;
  display: flex; align-items: center; gap: 14px;
  background: var(--ink-deep); color: #fff; border-radius: var(--radius);
  padding: 12px 16px; min-width: 320px; justify-content: space-between;
}
.dock__brand { display: flex; align-items: center; gap: 10px; }
.dock__brand .sym { width: 22px; height: 22px; }
.dock__label { font-family: "Aeonik Mono", ui-monospace, monospace; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.dock__toggle { background: none; border: none; color: #fff; display: inline-flex; flex-direction: column; gap: 4px; padding: 6px; }
.dock__toggle span { display: block; width: 20px; height: 1.5px; background: #fff; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.dock__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.dock__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.dock__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }
.dock-menu {
  position: fixed; left: 50%; bottom: 80px; transform: translateX(-50%) translateY(12px); z-index: 29;
  background: var(--ink-deep); border-radius: var(--radius); padding: 16px; min-width: 320px;
  display: grid; gap: 2px; opacity: 0; pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.dock-menu.open { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.dock-menu a {
  color: var(--on-dark); font-family: "Aeonik Mono", ui-monospace, monospace;
  font-size: 13px; letter-spacing: .08em; text-transform: uppercase; padding: 12px 10px;
  transition: background-color .25s var(--ease), color .25s var(--ease);
}
.dock-menu a:hover { background: #232323; color: var(--accent-soft); }
@media (max-width: 520px) { .dock, .dock-menu { min-width: min(340px, calc(100vw - 32px)); } }

/* ---------- Reveal ---------- */
.reveal-mask { display: block; overflow: clip; padding: 0.12em 0; margin: -0.12em 0; }
.reveal-mask > * { display: block; transform: translateY(120%); transition: transform 1s var(--ease); }
.reveal-mask.is-visible > * { transform: translateY(0); }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal, .reveal-mask > * { opacity: 1; transform: none; }
}
