/* ============================================================
   NEXFLOW — Design System v2
   Tema: claro, tipográfico, um acento
   ============================================================ */

/* ── Custom Fonts ─────────────────────────────────────────── */
@font-face {
  font-family: 'Druk Text Trial';
  src: url('/assets/fonts/Druk_Collection/Druk Text Family/DrukText-Heavy-Trial.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Forma DJR Deck';
  src: url('/assets/fonts/DJR-Fonts-2026-02-24-f3f7f73-Testing/FormaDJR_Desktop/FormaDJRDeck-Regular-Testing.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Forma DJR Deck';
  src: url('/assets/fonts/DJR-Fonts-2026-02-24-f3f7f73-Testing/FormaDJR_Desktop/FormaDJRDeck-Medium-Testing.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Forma DJR Deck';
  src: url('/assets/fonts/DJR-Fonts-2026-02-24-f3f7f73-Testing/FormaDJR_Desktop/FormaDJRDeck-Bold-Testing.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Forma DJR Deck';
  src: url('/assets/fonts/DJR-Fonts-2026-02-24-f3f7f73-Testing/FormaDJR_Desktop/FormaDJRDeck-ExtraBold-Testing.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* 1. VARIÁVEIS */
:root {
  --bg:         #F5F0E8;
  --bg-2:       #EDE8DE;
  --bg-3:       #E4DED4;
  --bg-dark:    #1B1B1B;
  --bg-card:    #FDFAF5;
  --border:     #DDD8CE;
  --border-2:   #C8C2B8;

  --ink:        #1B1B1B;
  --ink-2:      #5c5b56;
  --ink-3:      #8B8880;
  --ink-inv:    #F5F0E8;

  --green:      #0A4C2A;
  --green-mid:  #0A4C2A;
  --green-dim:  rgba(10,76,42,0.07);
  --green-border: rgba(10,76,42,0.18);

  /* aliases para HTML existente */
  --purple:       #0A4C2A;
  --purple-light: #0A4C2A;
  --purple-dim:   rgba(10,76,42,0.07);
  --indigo:       #0A4C2A;
  --cyan:         #0A4C2A;
  --cyan-dim:     rgba(10,76,42,0.07);
  --text:         #1B1B1B;
  --text-2:       #5c5b56;
  --text-3:       #8B8880;
  --bg-card-hover:#F8F4ED;
  --border-hover: #C8C2B8;

  --grad-primary:  linear-gradient(135deg, #0A4C2A 0%, #0A4C2A 100%);
  --grad-text:     none;
  --grad-card:     transparent;
  --shadow-card:   0 1px 3px rgba(0,0,0,0.05),0 0 0 1px var(--border);
  --shadow-hover:  0 4px 20px rgba(0,0,0,0.09);
  --shadow-purple: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-glow:   none;

  --font: 'Forma DJR Deck', 'Inter', system-ui, -apple-system, sans-serif;
  --section-py: 7rem;
  --container:  1200px;
  --nav-h:      68px;

  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-full: 9999px;
}

/* 2. RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* 3. TIPOGRAFIA */
.gradient-text { color: var(--green-mid); }

h1, h2, h3, h4 {
  font-family: 'Forma DJR Deck', 'Inter', system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0em;
  color: var(--ink);
  text-wrap: balance;
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.6rem); }
h3 { font-size: clamp(1.05rem, 2vw, 1.25rem); }
p  { color: var(--ink-2); line-height: 1.7; }

/* 4. LAYOUT */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: var(--section-py) 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  margin-bottom: 1rem;
}

.section-header { max-width: 640px; margin-bottom: 3.5rem; }
.section-header.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-header.centered .section-label { margin-left: auto; margin-right: auto; }
.section-header p { margin-top: 0.85rem; font-size: 0.98rem; line-height: 1.75; }

/* 5. BOTÕES */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.16s ease;
  font-family: var(--font);
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.btn-primary { background: var(--ink); color: var(--ink-inv); }
.btn-primary:hover { background: #000; transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border-2);
}
.btn-outline:hover { border-color: var(--ink); background: var(--ink); color: var(--ink-inv); }

.btn-ghost { background: transparent; color: var(--ink-2); padding-left: 0; padding-right: 0; }
.btn-ghost:hover { color: var(--ink); }

.btn-lg { padding: 0.85rem 1.8rem; font-size: 0.93rem; }
.btn-sm { padding: 0.42rem 1rem; font-size: 0.8rem; }

.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-mid); transform: translateY(-1px); }

/* 6. NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100; height: var(--nav-h);
  display: flex; align-items: center;
  transition: background 0.25s, border-color 0.25s;
}
.nav.scrolled {
  background: rgba(245,240,232,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: var(--container);
  margin: 0 auto; padding: 0 1.5rem;
}
.nav-logo {
  display: flex; align-items: center;
  flex-shrink: 0;
}
.nav-logo img {
  height: 26px;
  width: auto;
  display: block;
}
/* fallback icon (hidden when PNG loaded) */
.nav-logo-icon { display: none; }

.nav-logo-name {
  font-family: 'Druk Text Trial', 'Inter', sans-serif;
  font-weight: 900;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
  margin-left: 0.45rem;
}
.nav-links { display: flex; align-items: center; gap: 0.1rem; }
.nav-link {
  padding: 0.38rem 0.75rem; border-radius: var(--radius-sm);
  font-size: 0.85rem; font-weight: 500; color: var(--ink-2); transition: all 0.15s;
}
.nav-link:hover, .nav-link.active { color: var(--ink); background: var(--bg-2); }
.nav-cta { margin-left: 0.75rem; }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; background: none; border: none;
}
.nav-hamburger span {
  display: block; width: 20px; height: 1.5px;
  background: var(--ink-2); border-radius: 2px; transition: all 0.22s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--bg); border-bottom: 1px solid var(--border);
  padding: 1.25rem 1.5rem; flex-direction: column; gap: 0.3rem; z-index: 99;
}
.nav-mobile.open { display: flex; }
.nav-mobile .nav-link { font-size: 0.95rem; padding: 0.65rem 0.9rem; }
.nav-mobile .btn { width: 100%; justify-content: center; margin-top: 0.5rem; }

/* 7. HERO — blobs/grids desativados */
.hero-bg, .hero-blob, .hero-grid,
.hero-float-card, .hero-dashboard { display: none; }

/* 8. HERO v2 */
.hero-v2 {
  min-height: 100vh; display: flex; align-items: center;
  padding: calc(var(--nav-h) + 5rem) 0 5rem;
  background: var(--bg);
}
.hero-v2-title {
  font-size: clamp(2.8rem, 6.5vw, 5.8rem);
  font-weight: 900; line-height: 1.04;
  letter-spacing: -0.02em; color: var(--ink);
  margin-bottom: 1.75rem; max-width: 860px;
}
.hero-v2-title .gradient-text { color: var(--green); }
.hero-v2-sub {
  font-size: 1rem; color: var(--ink-2);
  line-height: 1.75; max-width: 460px; margin-bottom: 2.25rem;
}
.hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.hero-v2-proof {
  display: flex; align-items: flex-start; gap: 2.5rem; flex-wrap: wrap;
  margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border);
}
.proof-stat { display: flex; flex-direction: column; gap: 0.1rem; }
.proof-stat-val {
  font-size: 1.4rem; font-weight: 900; letter-spacing: -0.04em;
  color: var(--ink); line-height: 1;
}
.proof-stat-label { font-size: 0.72rem; color: var(--ink-3); line-height: 1.4; max-width: 110px; }
.proof-divider { width: 1px; height: 34px; background: var(--border); flex-shrink: 0; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--green-dim); border: 1px solid var(--green-border);
  color: var(--green); padding: 0.32rem 0.8rem; border-radius: var(--radius-full);
  font-size: 0.76rem; font-weight: 600;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--green);
  animation: dotPulse 2s infinite; flex-shrink: 0;
}
@keyframes dotPulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.35;transform:scale(0.7)} }

