/* ============================================================
   ARCA CAPITAL — Crédito e Fomento Empresarial
   Redesign editorial · fundo papel-creme, detalhes em verde
   Paleta oficial da marca:
     Creme #F2E6CE · Verde esmeralda #0A6B5C · Verde profundo #013F37
     Verde escuro #0C2B23 · Dourado #D3AF6F · Preto #141414
   ============================================================ */

:root {
  /* Papel (fundo claro) */
  --paper: #F2E6CE;
  --paper-2: #F8F0DD;
  --panel: #EADFC2;
  --panel-2: #E3D6B6;

  /* Tinta (verde) */
  --ink: #0C2B23;          /* texto principal, quase-preto esverdeado */
  --ink-2: #163a2c;
  --green: #013F37;
  --teal: #0A6B5C;
  --teal-2: #0f8a74;

  /* Dourado (acento metálico, uso pontual) */
  --gold: #C4964B;         /* dourado mais escuro, legível sobre creme */
  --gold-soft: #D3AF6F;    /* dourado oficial da marca (sobre escuro) */

  /* Escuro (blocos invertidos) */
  --dark: #0C2B23;
  --dark-2: #123a2e;
  --cream: #F2E6CE;

  /* Papeis de texto */
  --body: #3B4B41;         /* corpo sobre creme */
  --muted: #6d7a6f;
  --hair: rgba(11, 41, 31, 0.16);   /* hairline sobre creme */
  --hair-strong: rgba(11, 41, 31, 0.28);
  --hair-dark: rgba(247, 241, 227, 0.16); /* hairline sobre escuro */

  --container: 1240px;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: "Space Mono", ui-monospace, "SFMono-Regular", monospace;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--body);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
::selection { background: var(--green); color: var(--cream); }

/* ---------- Tipografia base ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.04; letter-spacing: -0.015em; color: var(--ink); }
.serif-i { font-family: var(--serif); font-style: italic; font-weight: 400; }

.eyebrow {
  font-family: var(--mono); font-size: 0.74rem; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--teal);
  display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow .idx { color: var(--gold); }
.eyebrow::before { content: ""; width: 22px; height: 1px; background: currentColor; opacity: 0.55; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 32px; }
.section { padding: clamp(80px, 11vw, 150px) 0; position: relative; }
.section--hair { border-top: 1px solid var(--hair); }
.shead { max-width: 760px; margin-bottom: clamp(46px, 6vw, 72px); }
.shead__title { font-size: clamp(2.1rem, 5vw, 3.6rem); margin-top: 22px; }
.shead__lead { margin-top: 24px; font-size: 1.14rem; color: var(--body); max-width: 60ch; }
.section--center .shead { margin-inline: auto; text-align: center; }
.section--center .eyebrow { justify-content: center; }

/* ---------- Botões / links ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  padding: 16px 30px; border-radius: 100px; font-weight: 600; font-size: 0.96rem;
  letter-spacing: 0.005em; transition: transform 0.4s var(--ease), background 0.4s var(--ease), color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  white-space: nowrap; position: relative; overflow: hidden;
}
.btn svg { width: 17px; height: 17px; position: relative; z-index: 1; transition: transform 0.4s var(--ease); }
.btn span { position: relative; z-index: 1; }
.btn--green { background: var(--green); color: var(--cream); }
.btn--green:hover { background: var(--ink); transform: translateY(-2px); box-shadow: 0 16px 30px -16px rgba(1,63,55,0.6); }
.btn--green:hover svg { transform: translateX(4px); }
.btn--outline { border: 1px solid var(--hair-strong); color: var(--ink); }
.btn--outline:hover { border-color: var(--green); background: var(--green); color: var(--cream); transform: translateY(-2px); }
.btn--cream { background: var(--cream); color: var(--ink); }
.btn--cream:hover { background: var(--gold-soft); transform: translateY(-2px); }
.btn--gold { background: linear-gradient(135deg, #E6CE92, #D3AF6F 55%, #C4964B); color: #14140F; box-shadow: 0 12px 26px -14px rgba(211,175,111,0.75); }
.btn--gold:hover { background: linear-gradient(135deg, #EED9A5, #DAB878 55%, #CB9E52); transform: translateY(-2px); box-shadow: 0 18px 34px -14px rgba(211,175,111,0.9); }
.btn--block { width: 100%; }
.btn--lg { padding: 18px 36px; font-size: 1rem; }

.tlink {
  display: inline-flex; align-items: center; gap: 9px; font-weight: 600; color: var(--ink);
  padding-bottom: 3px; border-bottom: 1.5px solid var(--gold); transition: gap 0.35s var(--ease), color 0.35s var(--ease);
}
.tlink svg { width: 16px; height: 16px; transition: transform 0.35s var(--ease); }
.tlink:hover { color: var(--teal); }
.tlink:hover svg { transform: translateX(4px); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.header { position: fixed; inset: 0 0 auto 0; z-index: 100; background: var(--dark); border-bottom: 1px solid rgba(247,241,227,0.1); transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.header.is-scrolled { background: #041711; box-shadow: 0 12px 30px -20px rgba(0,0,0,0.7); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 82px; gap: 24px; }
.nav__brand { display: flex; align-items: center; }
.nav__brand img { height: 30px; width: auto; }
.nav__menu { display: flex; align-items: center; gap: 36px; }
.nav__link { font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(247,241,227,0.78); position: relative; padding: 4px 0; transition: color 0.35s var(--ease); }
.nav__link::after { content: ""; position: absolute; left: 0; bottom: -3px; height: 1.5px; width: 0; background: var(--gold-soft); transition: width 0.35s var(--ease); }
.nav__link:hover { color: var(--gold-soft); }
.nav__link:hover::after { width: 100%; }
.nav__cta { display: flex; align-items: center; gap: 16px; }
.nav__cta .btn { padding: 12px 24px; font-size: 0.86rem; }
.nav__toggle { display: none; width: 44px; height: 44px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav__toggle span { width: 24px; height: 2px; background: var(--cream); border-radius: 2px; transition: transform 0.35s var(--ease), opacity 0.35s var(--ease); }
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO (editorial)
   ============================================================ */
