/* ============================================================
   RAMUS VITA · main.css
   Versão WordPress do HTML de referência aprovado
   ============================================================ */

/* ---- DESIGN TOKENS ---- */
:root {
  --rv-verde-principal: #12312F;
  --rv-verde-principal-80: #2a4947;
  --rv-verde-2: #184a44;
  --rv-verde-2-tint: #2a6058;
  --rv-lima: #eaff60;
  --rv-lima-deep: #c8df3f;
  --rv-azul: #8ca6cc;
  --rv-cinza: #dddddd;
  --rv-cinza-warm: #ecebe6;
  --rv-off-white: #faf9f5;

  --fg-1: #12312F;
  --fg-2: #3a4f4d;
  --fg-3: #6c7c7a;
  --fg-on-dark-1: #faf9f5;
  --fg-on-dark-2: #b4c1bf;

  --line: rgba(18, 49, 47, .12);
  --line-on-dark: rgba(250, 249, 245, .12);

  --sans: "Manrope", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;

  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--rv-off-white);
  color: var(--fg-1);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ---- UTILITÁRIOS ---- */
.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3 {
  font-family: var(--sans);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -.015em;
  text-wrap: balance;
}

.eyebrow {
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--rv-verde-2);
}

/* Lime underline emphasis */
.ul-lime {
  background-image: linear-gradient(var(--rv-lima), var(--rv-lima));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% .12em;
  padding-bottom: .04em;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ---- BOTÕES ---- */
.btn-primary {
  background: var(--rv-lima);
  color: var(--rv-verde-principal);
  padding: 14px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .2s var(--ease-out), transform 80ms var(--ease-out);
  border: none;
  cursor: pointer;
  font-family: var(--sans);
}
.btn-primary:hover { background: var(--rv-lima-deep); }
.btn-primary:active { transform: scale(.98); }

.btn-ghost {
  border: 1px solid rgba(250, 249, 245, .32);
  color: var(--rv-off-white);
  padding: 13px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  transition: border-color .2s var(--ease-out), background .2s var(--ease-out);
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  font-family: var(--sans);
}
.btn-ghost:hover {
  border-color: var(--rv-off-white);
  background: rgba(250, 249, 245, .06);
}

/* ---- NAV ---- */
#site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(18, 49, 47, .96);
  backdrop-filter: saturate(160%) blur(8px);
  -webkit-backdrop-filter: saturate(160%) blur(8px);
  color: var(--rv-off-white);
  border-bottom: 1px solid var(--line-on-dark);
  transition: box-shadow .3s var(--ease-out);
}
#site-nav.scrolled {
  box-shadow: 0 4px 24px rgba(18, 49, 47, .18);
}

