/* style.css — gerado automaticamente
   Edite os arquivos em css/ */


/* ══ root.css ══ */
/* ═══════════════════════════════════════════════════════════
   root.css — variáveis, reset, base tipográfica
   Importado por: style.css (que todos os HTMLs carregam)
═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500&display=swap');

/* ── RESET ─────────────────────────────────────────────── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* ── VARIÁVEIS ─────────────────────────────────────────── */
:root {
  --black:   #080808;
  --dark:    #111111;
  --darker:  #0c0c0c;
  --card:    #161616;
  --border:  #222222;
  --border2: #2e2e2e;
  --muted:   #888888;
  --muted2:  #555555;
}

/* ── BASE ──────────────────────────────────────────────── */
body {
  background: var(--black);
  color: #fff;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.6;
}




/* ══ components.css ══ */
/* ═══════════════════════════════════════════════════════════
   components.css — nav, footer, botões, hero, stats, CTA
   Elementos reutilizados em todas as páginas
═══════════════════════════════════════════════════════════ */

/* ── LOGO ──────────────────────────────────────────────── */
.logo-svg { display: flex; align-items: center; cursor: pointer; text-decoration: none; }
.logo-svg svg { height: 36px; width: auto; }

/* ── NAV ───────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1440px; margin: 0 auto; padding: 0 52px;
  display: flex; align-items: center; justify-content: space-between; height: 62px;
}
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  color: var(--muted); text-decoration: none;
  font-size: 13px; letter-spacing: 0.02em;
  transition: color .18s; font-weight: 400;
}
.nav-links a:hover,
.nav-links a.active { color: #fff; }

/* ── LAYOUT UTILITÁRIOS ────────────────────────────────── */
.container { max-width: 1440px; margin: 0 auto; padding: 0 52px; }
.section-line { width: 34px; height: 1.5px; background: #fff; margin-bottom: 22px; }

/* ── BOTÕES ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 12px 24px; font-size: 13px; font-family: inherit;
  font-weight: 400; letter-spacing: 0.04em; text-decoration: none;
  cursor: pointer; border: none; transition: all .2s;
}
.btn-outline { background: transparent; border: 1px solid rgba(255,255,255,0.7); color: #fff; }
.btn-outline:hover { background: #fff; color: #000; border-color: #fff; }
.btn-filled  { background: #fff; color: #000; border: 1px solid #fff; }
.btn-filled:hover { background: transparent; color: #fff; }
.btn-group { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── PAGE HERO (páginas internas) ──────────────────────── */
.page-hero {
  position: relative; min-height: 50vh;
  display: flex; align-items: flex-end; padding-bottom: 64px;
  overflow: hidden; margin-top: 62px;
}
.hero-bg-img { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.65); }
.hero-text { position: relative; }
.hero-text h1 {
  font-size: clamp(2.8rem, 5vw, 4.5rem); font-weight: 300;
  letter-spacing: -0.01em; margin-bottom: 10px; line-height: 1.05;
}
.hero-text p { color: var(--muted); font-size: 14px; max-width: 500px; line-height: 1.8; }

