/* ============ TOKENS ============ */
:root {
  --bg: #0E1A12;
  --bg-elev: #142219;
  --bg-elev2: #1A2C20;
  --bg-elev3: #2A3D2E;
  --fg: #F0ECE2;
  --fg-muted: #B8B09A;
  --fg-dim: #6F6A5C;
  --accent: #DBBE7A;
  --accent-soft: #A89055;
  --accent-glow: rgba(219, 190, 122, 0.12);
  --border: rgba(219, 190, 122, 0.18);
  --border-dim: rgba(240, 236, 226, 0.08);
  --border-strong: rgba(219, 190, 122, 0.3);
  --font-display: "Instrument Serif", Georgia, serif;
  --font-sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { background: var(--bg); color: var(--fg); -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body { background: var(--bg); color: var(--fg); font-family: var(--font-sans); line-height: 1.5; font-size: 18px; overflow-x: hidden; position: relative; }
@media (max-width: 767px) { body { font-size: 16px; } }
::selection { background: var(--accent); color: var(--bg); }
a { color: inherit; text-decoration: none; }
em { font-style: italic; }
ul, ol { list-style: none; }
iconify-icon { display: inline-block; line-height: 1; }
h1, h2 { font-family: var(--font-display); font-weight: 400; }


/* Custom scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-soft); }

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; filter: none; }
}

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

.skip-link { position: absolute; top: -40px; left: 0; background: var(--accent); color: var(--bg); padding: 8px; z-index: 100; }
.skip-link:focus { top: 0; }

/* ============ KEYFRAMES ============ */
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(28px) scale(0.99); filter: blur(8px); }
  100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
@keyframes beamSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(40px, -60px); }
  66% { transform: translate(-30px, 30px); }
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ============ REVEAL ============ */
.reveal { opacity: 0; transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo), filter 1s var(--ease-out-expo); transform: translateY(28px); filter: blur(8px); }
.reveal.active { opacity: 1; transform: translateY(0); filter: blur(0); }
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }
.delay-600 { transition-delay: 0.6s; }