/* 9. LOGOS STRIP */
.logos-strip { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 1.25rem; padding: 1.5rem 0; }
.logo-pill {
  background: transparent; border: 1px solid var(--border);
  border-radius: var(--radius-full); padding: 0.4rem 1rem;
  font-size: 0.76rem; font-weight: 600; color: var(--ink-3);
  letter-spacing: 0.03em; transition: all 0.15s;
}
.logo-pill:hover { color: var(--ink-2); border-color: var(--border-2); }

/* 10. PAIN WALL */
.pain-section {
  padding: 5rem 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pain-intro {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 3rem; margin-bottom: 2rem;
}
.pain-intro h2 { max-width: 460px; }
.pain-intro p { max-width: 310px; font-size: 0.87rem; text-align: right; }
.pain-tags {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
@media (max-width: 860px) { .pain-tags { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .pain-tags { grid-template-columns: 1fr; } }
.pain-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 0.52rem 0.88rem;
  font-size: 0.82rem; color: var(--ink-2); transition: all 0.16s; cursor: default;
}
.pain-tag:hover { border-color: var(--green-border); color: var(--ink); }
.pain-tag-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); opacity: 0.45; flex-shrink: 0; }
.pain-closing {
  margin-top: 1.75rem; padding: 1.4rem 2rem;
  background: var(--ink); border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.pain-closing p { font-size: 0.92rem; font-weight: 500; color: rgba(248,247,244,0.65); line-height: 1.6; max-width: 560px; }
.pain-closing p span { color: var(--ink-inv); font-weight: 700; }

/* 11. INSIGHT STRIP */
.insight-strip { padding: 5rem 0; background: var(--bg); text-align: center; }
.insight-headline { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 900; letter-spacing: -0.03em; max-width: 680px; margin: 0 auto 1.1rem; line-height: 1.12; }
.insight-headline .gradient-text { color: var(--green); }
.insight-sub { font-size: 0.93rem; color: var(--ink-2); max-width: 620px; margin: 0 auto 2rem; line-height: 1.75; }

/* 12. APPROACH GRID */
.approach-section { padding: var(--section-py) 0; }
.approach-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; margin-top: 3rem;
}
.approach-col { background: var(--bg-card); padding: 2.25rem; transition: background 0.2s; }
.approach-col:hover { background: var(--bg); }
.approach-number { font-size: 3.5rem; font-weight: 900; letter-spacing: -0.05em; line-height: 1; color: var(--green); margin-bottom: 1.1rem; }
.approach-col h3 { font-size: 1.02rem; margin-bottom: 0.55rem; }
.approach-col p { font-size: 0.85rem; line-height: 1.7; }