/* ── STATS BAR ─────────────────────────────────────────── */
.stats-bar { background: var(--dark); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-inner { max-width: 1440px; margin: 0 auto; padding: 60px 52px; display: grid; grid-template-columns: repeat(4,1fr); }
.stat { text-align: center; padding: 0 12px; border-right: 1px solid var(--border); }
.stat:last-child { border-right: none; }
.stat-num { font-size: clamp(2.2rem,3.2vw,3.4rem); font-weight: 200; line-height: 1; margin-bottom: 6px; letter-spacing: -0.02em; }
.stat-label { font-size: 11px; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; }

/* ── CTA BAND ──────────────────────────────────────────── */
.cta-band { background: var(--darker); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cta-wrap {
  max-width: 800px; margin: 0 auto; padding: 88px 52px; text-align: center;
}
.cta-wrap h2 { font-size: clamp(1.9rem,3.5vw,2.9rem); font-weight: 300; margin-bottom: 16px; line-height: 1.1; letter-spacing: -.01em; }
.cta-wrap p  { color: var(--muted); font-size: 14px; margin-bottom: 36px; line-height: 1.8; }

/* ── FOOTER ────────────────────────────────────────────── */
footer { background: var(--darker); border-top: 1px solid var(--border); }
.footer-inner {
  max-width: 1440px; margin: 0 auto; padding: 60px 52px 36px;
  display: grid; grid-template-columns: 1.2fr auto auto; gap: 72px;
}
.footer-brand { display: flex; flex-direction: column; }
.footer-brand .logo-svg { margin-bottom: 14px; }
.footer-brand .logo-svg svg { height: 30px; }
.footer-brand p { color: var(--muted); font-size: 12px; max-width: 270px; line-height: 1.8; margin-top: 10px; }
.footer-col h5 { font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted2); margin-bottom: 16px; font-weight: 400; }
.footer-col a  { display: block; color: var(--muted); font-size: 12px; text-decoration: none; margin-bottom: 9px; transition: color .18s; }
.footer-col a:hover { color: #fff; }
.ci { display: flex; align-items: flex-start; gap: 9px; color: var(--muted); font-size: 12px; margin-bottom: 9px; line-height: 1.5; }
.ci svg { width: 12px; height: 12px; flex-shrink: 0; opacity: .4; margin-top: 2px; }
.footer-bottom {
  max-width: 1440px; margin: 0 auto; padding: 18px 52px;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.footer-bottom p { color: var(--muted2); font-size: 11px; }
.social-links { display: flex; gap: 16px; }
.social-links a { color: var(--muted2); font-size: 11px; text-decoration: none; transition: color .18s; }
.social-links a:hover { color: #fff; }


/* ══ index.css ══ */
/* ═══════════════════════════════════════════════════════════
   index.css — página inicial (home hero, serviços, por que)
═══════════════════════════════════════════════════════════ */

/* ── HOME HERO ─────────────────────────────────────────── */
#home-hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden; padding-top: 62px;
}
.home-hero-bg {
  position: absolute; inset: 0;
  background: url('img/hero-bg.jpg') center/cover;
}
.home-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(0,0,0,.9) 38%, rgba(0,0,0,.3) 100%);
}
.home-hero-content { position: relative; max-width: 1440px; margin: 0 auto; padding: 0 52px; width: 100%; }
.home-hero-content h1 { font-size: clamp(3rem,6.5vw,5.8rem); font-weight: 300; line-height: 1.02; margin-bottom: 22px; letter-spacing: -0.02em; }
.home-hero-content p  { font-size: 14px; color: var(--muted); max-width: 400px; margin-bottom: 44px; line-height: 1.85; }

@keyframes fadeUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
.home-hero-content > * { animation: fadeUp .6s ease forwards; opacity: 0; }
.home-hero-content .section-line { animation-delay: .10s; }
.home-hero-content h1            { animation-delay: .18s; }
.home-hero-content p             { animation-delay: .30s; }
.home-hero-content .btn-group    { animation-delay: .42s; }

/* ── SERVIÇOS (grid do home) ───────────────────────────── */
.svc-grid-home { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--border); }
.svc-card { background: var(--dark); padding: 44px 32px; border-right: 1px solid var(--border); transition: background .2s; }
.svc-card:last-child { border-right: none; }
.svc-card:hover { background: #141414; }
.svc-icon { margin-bottom: 22px; opacity: .55; }
.svc-icon svg { width: 36px; height: 36px; }
.svc-card h3 { font-size: 1.35rem; font-weight: 400; margin-bottom: 10px; letter-spacing: .01em; }
.svc-card p  { font-size: 13px; color: var(--muted); line-height: 1.8; margin-bottom: 22px; }
.svc-link { font-size: 11px; color: var(--muted2); letter-spacing: .1em; text-transform: uppercase; text-decoration: none; display: inline-block; transition: color .2s; }
.svc-link:hover { color: #fff; }
.svc-link::after { content: ' →'; }

/* ── POR QUE ESCOLHER ──────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-text h2 { font-size: clamp(1.9rem,3vw,2.7rem); font-weight: 300; margin-bottom: 18px; line-height: 1.15; letter-spacing: -.01em; }
.why-text p  { color: var(--muted); font-size: 13px; line-height: 1.9; margin-bottom: 32px; }
.why-list { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.why-list li { font-size: 13px; color: var(--muted); padding-left: 18px; position: relative; }
.why-list li::before { content: ''; position: absolute; left: 0; top: 8px; width: 5px; height: 5px; border: 1px solid #444; border-radius: 50%; }
.why-img { overflow: hidden; border: 1px solid var(--border); aspect-ratio: 4/3; }
.why-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: opacity .3s; }
.why-img:hover img { opacity: .9; }


/* ══ sobre.css ══ */
/* ═══════════════════════════════════════════════════════════
   sobre.css — história, missão/visão, valores, equipe
═══════════════════════════════════════════════════════════ */

/* ── HISTÓRIA ──────────────────────────────────────────── */
.hist-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.hist-img { border: 1px solid var(--border); overflow: hidden; aspect-ratio: 4/3; }
.hist-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.hist-text h2 { font-size: 2.1rem; font-weight: 300; margin-bottom: 18px; letter-spacing: -.01em; }
.hist-text p  { color: var(--muted); font-size: 13px; line-height: 1.9; margin-bottom: 14px; }

/* ── MISSÃO & VISÃO ────────────────────────────────────── */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); }
.mv-card { background: var(--dark); padding: 50px 44px; }
.mv-icon { opacity: .4; margin-bottom: 18px; }
.mv-icon svg { width: 30px; height: 30px; }
.mv-card h3 { font-size: 1.5rem; font-weight: 300; margin-bottom: 14px; letter-spacing: -.01em; }
.mv-card p  { color: var(--muted); font-size: 13px; line-height: 1.9; }

