
/* ═══════════════════════════════════════════════════════
   VisiON Studio Digital — v4
   Tipografia: DM Sans + DM Serif Display
   Numerais: tabulares, alinhados, sem variação de altura
═══════════════════════════════════════════════════════ */

:root {
  --cream:    #FAF6EE;
  --cream-2:  #F2EBD9;
  --paper:    #FFFDF8;
  --choco:    #3A2A22;
  --choco-2:  #2A1E18;
  --taupe:    #6B5648;
  --taupe-2:  #8B7668;
  --gold:     #C8A96A;
  --gold-2:   #B99755;
  --gold-3:   #E6D1A1;
  --gold-light: #DFC48A;
  --gold-dark:  #9A7A3A;
  --line:     rgba(200,169,106,.22);
  --line-2:   rgba(58,42,34,.12);
  --shadow:   0 22px 70px rgba(58,42,34,.12);
  --r: 22px; --r2: 32px;
  /* ── TIPOGRAFIA ── */
  --sans:   'DM Sans', system-ui, sans-serif;
  --serif:  'DM Serif Display', Georgia, serif;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 17px; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--choco);
  font-family: var(--sans);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* Numerais tabulares em todo o site — resolve desalinhamento de preços */
  font-variant-numeric: tabular-nums;
}
img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
button { font: inherit; }

/* ── LAYOUT ── */
.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.section    { padding: 112px 0; }

/* ── EYEBROW / LABEL ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--gold-2); text-transform: uppercase;
  letter-spacing: .18em; font-weight: 700; font-size: .76rem; margin-bottom: 18px;
}
.eyebrow:before { content: ""; width: 34px; height: 1px; background: var(--gold); }

/* ── HEADINGS ── */
.h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin: 0;
  color: var(--choco);
  font-weight: 400;
}
.h2 em { font-style: italic; color: var(--gold-2); }
.lead {
  font-size: 1.05rem;
  color: var(--taupe);
  max-width: 650px;
  margin: 22px 0 0;
  line-height: 1.78;
}

/* ── BOTÕES ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border: 0; border-radius: 999px; padding: 15px 28px;
  font-family: var(--sans); font-weight: 700; font-size: .92rem;
  letter-spacing: .03em; cursor: pointer; transition: .22s ease; white-space: nowrap;
}
.btn-primary { background: var(--choco); color: #fff; box-shadow: 0 10px 30px rgba(58,42,34,.18); }
.btn-primary:hover { background: var(--choco-2); transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--choco); }
.btn-gold:hover { background: var(--gold-2); color: #fff; transform: translateY(-2px); }
.btn-soft {
  border: 1.5px solid var(--line); background: rgba(255,253,248,.7); color: var(--choco);
}
.btn-soft:hover { border-color: var(--gold); color: var(--gold-2); transform: translateY(-2px); }

/* ── HEADER ── */
.header {
  position: fixed; inset: 0 0 auto; z-index: 50;
  background: rgba(250,246,238,.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(200,169,106,.16);
  transition: box-shadow .3s;
}
.header.scrolled { box-shadow: 0 10px 40px rgba(58,42,34,.08); }
.header__inner {
  height: 80px; display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
}
.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  font-size: .84rem; text-transform: uppercase; letter-spacing: .08em;
  font-weight: 600; color: var(--taupe); transition: color .2s;
}
.nav a:hover { color: var(--gold-2); }
.menu-btn {
  display: none; background: transparent; border: 0; width: 42px; height: 42px; padding: 8px;
  cursor: pointer;
}
.menu-btn span { display: block; height: 2px; background: var(--choco); margin: 6px 0; transition: .2s; }