.hero { position: relative; padding: clamp(140px, 22vh, 220px) 0 clamp(60px, 8vw, 96px); overflow: hidden; }
.hero__watermark { position: absolute; top: -4%; right: -6%; width: min(620px, 52vw); opacity: 0.07; pointer-events: none; z-index: 0; }
.hero__watermark svg, .hero__watermark img { width: 100%; }
.hero__top { display: flex; justify-content: space-between; align-items: center; padding-bottom: 26px; border-bottom: 1px solid var(--hair); position: relative; z-index: 2; }
.hero__top .r { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.hero__inner { position: relative; z-index: 2; }
.hero h1 { font-size: clamp(2.5rem, 4.8vw, 4.2rem); margin: 0; letter-spacing: -0.025em; max-width: 13ch; }
.hero h1 .accent { position: relative; font-style: italic; color: var(--green); white-space: nowrap; }
.hero h1 .accent svg { position: absolute; left: 0; right: 0; bottom: -0.12em; width: 100%; height: 0.22em; color: var(--gold); }
.hero__grid { margin-top: clamp(34px, 4.5vw, 56px); display: grid; grid-template-columns: 1.02fr 0.98fr; gap: clamp(40px, 5vw, 76px); align-items: center; }
.hero__lead { margin-top: 30px; font-size: 1.2rem; line-height: 1.55; color: var(--ink-2); max-width: 44ch; }

/* ---------- Fotos (figure editorial) ---------- */
.figure { position: relative; border-radius: 20px; overflow: hidden; background: var(--panel); box-shadow: 0 40px 80px -40px rgba(6,32,24,0.5); }
.figure img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 1s var(--ease); }
.figure:hover img { transform: scale(1.045); }
.figure__cap { position: absolute; left: 16px; bottom: 16px; z-index: 2; display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--cream); background: rgba(6,32,24,0.55); backdrop-filter: blur(8px); padding: 8px 13px; border-radius: 100px; border: 1px solid rgba(247,241,227,0.14); }
.figure__cap::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-soft); }
.figure--framed { border-radius: 20px; }
.figure--framed::after { content: ""; position: absolute; inset: 0; border-radius: 20px; border: 1px solid rgba(247,241,227,0.12); pointer-events: none; }

.hero__photo { position: relative; display: flex; flex-direction: column; align-items: center; gap: 22px; }
.hero__photo::before { content: ""; position: absolute; width: 94%; height: 74%; left: 3%; top: 4%; border-radius: 50%; background: radial-gradient(ellipse, rgba(211,175,111,0.36), transparent 68%); filter: blur(46px); z-index: 0; }
.hero__card-img { position: relative; z-index: 1; width: 100%; max-width: 500px; height: auto; filter: drop-shadow(-14px 30px 42px rgba(12,43,35,0.44)); animation: floatY 6s ease-in-out infinite; }
.hero__cap { position: relative; z-index: 1; font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); display: inline-flex; align-items: center; gap: 8px; }
.hero__cap::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-soft); }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.hero__actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 22px; align-items: center; }
.hero__note { margin-top: 26px; font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.04em; color: var(--muted); display: flex; align-items: center; gap: 10px; }
.hero__note svg { width: 15px; height: 15px; color: var(--teal); flex: none; }