/* 13. STATS — dark */
.stats-section { background: var(--bg-dark); padding: 5rem 0; border-top: none; border-bottom: none; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; text-align: center; }
.stat-item { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.stat-value { font-size: clamp(2.2rem,4vw,3rem); font-weight: 900; letter-spacing: -0.04em; color: var(--ink-inv); }
.stat-label { font-size: 0.83rem; color: rgba(248,247,244,0.4); max-width: 150px; line-height: 1.5; }

/* 14. SERVICES */
.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
}
.service-card { background: var(--bg-card); padding: 1.75rem; transition: background 0.18s; cursor: default; }
.service-card:hover { background: var(--bg); }
.service-icon-wrap {
  width: 42px; height: 42px; border-radius: var(--radius-sm);
  background: var(--bg-2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; font-size: 1.1rem; transition: all 0.18s;
}
.service-card:hover .service-icon-wrap { background: var(--ink); }
.service-card h3 { font-size: 0.97rem; margin-bottom: 0.55rem; }
.service-card p { font-size: 0.84rem; line-height: 1.7; margin-bottom: 1rem; }
.service-result { display: flex; align-items: center; gap: 0.4rem; font-size: 0.75rem; font-weight: 700; color: var(--green); }

/* 15. TESTIMONIALS */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
}
.testimonial-card { background: var(--bg-card); padding: 2rem; display: flex; flex-direction: column; gap: 1.1rem; transition: background 0.18s; }
.testimonial-card:hover { background: var(--bg); }
.testimonial-stars { color: #d97706; font-size: 0.78rem; letter-spacing: 0.04em; }
.testimonial-text { font-size: 0.9rem; line-height: 1.75; color: var(--ink); flex: 1; }
.testimonial-result { font-size: 0.74rem; font-weight: 700; color: var(--green); padding-top: 0.6rem; border-top: 1px solid var(--border); }
.testimonial-author { display: flex; align-items: center; gap: 0.7rem; }
.author-avatar {
  width: 36px; height: 36px; border-radius: 50%; background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700; color: var(--ink-inv); flex-shrink: 0;
}
.author-info strong { display: block; font-size: 0.83rem; color: var(--ink); }
.author-info span { font-size: 0.73rem; color: var(--ink-3); }

/* 16. CTA BANNER */
.cta-banner { background: var(--bg-dark); padding: 5rem 0; }
.cta-banner-inner { text-align: center; max-width: 620px; margin: 0 auto; }
.cta-banner-inner h2 { color: var(--ink-inv); margin-bottom: 0.85rem; }
.cta-banner-inner p { color: rgba(248,247,244,0.55); margin-bottom: 2rem; font-size: 0.97rem; }
.cta-banner-actions { display: flex; justify-content: center; gap: 0.75rem; flex-wrap: wrap; }
.cta-banner .btn-primary { background: var(--ink-inv); color: var(--ink); }
.cta-banner .btn-primary:hover { background: var(--bg-2); }
.cta-banner .btn-outline { border-color: rgba(248,247,244,0.18); color: var(--ink-inv); background: transparent; }
.cta-banner .btn-outline:hover { background: rgba(248,247,244,0.07); border-color: rgba(248,247,244,0.35); }
.cta-banner .section-label { color: rgba(248,247,244,0.35); display: block; text-align: center; margin-bottom: 1rem; }

/* 17. FOOTER */
.footer { background: var(--bg-dark); border-top: 1px solid rgba(255,255,255,0.06); padding: 3.5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { font-size: 0.83rem; line-height: 1.7; margin-top: 1rem; max-width: 255px; color: rgba(248,247,244,0.4); }
.footer .nav-logo img { filter: none; opacity: 1; }
.footer-col h4 { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(248,247,244,0.28); margin-bottom: 1rem; }
.footer-col ul li { margin-bottom: 0.45rem; }
.footer-col ul li a, .footer-col ul li span { font-size: 0.83rem; color: rgba(248,247,244,0.45); transition: color 0.15s; }
.footer-col ul li a:hover { color: var(--ink-inv); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1.75rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.76rem; color: rgba(248,247,244,0.28); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.76rem; color: rgba(248,247,244,0.28); transition: color 0.15s; }
.footer-bottom-links a:hover { color: rgba(248,247,244,0.55); }

/* 18. PAGE HERO (internas) */
.page-hero { padding: calc(var(--nav-h) + 4rem) 0 4rem; background: var(--bg); border-bottom: 1px solid var(--border); }
.page-hero::after { display: none; }
.page-hero .section-label { display: block; text-align: center; margin: 0 auto 0.75rem; }
.page-hero h1 { max-width: 680px; margin: 0 auto 1rem; text-align: center; }
.page-hero p { max-width: 520px; margin: 0 auto; font-size: 0.98rem; text-align: center; }

/* 19. SERVICE DETAIL */
.service-detail-card {
  background: var(--bg-card); border: 1px solid var(--border);
  margin-bottom: 1px; padding: 2.5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
  transition: border-color 0.18s;
}
.service-detail-card:first-of-type { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.service-detail-card:last-of-type  { border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
.service-detail-card:hover { border-color: var(--border-2); }
.service-detail-card.reversed { direction: rtl; }
.service-detail-card.reversed > * { direction: ltr; }
.service-detail-visual {
  background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 2rem; aspect-ratio: 4/3; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem;
}
.service-tag {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--green-dim); border: 1px solid var(--green-border);
  color: var(--green); padding: 0.25rem 0.65rem; border-radius: var(--radius-full);
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.85rem;
}
.service-detail-card h3 { font-size: 1.35rem; margin-bottom: 0.65rem; }
.service-detail-card > div > p { font-size: 0.9rem; line-height: 1.75; margin-bottom: 1.4rem; }
.benefit-list { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.4rem; }
.benefit-item { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.85rem; color: var(--ink-2); }
.benefit-check {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--green-dim); border: 1px solid var(--green-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--green); font-size: 0.58rem; flex-shrink: 0; margin-top: 2px;
}

/* 20. PROCESS STEPS (home) */
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; }
.process-steps::before { display: none; }
.process-step { display: flex; flex-direction: column; align-items: flex-start; }
.step-number {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg-card); border: 1.5px solid var(--border-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 800; color: var(--ink);
  margin-bottom: 1rem; transition: all 0.18s;
}
.process-step:hover .step-number { background: var(--ink); color: var(--ink-inv); border-color: var(--ink); }
.step-content h3 { font-size: 0.95rem; margin-bottom: 0.4rem; }
.step-content p { font-size: 0.83rem; }

/* 21. PROCESS DETAIL (como funciona) */
.process-detail {
  display: flex; flex-direction: column; gap: 1px;
  border: 1px solid var(--border); border-radius: var(--radius-xl); overflow: hidden;
}
.process-detail::before { display: none; }
.process-detail-step {
  background: var(--bg-card); padding: 2rem 2rem 2rem 5rem;
  position: relative; transition: background 0.18s;
  transform: none !important; box-shadow: none !important;
}
.process-detail-step:hover { background: var(--bg); }
.step-num-badge {
  position: absolute; left: 2rem; top: 2rem;
  width: 34px; height: 34px; border-radius: 50%; background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 800; color: var(--ink-inv); box-shadow: none;
}
.process-detail-step h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.process-detail-step p { font-size: 0.87rem; line-height: 1.72; margin-bottom: 0.85rem; }
.step-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.step-tag {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--radius-full); padding: 0.2rem 0.6rem;
  font-size: 0.71rem; color: var(--ink-3);
}