/* ── LOGO WORDMARK ── */
.logo-wordmark {
  display: inline-flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 2px; min-width: 168px; padding: 4px 0; line-height: 1;
  color: var(--choco); cursor: pointer;
}
.logo-wordmark .brand-main {
  display: flex; align-items: center; justify-content: center; gap: 1px;
  font-family: var(--serif); font-size: 2rem; font-weight: 400;
  letter-spacing: .01em; color: var(--choco); line-height: .9;
}
.logo-wordmark .brand-o {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  width: .92em; height: .92em; margin: 0 .02em; color: transparent;
  border: 2px solid var(--gold); border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.18);
}
.logo-wordmark .brand-o::before {
  content: ''; position: absolute; width: 62%; height: 62%; border-radius: 50%;
  border: 1.7px solid rgba(255,253,248,.78);
  border-right-color: transparent; border-bottom-color: transparent;
  transform: rotate(-18deg);
}
.logo-wordmark .brand-o::after {
  content: ''; position: absolute; width: 38%; height: 38%; border-radius: 50%;
  border: 1.3px solid rgba(168,137,58,.65);
  border-left-color: transparent; border-top-color: transparent;
  transform: rotate(-18deg);
}
.logo-wordmark .brand-sub {
  display: block; font-family: var(--sans); font-size: .5rem; font-weight: 600;
  letter-spacing: .36em; text-transform: uppercase; color: var(--gold-2);
  transform: translateX(.16em); line-height: 1; white-space: nowrap;
}
.header .logo-wordmark { min-width: 176px; align-items: center; }
.header .logo-wordmark .brand-main { font-size: 2.1rem; }
.header .logo-wordmark .brand-sub  { font-size: .48rem; }
.footer-logo-wordmark { align-items: flex-start; min-width: 210px; margin-bottom: 18px; }
.footer-logo-wordmark .brand-main { font-size: 2.6rem; }
.footer-logo-wordmark .brand-sub  { font-size: .56rem; letter-spacing: .4em; transform: translateX(.18em); }

/* ── HERO ── */
.hero {
  position: relative; min-height: auto; padding: 104px 0 44px; overflow: hidden;
  background: radial-gradient(circle at 76% 20%, rgba(200,169,106,.13), transparent 28%),
              linear-gradient(135deg, var(--cream), #fffaf2 54%, var(--cream-2));
}
.hero:before {
  content: ""; position: absolute; right: -10vw; top: 7vh;
  width: 48vw; height: 48vw;
  border: 1px solid rgba(200,169,106,.18); border-radius: 50%;
  box-shadow: inset 0 0 0 38px rgba(200,169,106,.025);
}
.hero__grid {
  position: relative; display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(420px, .84fr);
  grid-template-areas:
    "content visual"
    "proof visual";
  gap: 20px 38px; align-items: center;
}
.hero__content { grid-area: content; }
.hero__kicker {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 14px; border: 1px solid var(--line); border-radius: 999px;
  background: rgba(255,253,248,.7); font-size: .78rem; text-transform: uppercase;
  letter-spacing: .12em; color: var(--gold-2); font-weight: 700; margin-bottom: 20px;
}
/* HERO H1: proposta comercial premium para tráfego frio */
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 3.75vw, 3.72rem);
  letter-spacing: -.015em;
  line-height: 1.04;
  margin: 0 0 18px;
  font-weight: 400;
  max-width: 690px;
}
.hero h1 em { color: var(--gold-2); font-style: italic; }
.hero__sub {
  font-size: 1.02rem; line-height: 1.72; color: var(--taupe);
  max-width: 590px; margin: 0 0 26px;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 0; }
.hero__proof {
  grid-area: proof;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 10px; max-width: 620px; align-self: start;
}
.proof-pill {
  border: 1px solid var(--line); background: rgba(255,253,248,.6);
  border-radius: 15px; padding: 12px 14px;
}
.proof-pill strong {
  display: block; font-family: var(--serif); font-size: 1.22rem;
  line-height: 1; color: var(--choco); font-variant-numeric: tabular-nums;
}
.proof-pill span { display: block; font-size: .8rem; color: var(--taupe); margin-top: 5px; }
.hero__visual { grid-area: visual; position: relative; align-self: stretch; display: flex; align-items: center; }
.hero__image {
  border-radius: 36px; overflow: hidden; background: var(--cream-2);
  box-shadow: var(--shadow); aspect-ratio: 1.08 / 1; width: 100%;
}
.hero__image img { width: 100%; height: 100%; object-fit: cover; }
.hero__badge {
  position: absolute; left: -28px; bottom: 34px;
  background: rgba(255,253,248,.93); border: 1px solid var(--line);
  border-radius: 20px; padding: 16px 18px;
  box-shadow: 0 20px 50px rgba(58,42,34,.15); max-width: 270px;
}
.hero__badge span {
  display: block; color: var(--gold-2); font-size: .74rem;
  text-transform: uppercase; letter-spacing: .12em; font-weight: 700;
}
.hero__badge strong {
  display: block; font-family: var(--serif); font-size: 1.22rem;
  line-height: 1.1; margin-top: 7px; font-weight: 400;
}

