/* ============================================================
   VINICIUS ALMEIDA — style.css
   Paleta: #0D0D0D · #B8882A · #1E9E8A
   ============================================================ */

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
  --ink:      #0D0D0D;
  --paper:    #F5F2EC;
  --off:      #ECEAE2;
  --gold:     #B8882A;
  --gold2:    #D4A843;
  --gold-pal: #F0D488;
  --gold-dk:  #7A5718;
  --teal:     #1E9E8A;
  --teal2:    #2BBFAA;
  --teal-dk:  #0D5C52;
  --muted:    #5A5550;
  --dim:      #8A857F;
  --ln:       rgba(13,13,13,.1);
  --ln-l:     rgba(245,242,236,.08);
  --ln-ll:    rgba(245,242,236,.04);
  --p0: #F5F2EC;
  --p1: rgba(245,242,236,.55);
  --p2: rgba(245,242,236,.3);
  --p3: rgba(245,242,236,.15);
  --g0: #1A0E00;
  --g1: rgba(26,14,0,.65);
  --g2: rgba(26,14,0,.4);
  --t0: #F5F2EC;
  --t1: rgba(245,242,236,.7);
  --t2: rgba(245,242,236,.45);
  --fs:   'Montserrat', system-ui, sans-serif;
  --fe:   'DM Serif Display', Georgia, serif;
  --fm:   'Space Mono', monospace;
  --ease: cubic-bezier(.16,1,.3,1);
}

/* ── BASE ────────────────────────────────────────────────────── */
body {
  font-family: var(--fs);
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── ACESSIBILIDADE ─────────────────────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── CURSOR ──────────────────────────────────────────────────── */
@media (hover: hover) {
  body { cursor: none; }
  .cur-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--gold); position: fixed;
    top: 0; left: 0; z-index: 9999; pointer-events: none;
    transform: translate(-50%,-50%);
    transition: transform .1s, background .2s;
  }
  .cur-ring {
    width: 30px; height: 30px; border-radius: 50%;
    border: 0.5px solid rgba(184,136,42,.5);
    position: fixed; top: 0; left: 0; z-index: 9998;
    pointer-events: none; transform: translate(-50%,-50%);
    transition: width .3s var(--ease), height .3s var(--ease), border-color .2s;
  }
  body.hov .cur-ring { width: 48px; height: 48px; border-color: rgba(43,191,170,.5); }
  body.hov .cur-dot  { background: var(--teal2); transform: translate(-50%,-50%) scale(1.5); }
}

/* ── ACCENT STRIPE ──────────────────────────────────────────── */
.accent-stripe {
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--teal) 100%);
  position: relative; z-index: 300;
}

/* ── NAV ────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 2px; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 2.5rem;
  transition: background .4s var(--ease), padding .35s var(--ease);
}
.nav.scrolled {
  background: rgba(13,13,13,.97);
  backdrop-filter: blur(16px) saturate(1.5);
  padding: .85rem 2.5rem;
  border-bottom: 0.5px solid var(--ln-l);
}
.nav-logo img { height: 36px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: .65rem; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--p2);
  transition: color .2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px;
  left: 0; width: 0; height: 0.5px; background: var(--gold);
  transition: width .3s var(--ease);
}
.nav-links a:hover { color: var(--p0); }
.nav-links a:hover::after { width: 100%; }
.nav-wpp {
  font-size: .65rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--gold2) !important;
  border: 0.5px solid rgba(184,136,42,.5); padding: .4rem 1rem;
  transition: background .2s, color .2s !important;
}
.nav-wpp::after { display: none !important; }
.nav-wpp:hover { background: var(--gold); color: var(--ink) !important; }
.nav-ham {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-ham span { display: block; width: 20px; height: 1px; background: var(--p0); }

/* ── MOBILE NAV ─────────────────────────────────────────────── */
.nav-mobile {
  display: none; position: fixed; inset: 0;
  background: var(--ink); z-index: 199;
  flex-direction: column; align-items: flex-start;
  justify-content: center; padding: 3rem; gap: 1.25rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; border: none; font-size: 1.4rem;
  color: var(--p0); cursor: pointer;
}
.nav-mobile a {
  font-family: var(--fe); font-size: 2.2rem;
  font-style: italic; color: var(--p0); transition: color .2s;
}
.nav-mobile a:hover { color: var(--teal2); }
.nm-line { width: 32px; height: 0.5px; background: var(--ln-l); }
.nm-wpp {
  color: #25D366 !important; font-family: var(--fm) !important;
  font-style: normal !important; font-size: 1rem !important;
}

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  background: var(--ink);
  border-bottom: 0.5px solid var(--ln-l);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}
.hero-top {
  padding: 9rem 2.5rem 0;
  position: relative; z-index: 2;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--fm); font-size: .58rem;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--p2); margin-bottom: 2.5rem;
}
.live-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--teal2); flex-shrink: 0;
  animation: blink 2.5s ease-in-out infinite;
}
.live-dot-teal { background: var(--teal2); }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.15} }