/* ── VALORES ───────────────────────────────────────────── */
.valores-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--border); }
.valor-card { background: var(--dark); padding: 30px 22px; }
.valor-icon { opacity: .4; margin-bottom: 14px; }
.valor-icon svg { width: 26px; height: 26px; }
.valor-card h4 { font-size: 1.05rem; font-weight: 400; margin-bottom: 7px; }
.valor-card p  { color: var(--muted); font-size: 12px; line-height: 1.8; }

/* ── EQUIPE ────────────────────────────────────────────── */
.equipe-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 44px; margin-top: 44px; }
.equipe-member { text-align: center; }
.equipe-avatar { width: 80px; height: 80px; border-radius: 50%; background: var(--card); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.equipe-avatar svg { width: 34px; height: 34px; opacity: .3; }
.equipe-member h4 { font-size: 13px; font-weight: 400; margin-bottom: 3px; }
.equipe-member p  { font-size: 11px; color: var(--muted); letter-spacing: .07em; text-transform: uppercase; }


/* ══ servicos.css ══ */
/* ═══════════════════════════════════════════════════════════
   servicos.css — grid de serviços e processo
═══════════════════════════════════════════════════════════ */

/* ── GRID DE SERVIÇOS ──────────────────────────────────── */
.svc-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); }
.svc-detail-card { background: var(--dark); padding: 44px 36px; }
.svc-detail-card .svc-icon { opacity: .5; }
.svc-detail-card h3 { font-size: 1.4rem; font-weight: 400; margin-bottom: 10px; }
.svc-detail-card > p { font-size: 13px; color: var(--muted); line-height: 1.8; margin-bottom: 18px; }
.svc-bullets { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.svc-bullets li { font-size: 12px; color: var(--muted); padding-left: 13px; position: relative; }
.svc-bullets li::before { content: '•'; position: absolute; left: 0; color: var(--muted2); }

/* ── PROCESSO ──────────────────────────────────────────── */
.processo-grid { display: grid; grid-template-columns: repeat(4,1fr); text-align: center; margin-top: 48px; border-top: 1px solid var(--border); }
.processo-step { padding: 40px 20px; border-right: 1px solid var(--border); }
.processo-step:last-child { border-right: none; }
.processo-num { font-size: 3rem; font-weight: 200; color: var(--muted2); line-height: 1; margin-bottom: 14px; letter-spacing: -.02em; }
.processo-step h4 { font-size: 13px; font-weight: 500; margin-bottom: 8px; letter-spacing: .02em; }
.processo-step p  { font-size: 12px; color: var(--muted); line-height: 1.8; }


/* ══ projetos.css ══ */
/* ═══════════════════════════════════════════════════════════
   projetos.css — filtros, grid de cards e stats
═══════════════════════════════════════════════════════════ */

/* ── FILTROS ───────────────────────────────────────────── */
.proj-filter { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 36px; }
.filter-btn {
  padding: 6px 14px; font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  background: transparent; border: 1px solid var(--border2); color: var(--muted);
  cursor: pointer; font-family: inherit; transition: all .18s;
}
.filter-btn.active,
.filter-btn:hover { border-color: #fff; color: #fff; }

/* ── GRID DE CARDS ─────────────────────────────────────── */
.proj-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.proj-card { background: var(--dark); border: 1px solid var(--border); cursor: pointer; transition: border-color .2s; }
.proj-card:hover { border-color: #3a3a3a; }
.proj-thumb-wrap { position: relative; overflow: hidden; aspect-ratio: 16/11; }
.proj-thumb-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; filter: grayscale(10%); transition: transform .4s, filter .3s; }
.proj-card:hover .proj-thumb-wrap img { transform: scale(1.04); filter: grayscale(0%); }
.proj-tag-badge { position: absolute; top: 12px; left: 12px; background: rgba(8,8,8,.88); padding: 4px 10px; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: #fff; border: 1px solid var(--border2); }
.proj-card-body { padding: 22px 22px 26px; }
.proj-card-body h3 { font-size: 1.25rem; font-weight: 400; margin-bottom: 7px; line-height: 1.2; }
.proj-card-body p  { font-size: 12px; color: var(--muted); line-height: 1.75; margin-bottom: 12px; }
.proj-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.proj-meta-item { display: flex; align-items: center; gap: 4px; font-size: 11px; color: var(--muted2); }
.proj-meta-item svg { width: 10px; height: 10px; opacity: .5; }
.proj-det-link { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); transition: color .18s; cursor: pointer; }
.proj-det-link:hover { color: #fff; }
.proj-det-link::after { content: ' →'; }

/* ── ETIQUETA À VENDA ──────────────────────────────────── */
.proj-sale-badge {
  position: absolute; top: 12px; right: 12px;
  background: #1a7a3a;
  border: 1px solid #2ea854;
  padding: 4px 10px;
  font-size: 10px; letter-spacing: .08em; text-transform: uppercase;
  color: #fff;
  display: flex; align-items: center; gap: 5px;
  z-index: 2;
}

/* ── STATS BAR (projetos) ──────────────────────────────── */
.proj-stats-bar { background: var(--dark); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }


/* ══ contato.css ══ */
/* ═══════════════════════════════════════════════════════════
   contato.css — informações de contato e formulário
═══════════════════════════════════════════════════════════ */

/* ── LAYOUT ────────────────────────────────────────────── */
.contato-outer { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contato-info-title { font-size: 1.6rem; font-weight: 400; margin-bottom: 12px; letter-spacing: -.01em; }
.contato-info-sub   { color: var(--muted); font-size: 13px; line-height: 1.8; margin-bottom: 36px; max-width: 360px; }

/* ── DADOS DE CONTATO ──────────────────────────────────── */
.cd { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.cd-icon { width: 38px; height: 38px; border: 1px solid var(--border2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cd-icon svg { width: 15px; height: 15px; opacity: .5; }
.cd-label { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted2); margin-bottom: 3px; font-weight: 500; }
.cd-val   { font-size: 13px; color: #fff; line-height: 1.7; }

/* ── FORMULÁRIO ────────────────────────────────────────── */
.contato-form-box { background: var(--dark); border: 1px solid var(--border); padding: 40px; }
.contato-form-box h2 { font-size: 1.55rem; font-weight: 400; margin-bottom: 28px; letter-spacing: -.01em; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; font-weight: 400; }
.form-group label .req { color: #fff; margin-left: 2px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; background: #0e0e0e; border: 1px solid var(--border2);
  color: #fff; padding: 11px 13px; font-size: 13px; font-family: inherit;
  font-weight: 300; outline: none; transition: border-color .18s;
  appearance: none; -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted2); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: #555; }
.form-group textarea { height: 140px; resize: vertical; }
.form-group select option { background: #111; }


/* ══ projeto-detalhe.css ══ */
/* ═══════════════════════════════════════════════════════════
   projeto-detalhe.css — layout completo da página de detalhe
═══════════════════════════════════════════════════════════ */

/* ── HERO ──────────────────────────────────────────────── */
.proj-detail-hero {
  position: relative;
  height: 58vh;
  overflow: hidden;
  margin-top: 62px;
}
.proj-detail-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(8,8,8,.92) 20%, rgba(0,0,0,.2) 100%);
  z-index: 1;
}
.proj-detail-meta-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 40px 52px;
  z-index: 2;
}
.proj-tag-badge-lg {
  display: inline-block;
  background: rgba(8,8,8,.85);
  padding: 5px 12px;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.25);
  margin-bottom: 12px;
}
.proj-detail-meta-bar h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 10px;
  letter-spacing: -.01em;
}
.proj-detail-meta-bar .proj-meta {
  display: flex;
  align-items: center;
  gap: 18px;
}
.proj-detail-meta-bar .proj-meta-item {
  display: flex; align-items: center; gap: 5px;
  font-size: 12px; color: rgba(255,255,255,.6);
}
.proj-detail-meta-bar .proj-meta-item svg {
  width: 12px; height: 12px; opacity: .5;
}

/* ── CARROSSEL ─────────────────────────────────────────── */
.carousel-wrap {
  position: absolute; inset: 0;
  overflow: hidden;
}
.carousel-track {
  display: flex; height: 100%;
  transition: transform 0.55s cubic-bezier(0.77,0,0.18,1);
}
.carousel-track img {
  flex-shrink: 0; width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 3;
  background: rgba(8,8,8,.55);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 18px;
  backdrop-filter: blur(6px);
  transition: background .2s; font-family: inherit;
}
.carousel-btn:hover { background: rgba(255,255,255,.15); }
.carousel-btn.prev  { left: 18px; }
.carousel-btn.next  { right: 18px; }
.carousel-dots {
  position: absolute; bottom: 120px;
  left: 50%; transform: translateX(-50%);
  display: flex; gap: 7px; z-index: 3;
}
.carousel-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,.35);
  border: none; cursor: pointer;
  transition: background .2s, transform .2s; padding: 0;
}
.carousel-dot.active { background: #fff; transform: scale(1.3); }
.carousel-counter {
  position: absolute; top: 18px; right: 18px;
  font-size: 11px; letter-spacing: .08em;
  color: rgba(255,255,255,.6);
  background: rgba(0,0,0,.5);
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,.12);
  z-index: 3;
}
.proj-detail-hero img.single-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

/* ── CORPO DA PÁGINA ───────────────────────────────────── */
.proj-detail-body {
  max-width: 1440px; margin: 0 auto;
  padding: 68px 52px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: start;
}

/* ── CONTEÚDO PRINCIPAL ────────────────────────────────── */
.proj-detail-main p {
  font-size: 14px; color: var(--muted);
  line-height: 1.9; margin-bottom: 18px;
}
.proj-detail-main h2 {
  font-size: 1.6rem; font-weight: 300;
  margin-bottom: 14px; margin-top: 32px;
  letter-spacing: -.01em;
}
.proj-detail-main ul {
  list-style: none;
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 20px;
}
.proj-detail-main ul li {
  font-size: 13px; color: var(--muted);
  padding-left: 16px; position: relative;
}
.proj-detail-main ul li::before {
  content: '—';
  position: absolute; left: 0;
  color: var(--muted2);
}

/* ── LINK VOLTAR ───────────────────────────────────────── */
.back-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--muted);
  letter-spacing: .04em; margin-bottom: 26px;
  transition: color .18s;
  background: none; border: none;
  font-family: inherit; padding: 0;
  text-decoration: none; cursor: pointer;
}
.back-link:hover { color: #fff; }
.back-link::before { content: '← '; }

/* ── SIDEBAR ───────────────────────────────────────────── */
.proj-detail-sidebar { position: sticky; top: 80px; }
.proj-sidebar-card {
  background: var(--dark);
  border: 1px solid var(--border);
  padding: 26px;
}
.proj-sidebar-card h4 {
  font-size: 10px; letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted2);
  margin-bottom: 18px; font-weight: 400;
}
.proj-sidebar-row {
  display: flex; justify-content: space-between;
  align-items: flex-start;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
}
.proj-sidebar-row:last-child { border-bottom: none; }
.proj-sidebar-label { font-size: 11px; color: var(--muted2); }
.proj-sidebar-val {
  font-size: 12px; color: #fff;
  text-align: right; max-width: 180px;
}


