@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap');

/* =============================================================
   2D Tecnologia — estilos
   ============================================================= */
:root {
  /* Paleta baseada na marca 2D Tecnologia */
  --navy:      #102B66;   /* azul-marinho (o "D") */
  --brand:     #005AAB;   /* azul oficial (o "2" e o traço) */
  --brand-2:   #2b8fe6;   /* azul claro derivado (acentos/hover) */
  --bg:        #0a1226;
  --bg-alt:    #0d1830;
  --surface:   #122043;
  --border:    #24345f;
  --text:      #e8eefc;
  --muted:     #9fb0cf;
  --radius:    16px;
  --maxw:      1120px;
  --shadow:    0 10px 30px rgba(0,0,0,.35);
}

/* ===== Tema claro (toggle no topo) — sobrepõe tokens e superfícies escuras ===== */
:root[data-theme="light"] {
  --bg:        #f3f6fb;
  --bg-alt:    #ffffff;
  --surface:   #ffffff;
  --border:    #dbe4f0;
  --text:      #0f1b2d;
  --muted:     #4d6178;
  --shadow:    0 12px 30px rgba(15,27,45,.10);
}
:root[data-theme="light"] .mainbar,
:root[data-theme="light"] .site-header,
:root[data-theme="light"] .topbar,
:root[data-theme="light"] .side-nav-toggle { background: rgba(255,255,255,.9) !important; }
:root[data-theme="light"] .hero-glow { opacity: .55; }
:root[data-theme="light"] .mainmenu a { color: #4d6178; }
:root[data-theme="light"] .mainmenu a:hover,
:root[data-theme="light"] .mainmenu a.active { color: #0f1b2d; }

/* Botão de tema no topo */
.theme-toggle {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; display: grid; place-items: center;
  border: 1px solid var(--border); border-radius: 11px;
  background: transparent; color: var(--text); cursor: pointer;
  font-size: 1.15rem; line-height: 1; transition: border-color .15s, transform .15s;
}
.theme-toggle:hover { border-color: var(--brand); transform: translateY(-50%) scale(1.07); }
@media (max-width: 880px) { .theme-toggle { right: 64px; } }

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(0,90,171,.45); }
.btn-lg { padding: 15px 28px; font-size: 1.05rem; }
.btn-sm { padding: 9px 16px; font-size: .9rem; }
.btn-ghost { background: transparent; border-color: var(--border); color: var(--text); }
.btn-ghost:hover { background: var(--surface); box-shadow: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11,18,32,.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }

.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.15rem; }
.brand-logo { height: 46px; width: auto; display: block; }
.site-footer .brand-logo { height: 54px; }
/* fallback textual (caso a logo nao carregue) */
.brand-mark {
  display: grid; place-items: center;
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, var(--brand), var(--navy));
  color: #fff; font-weight: 800;
}
.brand-text { letter-spacing: .3px; }