/* índice de soluções no hero */
.hero__index { border-top: 1px solid var(--hair-strong); }
.hero__index a { display: flex; align-items: baseline; gap: 18px; padding: 17px 4px; border-bottom: 1px solid var(--hair); transition: padding 0.4s var(--ease), color 0.35s var(--ease); position: relative; }
.hero__index a::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 0; background: var(--green); opacity: 0.05; transition: width 0.4s var(--ease); }
.hero__index a:hover { padding-left: 16px; color: var(--green); }
.hero__index a:hover::before { width: 100%; }
.hero__index .n { font-family: var(--mono); font-size: 0.76rem; color: var(--gold); flex: none; position: relative; z-index: 1; }
.hero__index .t { font-family: var(--serif); font-size: 1.16rem; color: var(--ink); flex: 1; position: relative; z-index: 1; }
.hero__index .arw { opacity: 0; transform: translateX(-6px); transition: opacity 0.35s var(--ease), transform 0.35s var(--ease); position: relative; z-index: 1; }
.hero__index .arw svg { width: 16px; height: 16px; color: var(--teal); }
.hero__index a:hover .arw { opacity: 1; transform: translateX(0); }

/* ---------- Faixa de stats ---------- */
.stats { border-top: 1px solid var(--hair); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stats__item { padding: 40px 28px; border-left: 1px solid var(--hair); position: relative; transition: background 0.4s var(--ease); }
.stats__item:first-child { border-left: none; padding-left: 0; }
.stats__item::after { content: ""; position: absolute; left: 28px; bottom: 26px; width: 0; height: 2px; background: var(--gold); transition: width 0.5s var(--ease); }
.stats__item:first-child::after { left: 0; }
.stats__item:hover::after { width: 34px; }
.stats__num { font-family: var(--serif); font-size: clamp(2.1rem, 4vw, 2.9rem); color: var(--green); line-height: 1; transition: transform 0.4s var(--ease), color 0.4s var(--ease); transform-origin: left; }
.stats__item:hover .stats__num { transform: scale(1.06); color: var(--teal); }
.stats__label { margin-top: 12px; font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }

/* ============================================================
   SOLUÇÕES (lista editorial)
   ============================================================ */
.sol { border-top: 1px solid var(--hair-strong); }
.sol__row { display: grid; grid-template-columns: 64px 1.1fr 1.4fr auto; gap: 28px; align-items: center; padding: 34px 8px; border-bottom: 1px solid var(--hair); transition: padding 0.45s var(--ease), background 0.45s var(--ease); position: relative; }
.sol__row:hover { padding-left: 22px; padding-right: 22px; background: var(--paper-2); }
.sol__n { font-family: var(--mono); font-size: 0.82rem; color: var(--gold); }
.sol__name { display: flex; flex-direction: column; gap: 8px; }
.sol__name h3 { font-size: 1.55rem; font-weight: 400; }
.sol__badge { font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); }
.sol__desc { color: var(--body); font-size: 1rem; max-width: 42ch; }
.sol__arw { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--hair-strong); display: grid; place-items: center; justify-self: end; transition: background 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.4s var(--ease); }
.sol__arw svg { width: 18px; height: 18px; color: var(--ink); transition: transform 0.4s var(--ease), color 0.4s var(--ease); }
.sol__row:hover .sol__arw { background: var(--green); border-color: var(--green); transform: rotate(-45deg); }
.sol__row:hover .sol__arw svg { color: var(--cream); }

/* ============================================================
   SIMULADOR (bloco escuro invertido)
   ============================================================ */