/* 22. CASES */
.case-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 2.25rem; margin-bottom: 1.25rem;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.case-card:hover { border-color: var(--border-2); box-shadow: var(--shadow-hover); }
.case-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 2rem; margin-bottom: 2rem; padding-bottom: 1.75rem; border-bottom: 1px solid var(--border);
}
.case-company { display: flex; align-items: center; gap: 0.9rem; }
.case-logo {
  width: 46px; height: 46px; border-radius: var(--radius-md); background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; font-weight: 900; color: var(--ink-inv);
}
.case-company-info strong { display: block; font-size: 0.97rem; color: var(--ink); }
.case-company-info span { font-size: 0.8rem; color: var(--ink-3); }
.case-sector {
  background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius-full);
  padding: 0.28rem 0.8rem; font-size: 0.73rem; color: var(--ink-2); white-space: nowrap;
}
.case-body { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 1.75rem; }
.case-col h4 { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-3); margin-bottom: 0.7rem; font-weight: 700; }
.case-problem ul, .case-solution ul { display: flex; flex-direction: column; gap: 0.4rem; }
.case-problem ul li, .case-solution ul li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.84rem; color: var(--ink-2); }
.case-results {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden;
}
.result-metric { text-align: center; padding: 1.2rem 0.75rem; background: var(--bg-2); }
.result-metric-value { font-size: 1.55rem; font-weight: 900; letter-spacing: -0.03em; line-height: 1; margin-bottom: 0.3rem; color: var(--ink); }
.result-metric-value.green { color: var(--green); }
.result-metric-value.purple { color: var(--ink); }
.result-metric-value.cyan { color: var(--green-mid); }
.result-metric-label { font-size: 0.72rem; color: var(--ink-3); line-height: 1.4; }