.nav-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--rv-off-white);
  letter-spacing: -.01em;
}
.logo img {
  height: 28px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 30px;
  font-size: 14px;
  font-weight: 500;
}
/* WordPress gera <ul> dentro de nav-links quando menu está ativo */
.nav-links ul {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a,
.nav-links li a {
  position: relative;
  padding: 4px 0;
  color: var(--rv-off-white);
  transition: color .2s var(--ease-out);
}
.nav-links a:hover,
.nav-links li a:hover {
  color: var(--rv-lima);
}
.nav-links a.dormant,
.nav-links li.dormant a {
  opacity: .42;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-cta {
  background: var(--rv-lima);
  color: var(--rv-verde-principal);
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .01em;
  transition: background .2s var(--ease-out);
  white-space: nowrap;
}
.nav-cta:hover { background: var(--rv-lima-deep); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--rv-off-white);
  border-radius: 2px;
  transition: transform .3s var(--ease-out), opacity .3s;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 72px 0 0 0;
  background: var(--rv-verde-principal);
  z-index: 49;
  padding: 40px 32px;
  flex-direction: column;
  gap: 24px;
  overflow-y: auto;
}
.mobile-menu.open {
  display: flex;
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav-links li {
  border-bottom: 1px solid var(--line-on-dark);
}
.mobile-nav-links a {
  display: block;
  padding: 16px 0;
  font-size: 20px;
  font-weight: 600;
  color: var(--rv-off-white);
}
.mobile-nav-links a:hover { color: var(--rv-lima); }
.mobile-cta { margin-top: 16px; }

body.nav-open { overflow: hidden; }

/* ---- HERO ---- */
.hero {
  position: relative;
  background: var(--rv-verde-principal);
  color: var(--rv-off-white);
  overflow: hidden;
  padding: 128px 0 112px;
}
.hero::before {
  display: none;
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../img/pattern-verde-dark.png');
  background-size: 720px;
  background-position: 120% -10%;
  background-repeat: no-repeat;
  opacity: .18;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero .v-mark {
  position: absolute;
  right: -6%;
  bottom: -18%;
  height: 120%;
  width: auto;
  opacity: .16;
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 2; }
.hero .eyebrow { color: var(--rv-lima); }
.hero h1 {
  font-size: clamp(48px, 7.4vw, 92px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -.025em;
  margin: 18px 0 28px;
  max-width: 16ch;
}
.hero .lede {
  font-size: clamp(17px, 1.6vw, 20px);
  max-width: 48ch;
  color: var(--fg-on-dark-2);
  font-weight: 400;
  line-height: 1.55;
}
.hero .lede strong {
  color: var(--rv-off-white);
  font-weight: 600;
}
.hero-cta {
  display: flex;
  gap: 14px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-strip {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line-on-dark);
  margin-top: 88px;
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--rv-lima);
}
.hero-strip .meta {
  color: var(--fg-on-dark-2);
  letter-spacing: .04em;
  text-transform: none;
  font-weight: 400;
  font-size: 14px;
}

/* ---- SECTION SHELL ---- */
section { padding: 104px 0; }

.sec-head {
  max-width: 62ch;
  margin-bottom: 54px;
}
.sec-head h2 {
  font-size: clamp(34px, 4.4vw, 52px);
  font-weight: 600;
  margin: 14px 0 18px;
}
.sec-head p {
  font-size: 17px;
  color: var(--fg-2);
  font-weight: 400;
  max-width: 54ch;
  line-height: 1.55;
}

/* ---- SETORES ---- */
.sectors { background: var(--rv-cinza-warm); }

.tier-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 24px;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--rv-verde-2);
}
.tier-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.lead-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}

.lead-card {
  position: relative;
  background: var(--rv-verde-principal);
  color: var(--rv-off-white);
  border-radius: 14px;
  padding: 34px 28px 30px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
  box-shadow: 0 1px 2px rgba(18, 49, 47, .06), 0 1px 3px rgba(18, 49, 47, .04);
  text-decoration: none;
}
.lead-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(18, 49, 47, .10), 0 4px 10px rgba(18, 49, 47, .05);
}
.lead-card .idx {
  position: absolute;
  top: 24px;
  left: 28px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--rv-lima);
}
.lead-card .vbg {
  position: absolute;
  right: -14%;
  top: -22%;
  width: 78%;
  height: auto;
  opacity: .10;
  pointer-events: none;
}
.lead-card h3 {
  font-size: 25px;
  position: relative;
  margin-bottom: 10px;
  color: var(--rv-off-white);
}
.lead-card p {
  font-size: 14px;
  color: var(--fg-on-dark-2);
  position: relative;
  line-height: 1.55;
}
.lead-card .proof {
  margin-top: 16px;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rv-lima);
  font-weight: 600;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sub-card {
  background: var(--rv-off-white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 24px;
  transition: border-color .25s var(--ease-out), transform .25s var(--ease-out);
}
.sub-card:hover {
  border-color: var(--rv-verde-2);
  transform: translateY(-3px);
}
.sub-card h3 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--rv-verde-principal);
}
.sub-card p {
  font-size: 14px;
  color: var(--fg-2);
  font-weight: 400;
  line-height: 1.55;
}
.sub-card .tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 999px;
}
.tag.proven  { background: rgba(24, 74, 68, .10); color: var(--rv-verde-2); }
.tag.anchor  { background: rgba(140, 166, 204, .22); color: #4a6890; }
.tag.frontier{ background: var(--rv-lima); color: var(--rv-verde-principal); }

/* ---- JORNADA ---- */
.journey {
  background: var(--rv-verde-principal);
  color: var(--rv-off-white);
  position: relative;
  overflow: hidden;
}
.journey::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../img/pattern-verde-dark.png');
  background-size: 720px;
  opacity: .20;
  mix-blend-mode: screen;
  pointer-events: none;
}
.journey .wrap { position: relative; z-index: 2; }
.journey .sec-head h2 { color: var(--rv-off-white); }
.journey .sec-head p  { color: var(--fg-on-dark-2); }
.journey .eyebrow { color: var(--rv-lima); }