/* ============ TEXTURE LAYERS ============ */
.noise {
  position: fixed; inset: 0; pointer-events: none; z-index: 100;
  opacity: 0.04; mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.grid-guide {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  max-width: 1400px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 0;
  opacity: 0.4;
}
.grid-guide span { width: 1px; background: linear-gradient(180deg, transparent, var(--border) 30%, var(--border) 70%, transparent); }

/* ============ TYPE UTILS ============ */
.display { font-family: var(--font-display); letter-spacing: -0.01em; line-height: 1.05; font-weight: 400; }
.mono { font-family: var(--font-mono); }
.eyebrow { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.28em; color: var(--fg-dim); margin-bottom: 16px; }
.eyebrow::before { content: ""; display: block; width: 32px; height: 1px; background: var(--accent); flex-shrink: 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
@media (min-width: 1024px) { .container { padding: 0 40px; } }

/* ============ NAV ============ */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 50; backdrop-filter: blur(16px); background: rgba(14, 26, 18, 0.78); border-bottom: 1px solid rgba(42, 61, 46, 0.6); }
.nav-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; height: 68px; display: flex; align-items: center; justify-content: space-between; }
.nav-brand { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-display); font-size: 22px; transition: color 0.25s var(--ease-out-expo); }
.nav-brand:hover { color: var(--accent); }
.nav-brand .logo-mark { width: 28px; height: 28px; border-radius: 6px; background: var(--accent); color: var(--bg); display: inline-flex; align-items: center; justify-content: center; font-size: 16px; }
.nav-brand .logo-img { height: 32px; width: auto; max-width: 120px; }
.logo-circle { width: 32px; height: 32px; border-radius: 50%; background: #000000; border: 1px solid #2a3d2e; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 18px; font-weight: bold; color: var(--accent); flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; gap: 2px; }
.logo-main { font-family: var(--font-display); font-size: 16px; font-weight: 400; color: var(--fg); line-height: 1; }
.logo-sub { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.15em; color: var(--accent-soft); line-height: 1; }

/* Regra de Ouro 2: Exceção para contextos escuros */
.nav.nav-dark .logo-sub,
.bg-dark-context .logo-sub { color: var(--accent); }

/* Regra de Ouro 1: Peça de marca pura */
.brand-piece-pure {
  background-color: #1a2c20;
  padding: 32px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nav-links { display: none; gap: 32px; font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.22em; color: var(--fg-muted); }
.nav-links a { transition: color 0.25s var(--ease-out-expo); }
.nav-links a:hover { color: var(--accent); }
.nav-links a.active { color: var(--accent); }
@media (min-width: 768px) { .nav-links { display: flex; } }

/* SE Capital — link destacado na nav */
.nav-links .nav-se-capital {
  color: var(--accent-soft); /* #A89055 — dourado profundo */
  border-left: 1px solid var(--border);
  padding-left: 28px;
  margin-left: 4px;
  transition: color 0.25s var(--ease-out-expo), border-color 0.25s var(--ease-out-expo);
}
.nav-links .nav-se-capital:hover {
  color: var(--accent); /* #DBBE7A — brilhante ao hover */
  border-left-color: var(--border-strong);
}
/* Mobile: remove separador lateral, usa topo */
.nav-links.mobile-open .nav-se-capital {
  border-left: none;
  padding-left: 0;
  margin-left: 0;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: 8px;
}

/* Btn-beam-mini e border-wrapper (igual styles-v3) */
.nav .btn-beam-border-wrapper {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  padding: 1px;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  overflow: hidden;
  pointer-events: none;
}
.nav .btn-beam-border-wrapper .btn-beam-border {
  display: block;
  position: absolute;
  inset: -150%;
  background: conic-gradient(from 0deg, transparent 0 320deg, var(--accent) 360deg);
  animation: beamSpin 3.5s linear infinite;
}
.nav .btn-beam-mini { position: relative; overflow: visible; background: transparent; }
.nav .btn-beam-mini .btn-beam-border { display: none; }
.nav .btn-beam-mini .btn-beam-inner { background: transparent; color: var(--fg); }
.btn-beam-inner {
  position: relative;
  z-index: 1;
  background: var(--accent);
  color: #3b2c10;
  border-radius: 999px;
  padding: 0 32px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  transition: background 0.25s, color 0.25s;
}
.btn-beam:hover .btn-beam-inner { background: var(--bg-elev2); color: white; }

.nav-toggle { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: transparent; border: 1px solid var(--border-strong); border-radius: 8px; color: var(--fg); cursor: pointer; transition: all 0.25s var(--ease-out-expo); }
.nav-toggle:hover { border-color: var(--accent); color: var(--accent); }
@media (min-width: 768px) { .nav-toggle { display: none; } }

.nav-links.mobile-open { display: flex; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: rgba(14, 26, 18, 0.95); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); padding: 24px; gap: 16px; }

/* ============ BUTTONS ============ */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 12px; height: 56px; padding: 0 32px; border-radius: 999px; font-size: 15px; font-weight: 500; transition: all 0.3s var(--ease-out-expo); cursor: pointer; white-space: nowrap; border: 0; font-family: inherit; }
.btn-secondary { border: 1px solid var(--border-strong); color: var(--fg); background: transparent; }
.btn-secondary:hover { border-color: var(--accent-soft); color: var(--accent); transform: translateY(-2px); }
.btn .arrow { transition: transform 0.25s var(--ease-out-expo); display: inline-flex; }
.btn:hover .arrow { transform: translateX(4px); }