/* 23. ABOUT */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-photo {
  width: 100%; aspect-ratio: 4/5;
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--radius-xl); display: flex; align-items: center; justify-content: center; font-size: 4rem;
}
.about-photo::before { display: none; }
.about-values {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 1.5rem;
  background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
}
.positioning-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 860px; margin: 0 auto; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 860px; margin: 0 auto; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 768px) { .value-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .value-grid { grid-template-columns: 1fr; } }
.value-item { background: var(--bg-card); border: none; border-radius: 0; padding: 1.2rem; transition: background 0.18s; }
.value-item:hover { background: var(--bg); }
.value-icon { font-size: 1.2rem; margin-bottom: 0.45rem; }
.value-item h4 { font-size: 0.88rem; margin-bottom: 0.28rem; min-height: 2.6em; display: flex; align-items: flex-start; }
.value-item p { font-size: 0.79rem; }

/* 24. CONTACT */
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
.contact-layout > * { min-width: 0; width: 100%; }
.contact-info h2 { margin-bottom: 0.85rem; }
.contact-info > p { margin-bottom: 1.75rem; }
.contact-items { display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 2rem; }
.contact-item {
  display: flex; align-items: center; gap: 0.9rem; padding: 0.9rem 1rem;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); transition: border-color 0.15s;
}
.contact-item:hover { border-color: var(--border-2); }
.contact-item-icon {
  width: 34px; height: 34px; border-radius: var(--radius-sm);
  background: var(--bg-2); display: flex; align-items: center;
  justify-content: center; font-size: 0.95rem; flex-shrink: 0;
}
.contact-item-info { min-width: 0; overflow: hidden; }
.contact-item-info strong { display: block; font-size: 0.72rem; color: var(--ink-3); font-weight: 600; }
.contact-item-info a, .contact-item-info span { font-size: 0.87rem; color: var(--ink); transition: color 0.15s; overflow-wrap: break-word; word-break: break-all; }
.contact-item-info a:hover { color: var(--green); }
.contact-form-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 2.25rem; }
.contact-form-card h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.contact-form-card > p { font-size: 0.84rem; margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 600; color: var(--ink-2); margin-bottom: 0.38rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: var(--bg);
  border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 0.62rem 0.88rem; color: var(--ink);
  font-family: var(--font); font-size: 0.87rem;
  transition: border-color 0.16s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--ink); background: var(--bg-card);
}
.form-group select { appearance: none; cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--ink-3); }
.form-success { display: none; flex-direction: column; align-items: center; text-align: center; padding: 3rem 1rem; gap: 0.75rem; }
.form-success.visible { display: flex; }
.form-success-icon { font-size: 2.5rem; }
.form-success h3 { font-size: 1.15rem; }
.form-success p { font-size: 0.86rem; }