/* ── VALUE STRIP ── */
.value-strip { background: var(--choco); color: #fff; padding: 26px 0; }
.value-strip__inner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.value-item {
  display: flex; gap: 11px; align-items: flex-start;
  color: rgba(255,253,248,.75); font-weight: 500; font-size: .9rem;
}
.value-item:before { content: "✦"; color: var(--gold); font-size: .85rem; flex-shrink: 0; margin-top: 2px; }

/* ── VALOR COMERCIAL ── */
.commercial-value { background: var(--paper); }
.section-narrow { max-width: 820px; }
.value-card-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 42px;
}
.value-card {
  background: var(--cream); border: 1px solid var(--line);
  border-radius: 26px; padding: 30px;
  box-shadow: 0 12px 40px rgba(58,42,34,.06);
}
.value-card.featured {
  background: var(--choco); color: #fff; border-color: var(--choco);
}
.value-card span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 14px;
  background: rgba(200,169,106,.12); color: var(--gold-2);
  font-weight: 800; font-size: .82rem; margin-bottom: 20px;
}
.value-card.featured span { background: rgba(200,169,106,.18); color: var(--gold-3); }
.value-card h3 {
  font-family: var(--serif); font-size: 1.5rem; line-height: 1.08;
  margin: 0 0 12px; font-weight: 400; color: var(--choco);
}
.value-card.featured h3 { color: #fff; }
.value-card p { margin: 0; color: var(--taupe); font-size: .98rem; }
.value-card.featured p { color: rgba(255,253,248,.72); }

/* ── PORTFOLIO ── */
.portfolio { background: var(--cream); }
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 30px; margin-bottom: 34px; flex-wrap: wrap;
}
.filters { display: flex; gap: 10px; flex-wrap: wrap; }
.filter {
  border: 1px solid var(--line); background: rgba(255,253,248,.7);
  color: var(--taupe); border-radius: 999px; padding: 10px 17px;
  font-size: .82rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .07em; cursor: pointer; transition: .2s;
  font-family: var(--sans);
}
.filter.active, .filter:hover {
  background: var(--choco); color: #fff; border-color: var(--choco);
}
/* GRID: padrão que fecha sem buracos em múltiplos de 4 */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}
.portfolio-card {
  position: relative; overflow: hidden; border-radius: 20px;
  background: var(--cream-2); box-shadow: 0 6px 20px rgba(58,42,34,.07);
  cursor: pointer;
}
.portfolio-card.wide  { grid-column: span 2; }
.portfolio-card.tall  { grid-row: span 2; }
.portfolio-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease, filter .5s ease;
  touch-action: manipulation;
  user-select: none;
}
.portfolio-card:hover img { transform: scale(1.05); filter: saturate(1.05); }
.portfolio-card__overlay {
  position: absolute; inset: auto 0 0; padding: 44px 16px 14px;
  background: linear-gradient(transparent, rgba(42,30,24,.82));
  opacity: 0; transition: opacity .25s; color: #fff;
}
.portfolio-card:hover .portfolio-card__overlay { opacity: 1; }
.portfolio-card__overlay span {
  display: inline-block; color: var(--gold-3); font-size: .7rem;
  text-transform: uppercase; letter-spacing: .12em; font-weight: 700; margin-bottom: 4px;
}
.portfolio-card__overlay strong { display: block; font-size: .88rem; line-height: 1.35; }
.portfolio-actions { display: flex; justify-content: center; margin-top: 32px; }

