/* ============================================================
   LUCRI — style.css v4
   Dark hero · Light interior · Titan-inspired
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans', sans-serif;
  background: var(--bg-l);
  color: #0C0B17;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ============================================================
   VARIÁVEIS
   ============================================================ */
:root {
  /* Dark */
  --bg:      #010116;
  --bg-alt:  #06061e;
  --muted:   rgba(255,255,255,0.5);
  --muted2:  rgba(255,255,255,0.28);
  --border:  rgba(255,255,255,0.09);

  /* Light */
  --bg-l:    #fbfbf9;
  --bg-la:   #f0eeea;
  --text-l:  #292a2d;
  --muted-l: #818079;
  --border-l: #d6d4ce;

  /* Brand */
  --green:   #00EB85;
  --green-d: #008F54;
  --blue:    #00D0F5;

  --font:        'Noto Sans', sans-serif;
  --font-brand:  'Montserrat', sans-serif;
  --max:     1240px;
  --r:       8px;
  --t:       0.22s ease;
  --nav-h:   72px;
}

.container { max-width: var(--max); margin: 0 auto; padding: 0 32px; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }

/* ============================================================
   BOTÕES
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 28px;
  border-radius: var(--r);
  font-family: var(--font);
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--t);
  white-space: nowrap;
  outline: none;
}
.btn:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; }
.btn-primary { background: var(--green); color: #010116; }
.btn-primary:hover { background: #00d474; }
.btn-primary:active { transform: scale(0.98); }
.btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.22); }
.btn-ghost:hover { border-color: var(--green); color: var(--green); }
.btn-ghost:active { transform: scale(0.98); }
.btn-dark { background: var(--text-l); color: #fff; }
.btn-dark:hover { background: #1a1930; }
.btn-dark:active { transform: scale(0.98); }
.btn-ghost-dark { background: transparent; color: var(--text-l); border: 1.5px solid var(--border-l); }
.btn-ghost-dark:hover { border-color: var(--green-d); color: var(--green-d); }
.btn-ghost-dark:active { transform: scale(0.98); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(1,1,22,0.97);
  backdrop-filter: blur(16px);
  transition: border-color var(--t);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  border-bottom-color: var(--border);
}
.nav .container { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo img { height: 34px; }
.nav-menu { display: flex; align-items: center; gap: 32px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 0.82rem; font-weight: 600; color: var(--muted); transition: color var(--t); }
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-cta { display: flex; gap: 10px; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: var(--t); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-drawer { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; background: rgba(1,1,22,0.98); border-bottom: 1px solid var(--border); padding: 20px 32px 28px; flex-direction: column; z-index: 199; }
.nav-drawer.open { display: flex; }
.nav-drawer a { font-size: 0.9rem; font-weight: 600; color: var(--muted); padding: 13px 0; border-bottom: 1px solid var(--border); transition: color var(--t); }
.nav-drawer a:hover { color: var(--green); }
.nav-drawer .btn { margin-top: 20px; }

/* ============================================================
   HERO (dark)
   ============================================================ */
.hero {
  min-height: 100dvh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
  background: var(--bg);
}
.hero-bg-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--bg);
}
.hero-bg-fallback::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
/* Elemento decorativo — anéis à direita */
.hero-rings {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(0,235,133,0.11);
}
.hero-rings::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 480px; height: 480px;
  border-radius: 50%;
  border: 1px solid rgba(0,235,133,0.07);
}
.hero-rings::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 660px; height: 660px;
  border-radius: 50%;
  border: 1px solid rgba(0,235,133,0.04);
}
.hero-rings-dot {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  opacity: 0.65;
  box-shadow: 0 0 28px rgba(0,235,133,0.45), 0 0 60px rgba(0,235,133,0.18);
}
.hero-content { position: relative; z-index: 2; width: 100%; }
.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
}
.hero-text { flex: 1 1 480px; max-width: 600px; text-align: left; }

.hero-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--green);
  display: block;
  margin-bottom: 22px;
}
.hero-title {
  font-family: var(--font-brand);
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 22px;
  color: #fff;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.hero-title .hl { color: var(--green); }
.hero-sub { font-size: 1rem; color: var(--muted); line-height: 1.82; margin: 0 0 32px; max-width: 480px; text-wrap: pretty; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-start; }

.hero-photo { flex: 1 1 420px; max-width: 480px; overflow: hidden; border-radius: 10px; }
.hero-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 50%;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.55);
}