.nav { display: flex; align-items: center; gap: 26px; }
.nav a { color: var(--muted); font-weight: 500; transition: color .15s; }
.nav a:hover { color: var(--text); }
.nav a.btn { color: #fff; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: .2s; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: 90px 0 80px; }
.hero-glow {
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 600px; pointer-events: none;
  background: radial-gradient(circle at center, rgba(47,123,255,.25), transparent 60%);
  filter: blur(20px);
}
.hero-inner { position: relative; text-align: center; max-width: 820px; margin: 0 auto; }
.eyebrow { color: var(--brand-2); font-weight: 600; text-transform: uppercase; letter-spacing: 2px; font-size: .8rem; margin-bottom: 16px; }
.hero h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); line-height: 1.12; font-weight: 800; letter-spacing: -.5px; }
.grad { background: linear-gradient(120deg, var(--brand), var(--brand-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lead { color: var(--muted); font-size: 1.15rem; margin: 22px auto 0; max-width: 640px; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }

/* ---------- Seções ---------- */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-alt); }
.section-title { font-size: clamp(1.6rem, 3.5vw, 2.3rem); font-weight: 800; text-align: center; letter-spacing: -.3px; }
.section-sub { color: var(--muted); text-align: center; margin: 12px auto 0; max-width: 560px; }

/* ---------- Cards ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-top: 46px; }
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--brand); box-shadow: var(--shadow); }
.card-icon { font-size: 2rem; margin-bottom: 14px; }
.card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .95rem; }
.card-link { display: inline-block; margin-top: 16px; color: var(--brand-2); font-weight: 600; font-size: .92rem; }

/* ---------- Sobre ---------- */
.about { display: grid; grid-template-columns: 1.4fr 1fr; gap: 50px; align-items: center; }
.about .section-title { text-align: left; }
.about-text p { color: var(--muted); margin-top: 16px; }
.checklist { list-style: none; margin-top: 22px; display: grid; gap: 10px; }
.checklist li { position: relative; padding-left: 30px; color: var(--text); }
.checklist li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--brand-2); font-weight: 800; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 480px) { .about-stats { grid-template-columns: 1fr; } }
.stat { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; text-align: center; }
.stat strong { display: block; font-size: 2rem; background: linear-gradient(120deg, var(--brand), var(--brand-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat span { color: var(--muted); font-size: .9rem; }

/* ---------- Clientes (lista clicável) ---------- */
.clientes-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 14px; margin-top: 40px; }
.cliente-item {
  display: flex; flex-direction: column; gap: 4px; padding: 18px 20px;
  background: var(--surface); border: 1px solid var(--border); border-radius: 12px;
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.cliente-item:hover { transform: translateY(-3px); border-color: var(--brand); box-shadow: var(--shadow); }
.cliente-logo { height: 70px; display: flex; align-items: center; justify-content: center; background: #fff; border-radius: 10px; padding: 10px 12px; margin-bottom: 14px; }
.cliente-logo img { max-height: 100%; max-width: 100%; object-fit: contain; display: block; }
.cliente-mono { height: 70px; display: flex; align-items: center; justify-content: center; border-radius: 10px; margin-bottom: 14px; font-weight: 800; font-size: 1.5rem; letter-spacing: 1px; color: #fff; background: linear-gradient(135deg, var(--brand), var(--navy)); }
.cliente-nome { font-weight: 700; font-size: 1.02rem; display: flex; align-items: center; gap: 8px; }
.cliente-nome::after { content: "↗"; margin-left: auto; color: var(--brand-2); font-size: .9rem; opacity: .7; }
.cliente-ramo { color: var(--muted); font-size: .85rem; }

/* ---------- Contato ---------- */
.contato-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; margin-top: 42px; }
.contato-card {
  display: flex; flex-direction: column; gap: 4px; align-items: center; text-align: center;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 18px; transition: transform .15s, border-color .15s;
}
.contato-card:hover { transform: translateY(-3px); border-color: var(--brand); }
.contato-card .ci { font-size: 1.8rem; }
.contato-card strong { font-size: 1.05rem; }
.contato-card span { color: var(--muted); font-size: .9rem; }

/* Endereço + Mapa */
.contato-mapa { display: grid; grid-template-columns: 1fr 1.3fr; gap: 24px; margin-top: 40px; text-align: left; align-items: stretch; }
.endereco { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.endereco h3 { font-size: 1.2rem; margin-bottom: 12px; }
.endereco address { font-style: normal; color: var(--muted); line-height: 1.85; margin-bottom: 22px; }
.mapa { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); min-height: 320px; }
.mapa iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }
@media (max-width: 760px) { .contato-mapa { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border); padding: 40px 0; background: var(--bg-alt); }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; }
.footer-inner p { color: var(--muted); font-size: .92rem; }
.copy { font-size: .82rem !important; opacity: .75; }

/* ---------- WhatsApp flutuante ---------- */
.whatsapp-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 60;
  width: 56px; height: 56px; display: grid; place-items: center;
  background: #25d366; border-radius: 50%; font-size: 1.6rem;
  box-shadow: 0 8px 22px rgba(0,0,0,.4); transition: transform .15s;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* ---------- Responsivo ---------- */
@media (max-width: 760px) {
  .nav {
    position: absolute; top: 68px; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--bg-alt); border-bottom: 1px solid var(--border);
    max-height: 0; overflow: hidden; transition: max-height .25s ease;
  }
  .nav.open { max-height: 400px; }
  .nav a { width: 100%; padding: 14px 20px; border-top: 1px solid var(--border); }
  .nav a.btn { margin: 12px 20px; width: auto; }
  .nav-toggle { display: flex; }
  .about { grid-template-columns: 1fr; gap: 34px; }
  .about .section-title { text-align: center; }
}

/* =============================================================
   Nav ativo + Faixa CTA (banner do diagnóstico na home)
   ============================================================= */
.nav a.active { color: var(--text); position: relative; }
.nav a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: var(--brand-2); border-radius: 2px; }

.cta-band { background: linear-gradient(120deg, var(--navy), var(--brand)); }
.cta-band .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 40px 20px; flex-wrap: wrap; }
.cta-band h2 { font-size: clamp(1.3rem, 3vw, 1.9rem); font-weight: 800; }
.cta-band p { color: rgba(255,255,255,.85); margin-top: 6px; max-width: 560px; }
.cta-band .btn { background: #fff; color: var(--navy); }
.cta-band .btn:hover { background: #eaf2ff; box-shadow: 0 8px 22px rgba(0,0,0,.3); }

/* =============================================================
   Página de Diagnóstico de TI
   ============================================================= */
.diag-hero { position: relative; overflow: hidden; text-align: center; padding: 66px 0 10px; }
.diag-hero-glow {
  position: absolute; top: -220px; left: 50%; transform: translateX(-50%);
  width: 820px; height: 560px; pointer-events: none;
  background: radial-gradient(circle at center, rgba(0,90,171,.35), transparent 62%);
  filter: blur(20px);
}
.diag-hero h1 { position: relative; font-size: clamp(1.9rem, 4.5vw, 3rem); font-weight: 800; line-height: 1.12; }
.diag-hero .lead { position: relative; color: var(--muted); font-size: 1.12rem; margin: 20px auto 0; max-width: 680px; }

.diag-layout { display: grid; grid-template-columns: 1fr 340px; gap: 32px; align-items: start; }
.diag-summary { position: sticky; top: 88px; }

/* Área (bloco ITIL) */
.area { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; margin-bottom: 20px; }
.area-head { display: flex; align-items: flex-start; gap: 14px; }
.area-icon { font-size: 1.7rem; line-height: 1; }
.area-title { font-size: 1.18rem; font-weight: 700; }
.area-itil {
  display: inline-block; margin-top: 6px; font-size: .7rem; letter-spacing: .5px;
  text-transform: uppercase; color: var(--brand-2);
  background: rgba(43,143,230,.12); border: 1px solid rgba(43,143,230,.3);
  padding: 3px 9px; border-radius: 999px;
}
.area-count { margin-left: auto; font-size: .85rem; color: var(--muted); white-space: nowrap; }
.area-progress { margin: 16px 0 8px; height: 6px; background: var(--bg); border-radius: 999px; overflow: hidden; }
.area-progress i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--brand), var(--brand-2)); transition: width .35s ease; }