.simulador { background: var(--dark); color: var(--cream); position: relative; overflow: hidden; border-radius: clamp(30px, 4vw, 64px); margin-block: clamp(24px, 4vw, 56px); }
.simulador::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 55% 70% at 88% 15%, rgba(10,107,92,0.3), transparent 60%); pointer-events: none; }
.simulador .eyebrow { color: var(--gold-soft); }
.simulador .eyebrow .idx { color: var(--gold); }
.simulador h2 { color: var(--cream); }
.sim { display: grid; gap: clamp(40px, 5vw, 60px); position: relative; z-index: 1; min-width: 0; }
.sim__intro { max-width: 860px; }
.sim__body { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: center; min-width: 0; }
.sim__body > * { min-width: 0; }
.sim__intro .shead__title { font-size: clamp(2rem, 4.4vw, 3.2rem); }
.sim__intro p { color: rgba(247,241,227,0.72); margin-top: 22px; font-size: 1.1rem; }
.sim__benef { margin-top: 30px; display: grid; gap: 15px; }
.sim__benef li { display: flex; gap: 13px; align-items: center; color: rgba(247,241,227,0.82); font-size: 0.98rem; }
.sim__benef svg { flex: none; width: 19px; height: 19px; color: var(--gold); }

.sim__fig { box-shadow: 0 40px 80px -44px rgba(0,0,0,0.7); aspect-ratio: 4 / 5; background: #0b2a20; }
.sim__fig::after { content: ""; position: absolute; inset: 0; border-radius: 20px; border: 1px solid rgba(247,241,227,0.14); pointer-events: none; }

.sim__card { padding: 38px; border-radius: 20px; background: rgba(255,255,255,0.045); border: 1px solid var(--hair-dark); backdrop-filter: blur(4px); }
.sim__field { margin-bottom: 26px; }
.sim__field > label { display: block; font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(247,241,227,0.6); margin-bottom: 11px; }
.sim__labelrow { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 13px; }
.sim__labelrow label { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(247,241,227,0.6); }
.sim__out { font-family: var(--serif); font-size: 1.3rem; color: var(--gold-soft); }
.sim__field select {
  width: 100%; padding: 14px 16px; border-radius: 11px; background: rgba(0,0,0,0.28);
  border: 1px solid var(--hair-dark); color: var(--cream); font-family: inherit; font-size: 0.97rem;
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%23D3AF6F' stroke-width='2'%3E%3Cpath d='M3 5l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
}
.sim__field select:focus { outline: none; border-color: var(--gold-soft); }
.sim__field select option { background: var(--green); color: var(--cream); }
.sim__scale { display: flex; justify-content: space-between; margin-top: 9px; font-family: var(--mono); font-size: 0.68rem; color: rgba(247,241,227,0.42); }
.sim__field input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 5px; border-radius: 999px; background: rgba(255,255,255,0.12); outline: none; cursor: pointer; }
.sim__field input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 22px; height: 22px; border-radius: 50%; background: linear-gradient(135deg,#E6CE92,#D3AF6F); border: 3px solid var(--dark); box-shadow: 0 3px 10px rgba(0,0,0,0.4); }
.sim__field input[type="range"]::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; border: 3px solid var(--dark); background: #D3AF6F; }
.sim__result { margin: 30px 0 24px; padding: 26px; border-radius: 14px; background: rgba(1,63,55,0.4); border: 1px solid var(--hair-dark); display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 22px; align-items: center; }
.sim__parcela { display: flex; flex-direction: column; min-width: 0; }
.sim__reslabel { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(247,241,227,0.6); }
.sim__parcela strong { font-family: var(--serif); font-size: clamp(1.7rem, 3.4vw, 2.4rem); line-height: 1.08; margin: 4px 0; color: var(--gold-soft); white-space: nowrap; }
.sim__resmes { font-size: 0.8rem; color: rgba(247,241,227,0.5); }
.sim__breakdown { display: grid; gap: 13px; border-left: 1px solid var(--hair-dark); padding-left: 22px; }
.sim__breakdown div { display: flex; flex-direction: column; }
.sim__breakdown span { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(247,241,227,0.5); }
.sim__breakdown b { font-size: 1.05rem; color: var(--cream); font-weight: 600; }
.sim__aviso { margin-top: 18px; font-size: 0.74rem; color: rgba(247,241,227,0.45); line-height: 1.55; text-align: center; }

/* ============================================================
   COMO FUNCIONA (passos editoriais)
   ============================================================ */
.passos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.passo { padding: 0 28px; border-left: 1px solid var(--hair); }
.passo:first-child { border-left: none; padding-left: 0; }
.passo__n { font-family: var(--serif); font-size: 3.4rem; color: var(--gold); line-height: 1; }
.passo h3 { font-size: 1.28rem; font-weight: 400; margin: 0 0 10px; }
.passo p { color: var(--body); font-size: 0.98rem; }

/* ============================================================
   DIFERENCIAIS (quote + lista)
   ============================================================ */
.dif { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.dif__quote { position: sticky; top: 120px; }
.dif__quote .mark { font-family: var(--serif); font-size: 5rem; color: var(--gold); line-height: 0.5; display: block; }
.dif__quote p { font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.3rem); line-height: 1.28; color: var(--ink); margin: 26px 0 22px; }
.dif__quote .by { font-family: var(--mono); font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.dif__quote .by b { color: var(--teal); font-weight: 400; }
.dif__list { display: grid; }
.dif__item { padding: 26px 0; border-top: 1px solid var(--hair); display: grid; grid-template-columns: 44px 1fr; gap: 20px; }
.dif__item:first-child { border-top: none; padding-top: 0; }
.dif__ico { width: 44px; height: 44px; display: grid; place-items: center; }
.dif__ico svg { width: 28px; height: 28px; color: var(--teal); stroke-width: 1.4; }
.dif__item h3 { font-size: 1.22rem; font-weight: 400; margin-bottom: 7px; }
.dif__item p { font-size: 0.98rem; color: var(--body); }

/* ============================================================
   SOBRE
   ============================================================ */
.sobre { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 64px; align-items: center; }
.sobre__photo { position: relative; }
.sobre__photo .figure { aspect-ratio: 1 / 1; }
.sobre__photo::before { content: ""; position: absolute; inset: -16px 16px 16px -16px; border: 1px solid var(--gold); border-radius: 22px; z-index: -1; opacity: 0.5; }
.sobre__badge { position: absolute; right: -14px; top: 26px; z-index: 3; display: flex; align-items: center; gap: 10px; padding: 12px 16px; background: var(--dark); border: 1px solid rgba(247,241,227,0.14); border-radius: 14px; box-shadow: 0 20px 40px -22px rgba(0,0,0,0.6); }
.sobre__badge img { width: 30px; height: auto; }
.sobre__badge span { font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold-soft); line-height: 1.4; }
.sobre__badge b { display: block; color: var(--cream); font-weight: 400; }
.sobre__values { margin-top: 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--hair); }
.value { padding: 22px 22px 22px 0; border-bottom: 1px solid var(--hair); }
.value:nth-child(odd) { border-right: 1px solid var(--hair); padding-right: 22px; }
.value:nth-child(even) { padding-left: 22px; }
.value b { display: block; font-family: var(--serif); font-size: 1.14rem; color: var(--green); margin-bottom: 4px; font-weight: 400; }
.value span { font-size: 0.9rem; color: var(--body); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 860px; margin-inline: auto; border-top: 1px solid var(--hair-strong); }
.faq__item { border-bottom: 1px solid var(--hair); }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 28px 4px; text-align: left; font-size: 1.18rem; font-family: var(--serif); font-weight: 400; color: var(--ink); transition: color 0.3s var(--ease); }
.faq__q:hover { color: var(--teal); }
.faq__q .plus { flex: none; width: 24px; height: 24px; position: relative; transition: transform 0.4s var(--ease); }
.faq__q .plus::before, .faq__q .plus::after { content: ""; position: absolute; background: var(--gold); border-radius: 2px; }
.faq__q .plus::before { top: 11px; left: 2px; right: 2px; height: 2px; }
.faq__q .plus::after { left: 11px; top: 2px; bottom: 2px; width: 2px; transition: transform 0.4s var(--ease); }
.faq__item.is-open .plus { transform: rotate(90deg); }
.faq__item.is-open .plus::after { transform: scaleY(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease); }
.faq__a p { padding: 0 0 28px; color: var(--body); font-size: 1rem; max-width: 78ch; }