.h1-wrap { position: relative; line-height: .88; }
.h1-ghost {
  position: absolute; right: -0.02em; top: 0;
  font-family: var(--fe);
  font-size: clamp(5rem, 13vw, 10rem);
  font-weight: 400; letter-spacing: -.04em; line-height: .88;
  -webkit-text-stroke: 0.5px rgba(43,191,170,.1);
  color: transparent;
  pointer-events: none; user-select: none; white-space: nowrap;
}
.h1-line {
  font-family: var(--fe);
  font-size: clamp(5rem, 13vw, 10rem);
  font-weight: 400; line-height: .88;
  letter-spacing: -.04em; color: var(--p0);
  white-space: nowrap;
  opacity: 0; transform: translateX(-50px);
  animation: slideIn 1s var(--ease) forwards;
}
.h1-line em     { color: var(--teal2); font-style: italic; }
.h1-stroke      { -webkit-text-stroke: 1px rgba(245,242,236,.22); color: transparent; }
.h1-d0 { animation-delay: 0s; }
.h1-d1 { animation-delay: .1s; }
.h1-d2 { animation-delay: .2s; }
.h1-d3 { animation-delay: .3s; }
@keyframes slideIn { to { opacity: 1; transform: translateX(0); } }

.hero-mid {
  padding: 3rem 2.5rem 0;
  position: relative; z-index: 2;
}
.hero-sub-row {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.hero-sub {
  font-size: .85rem; color: var(--p1); line-height: 1.8;
  max-width: 420px;
  padding-left: 1rem; border-left: 1.5px solid var(--gold);
  opacity: 0; animation: fadeIn .6s .55s var(--ease) forwards;
}
@keyframes fadeIn { to { opacity: 1; } }
.hero-ctas {
  display: flex; gap: .65rem; flex-wrap: wrap;
  opacity: 0; animation: fadeIn .6s .7s var(--ease) forwards;
}
/* âncora de contexto abaixo dos CTAs */
.hero-anchor {
  width: 100%;
  font-family: var(--fm); font-size: .58rem;
  letter-spacing: 1px; color: var(--p3);
  margin-top: .75rem;
  opacity: 0; animation: fadeIn .6s .85s var(--ease) forwards;
}

.hero-bot {
  display: flex;
  border-top: 0.5px solid var(--ln-ll);
  position: relative; z-index: 2;
  margin-top: 3.5rem;
}
.hst {
  flex: 1; padding: 1.1rem 1.75rem;
  border-right: 0.5px solid var(--ln-ll);
  display: flex; flex-direction: column; gap: .25rem;
}
.hst:last-child { border-right: none; }
.hst-v { font-family: var(--fe); font-size: 1.5rem; color: var(--p0); line-height: 1; display: block; }
.hst-teal { color: var(--teal2); }
.hst-gold { color: var(--gold); }
.hst-l { font-family: var(--fm); font-size: .5rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--p3); display: block; }
.hero-base-line {
  position: absolute; bottom: 0; left: 0; right: 0; height: 1.5px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(184,136,42,0) 55%);
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center;
  background: var(--gold); color: var(--g0);
  padding: .8rem 1.75rem; font-weight: 700;
  font-size: .75rem; letter-spacing: .5px; text-transform: uppercase;
  position: relative; overflow: hidden;
  transition: transform .2s var(--ease);
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: var(--teal);
  transform: translateX(-101%) skewX(-8deg);
  transition: transform .4s var(--ease);
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-primary:hover::before { transform: translateX(0) skewX(0); }
.btn-primary span { position: relative; z-index: 1; transition: color .01s; }
.btn-primary:hover span { color: var(--t0); }

.btn-ghost {
  display: inline-flex; align-items: center;
  border: 0.5px solid var(--p3); color: var(--p2);
  padding: .8rem 1.75rem; font-size: .75rem;
  font-weight: 600; letter-spacing: .5px; text-transform: uppercase;
  transition: border-color .2s, color .2s;
}
.btn-ghost:hover { border-color: var(--p2); color: var(--p0); }

/* ── MANIFESTO ──────────────────────────────────────────────── */
.manifesto {
  background: var(--gold);
  padding: 4rem 2.5rem;
  display: grid; grid-template-columns: 200px 1fr;
  gap: 4rem; align-items: center;
  border-bottom: 2px solid var(--gold-dk);
  position: relative; overflow: hidden;
}
.manifesto::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(26,14,0,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,14,0,.05) 1px, transparent 1px);
  background-size: 48px 48px; pointer-events: none;
}
.manifesto-label {
  font-size: .6rem; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--g2); position: relative; z-index: 1;
}
.manifesto-txt {
  font-family: var(--fe);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  line-height: 1.5; font-weight: 400;
  letter-spacing: -.01em; color: var(--g0);
  position: relative; z-index: 1;
}
.manifesto-txt em  { color: var(--ink); font-style: italic; }
.manifesto-txt .und {
  text-decoration: underline;
  text-decoration-color: rgba(26,14,0,.3);
  text-underline-offset: 5px;
}