/* ============================================================
   BANNER SEGMENTOS (dark)
   ============================================================ */
.banner-section {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  background: var(--bg);
}

.banner-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.banner-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--muted2);
  white-space: nowrap;
  flex-shrink: 0;
}

.banner-dots {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}

.banner-dots span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
  padding: 0 14px;
  position: relative;
}

.banner-dots span + span::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--muted2);
}

/* ============================================================
   FEATURE SECTIONS — Serviços (Titan-style)
   ============================================================ */
.feature-section { background: var(--bg-l); }
.feature-section-alt { background: var(--bg-la); }

.feature-header {
  padding: 96px 0 0;
  text-align: center;
}
.feature-header .feature-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--green-d);
  display: block;
  margin-bottom: 16px;
}
.feature-header h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--text-l);
  line-height: 1.15;
  margin-bottom: 12px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}
.feature-header p {
  font-size: 0.95rem;
  color: var(--muted-l);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.75;
}
.feature-header-divider {
  width: 40px;
  height: 3px;
  background: var(--green-d);
  border-radius: 2px;
  margin: 16px auto 0;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--border-l);
}
.feature-row:last-of-type { border-bottom: none; padding-bottom: 96px; }
.feature-row--rev .feature-content { order: 2; }
.feature-row--rev .feature-visual { order: 1; }

.feature-num {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--green-d);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.feature-num::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--green-d);
  border-radius: 2px;
}

.feature-title {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--text-l);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.feature-desc {
  font-size: 0.95rem;
  color: var(--muted-l);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 400px;
  text-wrap: pretty;
}

.feature-items { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.feature-items li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--muted-l);
  line-height: 1.55;
}
.feature-items li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-d);
  flex-shrink: 0;
  margin-top: 6px;
}

.feature-visual { display: flex; justify-content: center; }

/* ============================================================
   FEATURE MOCKUPS (UI Cards)
   ============================================================ */
.feature-mockup {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1), 0 4px 16px rgba(0,0,0,0.05);
  overflow: hidden;
  width: 100%;
  max-width: 420px;
}