/* ============================================================
   CONTATO / FORM
   ============================================================ */
.contato__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contato__lead .shead__title { font-size: clamp(2rem, 4vw, 3rem); }
.contato__benef { margin-top: 32px; display: grid; gap: 16px; }
.contato__benef li { display: flex; gap: 13px; align-items: flex-start; color: var(--body); }
.contato__benef svg { flex: none; width: 21px; height: 21px; color: var(--teal); margin-top: 1px; }
.contato__wpp { margin-top: 36px; display: inline-flex; align-items: center; gap: 16px; padding: 18px 22px; border: 1px solid var(--hair-strong); border-radius: 14px; transition: border-color 0.4s var(--ease), background 0.4s var(--ease); }
.contato__wpp:hover { border-color: var(--teal); background: var(--paper-2); }
.contato__wpp .ico { width: 44px; height: 44px; border-radius: 11px; background: var(--green); display: grid; place-items: center; flex: none; }
.contato__wpp .ico svg { width: 22px; height: 22px; color: var(--cream); }
.contato__wpp b { display: block; color: var(--ink); }
.contato__wpp span { font-size: 0.88rem; color: var(--muted); }

.form { padding: 40px; border-radius: 20px; background: var(--paper-2); border: 1px solid var(--hair); }
.form h3 { font-size: 1.5rem; font-weight: 400; margin-bottom: 6px; }
.form__hint { font-size: 0.92rem; color: var(--muted); margin-bottom: 30px; }
.field { margin-bottom: 24px; position: relative; }
.field label { display: block; font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 9px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 10px 2px; border: none; border-bottom: 1.5px solid var(--hair-strong);
  background: transparent; color: var(--ink); font-family: inherit; font-size: 1.02rem;
  transition: border-color 0.35s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); opacity: 0.7; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-bottom-color: var(--green); }