/* Beam (primary) */
.btn-beam { position: relative; display: inline-flex; padding: 2px; border-radius: 999px; overflow: hidden; cursor: pointer; transform: translateZ(0); transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s; }
.btn-beam:hover { transform: translateY(-3px); box-shadow: 0 16px 40px -12px rgba(219, 190, 122, 0.3); }
.btn-beam-border-wrapper { position: absolute; inset: 0; border-radius: 999px; padding: 1px; -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; overflow: hidden; pointer-events: none; }
.btn-beam-border { position: absolute; inset: -150%; background: conic-gradient(from 0deg, transparent 0 320deg, var(--accent) 360deg); animation: beamSpin 3.5s linear infinite; }
.btn-beam-inner { position: relative; z-index: 1; background: var(--accent); color: #3b2c10; border-radius: 999px; padding: 0 32px; height: 52px; display: inline-flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 600; letter-spacing: -0.005em; transition: background 0.25s, color 0.25s; }
.btn-beam:hover .btn-beam-inner { background: var(--bg-elev2); color: white; }
.btn-beam-mini { padding: 1px; }
.btn-beam-mini .btn-beam-inner { padding: 0 18px; height: 36px; font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; }

/* ============ SECTIONS ============ */
section { padding: 96px 24px; border-top: 1px solid var(--border); position: relative; overflow: hidden; }
@media (min-width: 640px) { section { padding: 120px 24px; } }
@media (min-width: 1024px) { section { padding: 140px 40px; } }
.section-elev { background: linear-gradient(180deg, var(--bg-elev) 0%, rgba(20, 34, 25, 0.6) 100%); }
/* Linha dourada decorativa no topo de seções elevadas */
.section-elev::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--accent), transparent); opacity: 0.4; }

/* ============ HERO ============ */
.hero { padding-top: 160px; padding-bottom: 120px; overflow: hidden; border-top: none; position: relative; }
@media (min-width: 640px) { .hero { padding-top: 200px; padding-bottom: 160px; } }
/* blobs */
.hero-bg-blob { position: absolute; border-radius: 999px; filter: blur(120px); pointer-events: none; transition: opacity 1s; }
.hero-blob-a { top: 5%; left: -5%; width: 600px; height: 600px; background: rgba(219, 190, 122, 0.1); animation: float 18s ease-in-out infinite; }
.hero-blob-b { bottom: -10%; right: -5%; width: 560px; height: 560px; background: rgba(168, 144, 85, 0.09); animation: float 22s ease-in-out infinite reverse; }
/* Linha dourada que cobre o topo do hero */
.hero::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent 0%, var(--accent) 30%, var(--accent) 70%, transparent 100%); opacity: 0.25; pointer-events: none; }
.hero-inner { position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; }
.hero-grid { display: grid; gap: 56px; align-items: center; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 80px; } }
.hero h1 { font-size: clamp(40px, 6vw, 76px); margin-top: 28px; font-family: var(--font-display); }
.hero-h2 { margin-top: 16px; max-width: 540px; font-size: clamp(16px, 1.8vw, 20px); color: rgba(240, 236, 226, 0.82); line-height: 1.5; font-weight: 400; text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4); }
.hero-h2 em { color: var(--accent); font-style: italic; }
.hero-cta { margin-top: 28px; display: flex; flex-direction: row; flex-wrap: wrap; gap: 16px; align-items: flex-start; }
@media (max-width: 639px) { .hero-cta { justify-content: center; align-items: center; } }
.hero-meta { margin-top: 56px; font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.22em; color: var(--fg-dim); display: inline-flex; align-items: center; gap: 12px; }
.hero-meta::before { content: ""; width: 6px; height: 6px; border-radius: 999px; background: var(--accent); animation: pulseDot 2.4s ease-in-out infinite; }
.hero-photo { position: relative; width: 100%; max-width: 480px; margin: 0 auto; aspect-ratio: 3/4; border-radius: 18px; overflow: hidden; border: 1px solid var(--border-strong); box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.9); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform 0.6s var(--ease-out-expo); }
.hero-photo:hover img { transform: scale(1.03); }
.hero-photo .grad { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, transparent 50%, rgba(14, 26, 18, 0.78) 100%); }
.hero-photo figcaption { position: absolute; left: 22px; right: 22px; bottom: 22px; display: flex; align-items: end; justify-content: space-between; gap: 12px; }
.hero-photo figcaption .name { font-family: var(--font-display); font-size: 24px; color: var(--fg); }
.hero-photo figcaption .role { margin-top: 4px; font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--fg-muted); }
.hero-photo .badge { padding: 6px 10px; border-radius: 999px; background: rgba(14, 26, 18, 0.65); backdrop-filter: blur(8px); border: 1px solid var(--border-strong); font-family: var(--font-mono); font-size: 9px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--accent); }