/* 25. FAQ */
.faq-list { display: flex; flex-direction: column; gap: 1px; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.faq-item { background: var(--bg-card); transition: background 0.16s; }
.faq-item.open { background: var(--bg); }
.faq-question { display: flex; align-items: center; justify-content: space-between; padding: 1.15rem 1.5rem; cursor: pointer; font-weight: 600; font-size: 0.9rem; color: var(--ink); user-select: none; gap: 1rem; }
.faq-arrow { flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%; background: var(--bg-2); display: flex; align-items: center; justify-content: center; font-size: 0.72rem; color: var(--ink-3); transition: all 0.22s; }
.faq-item.open .faq-arrow { transform: rotate(180deg); background: var(--ink); color: var(--ink-inv); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.32s ease; }
.faq-answer-inner { padding: 0 1.5rem 1.15rem; font-size: 0.87rem; line-height: 1.75; color: var(--ink-2); }
.faq-item.open .faq-answer { max-height: 400px; }

/* 26. MISC */
.chip { display: inline-flex; align-items: center; gap: 0.35rem; background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius-full); padding: 0.22rem 0.65rem; font-size: 0.71rem; color: var(--ink-3); }
.metric-card { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1rem; }
.metric-label { font-size: 0.68rem; color: var(--ink-3); margin-bottom: 0.3rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; }
.metric-value { font-size: 1.4rem; font-weight: 900; color: var(--ink); line-height: 1; }
.metric-value.green { color: var(--green); }
.metric-value.purple { color: var(--ink); }
.metric-change { font-size: 0.67rem; color: var(--green); margin-top: 0.2rem; }

/* 27. EDITORIAL LEAD (Serviços v2) */
.editorial-lead { padding: 5rem 0 3rem; border-bottom: 1px solid var(--border); }
.editorial-lead-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 5rem; align-items: center; }
.editorial-lead h2 { font-size: clamp(1.8rem,3.5vw,2.7rem); line-height: 1.1; margin-bottom: 1.1rem; }
.editorial-lead p { font-size: 0.93rem; line-height: 1.8; margin-bottom: 0.85rem; }