/* Introdução da área (linguagem simples) */
.area-intro { color: var(--muted); font-size: .95rem; line-height: 1.65; margin: 12px 0 2px; }

/* Itens (checklist) */
.check-item { border-radius: 12px; }
.check-main { display: flex; gap: 14px; align-items: flex-start; padding: 12px; border-radius: 12px; cursor: pointer; transition: background .15s; }
.check-main:hover { background: var(--bg); }
.check-main input { position: absolute; opacity: 0; width: 0; height: 0; }
.check-box {
  flex: none; width: 24px; height: 24px; border-radius: 7px; border: 2px solid var(--border);
  display: grid; place-items: center; margin-top: 2px; transition: all .15s;
}
.check-box::after { content: "✓"; color: #fff; font-size: 14px; font-weight: 800; opacity: 0; transform: scale(.4); transition: .15s; }
.check-main input:checked + .check-box { background: var(--brand); border-color: var(--brand); }
.check-main input:checked + .check-box::after { opacity: 1; transform: scale(1); }
.check-main input:focus-visible + .check-box { outline: 2px solid var(--brand-2); outline-offset: 2px; }
.check-text strong { display: block; font-size: .98rem; font-weight: 600; }
.check-text span { color: var(--muted); font-size: .86rem; }
.check-main input:checked ~ .check-text strong { color: var(--brand-2); }

/* Explicação "Por que isso importa?" (expansível) */
.check-why { margin: -2px 0 2px 50px; background: none; border: 0; color: var(--brand-2); font-size: .82rem; font-weight: 600; cursor: pointer; padding: 4px 0; }
.check-why:hover { text-decoration: underline; }
.check-why::before { content: "💡 "; }
.check-detail {
  margin: 2px 12px 12px 50px; padding: 12px 14px; background: var(--bg);
  border-radius: 10px; border-left: 2px solid var(--brand-2);
  color: var(--muted); font-size: .9rem; line-height: 1.65;
}

/* Seção SLA */
.sla-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 40px; }
.sla-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 26px; text-align: center; }
.sla-card--crit { border-color: rgba(43,143,230,.55); box-shadow: inset 0 0 0 1px rgba(43,143,230,.25); }
.sla-tag { display: inline-block; font-size: .78rem; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); font-weight: 600; }
.sla-time { display: block; font-size: clamp(1.9rem, 5vw, 2.7rem); font-weight: 800; margin: 8px 0 14px; background: linear-gradient(120deg, var(--brand), var(--brand-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.sla-card p { color: var(--muted); font-size: .95rem; line-height: 1.65; }
.sla-note { text-align: center; color: var(--muted); font-size: .9rem; margin-top: 24px; }
@media (max-width: 640px) { .sla-cards { grid-template-columns: 1fr; } }

/* Cartão de resumo */
.summary-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; text-align: center; }
.gauge {
  --p: 0; width: 150px; height: 150px; border-radius: 50%; margin: 0 auto 16px;
  background: conic-gradient(var(--brand-2) calc(var(--p) * 1%), var(--bg) 0);
  display: grid; place-items: center; position: relative; transition: background .4s ease;
}
.gauge::before { content: ""; position: absolute; inset: 13px; border-radius: 50%; background: var(--surface); }
.gauge-center { position: relative; }
.gauge-center strong { display: block; font-size: 1.9rem; font-weight: 800; }
.gauge-center span { font-size: .72rem; color: var(--muted); }
.maturity-label { font-size: 1.1rem; font-weight: 700; }
.maturity-desc { color: var(--muted); font-size: .9rem; margin-top: 6px; }
.summary-stats { display: flex; gap: 12px; margin: 18px 0; }
.summary-stats div { flex: 1; background: var(--bg); border-radius: 12px; padding: 12px 8px; }
.summary-stats strong { display: block; font-size: 1.5rem; font-weight: 800; }
.summary-stats span { font-size: .72rem; color: var(--muted); }
.summary-cta { width: 100%; }
.summary-copy { width: 100%; margin-top: 10px; }
.link-reset { display: inline-block; margin-top: 14px; background: none; border: 0; color: var(--muted); text-decoration: underline; cursor: pointer; font-size: .85rem; }
.link-reset:hover { color: var(--text); }

/* Resultado / gaps */
.gaps { display: grid; gap: 18px; margin-top: 36px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.gap-area { background: var(--surface); border: 1px solid var(--border); border-left: 3px solid var(--brand-2); border-radius: 12px; padding: 18px 20px; }
.gap-area h3 { font-size: 1rem; margin-bottom: 10px; }
.gap-area ul { list-style: none; display: grid; gap: 8px; }
.gap-area li { position: relative; padding-left: 22px; color: var(--muted); font-size: .9rem; }
.gap-area li::before { content: "→"; position: absolute; left: 0; color: var(--brand-2); font-weight: 700; }
.gaps-empty { text-align: center; color: var(--muted); grid-column: 1 / -1; padding: 20px; }
.gaps-success { text-align: center; grid-column: 1 / -1; padding: 20px; }
.gaps-success strong { color: var(--brand-2); font-size: 1.1rem; }
.result-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }

/* Toast */
.toast {
  position: fixed; left: 50%; bottom: 90px; transform: translateX(-50%) translateY(20px);
  background: var(--navy); color: #fff; padding: 12px 22px; border-radius: 999px;
  box-shadow: var(--shadow); opacity: 0; pointer-events: none; transition: .25s; z-index: 80; font-size: .9rem;
  border: 1px solid var(--border);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

@media (max-width: 900px) {
  .diag-layout { grid-template-columns: 1fr; }
  .diag-summary { position: static; margin-bottom: 24px; }
}

/* =============================================================
   Seções informativas da home (mesmos componentes da apresentação)
   ============================================================= */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; margin-top: 46px; }
.feature { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.feature h3 { font-size: 1.08rem; margin-bottom: 6px; display: flex; gap: 10px; align-items: baseline; }
.feature h3 .mk { font-size: 1.2rem; }
.feature p { color: var(--muted); font-size: .94rem; }

.pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; margin-top: 46px; }
.pillar { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 24px; }
.pillar .num { font-size: 1.9rem; font-weight: 800; background: linear-gradient(120deg, var(--brand), var(--brand-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.pillar h3 { font-size: 1.12rem; margin: 6px 0 8px; }
.pillar p { color: var(--muted); font-size: .94rem; }

.steps { display: grid; gap: 16px; margin-top: 46px; }
.step { display: flex; gap: 20px; align-items: flex-start; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 24px; }
.step .step-num { flex: none; width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; font-size: 1.4rem; font-weight: 800; color: #fff; background: linear-gradient(135deg, var(--brand), var(--navy)); }
.step h3 { font-size: 1.08rem; margin-bottom: 4px; }
.step p { color: var(--muted); font-size: .94rem; }

.partners { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; margin-top: 44px; }
.partner { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 20px 22px; }
.partner strong { display: block; font-size: 1.02rem; margin-bottom: 4px; }
.partner span { color: var(--muted); font-size: .9rem; }

/* =============================================================
   Menu lateral (side nav) — scrollspy + gaveta no mobile
   ============================================================= */
:root { --rail: 244px; }

.side-nav {
  position: fixed; top: 0; left: 0; bottom: 0; width: var(--rail); z-index: 70;
  display: flex; flex-direction: column;
  background: linear-gradient(180deg, var(--bg-alt), var(--bg));
  border-right: 1px solid var(--border);
  padding: 22px 16px; overflow-y: auto;
}
.side-brand { display: flex; align-items: center; padding: 2px 8px 16px; margin-bottom: 10px; border-bottom: 1px solid var(--border); }
.side-brand img { height: 40px; width: auto; display: block; }
.side-links { display: flex; flex-direction: column; gap: 2px; }
.side-links a {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 14px; border-radius: 10px; color: var(--muted);
  font-weight: 600; font-size: .94rem; transition: background .15s, color .15s, box-shadow .15s;
}
.side-links a .sl-ic { font-size: 1.05rem; width: 22px; text-align: center; flex: none; }
.side-links a:hover { background: var(--surface); color: var(--text); }
.side-links a.active { background: rgba(43,143,230,.14); color: var(--text); box-shadow: inset 3px 0 0 var(--brand-2); }
.side-links a.sl-cta-link { color: var(--brand-2); }
.side-sep { height: 1px; background: var(--border); margin: 12px 6px; border: 0; }
.side-group-label { color: var(--muted); font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; padding: 8px 14px 4px; margin-top: 12px; border-top: 1px solid var(--border); }
.side-cta { margin-top: auto; margin-bottom: 4px; }
.side-cta.btn { width: calc(100% - 4px); margin-left: 2px; }
.side-foot { color: var(--muted); font-size: .74rem; text-align: center; margin-top: 12px; line-height: 1.5; }

.side-nav-toggle { display: none; }
.side-nav-overlay { display: none; }

/* Desktop: reserva espaço para o rail */
@media (min-width: 1100px) {
  body.has-side-nav { padding-left: var(--rail); }
}

/* Tablet / mobile: gaveta recolhível */
@media (max-width: 1099px) {
  .side-nav { transform: translateX(-100%); transition: transform .26s ease; box-shadow: var(--shadow); }
  body.side-open .side-nav { transform: translateX(0); }

  .side-nav-toggle {
    display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 5px;
    position: fixed; top: 14px; left: 14px; z-index: 75;
    width: 46px; height: 46px; border: 1px solid var(--border); border-radius: 12px;
    background: rgba(11,18,32,.9); backdrop-filter: blur(8px); cursor: pointer;
  }
  .side-nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .2s, opacity .2s; }
  body.side-open .side-nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.side-open .side-nav-toggle span:nth-child(2) { opacity: 0; }
  body.side-open .side-nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .side-nav-overlay {
    display: block; position: fixed; inset: 0; z-index: 65;
    background: rgba(3,7,18,.6); opacity: 0; pointer-events: none; transition: opacity .25s;
  }
  body.side-open .side-nav-overlay { opacity: 1; pointer-events: auto; }
}

/* =============================================================
   Polimento visual — badges de ícone e figuras
   ============================================================= */
/* =============================================================
   Barra fixa no topo (home) + gaveta lateral sobreposta
   ============================================================= */
.topbar { position: fixed; top: 0; left: 0; right: 0; height: 60px; z-index: 90; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 0 16px; background: rgba(11,18,32,.9); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); }
.topbar-left { display: flex; align-items: center; gap: 12px; }
.tb-brand img { height: 34px; width: auto; display: block; }
.tb-toggle { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; width: 44px; height: 44px; border: 1px solid var(--border); border-radius: 11px; background: transparent; cursor: pointer; }
.tb-toggle span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .2s, opacity .2s; }
body.side-open .tb-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.side-open .tb-toggle span:nth-child(2) { opacity: 0; }
body.side-open .tb-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

body.has-topbar { padding-top: 60px; }
body.has-topbar.has-side-nav { padding-left: 0; }                 /* a gaveta fica por cima, não empurra */
body.has-topbar section[id] { scroll-margin-top: 74px; }          /* âncoras não somem sob a topbar */
body.has-topbar .side-brand { display: none; }                    /* logo já está na topbar */
body.has-topbar .side-nav { top: 60px; transform: translateX(-100%); transition: transform .26s ease; box-shadow: var(--shadow); z-index: 85; }
body.has-topbar.side-open .side-nav { transform: translateX(0); }
body.has-topbar .side-nav-overlay { display: block; position: fixed; top: 60px; left: 0; right: 0; bottom: 0; z-index: 82; background: rgba(3,7,18,.55); opacity: 0; pointer-events: none; transition: opacity .25s; }
body.has-topbar.side-open .side-nav-overlay { opacity: 1; pointer-events: auto; }
body.has-topbar .side-nav-toggle { display: none; }               /* usa o toggle da topbar */

.card-icon {
  display: inline-grid; place-items: center;
  width: 56px; height: 56px; border-radius: 15px;
  background: linear-gradient(135deg, rgba(0,90,171,.24), rgba(43,143,230,.10));
  border: 1px solid rgba(43,143,230,.28);
  font-size: 1.7rem; margin-bottom: 16px;
}

/* Grade de serviços (compartilhada com a apresentação) */
.serv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; margin-top: 46px; }
.serv { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; transition: transform .18s, border-color .18s, box-shadow .18s; }
.serv:hover { transform: translateY(-4px); border-color: var(--brand); box-shadow: var(--shadow); }
.serv .si { display: inline-grid; place-items: center; width: 54px; height: 54px; border-radius: 14px; background: linear-gradient(135deg, rgba(0,90,171,.24), rgba(43,143,230,.10)); border: 1px solid rgba(43,143,230,.28); font-size: 1.65rem; margin-bottom: 14px; }
.serv h3 { font-size: 1.08rem; margin-bottom: 8px; }
.serv p { color: var(--muted); font-size: .92rem; }
.serv-price { display: inline-block; margin-left: 6px; font-size: .78rem; font-weight: 700; color: var(--brand-2); background: rgba(43,143,230,.12); border: 1px solid rgba(43,143,230,.3); padding: 2px 9px; border-radius: 999px; vertical-align: middle; white-space: nowrap; }

.hero-figure { position: relative; margin: 42px auto 0; width: 100%; max-width: 600px; }
.hero-figure svg { width: 100%; height: auto; display: block; filter: drop-shadow(0 18px 40px rgba(0,0,0,.35)); }

/* Figurinhas flutuantes decorativas (fundo de seções) */
.has-stickers { position: relative; overflow: hidden; }
.has-stickers > .container { position: relative; z-index: 1; }
.sticker { position: absolute; z-index: 0; pointer-events: none; opacity: .4; }
.sticker svg { display: block; width: 100%; height: auto; }
@media (max-width: 760px) { .sticker { display: none; } }
@keyframes dashmove { to { stroke-dashoffset: -24; } }
.fig-dash { stroke-dasharray: 6 6; animation: dashmove 1.4s linear infinite; }
@media (prefers-reduced-motion: reduce) { .fig-dash { animation: none; } }
.fig-float { animation: figfloat 5s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
.fig-float-2 { animation: figfloat 5s ease-in-out infinite; animation-delay: -2.5s; transform-box: fill-box; transform-origin: center; }
@keyframes figfloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@media (prefers-reduced-motion: reduce) { .fig-float, .fig-float-2 { animation: none; } }

/* ===== Revelação ao rolar (scroll reveal) ===== */
.reveal-on .reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.3,1); will-change: opacity, transform; }
.reveal-on .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal-on .reveal { opacity: 1 !important; transform: none !important; transition: none !important; } }
@media print { .reveal-on .reveal { opacity: 1 !important; transform: none !important; } }