@media (min-width: 981px) {
  .portfolio-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 236px;
    gap: 12px;
  }

  .portfolio-card.wide,
  .portfolio-card.tall {
    grid-column: auto;
    grid-row: auto;
  }
}

/* ── PROVA VISUAL ── */
.proof-visual {
  background:
    linear-gradient(180deg, var(--cream) 0%, var(--paper) 100%);
  position: relative;
  overflow: hidden;
}
.proof-visual:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 8% 18%, rgba(200,169,106,.13), transparent 30%);
  pointer-events: none;
}
.proof-visual .container { position: relative; }
.proof-visual__intro {
  max-width: 820px;
  margin-bottom: 38px;
}
.proof-visual__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(300px, .58fr);
  gap: 28px;
  align-items: stretch;
}
.before-after {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255,253,248,.74);
  box-shadow: var(--shadow);
  min-height: 540px;
  align-items: stretch;
}
.before-after__panel {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: var(--cream-2);
  min-width: 0;
  height: 100%;
}
.before-after__media {
  height: 100%;
  overflow: hidden;
  background: #fff;
}
.before-after__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #fff;
}
.before-after__panel:first-child .before-after__media img { object-position: center 54%; }
.before-after__panel--premium {
  box-shadow: 0 20px 54px rgba(58,42,34,.16);
}
.before-after__panel--premium .before-after__media img {
  object-position: center 50%;
}
.before-after__tag {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(255,253,248,.86);
  color: var(--choco);
  border: 1px solid rgba(200,169,106,.24);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.before-after__panel--premium .before-after__tag {
  background: var(--choco);
  color: var(--gold-3);
  border-color: var(--choco);
}
.before-after figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  margin: 0;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(42,30,24,.74);
  color: rgba(255,253,248,.88);
  font-size: .78rem;
  line-height: 1.35;
  backdrop-filter: blur(10px);
}
.before-after__divider {
  position: absolute;
  z-index: 3;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--choco);
  border: 4px solid var(--paper);
  box-shadow: 0 14px 34px rgba(58,42,34,.18);
  font-size: 1.25rem;
  font-weight: 800;
}
.proof-visual__copy {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--choco);
  color: #fff;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.proof-visual__copy h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  line-height: 1.08;
  font-weight: 400;
  margin: 0 0 18px;
}
.proof-visual__copy ul {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: grid;
  gap: 13px;
}
.proof-visual__copy li {
  position: relative;
  padding-left: 24px;
  color: rgba(255,253,248,.76);
  font-size: .96rem;
  line-height: 1.55;
}
.proof-visual__copy li:before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(200,169,106,.14);
}
.proof-visual__copy .btn {
  width: fit-content;
  background: var(--gold);
  color: var(--choco);
}
.proof-visual__copy .btn:hover {
  background: var(--gold-2);
  color: #fff;
}