/* 28. PROBLEM AREAS */
.problem-areas { padding: var(--section-py) 0; }
.problem-area {
  display: grid; grid-template-columns: 1.6fr 3fr; gap: 0;
  border: 1px solid var(--border); margin-bottom: 2rem; border-radius: var(--radius-lg); overflow: hidden; transition: border-color 0.18s;
}
.problem-area:last-of-type { margin-bottom: 0; }
.problem-area:hover { border-color: var(--border-2); }
.problem-area:hover .problem-left { background: var(--bg); }
.problem-left {
  background: var(--bg-card); padding: 2rem;
  display: flex; flex-direction: column; justify-content: space-between;
  border-right: 1px solid var(--border); transition: background 0.18s;
}
.problem-icon { font-size: 1.9rem; margin-bottom: 0.7rem; }
.problem-left h3 { font-size: clamp(1.4rem, 2.4vw, 2.1rem); margin-bottom: 0.4rem; line-height: 1.15; }
.problem-left > p { font-size: 0.8rem; color: var(--ink-3); }
.problem-right { background: var(--bg-2); padding: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.problem-symptoms { display: flex; flex-direction: column; gap: 0.4rem; }
.symptom {
  display: flex; align-items: center; gap: 0.55rem; font-size: 0.82rem; color: var(--ink-2);
  padding: 0.52rem 0.7rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm);
}
.symptom-icon {
  width: 17px; height: 17px; border-radius: 50%;
  background: rgba(220,38,38,0.07); border: 1px solid rgba(220,38,38,0.14);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.58rem; color: #dc2626; flex-shrink: 0;
}
.problem-approach {
  font-size: 0.82rem; color: var(--ink-2); line-height: 1.65;
}
.no-catalog { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 3rem; text-align: center; max-width: 640px; margin: 0 auto; }
.no-catalog h3 { font-size: 1.35rem; margin-bottom: 0.85rem; }
.no-catalog p { font-size: 0.9rem; line-height: 1.75; margin-bottom: 1.5rem; }

/* 29. SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }

/* 30. SECTION DIVIDER */
.section-divider { height: 1px; background: var(--border); margin: 0; }

/* 31. RESPONSIVE */