.field select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%23013F37' stroke-width='2'%3E%3Cpath d='M3 5l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 2px center; }
.field select option { background: var(--paper-2); color: var(--ink); }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form__consent { display: flex; gap: 11px; align-items: flex-start; margin: 4px 0 26px; font-size: 0.82rem; color: var(--muted); }
.form__consent input { width: 17px; height: 17px; margin-top: 2px; accent-color: var(--green); flex: none; }
.form__consent a { color: var(--green); text-decoration: underline; }

/* ============================================================
   FOOTER (escuro)
   ============================================================ */
.footer { background: var(--dark); color: rgba(247,241,227,0.72); padding: 80px 0 34px; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 44px; }
.footer__brand img { height: 40px; width: auto; margin-bottom: 20px; }
.footer__brand p { color: rgba(247,241,227,0.6); font-size: 0.94rem; max-width: 30ch; }
.footer__social { display: flex; gap: 12px; margin-top: 22px; }
.footer__social a { width: 42px; height: 42px; border-radius: 11px; border: 1px solid var(--hair-dark); display: grid; place-items: center; transition: border-color 0.35s var(--ease), background 0.35s var(--ease); }
.footer__social a:hover { border-color: var(--gold); background: rgba(220,192,154,0.08); }
.footer__social svg { width: 18px; height: 18px; color: var(--cream); }
.footer__col h4 { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 20px; font-weight: 400; }
.footer__col a, .footer__col p { display: block; color: rgba(247,241,227,0.66); font-size: 0.94rem; margin-bottom: 12px; transition: color 0.3s var(--ease); }
.footer__col a:hover { color: var(--cream); }
.footer__bottom { margin-top: 60px; padding-top: 28px; border-top: 1px solid var(--hair-dark); display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.04em; color: rgba(247,241,227,0.45); }
.footer__bottom a { color: rgba(247,241,227,0.66); }
.footer__bottom a:hover { color: var(--gold-soft); }
.footer__made b { color: var(--gold-soft); font-weight: 400; }

/* ---------- WhatsApp flutuante ---------- */
.wpp-float { position: fixed; right: 24px; bottom: 24px; z-index: 90; width: 58px; height: 58px; border-radius: 50%; background: var(--green); display: grid; place-items: center; box-shadow: 0 16px 30px -10px rgba(1,63,55,0.5); transition: transform 0.4s var(--ease), background 0.4s var(--ease); }
.wpp-float:hover { transform: scale(1.08); background: var(--ink); }
.wpp-float svg { width: 28px; height: 28px; color: var(--cream); }