/* ── DARK SECTION: FIDELIDADE ── */
.dark {
  background: var(--choco); color: #fff; position: relative; overflow: hidden;
}
.dark:before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(200,169,106,.1), transparent 35%);
}
.dark .container { position: relative; }
.dark .h2 { color: #fff; }
.dark .lead { color: rgba(255,253,248,.68); }
.dark-card-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-top: 42px; }
.dark-card {
  border: 1px solid rgba(200,169,106,.16); background: rgba(255,253,248,.04);
  border-radius: 22px; padding: 22px;
}
.dark-card strong { display: block; font-family: var(--serif); font-size: 1.3rem; line-height: 1.05; margin-bottom: 9px; color: #fff; font-weight: 400; }
.dark-card p { margin: 0; color: rgba(255,253,248,.62); font-size: .94rem; }

/* ── SERVIÇOS ── */
.trust-proof { background: var(--cream); }
.trust-proof__head { max-width: 820px; }
.trust-proof__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 40px;
}
.trust-proof__card {
  background: rgba(255,253,248,.72);
  border: 1px solid rgba(200,169,106,.22);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 12px 36px rgba(58,42,34,.055);
}
.trust-proof__card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 13px;
  background: rgba(200,169,106,.13);
  color: var(--gold-2);
  font-size: .78rem;
  font-weight: 800;
  margin-bottom: 18px;
}
.trust-proof__card h3 {
  font-family: var(--serif);
  font-size: 1.32rem;
  line-height: 1.08;
  font-weight: 400;
  margin: 0 0 10px;
  color: var(--choco);
}
.trust-proof__card p {
  margin: 0;
  color: var(--taupe);
  font-size: .94rem;
}
.trust-proof__action {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.services { background: var(--paper); }
.service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 44px; }
.service-card {
  background: var(--cream); border: 1px solid var(--line);
  border-radius: 26px; padding: 28px; transition: .22s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card.featured { background: var(--choco); color: #fff; border-color: var(--choco); }
.service-card .icon {
  width: 44px; height: 44px; border-radius: 14px;
  background: rgba(200,169,106,.12); display: grid; place-items: center;
  color: var(--gold-2); margin-bottom: 18px; font-weight: 800; font-size: .9rem;
}
.service-card.featured .icon { background: rgba(200,169,106,.15); }
.service-card h3 { font-family: var(--serif); font-size: 1.45rem; line-height: 1.08; margin: 0 0 10px; font-weight: 400; }
.service-card p { margin: 0; color: var(--taupe); font-size: .96rem; }
.service-card.featured p { color: rgba(255,253,248,.7); }

/* ── PROCESSO ── */
.how { background: var(--cream-2); }
.how-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; align-items: start; }
.steps { display: grid; gap: 12px; }
.step {
  display: grid; grid-template-columns: 52px 1fr; gap: 16px; align-items: start;
  background: rgba(255,253,248,.6); border: 1px solid rgba(200,169,106,.2);
  border-radius: 22px; padding: 20px;
}
.step-num {
  font-family: var(--serif); font-size: 2.1rem; line-height: .9;
  color: var(--gold-2); font-weight: 400;
}
.step h3 { margin: 0 0 5px; font-family: var(--serif); font-size: 1.3rem; line-height: 1.08; font-weight: 400; }
.step p  { margin: 0; color: var(--taupe); font-size: .94rem; }

/* ── PREÇOS ── */
.pricing { background: var(--paper); }
.price-grid {
  display: grid; grid-template-columns: .95fr 1.12fr .95fr;
  gap: 16px; margin-top: 46px; align-items: stretch;
}
.price-card {
  border: 1px solid var(--line); border-radius: 28px; padding: 30px;
  background: var(--cream); display: flex; flex-direction: column;
}
.price-card:not(.main) {
  background: rgba(250,246,238,.66);
  box-shadow: none;
}
.price-card.main {
  background: var(--choco); color: #fff;
  box-shadow: var(--shadow); transform: translateY(-8px);
}
.price-badge {
  display: inline-flex; background: var(--gold); color: var(--choco);
  border-radius: 999px; padding: 5px 12px;
  font-size: .72rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .1em; margin-bottom: 16px; width: fit-content;
}
.price-card h3 {
  font-family: var(--serif); font-size: 1.65rem; line-height: 1.08; margin: 0 0 10px; font-weight: 400;
}
.price-card.main h3 { font-size: 1.82rem; }
/* PREÇO: DM Sans + tabular-nums = zero variação de altura entre dígitos */
.price {
  font-family: var(--sans);
  font-size: 3.2rem; line-height: 1; margin: 18px 0 4px; font-weight: 800;
  font-variant-numeric: tabular-nums; letter-spacing: -.02em;
}
.price-card:not(.main) .price { font-size: 2.55rem; color: rgba(58,42,34,.82); }
.price small { font-size: .88rem; font-weight: 500; opacity: .6; }
.price-card p { color: var(--taupe); margin: 0 0 18px; font-size: .96rem; }
.price-card.main small, .price-card.main p { color: rgba(255,253,248,.68); }
.price-list {
  padding: 0; margin: 22px 0 0; list-style: none;
  display: grid; gap: 10px; flex: 1;
}
.price-list li {
  display: flex; gap: 9px; align-items: flex-start;
  font-size: .94rem; color: var(--taupe);
}
.price-card.main .price-list li { color: rgba(255,253,248,.78); }
.price-list li:before { content: "✦"; color: var(--gold); font-size: .72rem; margin-top: 3px; flex-shrink: 0; }
.price-card .btn { margin-top: auto; padding-top: 26px; }

/* ── FAQ ── */
.faq { background: var(--cream); }
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  gap: 20px; border: 0; background: transparent; padding: 20px 0; text-align: left;
  color: var(--choco); cursor: pointer;
  font-family: var(--serif); font-size: 1.25rem; font-weight: 400;
}
.faq-a { display: none; color: var(--taupe); font-size: .97rem; padding: 0 0 20px; line-height: 1.7; }
.faq-item.open .faq-a { display: block; }
.faq-q span { font-family: var(--sans); font-size: 1.3rem; color: var(--gold); flex-shrink: 0; }