/* ══ ebooks.css ══ */
/* ── EBOOKS PAGE ─────────────────────────────────────────── */

.eb-hero {
  min-height: 62vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,255,255,0.04) 0%, transparent 70%), var(--black);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.eb-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border2);
  padding: 7px 16px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
  background: rgba(255,255,255,0.03);
}
.eb-hero-badge svg { width: 13px; height: 13px; opacity: 0.5; }
.eb-hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.0;
  margin-bottom: 18px;
}
.eb-hero p {
  color: var(--muted);
  font-size: 14px;
  max-width: 520px;
  line-height: 1.85;
  margin-bottom: 36px;
}
.eb-hero-checks { display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; }
.eb-check { display: flex; align-items: center; gap: 7px; font-size: 12px; color: var(--muted); }
.eb-check svg { width: 14px; height: 14px; opacity: 0.5; }

.eb-section { padding: 80px 0; background: var(--black); }
.eb-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

/* Com 5 cards: os últimos 2 ficam centralizados na 2ª linha */
.eb-grid .eb-card:nth-child(4) { grid-column: 1 / 2; margin-left: auto; margin-right: 0; }
.eb-grid .eb-card:nth-child(5) { grid-column: 2 / 3; margin-left: 0; margin-right: auto; }

.eb-card { border: 1px solid var(--border); background: var(--dark); overflow: hidden; display: flex; flex-direction: column; }