/* ============ CARD LIFT ============ */
.flashlight { position: relative; transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s; }
.flashlight:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -16px rgba(0, 0, 0, 0.5); }

/* ============ HEADINGS BLOCK ============ */
.h2-display { font-family: var(--font-display); font-size: clamp(36px, 5vw, 60px); line-height: 1.05; margin-top: 12px; margin-bottom: 40px; max-width: 720px; color: var(--fg); }
.lead { font-size: 18px; color: var(--fg-muted); line-height: 1.7; max-width: 640px; margin-bottom: 48px; }

/* ============ PROBLEMA ============ */
.problema-grid { display: grid; gap: 48px; }
@media (min-width: 768px) { .problema-grid { grid-template-columns: 1fr 1fr; gap: 80px; } }
.problema-grid p { font-size: 18px; color: var(--fg-muted); line-height: 1.7; }
.quote-attr { margin-top: 56px; font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--fg-dim); display: inline-flex; align-items: center; gap: 12px; }
.quote-attr::before { content: ""; width: 24px; height: 1px; background: var(--accent-soft); }
.h2-mt-block { margin-bottom: 56px; }

/* ============ O QUE É (com marquee watermark) ============ */
.marquee-bg { position: absolute; top: 50%; transform: translateY(-50%); overflow: hidden; width: 100%; left: 0; pointer-events: none; opacity: 0.04; }
.marquee-bg .track { display: inline-block; white-space: nowrap; font-family: var(--font-display); font-size: clamp(160px, 22vw, 320px); animation: marquee 40s linear infinite; color: var(--accent); }
.oque-lead { font-size: clamp(20px, 1.7vw, 26px); color: var(--fg-muted); line-height: 1.55; max-width: 820px; margin-bottom: 32px; }

/* ============ MÉTODO COMPACTO ============ */
.metodo-compact-grid { display: grid; gap: 24px; }
@media (min-width: 768px) { .metodo-compact-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
@media (min-width: 1024px) { .metodo-compact-grid { gap: 32px; } }
.metodo-card { border: 1px solid var(--border); border-radius: 18px; padding: 36px; background: var(--bg); }
.metodo-card .ic { width: 48px; height: 48px; border-radius: 12px; background: var(--bg-elev2); border: 1px solid var(--border-strong); display: inline-flex; align-items: center; justify-content: center; color: var(--accent); font-size: 22px; }
.metodo-card .num { display: block; margin-top: 24px; font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.22em; color: var(--fg-dim); }
.metodo-card h3 { font-family: var(--font-display); font-size: 30px; margin-top: 4px; }
.metodo-card p { margin-top: 18px; color: var(--fg-muted); line-height: 1.7; }

.metodo-pillars-line { margin-top: 32px; padding-top: 32px; border-top: 1px solid var(--border); font-size: 16px; color: var(--fg-muted); line-height: 1.7; }
.metodo-phases-line { margin-top: 16px; font-size: 16px; color: var(--fg-muted); line-height: 1.7; }
.metodo-link { margin-top: 24px; display: inline-flex; align-items: center; gap: 8px; color: var(--accent); font-size: 15px; transition: gap 0.25s var(--ease-out-expo); }
.metodo-link:hover { gap: 12px; }

/* ============ CARDS: RESULTADOS / CASES ============ */
.resultados-grid { display: grid; gap: 24px; }
@media (min-width: 768px) { .resultados-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .resultados-grid { grid-template-columns: repeat(3, 1fr); } }
.case-card {
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  background: linear-gradient(145deg, var(--bg-elev) 0%, var(--bg) 100%);
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}
.case-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(circle at 0% 0%, rgba(219, 190, 122, 0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}
.case-card:hover { background: var(--bg-elev); border-color: var(--accent-soft); transform: translateY(-6px); box-shadow: 0 32px 64px -24px rgba(0,0,0,0.6); }
.case-card:hover::before { opacity: 1; }
.case-card .setor { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.22em; color: var(--accent-soft); }
.case-card .fase { margin-top: 4px; font-size: 14px; color: var(--accent); font-weight: 500; }
.case-card .metrica { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--border-dim); }
.case-card .metrica:first-of-type { border-top: none; padding-top: 0; }
.case-card .metrica-label { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--fg-dim); }
.case-card .metrica-valor { margin-top: 6px; font-size: 16px; color: var(--fg); line-height: 1.5; }
.resultados-disclaimer { margin-top: 48px; padding: 28px 32px; background: linear-gradient(135deg, var(--bg-elev) 0%, rgba(20,34,25,0.5) 100%); border: 1px solid var(--border); border-radius: 14px; font-size: 14px; color: var(--fg-muted); line-height: 1.7; }