.stages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 30px;
}
.stage {
  padding: 0 22px;
  position: relative;
}
.stage:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 74px;
  right: -6px;
  width: 10px;
  height: 2px;
  background: var(--rv-lima);
}

/* V-symbol scale progression */
.stage-icon {
  height: 108px;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin-bottom: 22px;
}
.stage-icon .v {
  background: url('../img/symbol-lime.png') center / contain no-repeat;
  width: 30px;
}

.stage[data-grow="1"] .v { height: 36px; }

.stage[data-grow="2"] .v:nth-child(1) { height: 42px; opacity: .55; }
.stage[data-grow="2"] .v:nth-child(2) { height: 60px; }

.stage[data-grow="3"] .v:nth-child(1) { height: 48px; opacity: .4; }
.stage[data-grow="3"] .v:nth-child(2) { height: 66px; opacity: .7; }
.stage[data-grow="3"] .v:nth-child(3) { height: 84px; }

.stage[data-grow="4"] .v:nth-child(1) { height: 54px; opacity: .3; }
.stage[data-grow="4"] .v:nth-child(2) { height: 72px; opacity: .55; }
.stage[data-grow="4"] .v:nth-child(3) { height: 88px; opacity: .78; }
.stage[data-grow="4"] .v:nth-child(4) { height: 104px; }

.stage .num {
  font-size: 12px;
  letter-spacing: .14em;
  color: var(--rv-lima);
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.stage h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--rv-off-white);
  font-weight: 600;
}
.stage p {
  font-size: 14px;
  color: var(--fg-on-dark-2);
  font-weight: 400;
  line-height: 1.55;
}

.journey-line {
  margin-top: 64px;
  font-style: normal;
  font-size: clamp(20px, 2.4vw, 28px);
  color: var(--rv-off-white);
  text-align: center;
  font-weight: 500;
  letter-spacing: -.01em;
}

/* ---- ACERVO ---- */
.acervo { background: var(--rv-off-white); }

.acervo-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.stat-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 40px;
}
.stat {
  padding-top: 18px;
  border-top: 2px solid var(--rv-verde-principal);
}
.stat .n {
  font-size: clamp(44px, 6vw, 68px);
  color: var(--rv-verde-principal);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -.02em;
}
.stat .n span {
  font-size: .5em;
  color: var(--rv-verde-2);
  font-weight: 500;
}
.stat .l {
  font-size: 14px;
  color: var(--fg-2);
  margin-top: 10px;
  font-weight: 500;
}

.creds {
  background: var(--rv-verde-principal);
  color: var(--rv-off-white);
  border-radius: 16px;
  padding: 38px 34px;
  position: relative;
  overflow: hidden;
}
.creds::before {
  content: "";
  position: absolute;
  right: -30px;
  top: -30px;
  width: 160px;
  height: 160px;
  background: url('../img/symbol-lime.png') center / contain no-repeat;
  opacity: .12;
  pointer-events: none;
}
.creds h3 {
  font-size: 22px;
  color: var(--rv-off-white);
  margin-bottom: 20px;
  position: relative;
  font-weight: 600;
}
.cred {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-on-dark);
  font-size: 14px;
  align-items: flex-start;
  position: relative;
}
.cred:last-child { border: 0; }
.cred .dot {
  flex: 0 0 16px;
  width: 16px;
  height: 12px;
  background: url('../img/symbol-lime.png') center / contain no-repeat;
  margin-top: 5px;
}
.cred strong { color: var(--rv-off-white); font-weight: 600; }
.cred span   { color: var(--fg-on-dark-2); font-weight: 400; line-height: 1.55; }

.founder {
  display: flex;
  gap: 26px;
  align-items: center;
  margin-top: 46px;
  padding: 32px 34px;
  background: var(--rv-cinza-warm);
  border-radius: 14px;
  border-left: 4px solid var(--rv-lima);
}
.f-mark {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--rv-verde-principal);
  color: var(--rv-lima);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: .02em;
  font-weight: 600;
}
.f-body h3 {
  font-size: 24px;
  margin: 5px 0 4px;
  color: var(--rv-verde-principal);
  font-weight: 600;
}
.f-role {
  font-size: 13px;
  color: var(--rv-verde-2);
  font-weight: 600;
}
.f-line {
  font-size: 14px;
  color: var(--fg-2);
  font-weight: 400;
  margin-top: 7px;
  max-width: 62ch;
  line-height: 1.55;
}