.eb-carousel { position: relative; aspect-ratio: 16/10; overflow: hidden; background: #0a0a0a; flex-shrink: 0; }
.eb-carousel-track { display: flex; height: 100%; transition: transform 0.5s cubic-bezier(0.77,0,0.18,1); }
.eb-carousel-track img { flex-shrink: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.eb-carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(8,8,8,0.65); border: 1px solid rgba(255,255,255,0.15);
  color: #fff; width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 15px; backdrop-filter: blur(4px);
  transition: background 0.18s; z-index: 5; font-family: inherit;
}
.eb-carousel-btn:hover { background: rgba(255,255,255,0.12); }
.eb-carousel-btn.prev { left: 12px; }
.eb-carousel-btn.next { right: 12px; }
.eb-carousel-dots { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); display: flex; gap: 5px; z-index: 5; }
.eb-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.3); border: none; cursor: pointer; padding: 0; transition: background 0.18s, transform 0.18s; }
.eb-dot.active { background: #fff; transform: scale(1.3); }

.eb-card-body { padding: 32px 32px 36px; display: flex; flex-direction: column; flex: 1; }
.eb-card-icon { width: 46px; height: 46px; background: rgba(255,255,255,0.06); border: 1px solid var(--border2); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.eb-card-icon svg { width: 20px; height: 20px; opacity: 0.6; }
.eb-card-body h2 { font-size: 1.65rem; font-weight: 400; margin-bottom: 10px; letter-spacing: -0.01em; line-height: 1.2; }
.eb-card-body > p { font-size: 13px; color: var(--muted); line-height: 1.8; margin-bottom: 24px; }
.eb-card-divider { height: 1px; background: var(--border); margin-bottom: 22px; }
.eb-includes-label { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted2); margin-bottom: 14px; font-weight: 400; }
.eb-includes { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; flex: 1; }
.eb-includes li { display: flex; align-items: flex-start; gap: 10px; }
.eb-includes li svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; opacity: 0.5; }
.eb-includes li div strong { display: block; font-size: 13px; font-weight: 500; margin-bottom: 2px; }
.eb-includes li div span { font-size: 11px; color: var(--muted); line-height: 1.6; }
.eb-buy-btn {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 24px; background: #fff; color: #000;
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  border: 1px solid #fff; cursor: pointer; font-family: inherit;
  font-weight: 400; text-decoration: none; transition: all 0.2s; margin-top: auto;
}
.eb-buy-btn:hover { background: transparent; color: #fff; }
.eb-buy-btn svg { width: 14px; height: 14px; }

.eb-custom { margin: 52px auto 80px; max-width: 760px; border: 1px solid var(--border); background: var(--darker); padding: 64px 52px; text-align: center; }
.eb-custom-icon { width: 52px; height: 52px; border: 1px solid var(--border2); display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; }
.eb-custom-icon svg { width: 22px; height: 22px; opacity: 0.45; }
.eb-custom h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 300; margin-bottom: 12px; letter-spacing: -0.01em; }
.eb-custom p { color: var(--muted); font-size: 13px; max-width: 480px; margin: 0 auto 28px; line-height: 1.85; }

