:root {
    --bg: #11192A;
    --bg-2: #182338;
    --bg-3: #1F2D45;
    --line: #2A3852;
    --line-2: #364866;
    --text: #EEF3F9;
    --text-dim: #9AA7BB;
    --text-mute: #6C7A91;
    --cyan: #31B1DC;
    --cyan-dim: #2491BC;
    --cyan-bright: #5AC8EF;
    --cyan-glow: rgba(49, 177, 220, 0.18);
    --danger: #FF6B6B;
    --warn: #FFB84D;
    --ok: #4ADE80;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  /* ============================================================
     EFEITOS TECH — v9
     Respeitam prefers-reduced-motion para acessibilidade
     ============================================================ */

  /* 1. Entrada do hero: fade-up escalonado */
  .hero-inner > * {
    opacity: 0; transform: translateY(20px);
    animation: ds-fadeup .9s cubic-bezier(.22,.61,.36,1) forwards;
  }
  .hero-inner > *:nth-child(1) { animation-delay: 0.05s; }
  .hero-inner > *:nth-child(2) { animation-delay: 0.20s; }
  .hero-inner > *:nth-child(3) { animation-delay: 0.35s; }
  .hero-inner > *:nth-child(4) { animation-delay: 0.50s; }
  .hero-inner > *:nth-child(5) { animation-delay: 0.65s; }
  @keyframes ds-fadeup {
    to { opacity: 1; transform: translateY(0); }
  }

  /* 2. Pulse glow contínuo na palavra "Cibersegurança" do hero */
  h1.hero-title em {
    animation: ds-pulse-glow 3.5s ease-in-out infinite;
  }
  @keyframes ds-pulse-glow {
    0%, 100% { text-shadow: 0 0 0 transparent; }
    50%      { text-shadow: 0 0 24px rgba(49, 177, 220, 0.45); }
  }

  /* 3. Item ativo da nav com glow ciano */
  nav.top a.active {
    text-shadow: 0 0 8px rgba(49, 177, 220, 0.45);
  }

  /* 4. Botões: trail de glow ao redor no hover */
  .btn-primary, .btn-glpi, .form-submit {
    position: relative; overflow: hidden;
  }
  .btn-primary::before, .btn-glpi::before, .form-submit::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.25) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform .6s ease;
    pointer-events: none;
  }
  .btn-primary:hover::before, .btn-glpi:hover::before, .form-submit:hover::before {
    transform: translateX(100%);
  }

  /* 5. Breathe sutil no glow radial do fundo */
  body { animation: ds-breathe 8s ease-in-out infinite; }
  @keyframes ds-breathe {
    0%, 100% { background-color: var(--bg); }
    50%      { background-color: #131C30; }
  }

  /* 6. Linha técnica da seção pulsa */
  section.cyber::before { animation: ds-pulse-line 2.5s ease-in-out infinite; }
  @keyframes ds-pulse-line {
    0%, 100% { opacity: 1; height: 48px; }
    50%      { opacity: 0.4; height: 60px; }
  }

  /* 7. Accessibility: desabilita tudo se o usuário pedir */
  @media (prefers-reduced-motion: reduce) {
    *, ::before, ::after { animation: none !important; transition: none !important; }
  }

  /* ============================================================ */

  body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-size: 15px;
    overflow-x: hidden;
    background-image:
      radial-gradient(ellipse at top right, rgba(49, 177, 220, 0.10), transparent 55%),
      radial-gradient(ellipse at bottom left, rgba(49, 177, 220, 0.05), transparent 50%),
      url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='56' height='56' viewBox='0 0 56 56'><g fill='none' stroke='%232a3852' stroke-width='0.6' opacity='0.55'><path d='M28 22 V34 M22 28 H34'/><circle cx='28' cy='28' r='0.8' fill='%232a3852' stroke='none'/></g></svg>");
    background-size: 100% 100%, 100% 100%, 56px 56px;
    background-position: 0 0, 0 0, 0 0;
    background-attachment: fixed, fixed, fixed;
  }
  ::selection { background: var(--cyan); color: var(--bg); }
  :hover { transition: all .2s ease; }
  .mono { font-family: 'JetBrains Mono', monospace; }
  .container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

  /* === NAV === */
  nav.top {
    position: sticky; top: 0; z-index: 100;
    backdrop-filter: blur(14px);
    background: rgba(17, 25, 42, 0.88);
    border-bottom: 1px solid var(--line);
  }
  nav.top .wrap {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 32px; max-width: 1240px; margin: 0 auto;
  }
  .logo {
    display: flex; align-items: center; gap: 10px;
    font-weight: 700; font-size: 17px; letter-spacing: -0.01em;
    color: var(--text); text-decoration: none;
  }
  .logo img {
    height: 64px; width: auto; display: block;
  }
  .logo-text { display: flex; align-items: baseline; gap: 2px; }
  .logo-text strong { color: var(--cyan); font-weight: 700; }
  .logo-text span { color: var(--text); font-weight: 500; }
  nav.top ul { display: flex; gap: 18px; list-style: none; }
  nav.top a { color: var(--text-dim); text-decoration: none; font-size: 13px; font-weight: 500; transition: color .2s; white-space: nowrap; }
  nav.top a:hover { color: var(--text); }
  nav.top a.active { color: var(--cyan); }
  .nav-cta {
    padding: 9px 18px; border: 1px solid var(--cyan);
    color: var(--cyan); font-weight: 500; font-size: 13px;
    background: transparent; cursor: pointer; transition: all .2s;
    font-family: inherit; text-decoration: none; display: inline-flex; align-items: center;
  }
  .nav-cta:hover { background: var(--cyan); color: var(--bg); }
  .nav-actions { display: flex; gap: 12px; align-items: center; }
  .nav-ticket {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 9px 14px; color: var(--text-dim); font-size: 13px;
    font-weight: 500; text-decoration: none; border: 1px solid var(--line-2);
    transition: all .2s;
  }
  .nav-ticket:hover { color: var(--cyan); border-color: var(--cyan); }
  .nav-ticket svg { stroke: currentColor; }

  /* Wrapper do menu — neutro no desktop (não altera o layout existente) */
  .nav-collapse { display: contents; }

  /* Botão hambúrguer — oculto no desktop, exibido só no mobile */
  .nav-toggle {
    display: none; flex-direction: column; justify-content: center; gap: 5px;
    width: 42px; height: 42px; padding: 0; cursor: pointer;
    background: transparent; border: 1px solid var(--line-2);
    transition: border-color .2s;
  }
  .nav-toggle:hover { border-color: var(--cyan); }
  .nav-toggle span {
    display: block; width: 20px; height: 2px; margin: 0 auto;
    background: var(--text); transition: transform .25s, opacity .25s;
  }
  nav.top.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  nav.top.open .nav-toggle span:nth-child(2) { opacity: 0; }
  nav.top.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* === HERO === */
  section.hero { padding: 120px 0 140px; position: relative; text-align: center; }
  .hero-inner { max-width: 880px; margin: 0 auto; }
  .eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--cyan); margin-bottom: 32px;
  }
  .eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--cyan); }
  .eyebrow::after  { content: ''; width: 24px; height: 1px; background: var(--cyan); }
  h1.hero-title {
    font-size: 64px; line-height: 1.05; font-weight: 600;
    letter-spacing: -0.028em; margin-bottom: 28px;
  }
  h1.hero-title em { font-style: normal; color: var(--cyan); position: relative; }
  h1.hero-title em::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
    height: 2px; background: var(--cyan); opacity: 0.4;
  }
  .hero-sub {
    font-size: 19px; color: var(--text-dim); max-width: 640px;
    margin: 0 auto 48px; line-height: 1.6;
  }
  .hero-ctas { display: flex; gap: 16px; margin-bottom: 80px; justify-content: center; }
  .btn-primary {
    padding: 16px 28px; background: var(--cyan); color: var(--bg);
    border: none; font-weight: 600; font-size: 14px; cursor: pointer;
    transition: all .2s; display: inline-flex; align-items: center; gap: 10px;
    font-family: inherit; text-decoration: none;
  }
  .btn-primary:hover { background: var(--cyan-bright); transform: translateY(-1px); box-shadow: 0 8px 24px var(--cyan-glow); }
  .btn-secondary {
    padding: 16px 28px; background: transparent; color: var(--text);
    border: 1px solid var(--line-2); font-weight: 500; font-size: 14px; cursor: pointer;
    transition: all .2s; display: inline-flex; align-items: center; gap: 10px;
    font-family: inherit; text-decoration: none;
  }
  .btn-secondary:hover { border-color: var(--cyan); color: var(--cyan); }
  .hero-stats {
    display: flex; gap: 64px; justify-content: center;
    padding-top: 48px; border-top: 1px solid var(--line);
    max-width: 720px; margin: 0 auto;
  }
  .stat-num { font-family: 'JetBrains Mono', monospace; font-size: 32px; font-weight: 500; color: var(--text); margin-bottom: 6px; }
  .stat-lbl { font-size: 11px; color: var(--text-mute); text-transform: uppercase; letter-spacing: 0.1em; }

  /* === SECTION HEADER === */
  .section-head { margin-bottom: 56px; }
  .section-head h2 {
    font-size: 40px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.15;
    margin-bottom: 16px; max-width: 700px;
  }
  .section-head p { color: var(--text-dim); font-size: 17px; max-width: 620px; }

  /* === PILARES === */
  section.pilares { padding: 100px 0; border-top: 1px solid var(--line); }
  .pilar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); }
  .pilar {
    background-color: var(--bg);
    background-image: linear-gradient(180deg, transparent 30%, rgba(49,177,220,0.55) 50%, transparent 70%);
    background-repeat: no-repeat;
    background-size: 100% 100px;
    background-position: 50% -100px;
    padding: 32px 28px 36px;
    cursor: pointer; position: relative;
    text-decoration: none; color: inherit; display: block;
    transition: background-color .25s, background-position .9s cubic-bezier(.22,.61,.36,1);
  }
  .pilar::before,
  .pilar::after {
    content: ''; position: absolute;
    width: 14px; height: 14px;
    pointer-events: none; opacity: 0; transition: opacity .25s, width .25s, height .25s;
  }
  .pilar::before {
    top: -1px; left: -1px;
    border-top: 1.5px solid var(--cyan);
    border-left: 1.5px solid var(--cyan);
  }
  .pilar::after {
    bottom: -1px; right: -1px;
    border-bottom: 1.5px solid var(--cyan);
    border-right: 1.5px solid var(--cyan);
  }
  .pilar:hover {
    background-color: var(--bg-2);
    background-position: 50% calc(100% + 100px);
  }
  .pilar:hover::before,
  .pilar:hover::after { opacity: 1; width: 20px; height: 20px; }
  .pilar h3 { color: var(--text); }
  .pilar-num {
    font-family: 'JetBrains Mono', monospace; font-size: 11px;
    color: var(--text-mute); letter-spacing: 0.1em; margin-bottom: 28px;
  }
  .pilar h3 { font-size: 19px; font-weight: 600; margin-bottom: 12px; letter-spacing: -0.01em; }
  .pilar p { font-size: 13px; color: var(--text-dim); line-height: 1.55; margin-bottom: 24px; }
  .pilar ul { list-style: none; }
  .pilar li {
    font-size: 12px; color: var(--text-mute); padding: 4px 0;
    font-family: 'JetBrains Mono', monospace;
  }
  .pilar li::before { content: '› '; color: var(--cyan); }
  .pilar-arrow {
    position: absolute; bottom: 24px; right: 24px;
    color: var(--text-mute); transition: all .2s;
  }
  .pilar:hover .pilar-arrow { color: var(--cyan); transform: translateX(4px); }
  .pilar.highlight {
    background: linear-gradient(180deg, rgba(0, 212, 212, 0.04) 0%, transparent 100%);
    border-top: 2px solid var(--cyan);
  }
  .pilar.highlight::before,
  .pilar.highlight::after { opacity: 0.7; }
  .pilar.highlight .pilar-num { color: var(--cyan); }
  .badge-new {
    position: absolute; top: 24px; right: 24px;
    font-family: 'JetBrains Mono', monospace; font-size: 10px;
    color: var(--cyan); border: 1px solid var(--cyan);
    padding: 2px 8px; letter-spacing: 0.1em;
  }

  /* === CYBER SECTION === */
  section.cyber { padding: 120px 0; border-top: 1px solid var(--line); position: relative; }
  section.cyber::before {
    content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 2px; height: 48px; background: var(--cyan);
  }
  /* Decoração "trace" lateral — pequena linha técnica vertical com nó */
  section.cyber::after {
    content: ''; position: absolute; top: 80px; right: 32px;
    width: 1px; height: 60px; background: var(--cyan); opacity: 0.3;
    box-shadow: 0 -8px 0 -3px var(--cyan), 0 8px 0 -3px var(--cyan);
  }
  .cyber-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
    background: var(--line); border: 1px solid var(--line);
  }
  .cyber-card {
    background-color: var(--bg-2);
    background-image: linear-gradient(180deg, transparent 30%, rgba(49,177,220,0.55) 50%, transparent 70%);
    background-repeat: no-repeat;
    background-size: 100% 100px;
    background-position: 50% -100px;
    padding: 28px 24px 32px;
    position: relative; cursor: pointer;
    min-height: 220px; display: flex; flex-direction: column;
    transition: background-color .25s, background-position .9s cubic-bezier(.22,.61,.36,1);
  }
  .cyber-card:hover {
    background-color: var(--bg-3);
    background-position: 50% calc(100% + 100px);
  }
  /* Colchetes HUD nos cantos opostos */
  .cyber-card::before,
  .cyber-card::after {
    content: ''; position: absolute;
    width: 14px; height: 14px;
    pointer-events: none; opacity: 0.55;
    transition: opacity .25s, width .25s, height .25s;
  }
  .cyber-card::before {
    top: -1px; left: -1px;
    border-top: 1.5px solid var(--cyan);
    border-left: 1.5px solid var(--cyan);
  }
  .cyber-card::after {
    bottom: -1px; right: -1px;
    border-bottom: 1.5px solid var(--cyan);
    border-right: 1.5px solid var(--cyan);
  }
  .cyber-card:hover::before,
  .cyber-card:hover::after { opacity: 1; width: 20px; height: 20px; }
  .cyber-card:hover .cyber-id { color: var(--cyan); }
  .cyber-id {
    font-family: 'JetBrains Mono', monospace; font-size: 11px;
    color: var(--text-mute); letter-spacing: 0.1em; margin-bottom: 20px;
    transition: color .2s;
  }
  .cyber-icon {
    width: 36px; height: 36px; margin-bottom: 18px;
    color: var(--cyan); stroke-width: 1.5;
  }
  .cyber-card h4 { font-size: 15px; font-weight: 600; margin-bottom: 10px; line-height: 1.3; }
  .cyber-card p { font-size: 12px; color: var(--text-dim); line-height: 1.55; flex: 1; }
  .cyber-tags {
    margin-top: 16px; display: flex; flex-wrap: wrap; gap: 6px;
  }
  .cyber-tag {
    font-family: 'JetBrains Mono', monospace; font-size: 10px;
    color: var(--text-mute); border: 1px solid var(--line-2);
    padding: 2px 6px;
  }

  /* === COMO TRABALHAMOS === */
  section.process { padding: 100px 0; border-top: 1px solid var(--line); }
  .process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; }
  .process-grid::before {
    content: ''; position: absolute; top: 18px; left: 5%; right: 5%;
    height: 1px; border-top: 1px dashed var(--line-2);
    z-index: 0;
  }
  .step { position: relative; z-index: 1; }
  .step-num {
    width: 36px; height: 36px; background: var(--bg);
    border: 1px solid var(--cyan); color: var(--cyan);
    display: flex; align-items: center; justify-content: center;
    font-family: 'JetBrains Mono', monospace; font-size: 13px; font-weight: 500;
    margin-bottom: 20px;
  }
  .step h5 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
  .step p { font-size: 13px; color: var(--text-dim); }

  /* === FRAMEWORKS === */
  .frameworks {
    border: 1px solid var(--line); padding: 32px 40px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 32px; margin-top: 56px; background: var(--bg-2);
  }
  .frameworks-label {
    font-family: 'JetBrains Mono', monospace; font-size: 11px;
    color: var(--text-mute); letter-spacing: 0.1em; text-transform: uppercase;
    flex-shrink: 0;
  }
  .frameworks-list {
    display: flex; gap: 32px; flex-wrap: wrap; flex: 1;
  }
  .fw-item {
    font-size: 14px; color: var(--text-dim); font-weight: 500;
    font-family: 'JetBrains Mono', monospace;
  }

  /* === ESCRITÓRIOS === */
  .escritorios { margin-top: 32px; }
  .escritorios-label {
    font-family: 'JetBrains Mono', monospace; font-size: 11px;
    color: var(--text-mute); letter-spacing: 0.1em; text-transform: uppercase;
    margin-bottom: 16px;
  }
  .escritorio {
    border: 1px solid var(--line); background: var(--bg-2);
    padding: 20px; margin-bottom: 12px;
    border-left: 2px solid var(--cyan);
  }
  .escritorio:last-child { margin-bottom: 0; }
  .escritorio-head {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 10px; flex-wrap: wrap; gap: 8px;
  }
  .escritorio-cidade {
    font-size: 16px; font-weight: 600; color: var(--text);
    display: flex; align-items: center; gap: 10px;
  }
  .matriz-tag {
    font-family: 'JetBrains Mono', monospace; font-size: 9px;
    color: var(--cyan); border: 1px solid var(--cyan);
    padding: 2px 6px; letter-spacing: 0.1em; font-weight: 500;
  }
  .escritorio-fone {
    font-family: 'JetBrains Mono', monospace; font-size: 13px;
    color: var(--cyan); text-decoration: none;
  }
  .escritorio-fone:hover { color: var(--cyan-bright); }
  .escritorio-end {
    font-size: 13px; color: var(--text-dim); margin: 0;
    line-height: 1.6;
  }

  /* === CONTATO === */
  section.contato { padding: 120px 0; border-top: 1px solid var(--line); position: relative; }
  section.contato::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at center top, var(--cyan-glow) 0%, transparent 50%);
    pointer-events: none;
  }
  .contato-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; position: relative; }
  .contato-aside h2 { font-size: 42px; font-weight: 600; letter-spacing: -0.025em; line-height: 1.1; margin-bottom: 24px; }
  .contato-aside h2 em { font-style: normal; color: var(--cyan); }
  .contato-aside > p { color: var(--text-dim); font-size: 16px; line-height: 1.7; margin-bottom: 40px; }
  .contato-info { border-top: 1px solid var(--line); padding-top: 32px; }
  .info-row {
    display: flex; align-items: flex-start; gap: 16px;
    padding: 16px 0; border-bottom: 1px dashed var(--line);
  }
  .info-row:last-child { border-bottom: none; }
  .info-row svg { width: 18px; height: 18px; color: var(--cyan); flex-shrink: 0; margin-top: 2px; }
  .info-row .k { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--text-mute); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 4px; }
  .info-row .v { color: var(--text); font-size: 14px; }
  .info-row .v a { color: var(--text); text-decoration: none; }
  .info-row .v a:hover { color: var(--cyan); }

  form.contato-form {
    background: var(--bg-2); border: 1px solid var(--line);
    padding: 40px;
  }
  .form-eyebrow {
    font-family: 'JetBrains Mono', monospace; font-size: 11px;
    color: var(--cyan); letter-spacing: 0.1em; text-transform: uppercase;
    margin-bottom: 20px; display: flex; align-items: center; gap: 8px;
  }
  .form-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--cyan); }
  .form-row { margin-bottom: 20px; }
  .form-row.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-row label {
    display: block; font-size: 12px; color: var(--text-dim);
    margin-bottom: 8px; font-weight: 500;
    font-family: 'JetBrains Mono', monospace; letter-spacing: 0.05em; text-transform: uppercase;
  }
  .form-row label .req { color: var(--cyan); }
  .form-row input, .form-row select, .form-row textarea {
    width: 100%; padding: 12px 14px; background: var(--bg);
    border: 1px solid var(--line-2); color: var(--text);
    font-size: 14px; font-family: inherit;
    transition: border-color .2s;
  }
  .form-row input:focus, .form-row select:focus, .form-row textarea:focus {
    outline: none; border-color: var(--cyan);
  }
  .form-row textarea { resize: vertical; min-height: 100px; }
  .form-consent {
    display: flex; gap: 10px; align-items: flex-start;
    font-size: 12px; color: var(--text-dim); margin-bottom: 24px;
  }
  .form-consent input { margin-top: 3px; accent-color: var(--cyan); }
  .form-consent a { color: var(--cyan); }
  .form-submit {
    width: 100%; padding: 16px; background: var(--cyan); color: var(--bg);
    border: none; font-weight: 600; font-size: 14px; cursor: pointer;
    transition: all .2s; font-family: inherit;
  }
  .form-submit:hover:not(:disabled) { background: var(--cyan-bright); }
  .form-submit:disabled { opacity: 0.6; cursor: not-allowed; }
  .form-success {
    display: none; padding: 32px; text-align: center;
    border: 1px solid var(--ok); background: rgba(74, 222, 128, 0.08);
  }
  .form-success.show { display: block; }
  .form-success svg { width: 48px; height: 48px; color: var(--ok); margin-bottom: 16px; }
  .form-success h4 { font-size: 18px; margin-bottom: 8px; }
  .form-success p { color: var(--text-dim); font-size: 14px; }

  @media (max-width: 980px) {
    .contato-grid { grid-template-columns: 1fr; gap: 40px; }
    .form-row.two-col { grid-template-columns: 1fr; }
    form.contato-form { padding: 28px 24px; }
  }

  /* === CTA FINAL (mantido como bloco final compacto) === */
  section.cta-final {
    padding: 120px 0; border-top: 1px solid var(--line);
    text-align: center; position: relative;
    background: radial-gradient(ellipse at center, var(--cyan-glow) 0%, transparent 60%);
  }
  .cta-final h2 {
    font-size: 48px; font-weight: 600; letter-spacing: -0.025em;
    line-height: 1.1; margin-bottom: 20px; max-width: 720px; margin-inline: auto;
  }
  .cta-final p {
    color: var(--text-dim); font-size: 17px; margin-bottom: 40px;
    max-width: 560px; margin-inline: auto;
  }

  /* === FOOTER === */
  footer {
    border-top: 1px solid var(--line); padding: 60px 0 32px;
    background: var(--bg-2);
  }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 64px; margin-bottom: 48px; }
  .footer-col h6 {
    font-family: 'JetBrains Mono', monospace; font-size: 11px;
    color: var(--text-mute); letter-spacing: 0.1em; text-transform: uppercase;
    margin-bottom: 20px; font-weight: 500;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 10px; }
  .footer-col a { color: var(--text-dim); text-decoration: none; font-size: 14px; transition: color .2s; }
  .footer-col a:hover { color: var(--cyan); }
  .footer-col p { font-size: 13px; color: var(--text-dim); max-width: 280px; }
  .footer-bottom {
    border-top: 1px solid var(--line); padding-top: 24px;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 12px; color: var(--text-mute);
    font-family: 'JetBrains Mono', monospace;
  }

  /* === SOBRE === */
  section.sobre { padding: 120px 0; border-top: 1px solid var(--line); }
  .sobre-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
  .sobre-aside .eyebrow { margin-bottom: 32px; }
  .sobre-aside h2 { font-size: 40px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 24px; }
  .sobre-aside h2 em { font-style: normal; color: var(--cyan); }
  .sobre-meta { border-top: 1px solid var(--line); padding-top: 24px; margin-top: 40px; }
  .sobre-meta-row {
    display: grid; grid-template-columns: 140px 1fr; padding: 14px 0;
    border-bottom: 1px dashed var(--line); font-size: 13px;
  }
  .sobre-meta-row .k {
    font-family: 'JetBrains Mono', monospace; color: var(--text-mute);
    font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  }
  .sobre-meta-row .v { color: var(--text); }
  .sobre-body p { color: var(--text-dim); font-size: 16px; margin-bottom: 20px; line-height: 1.7; }
  .sobre-body p strong { color: var(--text); font-weight: 500; }
  .sobre-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }

  /* Cobertura nacional */
  .cobertura {
    margin-top: 56px; padding: 32px;
    border: 1px solid var(--line); background: var(--bg-2);
    position: relative;
  }
  .cobertura::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 60px; height: 2px; background: var(--cyan);
  }
  .cobertura-head {
    display: flex; align-items: baseline; gap: 16px;
    margin-bottom: 24px; flex-wrap: wrap;
  }
  .cobertura-head h4 { font-size: 22px; font-weight: 600; letter-spacing: -0.01em; }
  .cobertura-head .count {
    font-family: 'JetBrains Mono', monospace; font-size: 13px;
    color: var(--cyan); letter-spacing: 0.05em;
  }
  .cobertura-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
    background: var(--line);
  }
  .estado {
    background: var(--bg); padding: 18px 16px;
    text-align: center; transition: background .2s;
  }
  .estado:hover { background: var(--bg-3); }
  .estado .uf {
    font-family: 'JetBrains Mono', monospace; font-size: 18px;
    color: var(--cyan); font-weight: 500; letter-spacing: 0.05em;
    margin-bottom: 4px;
  }
  .estado .nome { font-size: 12px; color: var(--text-dim); }
  .estado.matriz { background: linear-gradient(180deg, rgba(49,177,220,0.08), transparent); }
  .estado.matriz .uf { color: var(--cyan-bright); }
  .estado .badge {
    display: inline-block; margin-top: 6px;
    font-family: 'JetBrains Mono', monospace; font-size: 9px;
    color: var(--cyan); border: 1px solid var(--cyan);
    padding: 1px 6px; letter-spacing: 0.08em;
  }
  .sobre-pillar { padding: 24px; border: 1px solid var(--line); background: var(--bg-2); }
  .sobre-pillar h6 {
    font-family: 'JetBrains Mono', monospace; font-size: 11px;
    color: var(--cyan); letter-spacing: 0.1em; text-transform: uppercase;
    margin-bottom: 12px; font-weight: 500;
  }
  .sobre-pillar p { font-size: 13px; color: var(--text-dim); margin: 0; line-height: 1.55; }

  /* === SUPORTE / GLPI === */
  section.suporte { padding: 100px 0; border-top: 1px solid var(--line); background: var(--bg-2); }
  .suporte-card {
    border: 1px solid var(--line-2); background: var(--bg);
    padding: 48px; display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px;
    align-items: center; position: relative; overflow: hidden;
  }
  .suporte-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  }
  .suporte-card .eyebrow { margin-bottom: 16px; }
  .suporte-card h3 { font-size: 32px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 16px; }
  .suporte-card > div:first-child > p { color: var(--text-dim); font-size: 15px; margin-bottom: 24px; max-width: 460px; }
  .suporte-features { list-style: none; }
  .suporte-features li {
    padding: 8px 0; font-size: 13px; color: var(--text-dim);
    font-family: 'JetBrains Mono', monospace;
    display: flex; align-items: center; gap: 10px;
  }
  .suporte-features li::before {
    content: '✓'; color: var(--cyan); font-weight: 600;
  }
  .glpi-panel {
    background: var(--bg-2); border: 1px solid var(--line);
    padding: 32px; text-align: center;
  }
  .glpi-icon {
    width: 64px; height: 64px; margin: 0 auto 20px;
    border: 1px solid var(--cyan); display: flex; align-items: center; justify-content: center;
    color: var(--cyan);
  }
  .glpi-panel h4 { font-size: 18px; margin-bottom: 8px; }
  .glpi-panel p {
    font-size: 13px; color: var(--text-dim); margin-bottom: 24px;
    font-family: 'JetBrains Mono', monospace;
  }
  .btn-glpi {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 24px; background: var(--cyan); color: var(--bg);
    text-decoration: none; font-weight: 600; font-size: 14px;
    transition: all .2s; font-family: inherit;
  }
  .btn-glpi:hover { background: var(--cyan-bright); transform: translateY(-1px); box-shadow: 0 8px 24px var(--cyan-glow); }
  .glpi-alt {
    margin-top: 20px; padding-top: 20px; border-top: 1px dashed var(--line);
    font-size: 12px; color: var(--text-mute); font-family: 'JetBrains Mono', monospace;
  }
  .glpi-alt a { color: var(--text-dim); text-decoration: none; }
  .glpi-alt a:hover { color: var(--cyan); }

  @media (max-width: 980px) {
    /* --- NAV MOBILE: hambúrguer + dropdown --- */
    .nav-toggle { display: flex; }
    .nav-collapse {
      display: none;               /* sobrescreve o "contents" do desktop */
      position: absolute; top: 100%; left: 0; right: 0;
      flex-direction: column; align-items: stretch; gap: 0;
      background: rgba(17, 25, 42, 0.98); backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--line);
      padding: 8px 24px 20px; max-height: calc(100vh - 70px); overflow-y: auto;
    }
    nav.top.open .nav-collapse { display: flex; }
    nav.top ul {
      display: flex; flex-direction: column; gap: 0; width: 100%;
    }
    nav.top ul li { border-bottom: 1px solid var(--line); }
    nav.top ul a { display: block; padding: 14px 4px; font-size: 15px; }
    .nav-actions {
      flex-direction: column; align-items: stretch; gap: 10px;
      margin-top: 16px; width: 100%;
    }
    .nav-actions .nav-ticket,
    .nav-actions .nav-cta { justify-content: center; padding: 13px 16px; }

    /* --- GRIDS --- */
    .pilar-grid, .cyber-grid, .process-grid, .footer-grid { grid-template-columns: 1fr; }
    .cyber-grid { grid-template-columns: 1fr 1fr; }
    .cobertura-grid { grid-template-columns: repeat(2, 1fr); }
    .cobertura { padding: 24px; }
    .sobre-grid, .suporte-card { grid-template-columns: 1fr; gap: 40px; }
    .sobre-pillars { grid-template-columns: 1fr 1fr; }
    .suporte-card { padding: 32px 24px; }
    .process-grid::before { display: none; }
    .frameworks { flex-direction: column; align-items: flex-start; gap: 16px; padding: 28px 24px; }

    /* --- TIPOGRAFIA / ESPAÇOS --- */
    h1.hero-title { font-size: 38px; }
    .section-head h2, .cta-final h2 { font-size: 30px; }
    .contato-aside h2 { font-size: 32px; }
    section.hero { padding: 64px 0 80px; }
    .hero-stats { flex-direction: column; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .nav-ticket span, .nav-ticket { padding: 9px 12px; }
    .logo img { height: 56px; }
  }

  /* === CELULARES === */
  @media (max-width: 600px) {
    .container { padding: 0 20px; }
    nav.top .wrap { padding: 12px 20px; }
    section.pilares, section.process, section.suporte { padding: 64px 0; }
    section.cyber, section.contato, section.sobre, section.cta-final { padding: 64px 0; }
    .cyber-grid, .sobre-pillars { grid-template-columns: 1fr; }
    .cobertura-grid { grid-template-columns: repeat(3, 1fr); }
    h1.hero-title { font-size: 30px; }
    .hero-sub { font-size: 16px; }
    .hero-ctas { flex-direction: column; align-items: stretch; }
    .hero-ctas .btn-primary, .hero-ctas .btn-secondary { justify-content: center; }
    .section-head h2, .cta-final h2 { font-size: 26px; }
    .section-head p { font-size: 15px; }
    .contato-aside h2 { font-size: 28px; }
    .suporte-card h3 { font-size: 26px; }
    .cobertura-head h4, .cobertura-head .count { font-size: 18px; }
    form.contato-form { padding: 24px 18px; }
    .sobre-meta-row { grid-template-columns: 110px 1fr; }
    section.cyber::after { display: none; }
  }