/* ---- RELAÇÃO ---- */
.relation { background: var(--rv-cinza-warm); }

.relation-card {
  background: var(--rv-verde-2);
  color: var(--rv-off-white);
  border-radius: 18px;
  padding: 60px 54px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.relation-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../img/pattern-verde-dark.png');
  background-size: 560px;
  opacity: .30;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.relation-card > * { position: relative; z-index: 2; }
.relation-card h2 {
  font-size: clamp(30px, 3.6vw, 44px);
  color: var(--rv-off-white);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.015em;
}
.relation-card .quote {
  font-size: 22px;
  color: var(--rv-lima);
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: -.005em;
}
.relation-card .quote::before {
  content: "";
  display: block;
  width: 36px;
  height: 28px;
  background: url('../img/symbol-lime.png') left center / contain no-repeat;
  margin-bottom: 14px;
}
.relation-card p {
  font-size: 15px;
  color: var(--fg-on-dark-2);
  font-weight: 400;
  margin-top: 18px;
  line-height: 1.6;
}

/* ---- INSIGHTS ---- */
.insights { background: var(--rv-off-white); }

.ins-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ins-card {
  background: var(--rv-off-white);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out);
}
.ins-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(18, 49, 47, .10), 0 4px 10px rgba(18, 49, 47, .05);
}
.ins-img {
  height: 140px;
  position: relative;
  overflow: hidden;
}
.ins-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins-img.a { background: var(--rv-verde-principal); }
.ins-img.a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../img/pattern-lima.png') center / 360px no-repeat;
  opacity: .55;
  mix-blend-mode: screen;
}
.ins-img.b { background: var(--rv-azul); }
.ins-img.b::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../img/symbol-offwhite.png') right -20px bottom -20px / 120px no-repeat;
  opacity: .7;
}
.ins-img.c { background: var(--rv-lima); }
.ins-img.c::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../img/symbol-dark.png') right -10px bottom -10px / 110px no-repeat;
  opacity: .55;
}
.ins-body { padding: 22px 22px 26px; }
.ins-body .cat {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rv-verde-2);
  font-weight: 600;
}
.ins-body h3 {
  font-size: 19px;
  margin: 12px 0 10px;
  line-height: 1.25;
  color: var(--rv-verde-principal);
  font-weight: 600;
}
.ins-body h3 a { color: inherit; }
.ins-body h3 a:hover { color: var(--rv-verde-2); }
.ins-body .date {
  font-size: 12px;
  color: var(--fg-3);
}

/* ---- CTA ---- */
.cta {
  background: var(--rv-verde-principal);
  color: var(--rv-off-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../img/pattern-verde-dark.png');
  background-size: 720px;
  background-position: center;
  opacity: .20;
  mix-blend-mode: screen;
  pointer-events: none;
}
.cta .v-mark {
  position: absolute;
  right: -10%;
  bottom: -25%;
  height: 140%;
  width: auto;
  opacity: .10;
  pointer-events: none;
}
.cta .wrap { position: relative; z-index: 2; }
.cta .eyebrow {
  color: var(--rv-lima);
  display: block;
  margin-bottom: 18px;
}
.cta h2 {
  font-size: clamp(32px, 5vw, 56px);
  max-width: 20ch;
  margin: 0 auto 32px;
  color: var(--rv-off-white);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.05;
}
.cta .btn-primary { margin-top: 6px; }
.cta .secondary {
  display: inline-block;
  margin-top: 30px;
  font-size: 14px;
  color: var(--rv-lima);
  border-bottom: 1px solid var(--rv-lima);
  padding-bottom: 2px;
}
.cta .secondary:hover { opacity: .7; }

/* ---- FOOTER ---- */
#site-footer {
  background: var(--rv-verde-principal);
  color: var(--fg-on-dark-2);
  padding: 72px 0 32px;
  font-size: 14px;
  border-top: 1px solid var(--line-on-dark);
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
#site-footer h4 {
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rv-lima);
  margin-bottom: 16px;
  font-weight: 600;
}
.foot-brand .logo { margin-bottom: 18px; }
.foot-brand .logo img { height: 32px; }
.foot-tagline {
  font-size: 15px;
  font-weight: 600;
  color: var(--rv-off-white);
  margin-bottom: 10px;
}
.foot-about {
  max-width: 34ch;
  font-weight: 400;
  line-height: 1.55;
  color: var(--fg-on-dark-2);
}
#site-footer ul { list-style: none; }
#site-footer li { margin-bottom: 10px; }
#site-footer li.dormant { opacity: .4; }
#site-footer li.dormant em {
  font-style: normal;
  color: var(--rv-lima);
  font-size: 10px;
  margin-left: 6px;
  letter-spacing: .06em;
}
#site-footer a:hover { color: var(--rv-off-white); }
.foot-bot {
  border-top: 1px solid var(--line-on-dark);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 600;
}
.foot-bot .sig { color: var(--rv-lima); }
.foot-bot .sig a { color: inherit; }
.foot-bot .sig a:hover { opacity: .7; }

