/* ============================================================
   BeGreat People Solutions — styles.css
   Paleta: Ink #0B0B0C · Paper #FBFAF7 · Stone #66645E
           Brass #B98A2F (acento único) · Line #E4E1DA
   Tipografia: Archivo (display) · Inter (texto)
   ============================================================ */

:root {
  --ink: #0b0b0c;
  --paper: #fbfaf7;
  --stone: #66645e;
  --brass: #b98a2f;
  --brass-soft: #f3ead7;
  --line: #e4e1da;
  --white: #ffffff;
  --radius: 14px;
  --maxw: 1120px;
  --display: "Archivo", system-ui, sans-serif;
  --body: "Inter", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--brass);
  outline-offset: 3px;
}

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 250, 247, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.nav-logo img { height: 64px; width: auto; display: block; }
.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a {
  text-decoration: none; font-weight: 500; font-size: 15px; color: var(--ink);
  padding: 6px 2px; border-bottom: 2px solid transparent;
  transition: border-color .15s ease;
}
.nav-links a:hover { border-color: var(--brass); }
.nav-links a.active { border-color: var(--ink); }
.nav-cta {
  background: var(--ink); color: var(--white) !important;
  padding: 10px 20px !important; border-radius: 999px;
  border: none !important; font-weight: 600;
  transition: background .15s ease;
}
.nav-cta:hover { background: var(--brass); }

/* ---------- Seletor de idioma ---------- */
.lang-switch { display: flex; gap: 2px; align-items: center; margin-left: 4px; }
.lang-switch a {
  font-family: var(--display); font-size: 13px; font-weight: 700;
  text-decoration: none; color: var(--stone); padding: 4px 7px;
  border-radius: 6px; letter-spacing: .03em; transition: background .15s ease, color .15s ease;
}
.lang-switch a:hover { color: var(--ink); }
.lang-switch a.active { background: var(--ink); color: var(--white); }
.lang-sep { color: var(--line); font-size: 12px; }
@media (max-width: 880px) {
  .lang-switch { justify-content: center; padding: 10px 0 4px; }
}

.nav-toggle {
  display: none; background: none; border: 1px solid var(--line);
  border-radius: 8px; padding: 8px 12px; font-size: 20px; cursor: pointer;
  line-height: 1; color: var(--ink);
}

@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; top: 76px; left: 0; right: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    flex-direction: column; gap: 0; padding: 8px 0 16px;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a { display: inline-block; padding: 12px 0; }
  .nav-cta { margin-top: 8px; }
}

/* ---------- Tipografia de seção ---------- */
.eyebrow {
  font-family: var(--display);
  font-size: 13px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--brass);
  margin-bottom: 14px;
}
h1, h2, h3 { font-family: var(--display); line-height: 1.12; letter-spacing: -0.015em; }
h1 { font-size: clamp(34px, 5.2vw, 58px); font-weight: 800; }
h2 { font-size: clamp(26px, 3.6vw, 40px); font-weight: 800; margin-bottom: 18px; }
h3 { font-size: 21px; font-weight: 700; margin-bottom: 10px; }
.lead { font-size: clamp(17px, 2vw, 20px); color: var(--stone); max-width: 64ch; }

/* ---------- Hero (faixa preta) ---------- */
.hero {
  background: var(--ink); color: var(--white);
  padding: 88px 0 96px;
  position: relative; overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; right: 0; top: 50%;
  width: 560px; height: 560px; transform: translateY(-50%);
  background: url("assets/logo-light-mark.png") center/contain no-repeat;
  opacity: .12; pointer-events: none;
}
@media (max-width: 1100px) {
  .hero::after { width: 420px; height: 420px; right: -60px; opacity: .10; }
}
@media (max-width: 760px) {
  .hero::after { width: 300px; height: 300px; right: -90px; top: 22%; opacity: .08; }
}
.hero .container { position: relative; z-index: 1; }
.hero h1 { max-width: 19ch; }
.hero h1 em { font-style: normal; color: var(--brass); }
.hero .lead { color: #c9c7c1; margin-top: 20px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }

/* ---------- Botões ---------- */
.btn {
  display: inline-block; text-decoration: none; font-weight: 600;
  font-family: var(--display); font-size: 16px;
  padding: 15px 28px; border-radius: 999px;
  transition: transform .12s ease, background .15s ease, color .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--brass); color: var(--ink); }