/* ============ CADEIRA NA PRÁTICA ============ */
.cadeira-grid { display: grid; gap: 20px; }
@media (min-width: 768px) { .cadeira-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cadeira-grid { grid-template-columns: repeat(3, 1fr); } }
.cadeira-item {
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  background: linear-gradient(145deg, var(--bg-elev) 0%, var(--bg) 100%);
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}
.cadeira-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-soft), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.cadeira-item:hover { border-color: var(--border-strong); transform: translateY(-4px); box-shadow: 0 24px 48px -16px rgba(0,0,0,0.5); }
.cadeira-item:hover::after { opacity: 1; }
.cadeira-item .label { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.22em; color: var(--accent-soft); margin-bottom: 16px; }
.cadeira-item .valor { font-size: 16px; color: var(--fg-muted); line-height: 1.7; }

/* ============ POR QUE ASSIM ============ */
.posicionamento-content { max-width: 900px; }
.posicionamento-content p { font-size: 18px; color: var(--fg-muted); line-height: 1.8; margin-bottom: 32px; }
.posicionamento-content p:last-child { margin-bottom: 0; }
.posicionamento-content strong { color: var(--fg); font-weight: 600; }

/* ============ DEPOIMENTOS ============ */
.depo-grid { display: grid; gap: 24px; }
@media (min-width: 768px) { .depo-grid { grid-template-columns: repeat(2, 1fr); } }
.depo { border: 1px solid var(--border); border-radius: 18px; padding: 40px; background: var(--bg-elev); }
section.section-elev .depo { background: var(--bg); }
.depo .quote-icon { color: var(--accent); font-size: 28px; opacity: 0.5; margin-bottom: 20px; }
.depo blockquote { font-size: clamp(17px, 1.3vw, 20px); color: var(--fg); line-height: 1.65; }
.depo figcaption { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--border); display: flex; align-items: center; gap: 16px; }
.depo .avatar { width: 48px; height: 48px; border-radius: 999px; background: var(--bg); border: 1px solid var(--border-strong); display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 16px; color: var(--accent); }
section.section-elev .depo .avatar { background: var(--bg-elev); }
.depo .name { font-family: var(--font-display); font-size: 16px; color: var(--fg); }
.depo .role { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--fg-dim); }