/* ── SOBRE ──────────────────────────────────────────────────── */
.sobre {
  background: var(--paper);
  border-bottom: 0.5px solid var(--ln);
  overflow: hidden;
}
.sobre-grid {
  display: grid; grid-template-columns: 420px 1fr;
  align-items: center; min-height: 80vh;
}
.sobre-img-wrap {
  position: relative; height: 100%; min-height: 560px;
  background: var(--off);
  border-right: 0.5px solid var(--ln);
}
.sobre-foto {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  display: block;
  filter: grayscale(15%);
  transition: filter .5s var(--ease);
}

/* badge flutuante sobre a foto */
.sobre-badge {
  position: absolute; bottom: 2rem; right: -1rem;
  background: var(--gold); color: var(--g0);
  padding: 1rem 1.5rem;
  display: flex; flex-direction: column; gap: .15rem;
  box-shadow: 4px 4px 0 var(--gold-dk);
}
.sobre-badge-num {
  font-family: var(--fe); font-size: 2rem;
  font-weight: 400; line-height: 1;
}
.sobre-badge-txt {
  font-family: var(--fm); font-size: .55rem;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--g1);
}

/* texto da seção sobre */
.sobre-txt {
  padding: 5rem 4rem;
  display: flex; flex-direction: column; gap: 1.5rem;
}
.sobre-eyebrow {
  font-family: var(--fm); font-size: .6rem;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--dim);
}
.sobre-txt h2 {
  font-family: var(--fe);
  font-size: clamp(1.5rem, 2.6vw, 2.4rem);
  font-weight: 400; line-height: 1.1;
  letter-spacing: -.02em; color: var(--ink);
}
.sobre-txt h2 em { color: var(--teal); font-style: italic; }
.sobre-txt p {
  font-size: .88rem; color: var(--muted);
  line-height: 1.8; max-width: 480px;
}

/* números de credibilidade */
.sobre-nums {
  display: flex; gap: 2.5rem;
  padding: 1.5rem 0;
  border-top: 0.5px solid var(--ln);
  border-bottom: 0.5px solid var(--ln);
  flex-wrap: wrap;
}
.sobre-num { display: flex; flex-direction: column; gap: .2rem; }
.sobre-num-val {
  font-family: var(--fe); font-size: 1.8rem;
  font-weight: 400; line-height: 1; color: var(--ink);
}
.sobre-num-lbl {
  font-family: var(--fm); font-size: .58rem;
  letter-spacing: .5px; text-transform: uppercase; color: var(--dim);
}

/* ── SERVICES ────────────────────────────────────────────────── */
.services { border-bottom: 0.5px solid var(--ln-l); }
.services-head {
  padding: 3rem 2.5rem;
  display: flex; justify-content: space-between; align-items: flex-end;
  border-bottom: 0.5px solid var(--ln-l);
  background: var(--ink); position: relative; overflow: hidden;
}
.services-head::after {
  content: '02'; position: absolute; right: 2rem; top: 50%;
  transform: translateY(-50%);
  font-family: var(--fe); font-size: 7rem;
  color: rgba(255,255,255,.025); pointer-events: none; line-height: 1;
}
.services-head h2 {
  font-family: var(--fe);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 400; letter-spacing: -.02em;
  color: var(--p0); line-height: 1.05;
}
.services-head h2 em { color: var(--teal2); font-style: italic; }
.services-head p { font-size: .78rem; color: var(--p2); max-width: 260px; text-align: right; line-height: 1.7; }
.services-grid { display: grid; grid-template-columns: repeat(4,1fr); background: var(--ink); }
.srv {
  padding: 2.5rem 2rem;
  border-right: 0.5px solid var(--ln-l);
  position: relative; overflow: hidden;
  cursor: default; background: var(--ink);
  transition: background .3s var(--ease);
  display: flex; flex-direction: column; gap: .75rem;
}
.srv:last-child { border-right: none; }
.srv:hover { background: rgba(255,255,255,.02); }
.srv-n { font-family: var(--fm); font-size: .55rem; color: var(--p3); display: block; }
.srv-bar { width: 24px; height: 1.5px; transition: width .4s var(--ease); }
.srv:hover .srv-bar { width: 48px; }
.srv-bar-gold { background: var(--gold); }
.srv-bar-teal { background: var(--teal2); }
.srv h3 { font-size: .95rem; font-weight: 700; color: var(--p0); letter-spacing: -.01em; line-height: 1.2; }
.srv p  { font-size: .78rem; color: var(--p1); line-height: 1.72; flex: 1; }
.srv-tags { list-style: none; display: flex; flex-wrap: wrap; gap: .3rem; margin-top: .25rem; }
.srv-tags li {
  font-family: var(--fm); font-size: .55rem; letter-spacing: .5px;
  border: 0.5px solid var(--ln-l); padding: .18rem .5rem; color: var(--p3);
  transition: border-color .2s, color .2s;
}
.srv:hover .srv-tags li { border-color: rgba(245,242,236,.15); color: var(--p2); }

