/* ─── RESET ─────────────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: #F7F3EE;
  color: #3A3A37;
  font-family: 'MyriadPro', sans-serif;
  font-size: var(--body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; }
button { font-family: inherit; }

/* ─── VARIÁVEIS ──────────────────────────────────────────────────────────── */
:root {
  --display:          clamp(3.2rem, 8vw,   6rem);
  --h1:               clamp(2.6rem, 5.5vw, 4.4rem);
  --h2:               clamp(2rem,   4vw,   3rem);
  --h3:               clamp(1.5rem, 3vw,   2.2rem);
  --lead:             clamp(1.25rem,2.5vw, 1.6rem);
  --body:             clamp(1.1rem, 2vw,   1.25rem);
  --caption:          clamp(0.95rem,1.8vw, 1.05rem);
  --trust-bar-h:      76px; /* ajustado por JS — inclui trust-bar + recap quando visível */
  --trust-bar-only-h: 76px; /* só a trust-bar, para o sticky do recap */
  --diag-recap-h:     0px;  /* altura do recap; 0 quando oculto — ajustado por JS */
  --dourado:          #C9A84C;
  --dourado-suave:    rgba(201,168,76,0.14);
  --dourado-borda:    rgba(201,168,76,0.38);
}

/* ─── SCROLL OFFSET — âncoras respeitam as barras sticky ─────────────────── */
[id] {
  scroll-margin-top: calc(var(--trust-bar-h) + 16px);
}

/* ─── SCROLL REVEAL ──────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visivel {
  opacity: 1;
  transform: none;
}

/* ─── UTILITÁRIOS DE LAYOUT ──────────────────────────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
}

.col-estreita {
  max-width: 680px;
  margin: 0 auto;
}

.sec-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(60px, 9vh, 90px);
}

.sec-titulo {
  font-family: 'MyriadPro-Heading', sans-serif;
  font-size: var(--h1);
  font-weight: 500;
  line-height: 1.14;
  color: #1C1C1A;
  margin-bottom: 22px;
}
.sec-titulo em { font-style: italic; color: #1A4A3A; }

.sec-lead {
  font-family: 'MyriadPro', sans-serif;
  font-size: var(--lead);
  font-weight: 450;
  color: #6A6A65;
  line-height: 1.6;
}

/* ─── EYEBROWS (check dourado) ───────────────────────────────────────────── */
.eyebrow {
  font-family: 'MyriadPro', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #2D6B52;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 18px; height: 18px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='9' fill='%23C9A84C'/%3E%3Cpolyline points='6,10 9,13.5 14.5,6.5' fill='none' stroke='%231A4A3A' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.eyebrow-claro {
  font-family: 'MyriadPro', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7DC4A0;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.eyebrow-claro::before {
  content: '';
  display: inline-block;
  width: 18px; height: 18px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='9' fill='%23C9A84C'/%3E%3Cpolyline points='6,10 9,13.5 14.5,6.5' fill='none' stroke='%231A4A3A' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