/* ---- PÁGINA HERO genérica ---- */
.page-hero {
  background: var(--rv-verde-principal);
  color: var(--rv-off-white);
  padding: 80px 0 64px;
}
.page-hero .eyebrow { color: var(--rv-lima); }
.page-hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  margin-top: 16px;
}

/* ---- PAGE CONTENT ---- */
.page-content {
  padding: 80px 32px;
  max-width: 780px;
  line-height: 1.7;
  font-size: 17px;
  color: var(--fg-2);
}
.page-content h2 { margin: 48px 0 16px; color: var(--rv-verde-principal); }
.page-content h3 { margin: 32px 0 12px; color: var(--rv-verde-principal); }
.page-content p  { margin-bottom: 18px; }
.page-content ul, .page-content ol { padding-left: 24px; margin-bottom: 18px; }
.page-content li { margin-bottom: 6px; }

/* ---- SETOR TEMPLATES ---- */
.setor-texto {
  font-size: 17px;
  color: var(--fg-2);
  line-height: 1.7;
}
.setor-texto p  { margin-bottom: 18px; }
.setor-texto ul { padding-left: 24px; margin-bottom: 18px; }
.setor-texto li { margin-bottom: 8px; }

/* ---- FORMULÁRIO DE CONTATO ---- */
.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-row { display: flex; flex-direction: column; gap: 20px; }
.form-row--2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-2);
  letter-spacing: .02em;
}
.form-field label span { color: var(--rv-verde-2); }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--sans);
  font-size: 15px;
  padding: 12px 16px;
  border: 1.5px solid var(--rv-cinza);
  border-radius: 8px;
  background: #fff;
  color: var(--fg-1);
  transition: border-color .2s var(--ease-out);
  outline: none;
  width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--rv-verde-2);
}
.form-field textarea { resize: vertical; min-height: 120px; }

.form-actions { margin-top: 8px; }

#rv-form-feedback {
  padding: 16px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
}
#rv-form-feedback.success {
  background: rgba(24, 74, 68, .10);
  color: var(--rv-verde-2);
  border: 1px solid rgba(24, 74, 68, .2);
}
#rv-form-feedback.error {
  background: rgba(200, 60, 60, .08);
  color: #b33;
  border: 1px solid rgba(200, 60, 60, .2);
}

/* ---- SINGLE POST ---- */
.post-hero { padding: 100px 0 80px; }
.post-hero h1 {
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.14;
  letter-spacing: -.015em;
  max-width: 24ch;
}
.post-hero .eyebrow { margin-bottom: 14px; }
.post-body {
  color: var(--fg-2);
  font-size: 17px;
  line-height: 1.7;
}
.post-body h2 { margin: 48px 0 16px; color: var(--rv-verde-principal); font-size: clamp(24px, 3vw, 36px); }
.post-body h3 { margin: 32px 0 12px; color: var(--rv-verde-principal); }
.post-body p  { margin-bottom: 20px; }
.post-body ul,
.post-body ol { padding-left: 24px; margin-bottom: 20px; }
.post-body li { margin-bottom: 8px; }
.post-body blockquote {
  border-left: 4px solid var(--rv-lima);
  padding: 16px 24px;
  margin: 32px 0;
  background: var(--rv-cinza-warm);
  border-radius: 0 8px 8px 0;
  font-size: 19px;
  font-weight: 500;
  color: var(--rv-verde-2);
  line-height: 1.45;
}

/* ============================================================
   SETOR PAGES — componentes específicos
   ============================================================ */