/* ── CTA FINAL ── */
.final-cta {
  padding: 112px 0;
  background: linear-gradient(135deg, var(--choco), #251812);
  text-align: center; color: #fff;
}
.final-cta .h2 { color: #fff; max-width: 780px; margin: auto; }
.final-cta p { color: rgba(255,253,248,.7); font-size: 1.06rem; max-width: 680px; margin: 24px auto 34px; }

/* ── FOOTER ── */
.footer {
  background: var(--cream-2); border-top: 1px solid var(--line); padding: 52px 0 28px;
}
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 32px; align-items: start; }
.footer p, .footer a { color: var(--taupe); font-size: .93rem; }
.footer h4 { font-size: .77rem; text-transform: uppercase; letter-spacing: .14em; color: var(--gold-2); margin: 0 0 13px; }
.footer-links { display: grid; gap: 8px; }
.footer-bottom {
  border-top: 1px solid var(--line); margin-top: 34px; padding-top: 20px;
  color: var(--taupe-2); font-size: .84rem;
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
}

/* ── WHATSAPP FLUTUANTE ── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 26px rgba(37,211,102,.42);
  transition: transform .25s, box-shadow .25s;
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,.56); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed; inset: 0; background: rgba(32,22,16,.92); z-index: 420;
  display: none; align-items: center; justify-content: center; padding: 28px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-height: min(88vh, 900px); max-width: min(92vw, 1180px);
  width: auto; height: auto; object-fit: contain;
  border-radius: 20px; box-shadow: 0 30px 80px rgba(0,0,0,.35);
}
.lightbox button {
  position: absolute; right: 24px; top: 20px; background: #fff; border: 0;
  border-radius: 999px; width: 52px; height: 52px; font-size: 30px; line-height: 1;
  color: var(--choco); cursor: pointer; box-shadow: 0 10px 30px rgba(0,0,0,.18);
}
body.lightbox-open { overflow: hidden; }
body.lightbox-open .wa-float,
body.lightbox-open .wa-toast,
body.lightbox-open .back-to-top,
body.lightbox-open .cookie-banner { opacity: 0; pointer-events: none; }

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed; bottom: 100px; right: 28px; z-index: 200;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--paper); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: 0 2px 16px rgba(58,42,34,.08);
  opacity: 0; transform: translateY(12px);
  transition: opacity .3s, transform .3s; pointer-events: none;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--choco); border-color: var(--choco); }
.back-to-top svg { width: 18px; height: 18px; stroke: var(--taupe); fill: none; stroke-width: 2; transition: stroke .2s; }
.back-to-top:hover svg { stroke: var(--cream); }

/* ── WA TOAST ── */
.wa-toast {
  position: fixed; bottom: 100px; right: 96px; z-index: 199;
  background: var(--paper); border: 1px solid var(--line); border-radius: 14px;
  padding: 12px 16px; box-shadow: 0 6px 32px rgba(58,42,34,.12);
  display: flex; align-items: center; gap: 10px; max-width: 220px;
  opacity: 0; transform: translateX(20px); transition: opacity .4s, transform .4s;
  pointer-events: none;
}
.wa-toast.visible { opacity: 1; transform: translateX(0); pointer-events: auto; }
.wa-toast p { font-size: .82rem; color: var(--choco); line-height: 1.4; font-weight: 500; margin: 0; }
.wa-toast-close { background: none; border: none; cursor: pointer; color: var(--taupe); font-size: 1.1rem; line-height: 1; flex-shrink: 0; padding: 0; }

/* ── LGPD ── */
.cookie-banner {
  position: fixed; bottom: 24px; left: 24px; z-index: 300;
  width: min(460px, calc(100% - 120px));
  background: rgba(58,42,34,.96); border: 1px solid rgba(200,169,106,.22);
  border-radius: 18px; padding: 14px 16px;
  display: grid; grid-template-columns: 1fr auto; align-items: center;
  gap: 14px;
  transform: translateY(calc(100% + 36px)); transition: transform .4s ease;
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner p { font-size: .78rem; color: rgba(250,246,238,.72); line-height: 1.45; margin: 0; }
.cookie-banner p button { background: none; border: none; color: var(--gold); text-decoration: underline; cursor: pointer; font-family: var(--sans); font-size: inherit; padding: 0; }
.cookie-btns { display: flex; gap: 8px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-accept { background: var(--gold); color: var(--choco); border: none; border-radius: 8px; padding: 9px 15px; font-family: var(--sans); font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; cursor: pointer; transition: background .2s; }
.cookie-accept:hover { background: var(--gold-2); }
.cookie-decline { background: transparent; color: rgba(250,246,238,.5); border: 1px solid rgba(250,246,238,.2); border-radius: 8px; padding: 9px 12px; font-family: var(--sans); font-size: .74rem; font-weight: 500; cursor: pointer; transition: all .2s; }
.cookie-decline:hover { border-color: rgba(250,246,238,.4); color: rgba(250,246,238,.8); }

/* ── MODAL PRIVACIDADE ── */
.privacy-modal { position: fixed; inset: 0; z-index: 500; background: rgba(58,42,34,.72); display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; pointer-events: none; transition: opacity .3s; }
.privacy-modal.open { opacity: 1; pointer-events: auto; }
.privacy-box { background: var(--paper); border-radius: 20px; padding: 40px; max-width: 620px; width: 100%; max-height: 80vh; overflow-y: auto; position: relative; }
.privacy-box h2 { font-family: var(--serif); font-size: 1.55rem; font-weight: 400; color: var(--choco); margin-bottom: 14px; }
.privacy-box p, .privacy-box li { font-size: .94rem; color: var(--taupe); line-height: 1.75; margin-bottom: 12px; }
.privacy-box h3 { font-family: var(--serif); font-size: 1.05rem; font-weight: 400; color: var(--choco); margin: 18px 0 7px; }
.privacy-close { position: absolute; top: 16px; right: 20px; background: none; border: none; font-size: 1.4rem; cursor: pointer; color: var(--taupe); line-height: 1; }
.privacy-close:hover { color: var(--choco); }

/* ── REVEAL ANIMATION ── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  * { transition: none !important; }
}

/* ══ RESPONSIVO ══ */
@media (max-width: 980px) {
  .nav, .header .btn { display: none; }
  .menu-btn { display: block; }
  .header__inner { height: 68px; }
  .header .logo-wordmark { min-width: 140px; align-items: flex-start; }
  .header .logo-wordmark .brand-main { font-size: 1.66rem; }
  .header .logo-wordmark .brand-sub { font-size: .4rem; letter-spacing: .27em; }
  .menu-btn { width: 46px; height: 46px; padding: 9px; }
  .nav.open {
    display: flex; position: fixed; top: 68px; left: 0; right: 0;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: 24px; flex-direction: column; align-items: flex-start; z-index: 49;
  }
  .hero__grid, .how-grid, .faq-grid, .proof-visual__layout { grid-template-columns: 1fr; }
  .hero__grid {
    grid-template-areas:
      "content"
      "visual"
      "proof";
  }
  .hero { padding-top: 88px; }
  .hero__visual { display: block; }
  .hero__image { aspect-ratio: 16/10; }
  .hero__badge { left: 18px; right: 18px; bottom: -18px; max-width: none; }
  .value-strip__inner, .value-card-grid, .dark-card-grid, .trust-proof__grid, .service-grid, .price-grid, .footer-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 180px; }
  .portfolio-card.wide { grid-column: span 2; }
  .proof-visual__copy { padding: 28px; }
  .proof-visual__copy .btn { width: fit-content; }
  .price-card.main { transform: none; }
  .ba-placeholders { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  html { font-size: 16px; }
  .container { width: min(100% - 32px, 1180px); }
  .section { padding: 72px 0; }
  .hero { min-height: auto; padding: 80px 0 46px; }
  .hero__grid { gap: 24px; }
  .hero__kicker {
    font-size: .68rem; letter-spacing: .1em;
    padding: 6px 12px; margin-bottom: 14px;
  }
  .hero h1 {
    font-family: var(--serif);
    font-size: clamp(2.05rem, 9vw, 2.18rem);
    line-height: 1.03; margin-bottom: 14px;
    font-weight: 400;
  }
  .hero__sub { font-size: .94rem; line-height: 1.58; margin-bottom: 22px; }
  .hero__actions { margin-bottom: 0; }
  .hero__proof {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .proof-pill { border-radius: 13px; padding: 10px 8px; }
  .proof-pill strong { font-size: 1rem; }
  .proof-pill span { font-size: .68rem; line-height: 1.3; margin-top: 4px; }
  .value-strip__inner, .value-card-grid, .dark-card-grid, .trust-proof__grid, .service-grid, .price-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero__image { aspect-ratio: 4/3; border-radius: 24px; }
  .hero__badge { position: static; margin: -42px 16px 0; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; gap: 9px; grid-auto-rows: 150px; }
  .portfolio-card, .portfolio-card.wide, .portfolio-card.tall { grid-column: auto; grid-row: auto; border-radius: 14px; }
  .proof-visual__intro { margin-bottom: 28px; }
  .before-after {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 10px;
    border-radius: 22px;
    min-height: 0;
  }
  .before-after__panel { border-radius: 16px; }
  .before-after__panel:first-child .before-after__media { aspect-ratio: 4 / 3; height: auto; }
  .before-after__panel--premium .before-after__media { aspect-ratio: 4 / 3.35; height: auto; }
  .before-after__divider {
    position: relative;
    inset: auto;
    transform: none;
    width: 46px;
    height: 46px;
    margin: -2px auto;
    border-width: 3px;
  }
  .before-after__divider span {
    display: block;
    transform: rotate(90deg);
  }
  .before-after figcaption {
    left: 10px;
    right: 10px;
    bottom: 10px;
    font-size: .72rem;
  }
  .proof-visual__copy {
    padding: 24px;
    border-radius: 22px;
  }
  .proof-visual__copy h3 { font-size: 1.55rem; }
  .section-head { display: block; }
  .filters { margin-top: 22px; }
  .btn { width: 100%; justify-content: center; min-height: 52px; padding-block: 13px; }
  .hero__actions { display: grid; }
  .wa-float { width: 56px; height: 56px; right: 16px; bottom: 16px; }
  .back-to-top { right: 16px; bottom: 84px; }
  .wa-toast { display: none; }
  .cookie-banner {
    left: 12px; right: auto; bottom: 12px;
    width: calc(100% - 88px);
    grid-template-columns: 1fr 92px;
    gap: 8px; padding: 10px;
    border-radius: 14px;
  }
  .cookie-banner p { font-size: .68rem; line-height: 1.25; }
  .cookie-btns { display: grid; grid-template-columns: 1fr; gap: 6px; }
  .cookie-accept, .cookie-decline { min-height: 0; padding: 7px 8px; font-size: .62rem; }
  .lightbox { padding: 18px; }
  .lightbox img {
    max-width: calc(100vw - 28px);
    max-height: calc(100svh - 112px);
    border-radius: 16px;
  }
  .lightbox button {
    top: 14px; right: 14px;
    width: 56px; height: 56px;
    font-size: 32px;
  }
}
@media (max-width: 420px) {
  .header .logo-wordmark { min-width: 128px; }
  .header .logo-wordmark .brand-main { font-size: 1.55rem; }
  .header .logo-wordmark .brand-sub { font-size: .38rem; letter-spacing: .23em; }
}