/* ===== Brilho animado do hero ===== */
.hero-glow { animation: glowDrift 9s ease-in-out infinite; }
@keyframes glowDrift {
  0%,100% { transform: translateX(-50%) scale(1); opacity: .85; }
  50%     { transform: translateX(-50%) scale(1.14); opacity: 1; }
}
/* Shimmer no texto em gradiente do hero */
.hero h1 .grad, .apres-hero h1 .grad { background-size: 220% auto; animation: gradShift 6.5s ease infinite; }
@keyframes gradShift { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
@media (prefers-reduced-motion: reduce) {
  .hero-glow, .hero h1 .grad, .apres-hero h1 .grad { animation: none; }
}

/* =============================================================
   Menu principal centralizado (barra fixa no topo)
   ============================================================= */
.mainbar { position: fixed; top: 0; left: 0; right: 0; z-index: 90; background: rgba(11,18,32,.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); }
.mainbar-inner { display: flex; align-items: center; justify-content: center; gap: 30px; height: 64px; position: relative; }
.mainbar-brand { display: flex; align-items: center; flex: none; }
.mainbar-brand img { height: 38px; width: auto; display: block; }

/* Logo adapta ao tema: azul (oficial) no claro, branca no escuro */
img.brand-logo--light { display: none; }
:root[data-theme="light"] img.brand-logo--dark { display: none; }
:root[data-theme="light"] img.brand-logo--light { display: block; }
.contato-brand { display: flex; justify-content: center; margin-bottom: 22px; }
.contato-brand img { height: 56px; width: auto; }

/* Logo em heros (troca por tema, centralizada) */
.hero-logo { display: flex; justify-content: center; margin-bottom: 22px; }
.hero-logo img { height: 60px; width: auto; }
/* Logo nas faixas de CTA (fundo escuro sempre -> branca) */
.cta-logo { margin-bottom: 14px; }
.cta-logo img { height: 40px; width: auto; display: block; }
/* Marca d'agua sutil em secoes */
.section--wm { position: relative; overflow: hidden; }
.section--wm > .container { position: relative; z-index: 1; }
.section--wm::after { content: ""; position: absolute; right: -40px; top: 50%; transform: translateY(-50%); width: 360px; height: 360px; pointer-events: none; opacity: .05; background: url(../assets/brand/logo-white.png) no-repeat center / contain; }
:root[data-theme="light"] .section--wm::after { background-image: url(../assets/brand/logo-oficial.png); opacity: .055; }
.mainmenu { display: flex; align-items: center; gap: 26px; }
.mainmenu a { color: var(--muted); font-weight: 600; font-size: .98rem; transition: color .15s; white-space: nowrap; }
.mainmenu a:hover, .mainmenu a.active { color: var(--text); }
.menu-cta { color: var(--brand-2) !important; border: 1px solid rgba(43,143,230,.4); border-radius: 999px; padding: 8px 16px; }
.menu-cta:hover { background: rgba(43,143,230,.12); color: #fff !important; }

body.has-mainbar { padding-top: 64px; }
body.has-mainbar section[id] { scroll-margin-top: 80px; }

.mainbar .nav-toggle { display: none; }
@media (max-width: 880px) {
  .mainbar-inner { justify-content: space-between; }
  .mainmenu {
    position: absolute; top: 64px; left: 0; right: 0;
    flex-direction: column; gap: 0; align-items: stretch;
    background: var(--bg-alt); border-bottom: 1px solid var(--border);
    max-height: 0; overflow: hidden; transition: max-height .25s ease;
  }
  .mainmenu.open { max-height: 460px; }
  .mainmenu a { width: 100%; padding: 15px 20px; border-top: 1px solid var(--border); }
  .menu-cta { border: 0; border-radius: 0; color: var(--brand-2) !important; }
  .mainbar .nav-toggle { display: flex; }
}

/* ---------- Nosso time ---------- */
.team-sectors { display: grid; gap: 18px; margin-top: 44px; }
.team-group { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 26px; }
.team-group-head { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.tg-icon { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; font-size: 1.35rem; flex: none; background: linear-gradient(135deg, rgba(0,90,171,.18), rgba(43,143,230,.10)); border: 1px solid rgba(43,143,230,.28); }
.team-group-head h3 { font-size: 1.15rem; font-weight: 800; }
.team-people { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.person { width: 160px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; background: var(--bg); border: 1px solid var(--border); border-radius: 14px; padding: 18px 14px; transition: transform .15s ease, border-color .15s ease; }
.person--lead { width: 300px; }
.person-role { color: var(--muted); font-size: .78rem; line-height: 1.4; }
.person:hover { transform: translateY(-3px); border-color: var(--brand); }
.avatar { width: 60px; height: 60px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; font-size: 1.15rem; letter-spacing: .5px; color: #fff; background: linear-gradient(135deg, var(--brand), var(--navy)); box-shadow: 0 4px 14px rgba(0,90,171,.35); }
.team-group:nth-child(2) .avatar { background: linear-gradient(135deg, var(--brand-2), var(--brand)); }
.team-group:nth-child(3) .avatar { background: linear-gradient(135deg, var(--navy), var(--brand-2)); }
.team-group:nth-child(4) .avatar { background: linear-gradient(135deg, #1C7293, var(--brand)); }
.person strong { font-size: .95rem; font-weight: 700; line-height: 1.25; }

/* ---------- "Por que contratar" nos cards de serviço ---------- */
.card-why { color: var(--muted); font-size: .85rem; margin-top: 14px; padding-top: 12px; border-top: 1px dashed var(--border); }
.card-why strong { color: var(--brand-2); font-weight: 700; }

/* =============================================================
   Premium polish — visual de agência (home + geral)
   ============================================================= */
h1, h2, h3, .section-title, .hero h1, .cta-band h2,
.stat strong, .cfg-plan-name { font-family: "Space Grotesk", "Inter", system-ui, sans-serif; letter-spacing: -.02em; }

/* Ritmo e títulos */
.section { padding: clamp(72px, 10vh, 112px) 0; }
.section-title { font-size: clamp(1.9rem, 4vw, 2.9rem); letter-spacing: -.6px; }
.section-sub { font-size: 1.05rem; max-width: 620px; }

/* Eyebrow vira "badge" */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 15px 7px 13px; border-radius: 999px;
  border: 1px solid rgba(43,143,230,.32); background: rgba(43,143,230,.10);
  color: var(--brand-2); font-weight: 600; letter-spacing: 1px; font-size: .74rem;
  text-transform: uppercase; margin-bottom: 22px;
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--brand-2); box-shadow: 0 0 12px var(--brand-2); flex: none; }

/* Hero dramático — camadas de fundo */
.hero { padding: clamp(96px, 15vh, 156px) 0 clamp(84px, 12vh, 132px); }
.hero-inner { position: relative; z-index: 2; }
.hero-glow { z-index: 1; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(58% 52% at 16% 14%, rgba(43,143,230,.22), transparent 60%),
    radial-gradient(48% 50% at 86% 18%, rgba(0,90,171,.24), transparent 62%),
    radial-gradient(46% 44% at 52% 108%, rgba(43,143,230,.12), transparent 60%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .6;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(72% 62% at 50% 28%, #000, transparent 76%);
          mask-image: radial-gradient(72% 62% at 50% 28%, #000, transparent 76%);
}
:root[data-theme="light"] .hero::after {
  background-image:
    linear-gradient(rgba(15,27,45,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,27,45,.05) 1px, transparent 1px);
}
.hero h1 { font-size: clamp(2.5rem, 6.4vw, 4.3rem); line-height: 1.05; letter-spacing: -1.2px; }
.hero .lead { font-size: clamp(1.06rem, 2vw, 1.3rem); max-width: 660px; }
.hero-cta { margin-top: 32px; }

/* Barra de confiança no hero */
.hero-trust { display: flex; align-items: center; gap: 10px 20px; justify-content: center; flex-wrap: wrap; margin-top: 30px; color: var(--muted); font-size: .92rem; }
.hero-trust span:not(.sep) { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust b { color: var(--text); font-weight: 700; }
.hero-trust .sep { width: 1px; height: 15px; background: var(--border); }
@media (max-width: 560px) { .hero-trust .sep { display: none; } }

/* Botões premium */
.btn:not(.btn-ghost) { background-image: linear-gradient(120deg, var(--brand), var(--brand-2)); box-shadow: 0 8px 22px -6px rgba(0,90,171,.5); }
.btn:not(.btn-ghost):hover { box-shadow: 0 14px 30px -8px rgba(0,90,171,.6); }
.cta-band .btn { background-image: none; box-shadow: none; }
.cta-band .btn:hover { box-shadow: 0 10px 26px rgba(0,0,0,.28); }

/* Cards / features / pillars — profundidade e hover premium */
.card, .feature, .pillar { position: relative; overflow: hidden; transition: transform .26s cubic-bezier(.2,.7,.3,1), border-color .26s, box-shadow .26s; }
.card::after, .feature::after, .pillar::after {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.card:hover::after, .feature:hover::after, .pillar:hover::after { transform: scaleX(1); }
.card:hover, .feature:hover, .pillar:hover {
  transform: translateY(-6px); border-color: rgba(43,143,230,.45);
  box-shadow: 0 22px 46px -20px rgba(0,90,171,.55);
}

/* Mainbar refinada */
.mainbar { box-shadow: 0 1px 0 rgba(255,255,255,.03); }
:root[data-theme="light"] .mainbar { box-shadow: 0 1px 12px rgba(15,27,45,.06); }

/* Apresentação das áreas (servicos.html) */
.areas-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 22px; margin-top: 48px; text-align: left; }
.areas-grid .area { margin-bottom: 0; transition: transform .26s cubic-bezier(.2,.7,.3,1), border-color .26s, box-shadow .26s; }
.areas-grid .area:hover { transform: translateY(-4px); border-color: rgba(43,143,230,.4); box-shadow: 0 20px 44px -20px rgba(0,90,171,.5); }
.area-list { list-style: none; margin-top: 16px; display: grid; gap: 10px; }
.area-list li { position: relative; padding-left: 28px; color: var(--muted); font-size: .92rem; line-height: 1.55; }
.area-list li::before { content: "\2713"; position: absolute; left: 0; top: 2px; width: 18px; height: 18px; border-radius: 50%; background: rgba(43,143,230,.16); color: var(--brand-2); font-size: .64rem; font-weight: 800; display: grid; place-items: center; }
.area-list li strong { color: var(--text); font-weight: 600; }

/* Nosso time — versão compacta (grupos lado a lado, cards menores) */
.team-sectors { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 16px; margin-top: 40px; }
.team-group { padding: 18px 20px; }
.team-group-head { margin-bottom: 14px; }
.tg-icon { width: 38px; height: 38px; font-size: 1.12rem; }
.team-group-head h3 { font-size: 1.05rem; }
.team-people { gap: 10px; }
.person { width: 108px; padding: 12px 10px; gap: 6px; border-radius: 12px; }
.person--lead { width: 100%; }
.avatar { width: 46px; height: 46px; font-size: 1rem; box-shadow: 0 3px 10px rgba(0,90,171,.3); }
.person strong { font-size: .86rem; }
.person-role { font-size: .72rem; }

/* Depoimentos */
.depo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-top: 46px; }
.depo { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 24px; display: flex; flex-direction: column; gap: 14px; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.depo:hover { transform: translateY(-4px); border-color: rgba(43,143,230,.4); box-shadow: 0 20px 44px -20px rgba(0,90,171,.5); }
.depo-stars { color: #f5b301; font-size: 1rem; letter-spacing: 3px; }
.depo blockquote { color: var(--text); font-size: 1rem; line-height: 1.6; font-style: italic; }
.depo figcaption { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.depo-av { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; color: #fff; background: linear-gradient(135deg, var(--brand), var(--navy)); flex: none; }
.depo figcaption strong { display: block; font-size: .95rem; }
.depo figcaption small { color: var(--muted); font-size: .82rem; }

/* Barra de contato fixa no mobile */
.mobile-cta-bar { display: none; }
@media (max-width: 768px) {
  .mobile-cta-bar { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; position: fixed; left: 0; right: 0; bottom: 0; z-index: 80; background: var(--border); box-shadow: 0 -6px 20px rgba(0,0,0,.18); }
  .mobile-cta-bar a { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 10px; font-weight: 700; font-size: .98rem; background: var(--surface); color: var(--text); }
  .mobile-cta-bar .mcb-wa { background: #25d366; color: #fff; }
  .whatsapp-float { display: none; }
  body { padding-bottom: 58px; }
}

/* Rodapé completo */
.footer-cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; text-align: left; }
.footer-col h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 14px; }
.footer-col a, .footer-col p, .footer-col address { display: block; color: var(--muted); font-size: .92rem; margin-bottom: 9px; font-style: normal; line-height: 1.5; }
.footer-col a:hover { color: var(--text); }
.footer-brand-col img { height: 46px; width: auto; margin-bottom: 14px; }
.footer-brand-col p { color: var(--muted); font-size: .92rem; max-width: 300px; }
.footer-social { display: flex; gap: 10px; margin-top: 6px; }
.footer-social a { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; border: 1px solid var(--border); font-size: 1.1rem; margin: 0; }
.footer-social a:hover { border-color: var(--brand); }
.footer-bottom { border-top: 1px solid var(--border); margin-top: 32px; padding-top: 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.footer-bottom p, .footer-bottom a { color: var(--muted); font-size: .84rem; }
.footer-bottom a:hover { color: var(--text); }
@media (max-width: 720px) { .footer-cols { grid-template-columns: 1fr; gap: 26px; } .footer-bottom { justify-content: center; text-align: center; } }

/* Logos de parceiros (grade em cards brancos) */
.parc-logos { display: grid; grid-template-columns: repeat(auto-fit, minmax(158px, 1fr)); gap: 16px; margin-top: 44px; }
.parc-logo { background: #fff; border: 1px solid var(--border); border-radius: 12px; height: 92px; display: grid; place-items: center; padding: 18px 22px; transition: transform .18s ease, box-shadow .18s ease; }
.parc-logo:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.parc-logo img { max-width: 100%; max-height: 44px; display: block; }

/* Suporte de TI — itens inclusos no contrato */
.support-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 16px; margin-top: 40px; }
.support-item { display: flex; gap: 14px; align-items: flex-start; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 20px 22px; transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease; }
.support-item:hover { transform: translateY(-3px); border-color: var(--brand); box-shadow: var(--shadow); }
.support-ic { font-size: 1.7rem; line-height: 1; flex: none; }
.support-item strong { display: block; font-size: 1.04rem; margin-bottom: 4px; }
.support-item span { color: var(--muted); font-size: .92rem; line-height: 1.55; }
.support-note { text-align: center; color: var(--muted); font-size: .9rem; margin-top: 26px; }