/* ── PARALLAX DIVIDER ───────────────────────────────────────── */
.pdiv {
  height: 400px; position: relative; overflow: hidden;
  border-top: 0.5px solid var(--ln); border-bottom: 0.5px solid var(--ln);
}
.pdiv-bg {
  position: absolute; inset: -30%;
  background-image: url('https://images.unsplash.com/photo-1504868584819-f8e8b4b6d7e3?w=1600&q=60');
  background-size: cover; background-position: center;
  background-attachment: fixed;
  filter: grayscale(80%) brightness(.25) contrast(1.2);
  will-change: transform;
}
.pdiv-overlay { position: absolute; inset: 0; background: rgba(13,13,13,.55); }
.pdiv-content {
  position: relative; z-index: 2; height: 100%;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center; gap: 1.25rem; padding: 2rem;
}
.pdiv-eyebrow { font-family: var(--fm); font-size: .6rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold2); }
.pdiv-content h2 { font-family: var(--fe); font-size: clamp(1.8rem, 4.5vw, 3.5rem); font-weight: 400; color: var(--p0); line-height: 1.05; letter-spacing: -.02em; }
.pdiv-content h2 em { color: var(--teal2); font-style: italic; }
.pdiv-content p { font-size: .85rem; color: var(--p1); max-width: 440px; line-height: 1.75; }

/* ── PROCESSO ────────────────────────────────────────────────── */
.process {
  min-height: 100vh; padding: 6rem 2.5rem;
  border-bottom: 2px solid var(--teal-dk);
  display: grid; grid-template-columns: 280px 1fr;
  align-content: center; gap: 5rem;
  background: var(--teal); position: relative; overflow: hidden;
}
.process::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(245,242,236,.06) 1px, transparent 1px);
  background-size: 24px 24px; pointer-events: none;
}
.process-l { position: relative; z-index: 1; }
.process-l h2 { font-family: var(--fe); font-size: clamp(1.6rem, 2.8vw, 2.4rem); font-weight: 400; letter-spacing: -.02em; color: var(--t0); margin-bottom: .75rem; }
.process-l p  { font-size: .82rem; color: var(--t1); line-height: 1.75; }
.process-steps { list-style: none; position: relative; z-index: 1; }
.pstep {
  display: grid; grid-template-columns: 48px 1fr;
  gap: 1.5rem; padding: 1.5rem 0;
  border-bottom: 0.5px solid rgba(245,242,236,.12);
  align-items: start; opacity: .3;
  transition: opacity .35s var(--ease); cursor: default;
}
.pstep:last-child { border-bottom: none; }
.pstep.active, .pstep:hover { opacity: 1; }
.pstep-n { font-family: var(--fm); font-size: .65rem; color: rgba(0,0,0,.5); padding-top: .2rem; }
.pstep-body h3 { font-size: .9rem; font-weight: 700; color: rgba(0,0,0,.85); margin-bottom: .35rem; letter-spacing: -.01em; }
.pstep-body p  { font-size: .78rem; color: rgba(0,0,0,.6); line-height: 1.65; }
.pstep-bar  { height: 1.5px; background: rgba(245,242,236,.2); margin-top: .65rem; }
.pstep-fill { height: 1.5px; background: rgba(0,0,0,.6); width: 0; }
.pstep.active .pstep-fill { animation: fillbar .9s .1s var(--ease) forwards; }
.pstep:hover  .pstep-fill { animation: fillbar .55s var(--ease) forwards; }
@keyframes fillbar { from{width:0} to{width:100%} }

/* ── DEPOIMENTOS ─────────────────────────────────────────────── */
.voice { border-bottom: 0.5px solid var(--ln); }
.voice-head {
  padding: 2.5rem;
  border-bottom: 0.5px solid var(--ln-l);
  display: flex; justify-content: space-between; align-items: flex-end;
  background: var(--ink);
}
.voice-head h2 { font-family: var(--fe); font-size: clamp(1.5rem, 2.8vw, 2.4rem); font-weight: 400; letter-spacing: -.02em; color: var(--p0); }
.voice-head h2 em { color: var(--gold2); font-style: italic; }
.voice-sub { font-size: .62rem; color: var(--p3); font-family: var(--fm); }
.voice-grid { display: grid; grid-template-columns: repeat(2,1fr); background: var(--paper); }
.vcard {
  padding: 2.75rem 2rem; border-right: 0.5px solid var(--ln);
  display: flex; flex-direction: column; gap: 1.25rem;
  background: var(--paper); transition: background .3s;
}
.vcard:last-child { border-right: none; }
.vcard:hover { background: var(--off); }
.vcard-q { font-family: var(--fe); font-size: 2.5rem; color: var(--gold); line-height: 1; }
.vcard-txt { font-family: var(--fe); font-size: 1rem; line-height: 1.65; font-style: italic; color: var(--ink); flex: 1; }
.vcard-result { font-family: var(--fm); font-size: .63rem; letter-spacing: .5px; color: var(--teal); border: 0.5px solid rgba(30,158,138,.3); padding: .35rem .7rem; align-self: flex-start; background: rgba(30,158,138,.04); }
.vcard-who { display: flex; align-items: center; gap: .75rem; margin-top: auto; }
.vcard-av { width: 36px; height: 36px; border-radius: 50%; background: var(--ink); color: var(--paper); display: flex; align-items: center; justify-content: center; font-size: .72rem; font-weight: 700; flex-shrink: 0; }
.vcard-name { font-size: .82rem; font-weight: 700; color: var(--ink); }
.vcard-role { font-size: .68rem; color: var(--dim); }

