:root {
  --blue: #014bae;
  --blue-light: #0a5fd4;
  --blue-glow: rgba(1, 75, 174, 0.35);
  --white: #ffffff;
  --off-white: #e8edf5;
  --gray: #8a96a8;
  --gray-dark: #3a4150;
  --bg: #060b14;
  --bg-card: #0c1422;
  --bg-card2: #101826;
  --border: rgba(255,255,255,0.07);
  --border-blue: rgba(1,75,174,0.4);
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ─── HEADER ─── */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 5%;
  transition: background 0.3s, box-shadow 0.3s;
}
#header .inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
#header.scrolled {
  background: rgba(6,11,20,0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border);
}
.logo {
  font-family: var(--font-head);
  font-size: 1.5rem; font-weight: 800; letter-spacing: -0.02em;
  display: flex; align-items: center; gap: 2px;
}
.logo .ads { color: var(--blue); }
.logo .celera { color: var(--white); font-style: italic; font-weight: 600; }
.logo .rocket { color: var(--blue); font-size: 1.1rem; margin-left: 2px; }

nav { display: flex; align-items: center; gap: 2rem; }
nav a { font-size: 0.875rem; font-weight: 500; color: var(--gray); transition: color 0.2s; }
nav a:hover { color: var(--white); }
.nav-cta {
  background: var(--blue); color: var(--white) !important;
  padding: 0.5rem 1.25rem; border-radius: 6px;
  font-weight: 600 !important; font-size: 0.875rem !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--blue-light) !important; }

#menuBtn {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
}
#menuBtn span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
#mobileMenu {
  display: none; position: fixed; top: 72px; left: 0; right: 0;
  background: rgba(6,11,20,0.97); backdrop-filter: blur(14px);
  padding: 1.5rem 5% 2rem; border-bottom: 1px solid var(--border); z-index: 99;
}
#mobileMenu.open { display: flex; flex-direction: column; gap: 1.25rem; }
.mobile-link { font-size: 1rem; font-weight: 500; color: var(--gray); padding: 0.4rem 0; }
.mobile-link.cta-m { color: var(--blue); font-weight: 700; }

/* ─── BUTTONS ─── */
.btn-primary {
  background: var(--blue); color: var(--white);
  padding: 0.875rem 1.75rem; border-radius: 8px;
  font-weight: 700; font-size: 0.95rem;
  transition: background 0.2s, transform 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--blue-light); transform: translateY(-2px); }
.btn-ghost {
  background: transparent; color: var(--white);
  padding: 0.875rem 1.75rem; border-radius: 8px;
  border: 1px solid var(--border); font-weight: 500; font-size: 0.95rem;
  transition: border-color 0.2s, transform 0.2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.3); transform: translateY(-2px); }

/* ─── SECTION BASE ─── */
section { padding: 90px 5%; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-tag {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-head); font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800; line-height: 1.15; letter-spacing: -0.025em;
  margin-bottom: 1rem;
}
.section-sub { font-size: 1.05rem; color: var(--gray); max-width: 560px; line-height: 1.7; }

/* reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ─── HERO (HOME) ─── */
.hero {
  min-height: 100vh; padding: 120px 5% 80px;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -200px; left: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(1,75,174,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(1,75,174,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(1,75,174,0.15); border: 1px solid var(--border-blue);
  color: #6fa3ff; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 0.4rem 0.9rem; border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero-badge::before { content: '●'; font-size: 0.5rem; color: #4caf50; }
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}
.hero h1 span { color: var(--blue); }
.hero p { font-size: 1.1rem; color: var(--gray); line-height: 1.7; max-width: 480px; margin-bottom: 2rem; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero panel */
.hero-panel {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 16px; padding: 1.5rem; position: relative;
}
.hero-panel::before {
  content: ''; position: absolute; top: -1px; left: 10%; right: 10%;
  height: 2px; background: linear-gradient(90deg, transparent, var(--blue), transparent);
  border-radius: 2px;
}
.panel-row { display: flex; gap: 0.75rem; margin-bottom: 0.75rem; }
.panel-card {
  flex: 1; background: var(--bg-card2);
  border: 1px solid var(--border); border-radius: 10px; padding: 0.875rem;
}
.panel-label { font-size: 0.7rem; color: var(--gray); font-weight: 500; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.4rem; }
.panel-value { font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; color: var(--white); }
.panel-value.green { color: #4caf50; }
.panel-value.blue { color: #6fa3ff; }
.panel-sub { font-size: 0.75rem; color: #4caf50; margin-top: 2px; }
.panel-bar-row { display: flex; align-items: flex-end; gap: 6px; height: 50px; margin-top: 0.75rem; }
.panel-bar { flex: 1; border-radius: 4px 4px 0 0; background: var(--border); position: relative; }
.panel-bar.active { background: var(--blue); }
.panel-bar-1 { height: 40%; } .panel-bar-2 { height: 60%; } .panel-bar-3 { height: 45%; }
.panel-bar-4 { height: 85%; } .panel-bar-5 { height: 70%; } .panel-bar-6 { height: 95%; } .panel-bar-7 { height: 80%; }
.gmb-row { display: flex; align-items: center; gap: 0.75rem; }
.gmb-icon { width: 36px; height: 36px; background: var(--blue); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.gmb-name { font-weight: 700; font-size: 0.85rem; margin-bottom: 2px; }
.gmb-stars { color: #ffc107; font-size: 0.7rem; letter-spacing: 2px; }
.lead-item { display: flex; align-items: center; gap: 0.6rem; padding: 0.5rem 0; border-bottom: 1px solid var(--border); }
.lead-item:last-child { border-bottom: none; }
.lead-dot { width: 8px; height: 8px; background: #4caf50; border-radius: 50%; flex-shrink: 0; }
.lead-text { font-size: 0.78rem; color: var(--off-white); flex: 1; }
.lead-time { font-size: 0.7rem; color: var(--gray); }

/* ─── LOGOS ─── */
.logos { padding: 48px 5%; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.logos .inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.logos-label { font-size: 0.78rem; color: var(--gray); font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; margin-right: 1rem; }
.logo-item { font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; color: var(--gray-dark); letter-spacing: -0.01em; transition: color 0.2s; }
.logo-item:hover { color: var(--gray); }

/* ─── PROBLEMA ─── */
.problema { background: var(--bg); }
.problema-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1rem; margin-top: 3rem; }
.problema-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 1.75rem;
  transition: border-color 0.3s, transform 0.3s;
}
.problema-card:hover { border-color: var(--border-blue); transform: translateY(-4px); }
.problema-icon { font-size: 1.75rem; margin-bottom: 1rem; }
.problema-card h3 { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; }
.problema-card p { font-size: 0.875rem; color: var(--gray); line-height: 1.65; }

/* ─── SOLUÇÃO ─── */
.solucao { background: linear-gradient(180deg, var(--bg) 0%, #08111f 100%); }
.solucao-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1px; margin-top: 3rem; position: relative; }
.solucao-steps::before {
  content: ''; position: absolute; top: 36px; left: calc(12.5%); right: calc(12.5%);
  height: 1px; background: linear-gradient(90deg, transparent, var(--border-blue), var(--border-blue), transparent);
}
.step { background: var(--bg-card); padding: 2rem 1.5rem; border: 1px solid var(--border); border-radius: 12px; text-align: center; position: relative; }
.step-num {
  width: 48px; height: 48px; background: var(--blue); border-radius: 50%;
  font-family: var(--font-head); font-weight: 800; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem;
  box-shadow: 0 0 20px var(--blue-glow);
}
.step h3 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.step p { font-size: 0.85rem; color: var(--gray); line-height: 1.6; }

/* ─── SERVIÇOS ─── */
.servicos { background: #08111f; }
.servicos-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 1rem; margin-top: 3rem; }
.serv-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 14px; padding: 2rem;
  transition: border-color 0.3s, transform 0.3s;
  position: relative; overflow: hidden;
}
.serv-card:hover { border-color: var(--border-blue); transform: translateY(-4px); }
.serv-card.destaque { border-color: var(--border-blue); grid-row: span 2; }
.serv-card.destaque::before {
  content: 'MAIS VENDIDO';
  position: absolute; top: 1.25rem; right: 1.25rem;
  background: var(--blue); color: #fff; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.08em; padding: 3px 10px; border-radius: 100px;
}
.serv-icon { font-size: 2rem; margin-bottom: 1rem; }
.serv-card h3 { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; margin-bottom: 0.75rem; }
.serv-card p { font-size: 0.875rem; color: var(--gray); line-height: 1.65; margin-bottom: 1.25rem; }
.serv-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.tag {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.04em;
  padding: 3px 10px; border-radius: 100px;
  background: rgba(1,75,174,0.12); border: 1px solid var(--border-blue); color: #6fa3ff;
}
.serv-card .btn-primary { margin-top: 1.5rem; font-size: 0.875rem; padding: 0.7rem 1.25rem; }

/* ─── MÉTODO ─── */
.metodo { background: var(--bg); }
.timeline { margin-top: 3rem; position: relative; padding-left: 2.5rem; }
.timeline::before {
  content: ''; position: absolute; left: 10px; top: 8px; bottom: 8px;
  width: 2px; background: linear-gradient(180deg, var(--blue), transparent);
}
.timeline-item { position: relative; margin-bottom: 2.5rem; }
.timeline-item:last-child { margin-bottom: 0; }
.tl-dot {
  position: absolute; left: -2.5rem; top: 4px;
  width: 22px; height: 22px; background: var(--blue);
  border: 3px solid var(--bg); border-radius: 50%;
  box-shadow: 0 0 12px var(--blue-glow);
}
.tl-step { font-size: 0.72rem; color: var(--blue); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.25rem; }
.tl-title { font-family: var(--font-head); font-size: 1.15rem; font-weight: 700; margin-bottom: 0.4rem; }
.tl-desc { font-size: 0.875rem; color: var(--gray); line-height: 1.65; max-width: 540px; }

/* ─── PARA QUEM ─── */
.para-quem { background: #08111f; }
.pq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
.pq-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; padding: 2rem; }
.pq-card.sim { border-top: 3px solid #4caf50; }
.pq-card.nao { border-top: 3px solid #ef5350; }
.pq-head { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1.5rem; }
.pq-icon { font-size: 1.3rem; }
.pq-head h3 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; }
.pq-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.pq-list li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.875rem; color: var(--off-white); line-height: 1.5; }
.pq-list li::before { font-size: 0.75rem; flex-shrink: 0; margin-top: 2px; }
.pq-card.sim .pq-list li::before { content: '✓'; color: #4caf50; font-weight: 700; }
.pq-card.nao .pq-list li::before { content: '✕'; color: #ef5350; font-weight: 700; }

/* ─── PROVAS ─── */
.provas { background: var(--bg); }
.provas-top { display: grid; grid-template-columns: 220px 1fr; gap: 2rem; align-items: start; margin-top: 3rem; }
.rating-box { background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; padding: 2rem; text-align: center; }
.rating-num { font-family: var(--font-head); font-size: 4rem; font-weight: 800; color: var(--white); line-height: 1; }
.rating-stars { font-size: 1.3rem; color: #ffc107; letter-spacing: 3px; margin: 0.5rem 0; }
.rating-label { font-size: 0.8rem; color: var(--gray); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.review-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 1.5rem; }
.review-stars { color: #ffc107; font-size: 0.8rem; margin-bottom: 0.75rem; }
.review-text { font-size: 0.85rem; color: var(--off-white); line-height: 1.6; margin-bottom: 1rem; font-style: italic; }
.review-author { font-size: 0.78rem; font-weight: 600; color: var(--white); }
.review-role { font-size: 0.72rem; color: var(--gray); }
.cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.5rem; }
.case-card { background: var(--bg-card); border: 1px solid var(--border-blue); border-radius: 12px; padding: 1.5rem; }
.case-client { font-size: 0.72rem; color: var(--blue); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.4rem; }
.case-metric { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--white); margin-bottom: 0.3rem; }
.case-desc { font-size: 0.82rem; color: var(--gray); line-height: 1.5; }

/* ─── BLOG ─── */
.blog { background: #08111f; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 3rem; }
.blog-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  display: block;
}
.blog-card:hover { border-color: var(--border-blue); transform: translateY(-4px); }
.blog-thumb {
  height: 160px; background: linear-gradient(135deg, var(--bg-card2), #0a1830);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; border-bottom: 1px solid var(--border);
}
.blog-body { padding: 1.25rem; }
.blog-cat { font-size: 0.7rem; color: var(--blue); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.5rem; }
.blog-card h3 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; line-height: 1.3; margin-bottom: 0.6rem; }
.blog-card p { font-size: 0.82rem; color: var(--gray); line-height: 1.6; }
.blog-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 1rem; padding-top: 0.75rem; border-top: 1px solid var(--border); }
.blog-date { font-size: 0.72rem; color: var(--gray); }
.blog-read { font-size: 0.72rem; color: var(--blue); font-weight: 600; }

/* ─── CTA FINAL ─── */
.cta-final {
  background: linear-gradient(135deg, #06122a 0%, #030b1c 100%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  text-align: center; position: relative; overflow: hidden;
}
.cta-final::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(1,75,174,0.15) 0%, transparent 65%);
  pointer-events: none;
}
.cta-radar { width: 120px; height: 120px; margin: 0 auto 2rem; position: relative; }
.cta-radar svg { width: 100%; height: 100%; }
.cta-final h2 {
  font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; letter-spacing: -0.02em; margin-bottom: 1rem;
}
.cta-final h2 span { color: var(--blue); }
.cta-final p { font-size: 1.05rem; color: var(--gray); max-width: 500px; margin: 0 auto 2.5rem; }
.cta-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ─── FOOTER ─── */
footer { background: var(--bg); padding: 3rem 5%; border-top: 1px solid var(--border); }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem;
}
.footer-brand p { font-size: 0.875rem; color: var(--gray); margin: 0.75rem 0; line-height: 1.6; max-width: 240px; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1rem; }
.soc-btn {
  width: 36px; height: 36px; border-radius: 8px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: var(--gray); transition: border-color 0.2s, color 0.2s;
}
.soc-btn:hover { border-color: var(--blue); color: var(--white); }
.footer-col h4 { font-family: var(--font-head); font-size: 0.85rem; font-weight: 700; margin-bottom: 1rem; color: var(--white); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a { font-size: 0.85rem; color: var(--gray); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1200px; margin: 2.5rem auto 0; padding-top: 1.5rem; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.78rem; color: var(--gray);
}
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { color: var(--gray); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }

/* ─── WHATSAPP FLOAT ─── */
.wpp-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 200;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wpp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }

/* ─── HERO INTERNO (páginas internas) ─── */
.hero-interno {
  padding: 130px 5% 60px; background: var(--bg);
  position: relative; overflow: hidden;
}
.hero-interno::before {
  content: ''; position: absolute; top: -100px; left: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(1,75,174,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; color: var(--gray); margin-bottom: 1.25rem;
}
.breadcrumb a { color: var(--gray); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: var(--border-blue); }
.hero-interno h1 {
  font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 1rem;
}
.hero-interno h1 span { color: var(--blue); }
.hero-interno p { font-size: 1.1rem; color: var(--gray); max-width: 600px; line-height: 1.7; }

/* ─── SERVIÇOS PAGE ─── */
.servicos-page { background: var(--bg); }
.serv-expanded {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 3rem;
}
.serv-exp-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 16px; padding: 2.5rem;
  transition: border-color 0.3s, transform 0.3s;
  position: relative; overflow: hidden;
}
.serv-exp-card:hover { border-color: var(--border-blue); transform: translateY(-4px); }
.serv-exp-card.full { grid-column: span 2; }
.serv-exp-card.destaque-page { border-color: var(--border-blue); }
.serv-exp-card.destaque-page::after {
  content: 'MAIS VENDIDO';
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: var(--blue); color: #fff; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.08em; padding: 3px 10px; border-radius: 100px;
}
.serv-exp-head { display: flex; align-items: flex-start; gap: 1.25rem; margin-bottom: 1.5rem; }
.serv-exp-icon {
  width: 56px; height: 56px; background: rgba(1,75,174,0.15);
  border: 1px solid var(--border-blue); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; flex-shrink: 0;
}
.serv-exp-head h3 { font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; margin-bottom: 0.3rem; }
.serv-exp-head p { font-size: 0.875rem; color: var(--gray); line-height: 1.6; }
.serv-exp-body p { font-size: 0.9rem; color: var(--off-white); line-height: 1.7; margin-bottom: 1.5rem; }
.serv-entregaveis { margin-bottom: 1.5rem; }
.serv-entregaveis h4 { font-family: var(--font-head); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--blue); margin-bottom: 0.75rem; }
.serv-entregaveis ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.serv-entregaveis li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.875rem; color: var(--off-white); }
.serv-entregaveis li::before { content: '→'; color: var(--blue); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.serv-para-quem {
  background: rgba(1,75,174,0.06); border: 1px solid var(--border-blue);
  border-radius: 10px; padding: 1rem 1.25rem; margin-bottom: 1.5rem;
}
.serv-para-quem span { font-size: 0.72rem; color: var(--blue); font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; display: block; margin-bottom: 0.3rem; }
.serv-para-quem p { font-size: 0.875rem; color: var(--gray); line-height: 1.6; margin: 0; }

/* Fluxo Cérebro */
.cerebro-fluxo {
  display: flex; align-items: center; gap: 0.5rem;
  flex-wrap: wrap; margin: 1.25rem 0;
}
.fluxo-step {
  background: var(--bg-card2); border: 1px solid var(--border);
  border-radius: 8px; padding: 0.4rem 0.75rem;
  font-size: 0.78rem; color: var(--off-white); font-weight: 500;
}
.fluxo-arrow { color: var(--blue); font-size: 0.85rem; }

/* ─── DIAGNÓSTICO PAGE ─── */
.diag-page { background: var(--bg); }
.diag-etapas {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  margin: 3rem 0;
}
.diag-etapa {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 14px; padding: 2rem; text-align: center;
}
.diag-num {
  width: 52px; height: 52px; background: var(--blue); border-radius: 50%;
  font-family: var(--font-head); font-weight: 800; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; box-shadow: 0 0 24px var(--blue-glow);
}
.diag-etapa h3 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.diag-etapa p { font-size: 0.85rem; color: var(--gray); line-height: 1.6; }

.diag-form-wrap {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start;
}
.diag-form-info h3 { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }
.diag-form-info p { font-size: 0.9rem; color: var(--gray); line-height: 1.7; margin-bottom: 1.5rem; }
.diag-promise { display: flex; flex-direction: column; gap: 0.75rem; }
.diag-promise-item { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; color: var(--off-white); }
.diag-promise-item::before { content: '✓'; color: #4caf50; font-weight: 700; flex-shrink: 0; margin-top: 1px; }

.diag-form {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 16px; padding: 2.5rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--off-white); margin-bottom: 0.4rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: var(--bg-card2); border: 1px solid var(--border);
  border-radius: 8px; padding: 0.75rem 1rem;
  font-family: var(--font-body); font-size: 0.9rem; color: var(--white);
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--blue);
}
.form-group select { appearance: none; cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray-dark); }
.form-group select option { background: #0c1422; }
.form-submit { width: 100%; padding: 1rem; font-size: 1rem; font-weight: 700; border: none; cursor: pointer; margin-top: 0.5rem; justify-content: center; }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none !important; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-success { text-align: center; padding: 2rem 0; }
.success-icon {
  width: 64px; height: 64px; background: rgba(76,175,80,0.15);
  border: 2px solid #4caf50; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: #4caf50; margin: 0 auto 1.5rem;
}
.form-success h3 { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; margin-bottom: 0.75rem; }
.form-success p { color: var(--gray); font-size: 0.95rem; margin-bottom: 1.5rem; }
.diag-wpp-alt {
  text-align: center; margin-top: 1.5rem;
  font-size: 0.85rem; color: var(--gray);
}
.diag-wpp-alt a { color: #6fa3ff; font-weight: 600; }

/* ─── BLOG PAGE ─── */
.blog-page { background: #08111f; }
.blog-filter {
  display: flex; gap: 0.5rem; flex-wrap: wrap; margin: 2rem 0 0;
}
.filter-btn {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 100px; padding: 0.4rem 1rem;
  font-size: 0.8rem; font-weight: 600; color: var(--gray);
  cursor: pointer; transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active { background: var(--blue); border-color: var(--blue); color: var(--white); }
.blog-full-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1rem; margin-top: 2.5rem;
}
.blog-card-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  display: block;
}
.blog-card-item:hover { border-color: var(--border-blue); transform: translateY(-4px); }

.newsletter-block {
  background: linear-gradient(135deg, #06122a 0%, #030b1c 100%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 80px 5%; text-align: center;
}
.newsletter-block h2 { font-family: var(--font-head); font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 0.75rem; }
.newsletter-block p { color: var(--gray); font-size: 1rem; margin-bottom: 2rem; }
.newsletter-form { display: flex; gap: 0.75rem; max-width: 480px; margin: 0 auto; }
.newsletter-form input {
  flex: 1; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 8px; padding: 0.875rem 1rem;
  font-family: var(--font-body); font-size: 0.9rem; color: var(--white);
  transition: border-color 0.2s;
}
.newsletter-form input:focus { outline: none; border-color: var(--blue); }
.newsletter-form input::placeholder { color: var(--gray-dark); }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav { display: none; }
  #menuBtn { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-panel { display: none; }
  .servicos-grid { grid-template-columns: 1fr; }
  .serv-card.destaque { grid-row: span 1; }
  .pq-grid { grid-template-columns: 1fr; }
  .provas-top { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .solucao-steps::before { display: none; }
  .serv-expanded { grid-template-columns: 1fr; }
  .serv-exp-card.full { grid-column: span 1; }
  .diag-etapas { grid-template-columns: 1fr; }
  .diag-form-wrap { grid-template-columns: 1fr; gap: 2rem; }
  .blog-full-grid { grid-template-columns: 1fr 1fr; }
  .newsletter-form { flex-direction: column; }
}
@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .blog-full-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cerebro-fluxo { flex-direction: column; align-items: flex-start; }
}