.eb-faq-section { background: var(--darker); border-top: 1px solid var(--border); padding: 80px 0; }
.eb-faq-title { font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 300; text-align: center; margin-bottom: 52px; letter-spacing: -0.01em; }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--dark); border: 1px solid var(--border); }
.faq-q { width: 100%; text-align: left; padding: 20px 24px; background: none; border: none; color: #fff; font-size: 14px; font-family: inherit; font-weight: 400; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; transition: color 0.18s; }
.faq-q:hover { color: rgba(255,255,255,0.75); }
.faq-icon { flex-shrink: 0; width: 18px; height: 18px; border: 1px solid var(--border2); display: flex; align-items: center; justify-content: center; font-size: 14px; line-height: 1; transition: transform 0.25s, background 0.18s; color: var(--muted); }
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(255,255,255,0.06); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a p { padding: 0 24px 20px; font-size: 13px; color: var(--muted); line-height: 1.85; }

@media(max-width: 860px) {
  .eb-grid { grid-template-columns: 1fr 1fr; }
  .eb-card:last-child:nth-child(3n - 1),
  .eb-card:last-child:nth-child(3n - 2) { grid-column: auto; }
  .eb-custom { padding: 40px 24px; }
}


/* ══ responsive.css ══ */
/* ═══════════════════════════════════════════════════════════
   responsive.css — media queries globais
   Deve ser o último CSS carregado
═══════════════════════════════════════════════════════════ */

@media (max-width: 960px) {
  /* Padding geral */
  .nav-inner,
  .container,
  .proj-detail-body,
  .proj-detail-meta-bar,
  .home-hero-content,
  .stats-inner,
  .footer-inner,
  .footer-bottom { padding-left: 24px; padding-right: 24px; }

  /* Grids para coluna única */
  .svc-grid-home,
  .svc-detail-grid,
  .why-grid,
  .hist-grid,
  .mv-grid,
  .contato-outer,
  .proj-detail-body,
  .form-row { grid-template-columns: 1fr; }

  /* Grids para 2 colunas */
  .valores-grid,
  .equipe-grid,
  .proj-grid { grid-template-columns: 1fr 1fr; }
  .processo-grid { grid-template-columns: 1fr 1fr; }

  /* Stats */
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .stat { border-right: none; border-bottom: 1px solid var(--border); padding: 18px 0; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* Sidebar projeto-detalhe */
  .proj-detail-sidebar { position: static; }

  /* Formulário */
  .contato-form-box { padding: 24px; }
}

@media (max-width: 560px) {
  .proj-grid,
  .valores-grid,
  .equipe-grid { grid-template-columns: 1fr; }
  .processo-grid { grid-template-columns: 1fr; }
}