/* placeholder de depoimento */
.vcard-placeholder { opacity: .45; border: 0.5px dashed var(--ln); }
.vcard-placeholder:hover { opacity: .6; background: var(--paper); }
.vcard-txt-muted { color: var(--muted); }
.vcard-av-muted  { background: var(--off); color: var(--dim); }
.vcard-name-muted { color: var(--dim); }

/* ── CASES ──────────────────────────────────────────────────── */
.cases { background: var(--paper); border-bottom: 0.5px solid var(--ln); }
.cases-head {
  padding: 3.5rem 2.5rem 2.5rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2.5rem; align-items: end;
  border-bottom: 0.5px solid var(--ln);
}
.cases-eyebrow { display: flex; align-items: center; gap: .65rem; font-family: var(--fm); font-size: .6rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--dim); margin-bottom: .75rem; }
.cases-eyebrow-line { width: 20px; height: 0.5px; background: var(--gold); flex-shrink: 0; }
.cases-head h2 { font-family: var(--fe); font-size: clamp(1.5rem, 3vw, 2.6rem); font-weight: 400; line-height: 1; letter-spacing: -.03em; color: var(--ink); }
.cases-head h2 em { color: var(--teal); font-style: italic; }
.cases-head p { font-size: .82rem; color: var(--muted); line-height: 1.8; align-self: end; }

.case-card { display: block; border-bottom: 0.5px solid var(--ln); }
.case-thumb { position: relative; overflow: hidden; background: var(--ink); aspect-ratio: 16/7; }
.case-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; transition: transform .6s var(--ease); }
.case-card:hover .case-thumb img { transform: scale(1.02); }
.case-thumb-overlay { position: absolute; inset: 0; background: rgba(13,13,13,.5); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .4s var(--ease); }
.case-card:hover .case-thumb-overlay { opacity: 1; }
.case-thumb-cta { font-family: var(--fm); font-size: .72rem; letter-spacing: 2px; text-transform: uppercase; color: var(--p0); border: 0.5px solid rgba(245,242,236,.4); padding: .75rem 1.75rem; transition: background .2s, color .2s, border-color .2s; }
.case-thumb-cta:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.case-thumb .case-tag { position: absolute; top: 1.25rem; left: 1.25rem; }
.case-body { display: grid; grid-template-columns: 2fr 1fr 1fr; background: var(--paper); border-top: 0.5px solid var(--ln); transition: background .3s; }
.case-card:hover .case-body { background: var(--off); }
.case-body-main { padding: 2.5rem; border-right: 0.5px solid var(--ln); display: flex; flex-direction: column; gap: 1rem; }
.case-body-main h3 { font-family: var(--fe); font-size: clamp(1.1rem, 1.8vw, 1.5rem); font-weight: 400; line-height: 1.15; letter-spacing: -.02em; color: var(--ink); }
.case-body-metrics { padding: 2.5rem 2rem; border-right: 0.5px solid var(--ln); display: flex; align-items: flex-start; }
.case-body-metrics .case-metrics { flex-direction: column; border: none; border-radius: 0; gap: 0; width: 100%; }
.case-body-metrics .case-metric { border-right: none; border-bottom: 0.5px solid var(--ln); padding: .85rem 0; }
.case-body-metrics .case-metric:last-child { border-bottom: none; }
.case-body-quote { padding: 2.5rem 2rem; display: flex; flex-direction: column; justify-content: space-between; gap: 1.5rem; }
.case-tag { font-family: var(--fm); font-size: .55rem; letter-spacing: 1.5px; text-transform: uppercase; padding: .18rem .6rem; color: var(--gold); border: 0.5px solid rgba(184,136,42,.3); align-self: flex-start; }
.case-tag-teal { color: var(--teal); border-color: rgba(30,158,138,.3); }
.case-prob, .case-sol { font-size: .8rem; color: var(--muted); line-height: 1.75; }
.case-prob strong, .case-sol strong { color: var(--ink); font-weight: 700; }
.case-metrics { display: flex; border: 0.5px solid var(--ln); border-radius: 3px; overflow: hidden; margin: .2rem 0; }
.case-metric { flex: 1; padding: .9rem .7rem; border-right: 0.5px solid var(--ln); display: flex; flex-direction: column; gap: .18rem; }
.case-metric:last-child { border-right: none; }
.cm-val { font-family: var(--fe); font-size: 1.5rem; font-weight: 400; line-height: 1; color: var(--ink); }
.cm-teal { color: var(--teal); }
.cm-gold { color: var(--gold); }
.cm-lbl  { font-family: var(--fm); font-size: .55rem; letter-spacing: .5px; text-transform: uppercase; color: var(--dim); }
.case-quote { font-family: var(--fe); font-size: .9rem; font-style: italic; line-height: 1.65; color: var(--muted); padding-left: 1rem; border-left: 1.5px solid var(--gold); }
.case-quote footer { margin-top: .45rem; }
.case-quote cite { font-family: var(--fm); font-size: .6rem; letter-spacing: .5px; font-style: normal; color: var(--dim); }
.case-link { font-family: var(--fm); font-size: .65rem; letter-spacing: 1px; text-transform: uppercase; color: var(--teal); display: inline-flex; align-items: center; gap: .4rem; transition: gap .2s var(--ease), color .2s; }
.case-link:hover { gap: .7rem; color: var(--teal2); }
.cases-cta { padding: 3.5rem 2.5rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; background: var(--ink); }
.cases-cta p { font-family: var(--fe); font-size: clamp(1rem, 2vw, 1.4rem); font-style: italic; color: var(--p1); max-width: 400px; }