.btn-primary:hover { background: #d2a346; }
.btn-ghost { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.45); }
.btn-ghost:hover { border-color: var(--brass); color: var(--brass); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: var(--brass); color: var(--ink); }

/* ---------- Faixa de prova ---------- */
.proof {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.proof .container {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  padding-top: 34px; padding-bottom: 34px;
}
.proof-item { text-align: center; }
.proof-item strong {
  display: block; font-family: var(--display); font-size: 26px; font-weight: 800;
}
.proof-item span { font-size: 14px; color: var(--stone); }
@media (max-width: 700px) { .proof .container { grid-template-columns: 1fr; gap: 18px; } }

/* ---------- Seções ---------- */
.section { padding: 84px 0; }
.section-alt { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-dark { background: var(--ink); color: var(--white); }
.section-dark .lead { color: #c9c7c1; }
.section-dark h2 em { font-style: normal; color: var(--brass); }

/* ---------- Cards de solução ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 42px; }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; display: flex; flex-direction: column;
  transition: border-color .15s ease, transform .15s ease;
}
.card:hover { border-color: var(--brass); transform: translateY(-3px); }
.card .tagline { font-weight: 600; margin-bottom: 8px; }
.card p { color: var(--stone); font-size: 15.5px; flex: 1; }
.card a {
  margin-top: 18px; font-weight: 700; font-family: var(--display);
  text-decoration: none; color: var(--ink); font-size: 15px;
}
.card a:hover { color: var(--brass); }
@media (max-width: 880px) { .cards { grid-template-columns: 1fr; } }

/* ---------- Lista de diferenciais ---------- */
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 36px; margin-top: 38px; }
.feature h3 { display: flex; align-items: baseline; gap: 10px; }
.feature h3::before {
  content: "✳"; color: var(--brass); font-size: 18px; flex-shrink: 0;
}
.feature p { color: var(--stone); font-size: 15.5px; }
@media (max-width: 760px) { .feature-grid { grid-template-columns: 1fr; } }

/* ---------- Metodologia (etapas) ---------- */
.steps { margin-top: 42px; display: grid; gap: 0; }
.step {
  display: grid; grid-template-columns: 84px 1fr; gap: 22px;
  padding: 26px 0; border-top: 1px solid var(--line);
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step-num {
  font-family: var(--display); font-weight: 800; font-size: 34px;
  color: var(--brass); line-height: 1;
}
.step p { color: var(--stone); font-size: 15.5px; }
@media (max-width: 600px) { .step { grid-template-columns: 1fr; gap: 6px; } }

/* ---------- Planos / tiers ---------- */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 42px; }
.tier {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; display: flex; flex-direction: column;
}
.tier.featured { border-color: var(--brass); box-shadow: 0 8px 28px rgba(185,138,47,.12); }
.tier .tier-for { font-weight: 600; color: var(--brass); font-size: 14.5px; margin-bottom: 10px; }
.tier p { color: var(--stone); font-size: 15.5px; }
@media (max-width: 880px) { .tiers { grid-template-columns: 1fr; } }

/* ---------- Modelos de contratação (duas colunas) ---------- */
.models { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 42px; }
.model {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px;
}
.model ul { list-style: none; margin-top: 16px; }
.model li {
  padding: 9px 0 9px 28px; position: relative;
  border-top: 1px dashed var(--line); font-size: 15.5px; color: var(--stone);
}
.model li::before { content: "✓"; position: absolute; left: 0; color: var(--brass); font-weight: 700; }
.model .price {
  font-family: var(--display); font-weight: 700; font-size: 18px; margin-top: 6px;
}
@media (max-width: 760px) { .models { grid-template-columns: 1fr; } }

/* ---------- Tabela comparativa ---------- */
.compare-wrap { overflow-x: auto; margin-top: 38px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
table.compare { width: 100%; border-collapse: collapse; min-width: 640px; }
.compare th, .compare td { padding: 16px 20px; text-align: left; font-size: 15.5px; }
.compare thead th {
  font-family: var(--display); font-size: 15px; font-weight: 700;
  background: var(--ink); color: var(--white);
}
.compare thead th:last-child { color: var(--brass); }
.compare tbody tr { border-top: 1px solid var(--line); }
.compare tbody td:first-child { font-weight: 600; }
.compare tbody td:nth-child(2) { color: var(--stone); }
.compare tbody td:last-child { font-weight: 600; }

/* ---------- Checklist ---------- */
.checklist { list-style: none; margin-top: 30px; max-width: 720px; }
.checklist li {
  padding: 13px 0 13px 34px; position: relative;
  border-top: 1px solid var(--line); font-size: 16.5px;
}
.checklist li:last-child { border-bottom: 1px solid var(--line); }
.checklist li::before { content: "✳"; position: absolute; left: 2px; color: var(--brass); }

/* ---------- CTA final ---------- */
.cta-final { text-align: center; }
.cta-final h2 { max-width: 22ch; margin-left: auto; margin-right: auto; }
.cta-final .lead { margin: 0 auto 30px; }
.cta-final .hero-actions { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #b9b7b1; padding: 56px 0 36px; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; align-items: start;
}
.footer-grid img { height: 104px; width: auto; }
.site-footer h4 {
  font-family: var(--display); color: var(--white); font-size: 15px;
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px;
}
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 9px; font-size: 15px; }
.site-footer a { color: #b9b7b1; text-decoration: none; }
.site-footer a:hover { color: var(--brass); }
.footer-bottom {
  border-top: 1px solid #232323; margin-top: 44px; padding-top: 22px;
  font-size: 13.5px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- WhatsApp flutuante ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.25); text-decoration: none;
  transition: transform .12s ease;
}
.wa-float:hover { transform: scale(1.07); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ---------- Página interna: hero menor ---------- */
.hero.compact { padding: 70px 0 76px; }

/* ---------- DHO: manifesto / abordagem ---------- */
.dho-lead {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(24px, 3.4vw, 38px); line-height: 1.28;
  letter-spacing: -0.015em; max-width: 22ch;
}
.dho-lead em { font-style: normal; color: var(--brass); }

/* índice de princípios — numeração que conta algo (são poucos, deliberados) */
.principles { margin-top: 52px; border-top: 1px solid var(--line); }
.principle {
  display: grid; grid-template-columns: 64px 1fr; gap: 28px;
  padding: 30px 0; border-bottom: 1px solid var(--line);
  align-items: start;
}
.principle .p-mark {
  font-family: var(--display); font-weight: 700; font-size: 15px;
  color: var(--brass); letter-spacing: .1em; padding-top: 4px;
}
.principle h3 { font-size: 23px; margin-bottom: 8px; }
.principle p { color: var(--stone); font-size: 16px; max-width: 60ch; }

/* frentes de atuação — não são pacotes, são territórios */
.fronts { margin-top: 44px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.front {
  background: var(--white); padding: 32px 30px;
  transition: background .15s ease;
}
.front:hover { background: var(--brass-soft); }
.front .f-label {
  font-family: var(--display); font-size: 12.5px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--brass);
  margin-bottom: 12px; display: block;
}
.front h3 { font-size: 22px; margin-bottom: 8px; }
.front p { color: var(--stone); font-size: 15.5px; }
@media (max-width: 760px) { .fronts { grid-template-columns: 1fr; } .principle { grid-template-columns: 1fr; gap: 6px; } }

/* faixa de processo sob medida — horizontal */
.tailor { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 44px; }
.tailor-step .t-num {
  font-family: var(--display); font-weight: 800; font-size: 15px; color: var(--brass);
  display: inline-block; padding-bottom: 14px; border-bottom: 2px solid var(--brass);
  margin-bottom: 18px;
}
.tailor-step h3 { font-size: 20px; margin-bottom: 8px; }
.tailor-step p { color: #c9c7c1; font-size: 15.5px; }
@media (max-width: 760px) { .tailor { grid-template-columns: 1fr; gap: 30px; } }

/* citação de fechamento de valor */
.value-strip { text-align: center; max-width: 60ch; margin: 0 auto; }
.value-strip .big {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(40px, 6vw, 72px); color: var(--brass); line-height: 1; display: block;
}
.value-strip .big-label { font-size: 16px; color: var(--stone); margin-top: 6px; display: block; }
.value-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 10px; }
@media (max-width: 700px) { .value-row { grid-template-columns: 1fr; gap: 36px; } }

/* ---------- Util ---------- */
.mt-lg { margin-top: 40px; }
.note { font-size: 14px; color: var(--stone); margin-top: 18px; }
.center { text-align: center; }