/* ============ PORTFÓLIO / PRODUTOS ============ */
.portfolio-grid { display: grid; gap: 24px; }
@media (min-width: 768px) { .portfolio-grid { grid-template-columns: repeat(3, 1fr); } }
.portfolio-card {
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 44px 40px;
  background: linear-gradient(160deg, var(--bg-elev) 0%, var(--bg) 100%);
  transition: all 0.45s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.portfolio-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.portfolio-card:hover { background: var(--bg-elev); border-color: var(--accent-soft); transform: translateY(-8px); box-shadow: 0 40px 80px -24px rgba(0,0,0,0.7); }
.portfolio-card:hover::before { opacity: 0.6; }
.portfolio-card .ic { width: 60px; height: 60px; border-radius: 16px; background: linear-gradient(135deg, var(--bg-elev2) 0%, rgba(42,61,46,0.5) 100%); border: 1px solid var(--border-strong); display: inline-flex; align-items: center; justify-content: center; color: var(--accent); font-size: 28px; transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s; }
.portfolio-card:hover .ic { transform: scale(1.1) rotate(-3deg); box-shadow: 0 8px 24px -8px rgba(219,190,122,0.25); }
.portfolio-card h2 { font-family: var(--font-display); font-size: clamp(22px, 2vw, 28px); color: var(--fg); }
.portfolio-card p { color: var(--fg-muted); line-height: 1.7; flex: 1; }
.portfolio-card a { display: inline-flex; align-items: center; gap: 8px; color: var(--accent); font-size: 15px; transition: gap 0.25s var(--ease-out-expo), opacity 0.25s; }
.portfolio-card a:hover { gap: 14px; }

/* ============ COMO COMEÇA ============ */
.como-comeca-grid { display: grid; gap: 24px; }
@media (min-width: 768px) { .como-comeca-grid { grid-template-columns: repeat(4, 1fr); } }
.comeca-step { display: flex; flex-direction: column; align-items: center; text-align: center; }
.comeca-step .num { font-family: var(--font-display); font-size: 48px; color: var(--accent); margin-bottom: 16px; }
.comeca-step .label { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.22em; color: var(--fg-dim); margin-bottom: 12px; }
.comeca-step h4 { font-family: var(--font-display); font-size: 20px; margin-bottom: 12px; }
.comeca-step p { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }

/* ============ FORMULÁRIO ============ */
.form-container { max-width: 640px; margin: 0 auto; }
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.22em; color: var(--fg-dim); margin-bottom: 8px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-elev);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 15px;
  transition: border-color 0.25s var(--ease-out-expo);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ============ FOOTER ============ */
footer { position: relative; z-index: 2; background: #070d09; border-top: 1px solid var(--border); padding: 80px 24px 40px; color: var(--fg); }
.footer-content { max-width: 1280px; margin: 0 auto; }
.footer-grid { display: grid; gap: 48px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-col h4 { font-family: var(--font-display); font-size: 18px; margin-bottom: 20px; color: white; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14px; color: rgba(255, 255, 255, 0.7); transition: color 0.25s var(--ease-out-expo); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.1); font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; color: rgba(255, 255, 255, 0.4); text-align: center; }

/* ============ TIMELINE PREMIUM ============ */
.timeline { position: relative; }
@media (min-width: 1024px) { .timeline { padding-left: 64px; } }
/* Linha vertical animada */
@media (min-width: 1024px) {
  .timeline::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 1px; background: linear-gradient(180deg, transparent 0%, var(--border-strong) 15%, var(--border-strong) 85%, transparent 100%); }
}
.timeline > li { position: relative; }
.timeline > li + li { margin-top: 64px; }
.timeline .dot { display: none; position: absolute; left: -71px; top: 16px; width: 16px; height: 16px; border-radius: 999px; background: var(--accent); box-shadow: 0 0 0 4px var(--bg), 0 0 0 6px rgba(219, 190, 122, 0.35); transition: box-shadow 0.3s, transform 0.3s; }
@media (min-width: 1024px) { .timeline .dot { display: block; } }
.timeline > li:hover .dot { box-shadow: 0 0 0 4px var(--bg), 0 0 0 8px rgba(219, 190, 122, 0.5); transform: scale(1.2); }
.timeline .ano { font-family: var(--font-display); font-size: clamp(28px, 3vw, 40px); color: var(--accent); line-height: 1; }
.timeline .titulo { margin-top: 8px; font-size: clamp(18px, 1.5vw, 22px); color: var(--fg); font-weight: 400; }
.timeline .desc { margin-top: 10px; max-width: 600px; color: var(--fg-muted); line-height: 1.75; }
.timeline .icon { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--fg-dim); margin-top: 12px; }
.timeline .icon iconify-icon { font-size: 16px; color: var(--accent); }

/* ============ GRID RESPONSIVO ============ */
.grid-2 { display: grid; gap: 48px; }
@media (min-width: 768px) { .grid-2 { grid-template-columns: 1fr 1fr; gap: 80px; } }

/* ============ UTILITIES ============ */
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.text-center { text-align: center; }
.text-muted { color: var(--fg-muted); }
.text-dim { color: var(--fg-dim); }
.text-accent { color: var(--accent); }