/* ── FAQ ────────────────────────────────────────────────────── */
.faq {
  background: var(--paper);
  border-bottom: 0.5px solid var(--ln);
  padding: 5rem 2.5rem;
}
.faq-head {
  max-width: 640px; margin-bottom: 3.5rem;
}
.faq-eyebrow {
  font-family: var(--fm); font-size: .6rem;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--dim); margin-bottom: .75rem;
}
.faq-head h2 {
  font-family: var(--fe);
  font-size: clamp(1.5rem, 2.8vw, 2.4rem);
  font-weight: 400; letter-spacing: -.02em; line-height: 1.05;
  color: var(--ink); margin-bottom: .75rem;
}
.faq-head h2 em { color: var(--teal); font-style: italic; }
.faq-head p { font-size: .85rem; color: var(--muted); line-height: 1.75; }

.faq-list {
  display: flex; flex-direction: column;
  max-width: 860px;
}
.faq-item {
  border-bottom: 0.5px solid var(--ln);
}
.faq-item:first-child { border-top: 0.5px solid var(--ln); }

.faq-q {
  list-style: none;
  padding: 1.4rem 0;
  font-size: .95rem; font-weight: 700;
  color: var(--ink); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
  transition: color .2s;
  user-select: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  font-family: var(--fe); font-size: 1.4rem; font-weight: 400;
  color: var(--gold); flex-shrink: 0; line-height: 1;
  transition: transform .3s var(--ease), color .2s;
}
.faq-item[open] .faq-q { color: var(--teal); }
.faq-item[open] .faq-q::after { content: '−'; color: var(--teal); transform: rotate(180deg); }

.faq-a {
  padding: 0 0 1.5rem;
  font-size: .88rem; color: var(--muted); line-height: 1.8;
}
.faq-a p { margin-bottom: .65rem; }
.faq-a p:last-child { margin-bottom: 0; }
.faq-a ul { padding-left: 1.2rem; display: flex; flex-direction: column; gap: .3rem; margin: .5rem 0; }
.faq-a ul li { font-size: .85rem; }
.faq-a strong { color: var(--ink); font-weight: 700; }

