/* Satye Investments — folha de estilo da landing page pública
   Paleta e tipografia conforme docs/manual-de-marca.md
   Estrutura conforme docs/textos-site.md: página única, quatro blocos,
   rodapé com seletor de idioma e acesso discreto à área privada. */

:root {
  --petrol: #12303F;   /* principal */
  --sand: #C9BFA9;     /* apoio */
  --ink: #141412;      /* preto de tinta: só o nome no logotipo */
  --text: #1C1C1A;     /* grafite: texto corrido */
  --paper: #FAF9F6;    /* fundo */
  --muted: rgba(28, 28, 26, 0.62);
  --serif: "Libre Baskerville", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --measure: 38rem;
}

* { box-sizing: border-box; }

html { color-scheme: light; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--petrol); text-decoration: none; }
a:hover, a:focus-visible { text-decoration: underline; text-underline-offset: 0.2em; }

.skip {
  position: absolute; left: -999px; top: 0;
  background: var(--petrol); color: var(--paper); padding: .5rem 1rem;
}
.skip:focus { left: 1rem; top: 1rem; z-index: 10; }

.wrap { max-width: 44rem; margin: 0 auto; padding: 0 1.5rem; }

/* ---------- Logotipo tipográfico ----------
   Três elementos empilhados e centralizados:
   nome (Libre Baskerville 400, preto de tinta), filete (areia, 1px,
   largura ~1,4× a altura do nome) e descritor (Inter, caixa alta, azul-petróleo).
   O tamanho do conjunto é controlado pelo font-size de .logo. */

.logo {
  display: inline-flex; flex-direction: column; align-items: center;
  line-height: 1; font-size: 2.4rem; margin: 0; font-weight: 400;
}
.logo:hover { text-decoration: none; }
.logo__name {
  font-family: var(--serif); font-weight: 400; font-size: 1em;
  color: var(--ink); letter-spacing: .12em; margin-right: -.12em; /* compensa o espaçamento final */
}
.logo__rule { display: block; width: 1.4em; height: 1px; background: var(--sand); margin: .3em 0 .28em; }
.logo__word {
  font-family: var(--sans); font-weight: 500; font-size: .26em;
  letter-spacing: .26em; margin-right: -.26em; color: var(--petrol); text-transform: uppercase;
}
/* Versão em corpo grande: espaçamentos de 0,13em e 0,34em */
.logo--large { font-size: clamp(2.8rem, 6vw, 3.6rem); }
.logo--large .logo__name { letter-spacing: .13em; margin-right: -.13em; }
.logo--large .logo__word { letter-spacing: .34em; margin-right: -.34em; }

/* ---------- Cabeçalho fixo ---------- */

.header {
  position: sticky; top: 0; z-index: 5;
  background: rgba(250, 249, 246, 0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(201, 191, 169, 0.5);
}
.header__inner {
  max-width: 44rem; margin: 0 auto; padding: 1rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.lang {
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); border: 1px solid var(--sand); padding: .35rem .7rem; border-radius: 2px;
}
.lang:hover { color: var(--petrol); border-color: var(--petrol); text-decoration: none; }

/* ---------- Abertura ---------- */

.hero { padding: 6rem 0 4.5rem; }
.hero .lead {
  font-family: var(--serif); font-weight: 400; color: var(--petrol);
  font-size: clamp(1.8rem, 4vw, 2.6rem); line-height: 1.25;
  max-width: var(--measure); margin: 0 0 1.4rem;
}
.hero .intro { max-width: var(--measure); margin: 0; font-size: 1.15rem; }

/* ---------- Blocos ---------- */

.section { padding: 3.5rem 0; border-top: 1px solid var(--sand); }
.section h2 {
  font-family: var(--serif); font-weight: 400; color: var(--petrol);
  font-size: 1.5rem; line-height: 1.3; margin: 0 0 1.4rem;
}
.section p { max-width: var(--measure); margin: 0 0 1rem; }
.section p:last-child { margin-bottom: 0; }

.grid { display: grid; gap: 2rem 3rem; grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr)); }
.grid h3 {
  font-family: var(--serif); font-weight: 400; color: var(--petrol);
  font-size: 1.15rem; margin: 0 0 .6rem;
}
.grid p { margin: 0; }

/* ---------- Rodapé ---------- */

.footer { border-top: 1px solid var(--sand); padding: 2.5rem 0 3rem; color: var(--muted); font-size: .84rem; }
.footer p { margin: 0 0 .7rem; }
.footer .legal { margin-top: 1.2rem; }
.footer__nav { display: flex; justify-content: space-between; align-items: baseline; gap: 1.5rem; }
.footer__nav p { margin: 0; }
.footer__nav .current { color: var(--text); }
.footer__nav .access { color: var(--muted); }
.footer__nav .access:hover { color: var(--petrol); }