/* Hero do setor */
.setor-hero {
  padding: 84px 0 70px;
}
.setor-hero::before {
  background-image: url('../img/pattern-verde-dark.png');
  background-size: 720px;
  background-position: 110% -10%;
  opacity: .14;
}
.crumb {
  font-size: 12px;
  color: var(--rv-azul);
  margin-bottom: 18px;
}
.crumb b {
  color: var(--rv-lima);
  font-weight: 600;
}
.setor-hero h1 {
  font-size: clamp(34px, 5.4vw, 58px);
  max-width: 15ch;
  margin-bottom: 8px;
}
.setor-sub {
  font-style: italic;
  font-size: clamp(17px, 2.2vw, 24px);
  color: var(--rv-lima);
  margin-bottom: 18px;
}
.fbadge {
  display: inline-block;
  background: rgba(234,255,96,.2);
  border: 1px solid var(--rv-lima);
  color: #f0c9a8;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 6px 15px;
  border-radius: 20px;
  margin-bottom: 20px;
}

/* KPIs no hero do setor */
.kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
  max-width: 800px;
}
.kpi {
  background: rgba(245,241,230,.06);
  border: 1px solid rgba(234,255,96,.25);
  border-radius: 4px;
  padding: 18px 16px;
}
.kpi strong {
  display: block;
  font-size: 30px;
  color: var(--rv-lima);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -.015em;
}
.kpi span {
  font-size: 11.5px;
  color: #c5cec4;
  margin-top: 7px;
  display: block;
  font-weight: 300;
}
@media (max-width: 760px) {
  .kpis { grid-template-columns: repeat(2,1fr); }
}

/* Seção desafio */
.setor-problem { background: var(--rv-cinza-warm); }
.setor-problem .sec-head { margin-bottom: 32px; }

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.problem-grid .pcard {
  background: var(--rv-off-white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--rv-verde-2);
  border-radius: 0 4px 4px 0;
  padding: 24px 26px;
}
.problem-grid .pcard h3 {
  font-size: 18px;
  color: var(--rv-verde-principal);
  margin-bottom: 8px;
  font-weight: 600;
}
.problem-grid .pcard p {
  font-size: 14px;
  color: var(--fg-2);
  font-weight: 300;
}
@media (max-width: 760px) {
  .problem-grid { grid-template-columns: 1fr; }
}

/* Destaque narrativo (card escuro tipo feat-card) */
.setor-destaque { background: var(--rv-off-white); }
.feat-card {
  background: linear-gradient(135deg, var(--rv-verde-2), var(--rv-verde-principal));
  border-radius: 6px;
  overflow: hidden;
  color: var(--rv-off-white);
  position: relative;
}
.feat-card .glow {
  position: absolute;
  top: -30%; right: -10%;
  width: 50%; height: 120%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(234,255,96,.28), transparent 65%);
}
.feat-top {
  padding: 34px 40px 0;
  position: relative;
}
.feat-tag {
  display: inline-block;
  background: var(--rv-lima);
  color: var(--rv-verde-principal);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 2px;
  margin-bottom: 14px;
}
.feat-card h2 {
  color: var(--rv-off-white);
  font-size: clamp(24px, 3.2vw, 34px);
  max-width: 24ch;
  font-weight: 600;
}
.feat-card .cli {
  color: var(--rv-azul);
  font-size: 13px;
  margin-top: 8px;
}
.feat-body {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
  padding: 24px 40px 38px;
  position: relative;
}
.feat-body p {
  font-size: 14.5px;
  color: #dbe3da;
  font-weight: 300;
}
.feat-body p em {
  font-style: italic;
  color: var(--rv-lima);
}
.feat-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-content: start;
}
.fstat {
  background: rgba(245,241,230,.07);
  border: 1px solid rgba(234,255,96,.22);
  border-radius: 4px;
  padding: 14px;
}
.fstat strong {
  display: block;
  font-size: 26px;
  color: var(--rv-lima);
  line-height: 1;
  font-weight: 600;
}
.fstat span {
  font-size: 11px;
  color: #c5cec4;
  margin-top: 5px;
  display: block;
}
.feat-pills {
  padding: 0 40px 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  position: relative;
}
.fpill {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: 20px;
  background: rgba(245,241,230,.1);
  color: #e6ddc6;
}
@media (max-width: 760px) {
  .feat-body { grid-template-columns: 1fr; }
  .feat-top, .feat-body, .feat-pills { padding-left: 26px; padding-right: 26px; }
}