/* ── CTA BIG ─────────────────────────────────────────────────── */
.cta-big {
  min-height: 75vh; padding: 7rem 2.5rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
  border-bottom: 0.5px solid var(--ln-l);
  position: relative; overflow: hidden; color: var(--p0);
}
.cta-big-bg { position: absolute; inset: -30%; background-image: url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?w=1600&q=50'); background-size: cover; background-position: center; background-attachment: fixed; filter: grayscale(60%) brightness(.2) contrast(1.2); will-change: transform; }
.cta-big-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,13,13,.95) 0%, rgba(13,13,13,.88) 100%); }
.cta-big-deco { position: absolute; inset: 0; background-image: linear-gradient(rgba(184,136,42,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(184,136,42,.03) 1px, transparent 1px); background-size: 60px 60px; pointer-events: none; }
.cta-big-l, .cta-big-r { position: relative; z-index: 2; }
.cta-big-l h2 { font-family: var(--fe); font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 400; line-height: 1.05; letter-spacing: -.03em; color: var(--p0); }
.cta-big-l h2 em { color: var(--gold-pal); font-style: italic; }
.cta-big-r { display: flex; flex-direction: column; gap: 1.5rem; justify-content: center; }
.cta-big-r p { font-size: .88rem; color: var(--p1); line-height: 1.8; max-width: 380px; }
.cta-big-btns { display: flex; gap: .75rem; flex-wrap: wrap; }
.btn-wpp { display: inline-flex; align-items: center; gap: .6rem; background: #25D366; color: #fff; padding: .85rem 1.75rem; font-weight: 700; font-size: .82rem; letter-spacing: .5px; transition: opacity .2s, transform .2s; }
.btn-wpp:hover { opacity: .88; transform: translateY(-2px); }
.btn-outline-light { display: inline-flex; align-items: center; border: 0.5px solid rgba(184,136,42,.4); color: var(--gold-pal); padding: .85rem 1.75rem; font-size: .82rem; font-weight: 600; letter-spacing: .5px; transition: border-color .25s, color .25s; }
.btn-outline-light:hover { border-color: var(--gold2); color: var(--gold2); }
.cta-trust { display: flex; gap: 2rem; padding-top: 1rem; border-top: 0.5px solid var(--ln-l); flex-wrap: wrap; font-size: .65rem; color: var(--p3); font-family: var(--fm); }

/* ── CONTATO ─────────────────────────────────────────────────── */
.contact { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 0.5px solid var(--ln); }
.contact-l { padding: 5rem 2.5rem; border-right: 0.5px solid var(--ln-l); display: flex; flex-direction: column; gap: 2rem; background: var(--ink); position: relative; overflow: hidden; }
.contact-l::before { content: ''; position: absolute; bottom: -5rem; left: -5rem; width: 280px; height: 280px; border-radius: 50%; border: 0.5px solid rgba(43,191,170,.06); pointer-events: none; }
.contact-l h2 { font-family: var(--fe); font-size: clamp(1.5rem, 2.8vw, 2.4rem); font-weight: 400; letter-spacing: -.02em; color: var(--p0); }
.contact-l h2 em { color: var(--teal2); font-style: italic; }
.ci { display: flex; gap: 1rem; align-items: flex-start; }
.ci-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--teal2); flex-shrink: 0; margin-top: .55em; }
.ci-dot-gold { background: var(--gold2); }
.ci-dot-dim  { background: rgba(245,242,236,.2); }
.ci h3 { font-size: .7rem; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: var(--p3); margin-bottom: .2rem; font-family: var(--fs); }
.ci a { font-size: .88rem; color: var(--teal2); font-weight: 500; transition: color .2s; }
.ci a:hover { color: var(--p0); }
.ci-gold { color: var(--gold2) !important; }
.ci p { font-size: .88rem; color: var(--p1); }
.trust-row { display: flex; flex-wrap: wrap; gap: .5rem; padding-top: 1rem; border-top: 0.5px solid var(--ln-l); }
.trust-badge { font-family: var(--fm); font-size: .58rem; letter-spacing: .5px; border: 0.5px solid var(--ln-l); padding: .28rem .65rem; color: var(--p3); }
.contact-r { padding: 5rem 2.5rem; background: var(--paper); }
.contact-r h3 { font-size: .95rem; font-weight: 700; letter-spacing: -.01em; margin-bottom: 2rem; color: var(--ink); }
.field { margin-bottom: 1.25rem; }
.field label { display: block; font-size: .65rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--dim); margin-bottom: .5rem; }
.field abbr { text-decoration: none; color: var(--muted); }
.field input, .field select, .field textarea { width: 100%; background: transparent; border: none; border-bottom: 0.5px solid var(--ln); padding: .7rem 0; font-family: var(--fs); font-size: .88rem; color: var(--ink); transition: border-color .2s; outline: none; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--teal); }
.field textarea { resize: vertical; min-height: 90px; }
.field select { cursor: pointer; appearance: none; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.btn-send { margin-top: 1rem; width: 100%; padding: 1rem; background: var(--ink); color: var(--p0); border: none; font-family: var(--fs); font-weight: 700; font-size: .82rem; letter-spacing: 1px; cursor: pointer; position: relative; overflow: hidden; transition: background .01s; }
.btn-send::before { content: ''; position: absolute; inset: 0; background: var(--teal); transform: translateX(-101%); transition: transform .4s var(--ease); }
.btn-send:hover::before { transform: translateX(0); }
.btn-send span { position: relative; z-index: 1; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer-grid { padding: 3rem 2.5rem; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; border-bottom: 0.5px solid var(--ln-l); background: var(--ink); }
.footer-sig img { height: 50px; width: auto; }
.footer-line { width: 28px; height: 1.5px; background: var(--gold); margin: .85rem 0; }
.footer-brand p { font-size: .75rem; color: var(--p3); line-height: 1.65; max-width: 240px; }
.footer-col h3 { font-size: .6rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--p3); margin-bottom: 1rem; font-family: var(--fs); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
.footer-col ul a { font-size: .8rem; color: var(--p2); transition: color .2s, padding-left .2s; }
.footer-col ul a:hover { color: var(--p0); padding-left: 4px; }
.footer-bottom { padding: 1.1rem 2.5rem; display: flex; justify-content: space-between; align-items: center; font-size: .67rem; color: var(--p3); font-family: var(--fm); background: var(--ink); }
.footer-badges { display: flex; gap: .5rem; }
.fbadge { border: 0.5px solid var(--ln-l); padding: .18rem .5rem; font-size: .58rem; letter-spacing: .5px; color: var(--p3); }

/* ── STICKY WPP ─────────────────────────────────────────────── */
.sticky-wpp { position: fixed; bottom: 2rem; right: 2rem; z-index: 99; display: flex; align-items: center; gap: .55rem; background: #25D366; color: #fff; padding: .75rem 1.4rem; font-weight: 700; font-size: .75rem; letter-spacing: .5px; box-shadow: 0 4px 20px rgba(37,211,102,.35); transition: transform .25s var(--ease), box-shadow .25s; }
.sticky-wpp:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(37,211,102,.45); }
.wpp-dot { width: 6px; height: 6px; border-radius: 50%; background: #fff; animation: blink 1.8s ease-in-out infinite; }

/* ── SCROLL REVEAL ──────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 960px) {
  /* hero */
  .hero { min-height: 100svh; }
  .hero-top { padding: 7rem 1.5rem 0; }
  .hero-mid { padding: 2.5rem 1.5rem 0; }
  .hero-sub-row { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .hero-bot { flex-wrap: wrap; }
  .hst { min-width: 50%; border-bottom: 0.5px solid var(--ln-ll); }
  .h1-ghost { display: none; }

  /* manifesto */
  .manifesto { grid-template-columns: 1fr; gap: 1.5rem; padding: 4rem 1.5rem; }

  /* sobre */
  .sobre-grid { grid-template-columns: 1fr; }
  .sobre-img-wrap { min-height: 360px; border-right: none; border-bottom: 0.5px solid var(--ln); }
  .sobre-badge { right: 1.5rem; }
  .sobre-txt { padding: 3rem 1.5rem; }
  .sobre-nums { gap: 1.5rem; }

  /* services */
  .services-head { flex-direction: column; align-items: flex-start; padding: 2.5rem 1.5rem; }
  .services-head p { text-align: left; max-width: 100%; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .srv { border-bottom: 0.5px solid var(--ln-l); }

  /* parallax */
  .pdiv-bg, .cta-big-bg { background-attachment: scroll; }
  .pdiv { height: 300px; }

  /* processo */
  .process { grid-template-columns: 1fr; min-height: auto; padding: 5rem 1.5rem; gap: 3rem; }

  /* depoimentos */
  .voice-grid { grid-template-columns: 1fr; }
  .vcard { border-right: none; border-bottom: 0.5px solid var(--ln); }

  /* cases */
  .cases-head { grid-template-columns: 1fr; gap: 1.25rem; padding: 2.5rem 1.5rem 2rem; }
  .case-thumb { aspect-ratio: 16/9; }
  .case-body  { grid-template-columns: 1fr; }
  .case-body-main    { padding: 2rem 1.5rem; border-right: none; border-bottom: 0.5px solid var(--ln); }
  .case-body-metrics { padding: 1.5rem; border-right: none; border-bottom: 0.5px solid var(--ln); }
  .case-body-metrics .case-metrics { flex-direction: row; }
  .case-body-metrics .case-metric  { border-bottom: none; border-right: 0.5px solid var(--ln); flex: 1; padding: .85rem .5rem; }
  .case-body-metrics .case-metric:last-child { border-right: none; }
  .case-body-quote { padding: 1.5rem; }
  .cases-cta { padding: 2.5rem 1.5rem; flex-direction: column; align-items: flex-start; }

  /* faq */
  .faq { padding: 4rem 1.5rem; }

  /* cta big */
  .cta-big { grid-template-columns: 1fr; padding: 4.5rem 1.5rem; min-height: auto; gap: 2.5rem; }

  /* contato */
  .contact { grid-template-columns: 1fr; }
  .contact-l { padding: 4rem 1.5rem; }
  .contact-r { padding: 3rem 1.5rem; }

  /* footer */
  .footer-grid { grid-template-columns: 1fr 1fr; padding: 2.5rem 1.5rem; }
  .nav-links a:not(.nav-wpp) { display: none; }
  .nav-ham { display: flex; }
  .nav, .nav.scrolled { padding: 1rem 1.5rem; }
}

@media (max-width: 600px) {
  .h1-line { font-size: clamp(3rem, 14vw, 5rem); }
  .services-grid { grid-template-columns: 1fr; }
  .sobre-nums { flex-direction: column; gap: 1rem; }
  .faq { padding: 3rem 1rem; }
  .faq-q { font-size: .88rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: .75rem; text-align: center; }
  .field-row { grid-template-columns: 1fr; }
  .cta-big-btns { flex-direction: column; }
  .sticky-wpp { bottom: 1rem; right: 1rem; padding: .65rem 1rem; }
}