.mock-topbar {
  padding: 18px 22px 14px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mock-topbar-title { font-size: 0.75rem; font-weight: 700; color: var(--text-l); letter-spacing: 0.04em; }
.mock-badge {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 100px;
}
.mock-badge-green { background: rgba(0,143,84,0.12); color: var(--green-d); }
.mock-badge-blue  { background: rgba(0,208,245,0.12); color: #0076A8; }
.mock-badge-amber { background: rgba(245,165,36,0.12); color: #B07500; }

.mock-body { padding: 12px 22px 18px; }

.mock-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid rgba(0,0,0,0.045);
}
.mock-row:last-child { border-bottom: none; }
.mock-row-label { font-size: 0.78rem; color: #555; font-weight: 500; }
.mock-row-val { font-size: 0.82rem; font-weight: 700; color: var(--text-l); }
.mock-row-status { font-size: 0.6rem; font-weight: 700; padding: 2px 8px; border-radius: 100px; margin-left: 8px; }
.mock-row-status.ok      { background: rgba(0,143,84,0.12); color: var(--green-d); }
.mock-row-status.pend    { background: rgba(0,208,245,0.12); color: #0076A8; }

.mock-foot {
  padding: 14px 22px;
  background: var(--bg-la);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.mock-foot-label { font-size: 0.7rem; font-weight: 600; color: var(--muted-l); }
.mock-foot-val { font-size: 1.15rem; font-weight: 900; color: var(--text-l); letter-spacing: -0.01em; }

/* KPI mockup */
.mock-kpis { padding: 18px 22px; display: flex; flex-direction: column; gap: 10px; }
.mock-kpi {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: var(--bg-l);
  border-radius: 10px;
}
.mock-kpi-label { font-size: 0.72rem; font-weight: 600; color: var(--muted-l); }
.mock-kpi-val { font-size: 1.1rem; font-weight: 900; color: var(--text-l); }
.mock-kpi-tag { font-size: 0.6rem; font-weight: 700; padding: 2px 8px; border-radius: 100px; margin-left: 6px; }
.mock-kpi-tag.up { background: rgba(0,143,84,0.12); color: var(--green-d); }
.mock-kpi-tag.neu { background: rgba(0,208,245,0.12); color: #0076A8; }

/* Chat mockup */
.mock-chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 22px 14px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.mock-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-d) 0%, #00EB85 100%);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mock-chat-meta { display: flex; flex-direction: column; gap: 2px; }
.mock-chat-name { font-size: 0.82rem; font-weight: 700; color: var(--text-l); }
.mock-chat-status { font-size: 0.62rem; color: var(--green-d); font-weight: 600; }
.mock-messages { padding: 16px 22px; display: flex; flex-direction: column; gap: 10px; }
.mock-msg-them {
  font-size: 0.76rem;
  color: var(--muted-l);
  background: var(--bg-la);
  padding: 10px 14px;
  border-radius: 14px 14px 14px 2px;
  max-width: 88%;
  line-height: 1.6;
}
.mock-msg-us {
  font-size: 0.76rem;
  color: #fff;
  background: var(--green-d);
  padding: 10px 14px;
  border-radius: 14px 14px 2px 14px;
  max-width: 88%;
  align-self: flex-end;
  line-height: 1.6;
}
.mock-msg-time { font-size: 0.6rem; color: var(--green-d); font-weight: 600; text-align: right; margin-top: -4px; }
.mock-chat-foot {
  background: var(--bg-la);
  padding: 12px 22px;
  border-top: 1px solid rgba(0,0,0,0.05);
}
.mock-chat-foot-text { font-size: 0.7rem; color: var(--green-d); font-weight: 600; }

/* ============================================================
   QUEM SOMOS (dark)
   ============================================================ */
.sobre-section { padding: 96px 0; background: var(--bg-alt); color: #fff; }
.sobre-grid { display: grid; grid-template-columns: 0.9fr 1.15fr; gap: 64px; align-items: center; }

.sobre-eyebrow { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; color: var(--green); display: block; margin-bottom: 16px; }
.sobre-divider { width: 40px; height: 3px; background: var(--green); border-radius: 2px; margin-bottom: 24px; }
.sobre-title { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 800; line-height: 1.12; margin-bottom: 24px; letter-spacing: -0.02em; text-wrap: balance; }
.sobre-body { font-size: 0.93rem; color: var(--muted); line-height: 1.85; margin-bottom: 18px; max-width: 480px; text-wrap: pretty; }
.sobre-body:last-of-type { margin-bottom: 0; }
.sobre-actions { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; }

.sobre-visual {
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}
.sobre-visual img.main-photo { width: 100%; height: 100%; object-fit: cover; object-position: top; }

/* ============================================================
   SÓCIOS (light)
   ============================================================ */
.socios-section { padding: 96px 0; background: var(--bg-l); color: var(--text-l); }

.section-header-l { margin-bottom: 56px; }
.section-header-l .eyebrow-l { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; color: var(--green-d); display: block; margin-bottom: 16px; }
.section-header-l .divider-l { width: 40px; height: 3px; background: var(--green-d); border-radius: 2px; margin-bottom: 24px; }
.section-header-l .title-l { font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 800; line-height: 1.15; color: var(--text-l); margin-bottom: 20px; letter-spacing: -0.02em; text-wrap: balance; }
.section-header-l .body-l { font-size: 0.93rem; color: var(--muted-l); line-height: 1.8; max-width: 560px; text-wrap: pretty; }

.socios-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

.socio-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0,0,0,0.07);
}
.socio-foto-wrap {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--bg-la);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}
.socio-foto-wrap img.real { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.socio-info { padding: 32px; }
.socio-info h3 { font-size: 1.5rem; font-weight: 800; color: var(--text-l); margin-bottom: 6px; letter-spacing: -0.01em; }
.socio-role-l {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--green-d);
  margin-bottom: 16px;
  display: block;
}
.socio-bio-l { font-size: 0.85rem; color: var(--muted-l); line-height: 1.8; margin-bottom: 16px; }
.socio-creds-l { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.socio-creds-l li { font-size: 0.78rem; color: var(--muted-l); line-height: 1.5; padding-left: 18px; position: relative; }
.socio-creds-l li::before { content: '→'; position: absolute; left: 0; color: var(--green-d); font-weight: 700; }
.socio-social-l { display: flex; gap: 8px; flex-wrap: wrap; }
.socio-social-l a {
  padding: 6px 14px;
  border: 1px solid var(--border-l);
  border-radius: 8px;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--muted-l);
  transition: var(--t);
}
.socio-social-l a:hover { border-color: var(--green-d); color: var(--green-d); }

/* ============================================================
   PILARES (light-alt)
   ============================================================ */
.pilares-section { padding: 96px 0; background: var(--bg-la); color: var(--text-l); }
.pilares-grid-l { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.pilar-card { background: #fff; border-radius: 16px; padding: 40px 32px; display: flex; flex-direction: column; gap: 20px; }
.pilar-card-num { font-size: 2.8rem; font-weight: 900; color: var(--green-d); opacity: 0.2; line-height: 1; }
.pilar-card h3 { font-size: 1rem; font-weight: 800; color: var(--text-l); line-height: 1.3; }
.pilar-card p { font-size: 0.83rem; color: var(--muted-l); line-height: 1.8; }

/* ============================================================
   IMPACTOS / MÉTRICAS (dark)
   ============================================================ */
.impactos-section { padding: 96px 0; background: var(--bg); color: #fff; }
.impactos-section .section-header-d { margin-bottom: 56px; }
.section-header-d .eyebrow-d { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; color: var(--green); display: block; margin-bottom: 16px; }
.section-header-d .divider-d { width: 40px; height: 3px; background: var(--green); border-radius: 2px; margin-bottom: 24px; }
.section-header-d .title-d { font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 800; line-height: 1.15; color: #fff; margin-bottom: 20px; letter-spacing: -0.02em; text-wrap: balance; }

.impactos-list { display: flex; flex-direction: column; border-top: 1px solid var(--border); }
.impacto-row { display: flex; align-items: center; gap: 40px; padding: 28px 0; border-bottom: 1px solid var(--border); }
.impacto-num {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900;
  color: var(--green);
  flex-shrink: 0;
  min-width: 240px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.impacto-text { font-size: 0.95rem; font-weight: 400; color: var(--muted); line-height: 1.55; }

/* ============================================================
   DEPOIMENTOS (light)
   ============================================================ */
.depoimentos-section { padding: 96px 0; background: var(--bg-la); color: var(--text-l); }
.depoimentos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.depoimento-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}
.depo-stars { color: #F5A524; font-size: 0.85rem; letter-spacing: 2px; }
.depo-text { font-size: 0.88rem; color: var(--muted-l); line-height: 1.8; flex: 1; font-style: italic; }
.depo-author { border-top: 1px solid var(--border-l); padding-top: 16px; }
.depo-author strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--text-l); margin-bottom: 2px; }
.depo-author span { font-size: 0.75rem; color: var(--muted-l); }
.depo-google-badge { display: flex; align-items: center; gap: 14px; margin-top: 48px; justify-content: center; flex-wrap: wrap; }
.depo-google-badge span { font-size: 0.8rem; color: var(--muted-l); font-weight: 600; }

/* Botão Google — adaptado de uiverse.io/csozidev */
.google-btn {
  padding: 9px 18px;
  font-weight: 700;
  display: flex;
  position: relative;
  overflow: hidden;
  border-radius: 35px;
  align-items: center;
  border: solid var(--text-l) 2px;
  outline: none;
}
.google-btn-svg { height: 20px; margin-right: 9px; z-index: 6; }
.google-btn-text { z-index: 10; font-size: 0.8rem; color: var(--text-l); }
.google-btn:hover .google-btn-text { animation: google-btn-text forwards 0.3s; }
@keyframes google-btn-text {
  from { color: var(--text-l); }
  to   { color: #fff; }
}
.google-btn:hover::before,
.google-btn:hover::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 9%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  opacity: 0;
  border-radius: 300px;
}
.google-btn:hover::before { animation: google-wave1 2.5s ease-in-out forwards; }
.google-btn:hover::after  { animation: google-wave2 2.5s ease-in-out forwards; }
@keyframes google-wave1 {
  0%   { z-index: 1; background: #EB4335; width: 0; height: 0; opacity: 1; }
  1%   { z-index: 1; background: #EB4335; width: 0; height: 0; opacity: 1; }
  25%  { z-index: 1; background: #EB4335; width: 800px; height: 800px; opacity: 1; }
  26%  { z-index: 3; background: #34A853; width: 0; height: 0; opacity: 1; }
  50%  { z-index: 3; background: #34A853; width: 800px; height: 800px; opacity: 1; }
  100% { z-index: 3; background: #34A853; width: 800px; height: 800px; opacity: 1; }
}
@keyframes google-wave2 {
  0%   { z-index: 2; background: #FBBC05; width: 0; height: 0; opacity: 1; }
  11%  { z-index: 2; background: #FBBC05; width: 0; height: 0; opacity: 1; }
  35%  { z-index: 2; background: #FBBC05; width: 800px; height: 800px; opacity: 1; }
  39%  { z-index: 2; background: #FBBC05; width: 800px; height: 800px; opacity: 1; }
  40%  { z-index: 4; background: #4285F4; width: 0; height: 0; opacity: 1; }
  64%  { z-index: 4; background: #4285F4; width: 800px; height: 800px; opacity: 1; }
  100% { z-index: 4; background: #4285F4; width: 800px; height: 800px; opacity: 1; }
}
.google-btn:hover .red    { animation: google-disappear 0.1s forwards; animation-delay: 0.1s; }
.google-btn:hover .yellow { animation: google-disappear 0.1s forwards; animation-delay: 0.3s; }
.google-btn:hover .green  { animation: google-disappear 0.1s forwards; animation-delay: 0.7s; }
.google-btn:hover .blue   { animation: google-disappear 0.1s forwards; animation-delay: 1.1s; }
@keyframes google-disappear {
  from { filter: brightness(1); }
  to   { filter: brightness(100); }
}

/* ============================================================
   DIFERENCIAIS (light-alt)
   ============================================================ */
.diferenciais-section { padding: 96px 0; background: var(--bg-la); color: var(--text-l); }
.diferenciais-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.diferencial-item {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dif-num { font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; color: var(--green-d); }
.diferencial-item h3 { font-size: 0.95rem; font-weight: 800; color: var(--text-l); line-height: 1.35; }
.diferencial-item p { font-size: 0.83rem; color: var(--muted-l); line-height: 1.75; }

/* ============================================================
   DORES — Identificação (light, split layout)
   ============================================================ */
.dores-section { padding: 96px 0; background: var(--bg-l); color: var(--text-l); }

.dores-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.dores-intro .eyebrow-l { display: block; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; color: var(--green-d); margin-bottom: 16px; }
.dores-intro .divider-l { width: 40px; height: 3px; background: var(--green-d); border-radius: 2px; margin-bottom: 24px; }
.dores-intro .title-l { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 800; line-height: 1.12; color: var(--text-l); margin-bottom: 20px; letter-spacing: -0.02em; text-wrap: balance; }
.dores-sub { font-size: 0.9rem; color: var(--muted-l); line-height: 1.8; max-width: 340px; text-wrap: pretty; }

.dor-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border-l);
}

.dor-item {
  padding: 22px 0;
  border-bottom: 1px solid var(--border-l);
}

.dor-item p {
  font-size: 0.97rem;
  color: var(--text-l);
  line-height: 1.65;
  font-weight: 500;
  font-style: italic;
}

/* ============================================================
   ANTES / DEPOIS — Transformação (light)
   ============================================================ */
.antes-depois-section { padding: 96px 0; background: var(--bg-l); color: var(--text-l); }
.antes-depois-section .section-header-l { margin-bottom: 64px; }

.ad-table { width: 100%; }

.ad-cols-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border-l);
}

.ad-col-title {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.ad-col-title.sem { color: rgba(12,11,23,0.3); }
.ad-col-title.com { color: var(--green-d); padding-left: 40px; }

.ad-rows { display: flex; flex-direction: column; }

.ad-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border-l);
}

.ad-cell {
  padding: 22px 0;
  font-size: 0.9rem;
  line-height: 1.65;
}

.ad-cell.sem {
  color: rgba(12,11,23,0.32);
  padding-right: 40px;
}

.ad-cell.com {
  color: var(--text-l);
  font-weight: 600;
  padding-left: 40px;
  border-left: 1px solid var(--border-l);
}

/* ============================================================
   FAQ (light)
   ============================================================ */
.faq-section { padding: 96px 0; background: var(--bg-l); color: var(--text-l); }
.faq-list { display: flex; flex-direction: column; border-top: 1px solid var(--border-l); }
.faq-item { border-bottom: 1px solid var(--border-l); }
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--text-l);
  transition: color var(--t);
}
.faq-trigger:hover { color: var(--green-d); }
.faq-trigger:focus-visible { outline: 2px solid var(--green-d); outline-offset: 2px; border-radius: 4px; }
.faq-trigger span { font-size: 0.95rem; font-weight: 700; line-height: 1.4; flex: 1; color: var(--text-l); }
.faq-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  border: 1.5px solid var(--border-l);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--green-d);
  transition: transform var(--t), background var(--t);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(0,143,84,0.08); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-body { max-height: 400px; }
.faq-body p { font-size: 0.88rem; color: var(--muted-l); line-height: 1.8; padding-bottom: 24px; max-width: 720px; }

/* ============================================================
   CONTATO (dark)
   ============================================================ */
.contato-section { padding: 96px 0; background: var(--bg-alt); color: #fff; }
.contato-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }

.form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: var(--r);
  color: #fff;
  font-family: var(--font);
  font-size: 0.88rem;
  padding: 13px 16px;
  transition: border-color var(--t);
  outline: none;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted2); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--green); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.3)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-color: rgba(255,255,255,0.06);
  padding-right: 36px;
  cursor: pointer;
}
.form-group select option { background: #06061e; }
.form .btn { margin-top: 4px; }

.contato-info { display: flex; flex-direction: column; gap: 32px; }
.contato-info h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; line-height: 1.15; margin-bottom: 8px; letter-spacing: -0.02em; }
.contato-info p { font-size: 0.9rem; color: var(--muted); line-height: 1.8; }

.contato-items { display: flex; flex-direction: column; gap: 12px; }
.contato-item { display: flex; align-items: flex-start; gap: 14px; padding: 16px 20px; background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: var(--r); transition: border-color var(--t); }
.contato-item:hover { border-color: rgba(0,235,133,0.2); }
.ci-icon { width: 36px; height: 36px; border-radius: 8px; background: rgba(0,235,133,0.08); display: flex; align-items: center; justify-content: center; color: var(--green); flex-shrink: 0; }
.ci-text strong { display: block; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 2px; }
.ci-text span { font-size: 0.88rem; font-weight: 500; }

.social-row { display: flex; gap: 10px; flex-wrap: wrap; }
.social-pill { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 50%; color: var(--muted); transition: var(--t); }
.social-pill svg { width: 18px; height: 18px; }
.social-pill:hover { border-color: rgba(0,235,133,0.25); color: var(--green); background: rgba(0,235,133,0.06); }

/* ============================================================
   FOOTER
   ============================================================ */
footer { border-top: 1px solid var(--border); padding: 48px 0 32px; background: var(--bg); color: #fff; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand img { height: 30px; margin-bottom: 16px; opacity: 0.75; }
.footer-brand p { font-size: 0.82rem; color: var(--muted); line-height: 1.7; max-width: 240px; }
.footer-col h4 { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.82rem; color: var(--muted); transition: color var(--t); }
.footer-col ul li a:hover { color: var(--green); }
.footer-col address { font-style: normal; font-size: 0.82rem; color: var(--muted); line-height: 1.75; }
.footer-col address a { color: var(--green); font-weight: 600; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-bottom p, .footer-bottom a { font-size: 0.76rem; color: var(--muted2); }
.footer-bottom a:hover { color: var(--green); }

/* ============================================================
   SOBRE — variante light
   ============================================================ */
.sobre-section--light {
  background: var(--bg-la);
  color: var(--text-l);
}
.sobre-section--light .sobre-title { color: var(--text-l); }
.sobre-section--light .sobre-body  { color: var(--muted-l); }
.sobre-section--light .sobre-visual {
  border: 1px solid var(--border-l);
  background: var(--bg-l);
}

/* ============================================================
   PILARES — lista numerada editorial
   ============================================================ */
.pilares-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border-l);
  margin-top: 48px;
}
.pilar-item {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 48px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border-l);
  align-items: start;
}
.pilar-n {
  font-size: clamp(2.4rem, 3.5vw, 3.2rem);
  font-weight: 900;
  color: var(--green-d);
  opacity: 0.18;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
}
.pilar-content h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-l);
  line-height: 1.3;
  margin-bottom: 12px;
}
.pilar-content p {
  font-size: 0.88rem;
  color: var(--muted-l);
  line-height: 1.8;
  max-width: 560px;
}

/* ============================================================
   DEPOIMENTOS — lista editorial com dividers
   ============================================================ */
.depoimentos-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border-l);
  margin-top: 0;
}
.depoimento {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 56px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border-l);
  align-items: center;
}
.depo-quote {
  font-size: 1rem;
  color: var(--text-l);
  line-height: 1.75;
  font-style: italic;
  font-weight: 500;
  text-wrap: pretty;
}
.depo-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.depo-meta .depo-stars { color: #F5A524; font-size: 0.78rem; letter-spacing: 2px; }
.depo-author strong { display: block; font-size: 0.82rem; font-weight: 700; color: var(--text-l); text-align: right; margin-bottom: 2px; }
.depo-author span   { font-size: 0.72rem; color: var(--muted-l); text-align: right; display: block; }

/* ============================================================
   SÓCIOS — placeholder de foto (iniciais)
   ============================================================ */
.socio-foto-ph {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, var(--bg-la) 0%, #e4e1d9 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.socio-foto-ph__circle {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-d) 0%, #00c470 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.socio-foto-ph__label {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted-l);
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 960px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 64px 0;
  }
  .feature-row--rev .feature-content { order: 1; }
  .feature-row--rev .feature-visual { order: 2; }

  .hero-rings { display: none; }
  .hero-text { width: 100%; max-width: 100%; }

  .sobre-grid { grid-template-columns: 1fr; }
  .sobre-visual { display: none; }

  .socios-grid { grid-template-columns: 1fr; }
  .pilares-grid-l { grid-template-columns: 1fr; }
  .depoimentos-grid { grid-template-columns: 1fr; }
  .diferenciais-grid { grid-template-columns: 1fr; }
  .depoimento { grid-template-columns: 1fr; gap: 20px; }
  .depo-meta { align-items: flex-start; }
  .depo-author strong, .depo-author span { text-align: left; }
  .pilar-item { grid-template-columns: 72px 1fr; gap: 28px; }

  .contato-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 700px) {
  .container { padding: 0 20px; }

  .sobre-section,
  .socios-section,
  .pilares-section,
  .impactos-section,
  .depoimentos-section,
  .diferenciais-section,
  .faq-section,
  .contato-section { padding: 64px 0; }

  .hero-title { font-size: 2.6rem; }
  .feature-title { font-size: 2rem; }
  .hero-actions { flex-direction: column; align-items: center; width: 100%; }
  .hero-actions .btn { width: 100%; max-width: 320px; }

  .impacto-row { flex-direction: column; gap: 6px; }
  .impacto-num { min-width: 0; font-size: 2.4rem; }

  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
.pilares-grid-l { grid-template-columns: 1fr; }
  .pilar-item { grid-template-columns: 1fr; gap: 10px; padding: 28px 0; }
  .pilar-n { font-size: 1.8rem; opacity: 0.15; }
  .depoimento { grid-template-columns: 1fr; gap: 16px; padding: 28px 0; }
  .depo-meta { align-items: flex-start; }
  .depo-author strong, .depo-author span { text-align: left; }

  .dores-section,
  .antes-depois-section { padding: 64px 0; }

  .dores-grid { grid-template-columns: 1fr; gap: 40px; }
  .dores-sub { max-width: 100%; }

  .ad-col-title.com { padding-left: 16px; }
  .ad-cell.sem { padding-right: 16px; font-size: 0.82rem; }
  .ad-cell.com { padding-left: 16px; font-size: 0.82rem; }
}

/* ============================================================
   CLIENTES — marquee infinito
   ============================================================ */
.clientes-section {
  padding: 72px 0 80px;
  background: var(--bg-l);
  border-top: 1px solid var(--border-l);
  overflow: hidden;
}

.clientes-header {
  text-align: center;
  margin-bottom: 40px;
}

.clientes-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-l);
}

/* Faixa de scroll */
.marquee-track {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

.marquee-inner {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}

.marquee-track:hover .marquee-inner {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Card de cada logo */
.marquee-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 0 32px;
  border-right: 1px solid var(--border-l);
  height: 64px;
  flex-shrink: 0;
}

.marquee-logo span {
  font-family: var(--font-brand);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted-l);
  white-space: nowrap;
  transition: color var(--t);
}

.marquee-track:hover .marquee-logo span {
  color: var(--text-l);
}

@media (max-width: 640px) {
  .clientes-section { padding: 56px 0 64px; }
  .marquee-logo { min-width: 130px; padding: 0 24px; }
}