/* Seção narrativa / forward */
.setor-narrativa { background: var(--rv-off-white); }
.fwd-card {
  background: linear-gradient(135deg, var(--rv-verde-2), var(--rv-verde-principal));
  color: var(--rv-off-white);
  border-radius: 6px;
  padding: 46px 48px;
  position: relative;
  overflow: hidden;
}
.fwd-card .glow {
  position: absolute;
  bottom: -50%; left: -8%;
  width: 50%; height: 130%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(234,255,96,.25), transparent 65%);
}
.fwd-card h2 {
  color: var(--rv-off-white);
  font-size: clamp(24px, 3.2vw, 34px);
  max-width: 22ch;
  position: relative;
  font-weight: 600;
}
.fwd-card p {
  font-size: 15px;
  color: #dbe3da;
  font-weight: 300;
  margin-top: 16px;
  max-width: 60ch;
  position: relative;
}
.fwd-card p em {
  font-style: italic;
  color: var(--rv-lima);
}
@media (max-width: 760px) {
  .fwd-card { padding: 30px 26px; }
}

/* Grid de cases */
.setor-cases { background: var(--rv-cinza-warm); }
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.case {
  background: var(--rv-off-white);
  border: 1px solid var(--line);
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out);
}
.case:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 34px rgba(19,41,31,.12);
}
.case .top {
  background: var(--rv-verde-principal);
  padding: 20px 22px 16px;
}
.case .tag {
  display: inline-block;
  background: var(--rv-lima);
  color: var(--rv-verde-principal);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 2px;
  margin-bottom: 10px;
}
.case .top h3 {
  color: var(--rv-off-white);
  font-size: 17px;
  line-height: 1.25;
  font-weight: 600;
}
.case .cli {
  color: var(--rv-azul);
  font-size: 12px;
  margin-top: 7px;
}
.case .body {
  padding: 18px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.case .body p {
  font-size: 13px;
  color: var(--fg-2);
  font-weight: 300;
  margin-bottom: 14px;
}
.mets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: auto;
}
.met {
  background: var(--rv-cinza-warm);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 9px 10px;
  text-align: center;
}
.met strong {
  display: block;
  font-size: 18px;
  color: var(--rv-verde-2);
  line-height: 1;
  font-weight: 600;
}
.met span {
  font-size: 10px;
  color: var(--fg-3);
  margin-top: 3px;
  display: block;
}
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 14px;
}
.pill {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 20px;
}
.pill.bio { background: rgba(18,49,47,.12); color: var(--rv-verde-2); }
.pill.ods { background: rgba(58,107,138,.12); color: #2f6080; }
.pill.rec { background: rgba(234,255,96,.16); color: #9a7320; }
.pill.vu  { background: rgba(234,255,96,.13); color: var(--rv-lima-deep); }
@media (max-width: 860px) {
  .case-grid { grid-template-columns: 1fr; }
}

/* Jornada strip (fundo escuro) */
.jstrip {
  background: var(--rv-verde-principal);
  color: var(--rv-off-white);
  padding: 78px 0;
}
.jstrip .sec-head h2 { color: var(--rv-off-white); }
.jstrip .sec-head p  { color: #aeb9b0; }
.jstrip .eyebrow     { color: var(--rv-lima); }
.jrow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 20px;
}
.jcell {
  padding: 20px;
  border-top: 2px solid rgba(234,255,96,.3);
  position: relative;
}
.jcell.active {
  border-top-color: var(--rv-lima);
  background: rgba(234,255,96,.06);
  border-radius: 0 0 4px 4px;
}
.jcell .n {
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--rv-lima);
  font-weight: 700;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.jcell h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--rv-off-white);
  font-weight: 600;
}
.jcell p {
  font-size: 12.5px;
  color: #b6c0b6;
  font-weight: 300;
}
.jcell .here {
  position: absolute;
  top: -11px;
  left: 20px;
  background: var(--rv-lima);
  color: var(--rv-verde-principal);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
}
@media (max-width: 760px) {
  .jrow { grid-template-columns: 1fr 1fr; gap: 24px 16px; }
}

/* ---- PAGINAÇÃO ---- */
.page-numbers {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
}
.page-numbers a,
.page-numbers span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--line);
  color: var(--fg-2);
  transition: background .2s, border-color .2s;
}
.page-numbers a:hover {
  background: var(--rv-cinza-warm);
  border-color: var(--rv-verde-2);
}
.page-numbers .current {
  background: var(--rv-verde-principal);
  color: var(--rv-off-white);
  border-color: var(--rv-verde-principal);
}