/* ---------- Cookies ---------- */
.cookie { position: fixed; left: 24px; right: 24px; bottom: 24px; z-index: 95; max-width: 540px; padding: 22px 26px; border-radius: 16px; background: var(--dark); color: var(--cream); border: 1px solid var(--hair-dark); box-shadow: 0 24px 50px -20px rgba(6,32,24,0.6); display: none; gap: 18px; align-items: center; flex-wrap: wrap; }
.cookie.is-visible { display: flex; }
.cookie p { font-size: 0.86rem; color: rgba(247,241,227,0.72); flex: 1 1 260px; }
.cookie p a { color: var(--gold-soft); text-decoration: underline; }
.cookie__btns { display: flex; gap: 10px; }
.cookie__btns button { padding: 11px 20px; border-radius: 100px; font-size: 0.82rem; font-weight: 600; }
.cookie .aceitar { background: var(--gold-soft); color: var(--ink); }
.cookie .recusar { border: 1px solid var(--hair-dark); color: rgba(247,241,227,0.7); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1000px) {
  .hero__grid, .sim__body, .dif, .sobre, .contato__grid { grid-template-columns: 1fr; gap: 44px; }
  .hero__lead { max-width: none; }
  .hero__photo { max-width: 460px; }
  .sim__fig { aspect-ratio: 4 / 5; min-height: 0; }
  .dif__quote { position: static; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stats__item:nth-child(3) { border-left: none; padding-left: 0; }
  .stats__item { border-top: 1px solid var(--hair); }
  .stats__item:first-child, .stats__item:nth-child(2) { border-top: none; }
  .passos { grid-template-columns: 1fr 1fr; gap: 40px 28px; }
  .passo:nth-child(3) { border-left: none; padding-left: 0; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 720px) {
  .nav__menu { position: fixed; inset: 82px 0 auto 0; flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--dark); border-bottom: 1px solid rgba(247,241,227,0.12); padding: 14px 32px 28px; transform: translateY(-130%); transition: transform 0.4s var(--ease); box-shadow: 0 20px 40px -24px rgba(0,0,0,0.4); }
  .nav.is-open .nav__menu { transform: translateY(0); }
  .nav__menu .nav__link { width: 100%; padding: 16px 0; font-size: 0.9rem; border-bottom: 1px solid rgba(247,241,227,0.1); }
  .nav__cta .btn { display: none; }
  .nav__toggle { display: flex; }
  body { font-size: 16px; }
  .sol__row { grid-template-columns: 40px 1fr; gap: 14px 16px; padding: 26px 4px; }
  .sol__desc { grid-column: 2; }
  .sol__arw { display: none; }
  .field--row { grid-template-columns: 1fr; gap: 24px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .hero__top .r--hide { display: none; }
  .sim__card { padding: 28px; }
  .sim__result { grid-template-columns: 1fr; gap: 18px; }
  .sim__breakdown { border-left: none; padding-left: 0; border-top: 1px solid var(--hair-dark); padding-top: 16px; grid-template-columns: 1fr 1fr; display: grid; }
}
@media (max-width: 480px) {
  .container { padding-inline: 22px; }
  .stats__grid { grid-template-columns: 1fr; }
  .stats__item { padding: 26px 0; border-left: none; }
  .passos { grid-template-columns: 1fr; }
  .passo { border-left: none; padding-left: 0; }
  .sobre__values { grid-template-columns: 1fr; }
  .value:nth-child(odd) { border-right: none; padding-right: 0; }
  .value:nth-child(even) { padding-left: 0; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   ENTRADA ENCADEADA DO HERO
   ============================================================ */
@keyframes heroRise { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }
.hero__top { opacity: 0; animation: heroRise 0.8s var(--ease) 0s forwards; }
.hero h1 { opacity: 0; animation: heroRise 0.9s var(--ease) 0.12s forwards; }
.hero__lead { opacity: 0; animation: heroRise 0.9s var(--ease) 0.28s forwards; }
.hero__actions { opacity: 0; animation: heroRise 0.9s var(--ease) 0.42s forwards; }
.hero__note { opacity: 0; animation: heroRise 0.9s var(--ease) 0.54s forwards; }
.hero__photo { opacity: 0; animation: heroRise 1.1s var(--ease) 0.35s forwards; }

/* ============================================================
   BARRAS DE CRESCIMENTO (assinatura visual da marca)
   ============================================================ */
.growth-bars { display: flex; align-items: flex-end; gap: clamp(10px, 1.6vw, 16px); height: clamp(160px, 22vw, 240px); width: 100%; max-width: 300px; }
.growth-bars span { flex: 1; height: 0; border-radius: 8px 8px 0 0; background: linear-gradient(180deg, #E6CE92, #C4964B); transition: height 1s var(--ease); box-shadow: 0 10px 24px -12px rgba(211,175,111,0.5); }
.growth-bars.is-in span { height: var(--h); }
.growth-bars.is-in span:nth-child(1) { transition-delay: 0.05s; }
.growth-bars.is-in span:nth-child(2) { transition-delay: 0.15s; }
.growth-bars.is-in span:nth-child(3) { transition-delay: 0.25s; }
.growth-bars.is-in span:nth-child(4) { transition-delay: 0.35s; }
.growth-bars.is-in span:nth-child(5) { transition-delay: 0.45s; }

/* ============================================================
   BOTÕES MAGNÉTICOS / BRILHO DOURADO
   ============================================================ */
.btn--magnetic { --mx: 50%; --my: 50%; will-change: transform; }
.btn--magnetic::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; z-index: 0; opacity: 0; pointer-events: none;
  background: radial-gradient(130px circle at var(--mx) var(--my), rgba(246,231,204,0.5), transparent 62%);
  transition: opacity 0.4s var(--ease);
}
.btn--magnetic:hover::after { opacity: 1; }
.btn--outline-cream { border: 1px solid rgba(247,241,227,0.4); color: var(--cream); }
.btn--outline-cream:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); transform: translateY(-2px); }

/* ============================================================
   PARA QUEM É
   ============================================================ */
.publico__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.publico__card { padding: 32px 28px; border-radius: 18px; background: var(--paper-2); border: 1px solid var(--hair); transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease); }
.publico__card:hover { transform: translateY(-6px); border-color: rgba(1,63,55,0.32); box-shadow: 0 34px 54px -34px rgba(6,32,24,0.28); }
.publico__ico { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; background: rgba(1,63,55,0.06); border: 1px solid var(--hair); margin-bottom: 22px; }
.publico__ico svg { width: 27px; height: 27px; color: var(--teal); }
.publico__card h3 { font-size: 1.32rem; font-weight: 400; margin-bottom: 9px; }
.publico__card p { font-size: 0.96rem; color: var(--body); }

/* ============================================================
   EXPERIÊNCIA (bloco central)
   ============================================================ */
.exp-feats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 980px; margin: 0 auto; }
.exp-feat { text-align: center; }
.exp-feat__ico { width: 58px; height: 58px; border-radius: 16px; display: inline-grid; place-items: center; background: rgba(1,63,55,0.06); border: 1px solid var(--hair); margin-bottom: 20px; }
.exp-feat__ico svg { width: 28px; height: 28px; color: var(--teal); }
.exp-feat h3 { font-size: 1.26rem; font-weight: 400; margin-bottom: 9px; }
.exp-feat p { font-size: 0.96rem; color: var(--body); max-width: 26ch; margin-inline: auto; }
.exp-cta { text-align: center; margin-top: clamp(42px, 5vw, 62px); }

/* ============================================================
   FAIXA DE CTA FINAL
   ============================================================ */
.cta-band { background: linear-gradient(150deg, #0a3329, #041711); color: var(--cream); padding: clamp(72px, 9vw, 120px) 0; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 52% 72% at 88% 18%, rgba(10,107,92,0.4), transparent 60%); pointer-events: none; }
.cta-band__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.45fr 0.55fr; gap: 56px; align-items: center; }
.cta-band .eyebrow { color: var(--gold-soft); }
.cta-band .eyebrow::before { background: var(--gold-soft); }
.cta-band h2 { font-size: clamp(2.1rem, 4.6vw, 3.5rem); color: var(--cream); margin: 20px 0 0; max-width: 20ch; }
.cta-band p { color: rgba(247,241,227,0.74); margin-top: 20px; font-size: 1.12rem; max-width: 54ch; }
.cta-band__actions { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 16px; }
.cta-band__viz { display: flex; justify-content: center; }

/* ============================================================
   CTA DO FAQ
   ============================================================ */
.faq-cta { max-width: 860px; margin: 48px auto 0; padding-top: 40px; border-top: 1px solid var(--hair); text-align: center; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.faq-cta p { font-family: var(--serif); font-size: 1.35rem; color: var(--ink); }

/* ============================================================
   FOCO / ACESSIBILIDADE
   ============================================================ */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px;
}

/* ---------- Responsivo das novas seções ---------- */
@media (max-width: 1000px) {
  .publico__grid { grid-template-columns: 1fr 1fr; }
  .cta-band__inner { grid-template-columns: 1fr; gap: 40px; }
  .cta-band__viz { justify-content: flex-start; }
}
@media (max-width: 560px) {
  .publico__grid { grid-template-columns: 1fr; }
  .cta-band__actions { flex-direction: column; align-items: stretch; }
  .cta-band__actions .btn { width: 100%; }
}

@media (max-width: 760px) {
  .exp-feats { grid-template-columns: 1fr; gap: 36px; }
  .hero__card-img { max-width: 300px; }
}

/* ---------- Reduced motion: garantir visibilidade ---------- */
@media (prefers-reduced-motion: reduce) {
  .hero__top, .hero h1, .hero__lead, .hero__actions, .hero__note, .hero__photo { opacity: 1 !important; transform: none !important; }
  .growth-bars span { transition: none !important; height: var(--h) !important; }
  .hero__card-img { animation: none !important; }
}