/* ── 1024px ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid        { grid-template-columns: repeat(2,1fr); }
  .stats-grid           { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid    { grid-template-columns: repeat(2,1fr); }
  .footer-grid          { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .about-story          { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual         { max-width: 480px; }
  .about-values         { grid-template-columns: repeat(4,1fr); }
  .service-detail-card  { grid-template-columns: 1fr; }
  .service-detail-card.reversed { direction: ltr; }
  .contact-layout       { grid-template-columns: 1fr; gap: 2rem; }
  .case-body            { grid-template-columns: 1fr; gap: 1.5rem; }
  .case-results         { grid-template-columns: repeat(2,1fr); }
  .editorial-lead-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .problem-area         { grid-template-columns: 1fr; }
  .problem-left         { border-right: none; border-bottom: 1px solid var(--border); }
  .approach-grid        { grid-template-columns: 1fr; gap: 1px; }
  .process-steps        { grid-template-columns: repeat(2,1fr); }
}

/* ── 768px ──────────────────────────────────────────────── */
@media (max-width: 768px) {
  :root { --section-py: 4rem; }

  /* Nav */
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger        { display: flex; }
  .nav-logo img         { height: 22px; }

  /* Hero */
  .hero-v2 { padding-top: calc(var(--nav-h) + 3rem); padding-bottom: 3.5rem; min-height: auto; }
  .hero-v2-title { margin-bottom: 1.25rem; }
  .hero-v2-sub { font-size: 0.95rem; margin-bottom: 1.75rem; }
  .hero-actions { gap: 0.6rem; }
  .hero-v2-proof {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1rem; margin-top: 2rem; padding-top: 1.75rem;
  }
  .proof-divider { display: none; }
  .proof-stat-val { font-size: 1.25rem; }

  /* Grids */
  .services-grid    { grid-template-columns: 1fr; }
  .process-steps    { grid-template-columns: 1fr; }
  .stats-grid       { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .testimonials-grid  { grid-template-columns: 1fr; }
  .about-values       { grid-template-columns: 1fr 1fr; }
  .positioning-grid   { grid-template-columns: 1fr; }
  .team-grid          { grid-template-columns: 1fr; }
  .contact-form-card  { padding: 1.5rem; }

  /* Footer */
  .footer-grid      { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; }
  .footer-brand     { grid-column: 1 / -1; }
  .footer-grid .footer-col:last-child { grid-column: 1 / -1; }
  .footer-bottom    { flex-direction: column; align-items: flex-start; }

  /* Forms */
  .form-row         { grid-template-columns: 1fr; }

  /* Contact */
  .contact-form-card  { max-width: 100%; overflow: hidden; }
  .contact-item       { max-width: 100%; overflow: hidden; }
  .contact-items      { max-width: 100%; }
  .contact-expect     { max-width: 100%; overflow: hidden; box-sizing: border-box; }

  /* Cases */
  .case-header      { flex-direction: column; gap: 1rem; }
  .case-sector      { align-self: flex-start; }
  .case-results     { grid-template-columns: 1fr 1fr; }

  /* Pain wall */
  .pain-intro       { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .pain-intro p     { text-align: left; max-width: 100%; }
  .pain-closing     { flex-direction: column; gap: 1.25rem; padding: 1.25rem; }
  .pain-closing p   { max-width: 100%; }

  /* Process */
  .process-detail-step { padding: 1.5rem 1.25rem 1.5rem 3.75rem; }
  .step-num-badge      { left: 1rem; width: 28px; height: 28px; font-size: 0.68rem; }

  /* Editorial lead */
  .editorial-lead { padding: 3rem 0 2rem; }

  /* Page hero */
  .page-hero h1   { font-size: clamp(1.8rem, 6vw, 2.8rem); }
  .page-hero p    { font-size: 0.92rem; }

  /* Problem areas */
  .problem-left h3  { font-size: 1.05rem; }
  .problem-approach { font-size: 0.8rem; }

  /* No catalog */
  .no-catalog { padding: 2rem 1.25rem; }
  .no-catalog > div { flex-direction: column; }

  /* CTA */
  .cta-banner { padding: 3.5rem 0; }

  /* Service cards 2-col at 768 */
  .services-grid { grid-template-columns: repeat(2,1fr); }
}

/* ── 580px ──────────────────────────────────────────────── */
@media (max-width: 580px) {
  .services-grid     { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-values      { grid-template-columns: 1fr; }
  .team-grid         { grid-template-columns: 1fr; }
  .positioning-grid  { grid-template-columns: 1fr; }

  /* Hero proof — 2-col compact */
  .hero-v2-proof { grid-template-columns: 1fr 1fr; gap: 0.75rem; }

  /* Footer brand */
  .footer-brand p { max-width: 100%; }
}

/* ── 480px ──────────────────────────────────────────────── */
@media (max-width: 480px) {
  :root { --section-py: 3rem; }

  .hero-v2-title       { font-size: clamp(2.4rem, 10vw, 3rem); }
  .page-hero h1        { font-size: clamp(2.4rem, 10vw, 3rem); }
  .editorial-lead h2   { font-size: clamp(2.4rem, 10vw, 3rem); }
  .hero-v2-proof       { grid-template-columns: 1fr 1fr; }
  .proof-stat-val      { font-size: 1.15rem; }

  .stats-grid          { grid-template-columns: 1fr 1fr; }
  .case-results        { grid-template-columns: 1fr 1fr; }

  .cta-banner-actions  { flex-direction: column; align-items: stretch; }
  .cta-banner-actions .btn { justify-content: center; }

  .hero-actions        { flex-direction: column; }
  .hero-actions .btn   { justify-content: center; }

  .insight-headline    { font-size: 1.5rem; }

  .pain-tags           { gap: 0.4rem; }
  .pain-tag            { font-size: 0.79rem; padding: 0.45rem 0.7rem; }

  .no-catalog          { padding: 1.75rem 1rem; }
  .no-catalog h3       { font-size: 1.15rem; }

  .case-results        { grid-template-columns: 1fr 1fr; }
  .result-metric-value { font-size: 1.3rem; }

  /* Service cards full-width on small */
  .service-card        { padding: 1.35rem; }

  /* Testimonial grid */
  .testimonials-grid   { grid-template-columns: 1fr; }

  /* Section padding */
  .section-header      { margin-bottom: 2.25rem; }
  .approach-col        { padding: 1.75rem 1.5rem; }

  /* Process */
  .process-detail-step { padding: 1.25rem 1rem 1.25rem 3.25rem; }
  .step-num-badge      { left: 0.75rem; width: 26px; height: 26px; font-size: 0.62rem; }
}
