:root {
  --bg: #070a14;
  --panel: #0b1020;
  --panel2: #0f1730;
  --text: #eaf0ff;
  --muted: #aab6da;

  /* Paleta inspirada na logo (azul → roxo) */
  --c1: #00a3ff;
  --c2: #3d6bff;
  --c3: #7a2cff;
  --c4: #b400ff;

  --ok: #2ee59d;
  --warn: #ffd166;

  --shadow: 0 16px 50px rgba(0, 0, 0, 0.55);
  --radius: 18px;
  --radius2: 26px;

  --max: 1120px;
  --border: 1px solid rgba(255, 255, 255, 0.08);
  --border2: 1px solid rgba(255, 255, 255, 0.12);

  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica,
    Arial, "Apple Color Emoji", "Segoe UI Emoji";
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  overflow-x: hidden;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--bg); /* apenas uma cor base */
  overflow-x: hidden;
  position: relative;
}

/* camada única do fundo */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2; /* atrás de tudo */
  pointer-events: none;

  background: radial-gradient(
      900px 600px at 10% 10%,
      rgba(0, 163, 255, 0.22),
      transparent 60%
    ),
    radial-gradient(
      900px 600px at 90% 20%,
      rgba(122, 44, 255, 0.18),
      transparent 60%
    ),
    radial-gradient(
      900px 600px at 50% 90%,
      rgba(180, 0, 255, 0.1),
      transparent 55%
    ),
    linear-gradient(180deg, #050611 0%, #070a14 35%, #050611 100%);

  background-repeat: no-repeat; /* evita “tile” */
  background-size: cover; /* garante preenchimento uniforme */
}

a {
  color: inherit;
  text-decoration: none;
}
.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

/* subtle animated grid */
.gridfx {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(
    circle at 50% 20%,
    rgba(0, 0, 0, 1),
    rgba(0, 0, 0, 0.15) 55%,
    transparent 75%
  );
  z-index: 0;
  animation: drift 16s ease-in-out infinite alternate;
}
@keyframes drift {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(18px);
  }
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(7, 10, 20, 0.55);
  border-bottom: var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}
.logo {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(0, 163, 255, 0.25),
    rgba(122, 44, 255, 0.22)
  );
  border: var(--border2);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
}
.logo::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: conic-gradient(
    from 180deg,
    var(--c1),
    var(--c2),
    var(--c3),
    var(--c4),
    var(--c1)
  );
  filter: blur(18px);
  opacity: 0.55;
  animation: spin 8s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.logo span {
  position: relative;
  font-weight: 800;
  letter-spacing: 0.02em;
  font-family: var(--mono);
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
}
.brand h1 {
  font-size: 14px;
  margin: 0;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(234, 240, 255, 0.95);
  line-height: 1.15;
}
.brand p {
  margin: 2px 0 0;
  font-size: 12px;
  color: var(--muted);
}

.menu {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
  justify-content: center;
}
.menu a {
  font-size: 13px;
  color: rgba(234, 240, 255, 0.85);
  padding: 10px 10px;
  border-radius: 12px;
  transition: all 0.2s ease;
  position: relative;
}
.menu a::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 6px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 163, 255, 0.9),
    rgba(122, 44, 255, 0.9),
    transparent
  );
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.2s ease;
}
.menu a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.98);
}
.menu a:hover::after {
  opacity: 1;
  transform: translateY(0px);
}

.actions {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 260px;
  justify-content: flex-end;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 14px;
  border: var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(234, 240, 255, 0.92);
  font-size: 13px;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, border 0.2s ease;
  user-select: none;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
}
.btn.primary {
  border: none;
  background: linear-gradient(
    135deg,
    rgba(0, 163, 255, 0.95),
    rgba(122, 44, 255, 0.95)
  );
  box-shadow: 0 14px 40px rgba(0, 163, 255, 0.18);
  color: #071025;
  font-weight: 700;
}
.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 55px rgba(122, 44, 255, 0.18);
}

/* Mobile nav */
.burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: var(--border);
  background: rgba(255, 255, 255, 0.03);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.burger span {
  width: 18px;
  height: 2px;
  background: rgba(234, 240, 255, 0.9);
  display: block;
  position: relative;
}
.burger span::before,
.burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: rgba(234, 240, 255, 0.9);
  transition: all 0.2s ease;
}
.burger span::before {
  top: -6px;
}
.burger span::after {
  top: 6px;
}

.mobileSheet {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 60;
}
.sheet {
  position: absolute;
  top: 10px;
  right: 10px;
  left: 10px;
  background: rgba(11, 16, 32, 0.96);
  border: var(--border2);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: translateY(-10px);
  opacity: 0;
  transition: all 0.2s ease;
}
.mobileSheet.open .sheet {
  transform: translateY(0px);
  opacity: 1;
}
.sheetHead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 14px;
  border-bottom: var(--border);
}
.sheetHead strong {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.sheetLinks {
  display: grid;
  gap: 6px;
  padding: 12px;
}
.sheetLinks a {
  padding: 12px 12px;
  border-radius: 14px;
  border: var(--border);
  background: rgba(255, 255, 255, 0.03);
  font-size: 14px;
}
.sheetLinks a:hover {
  background: rgba(255, 255, 255, 0.06);
}
.sheetActions {
  display: flex;
  gap: 10px;
  padding: 12px;
  border-top: var(--border);
}
.sheetActions .btn {
  flex: 1;
}

/* Hero */
main {
  position: relative;
  z-index: 1;
}
.hero {
  padding: 64px 0 26px;
  position: relative;
}
.heroGrid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: 34px;
  align-items: start;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: var(--border);
  background: rgba(255, 255, 255, 0.03);
  font-size: 12px;
  color: rgba(234, 240, 255, 0.86);
  letter-spacing: 0.06em;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--ok), rgba(46, 229, 157, 0.18));
  box-shadow: 0 0 20px rgba(46, 229, 157, 0.35);
}

.hero h2 {
  font-size: clamp(30px, 3.4vw, 44px);
  margin: 14px 0 10px;
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.gradText {
  background: linear-gradient(
    135deg,
    var(--c1),
    var(--c2),
    var(--c3),
    var(--c4)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p {
  margin: 0 0 18px;
  font-size: 15px;
  color: rgba(170, 182, 218, 0.95);
  line-height: 1.65;
  max-width: 62ch;
}
.heroCtas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 10px;
}
.metaLine {
  margin-top: 12px;
  font-size: 12px;
  color: rgba(170, 182, 218, 0.85);
}

.card3d {
  background: linear-gradient(
    180deg,
    rgba(15, 23, 48, 0.92),
    rgba(11, 16, 32, 0.92)
  );
  border: var(--border2);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  padding: 16px;
}
.card3d::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: conic-gradient(
    from 90deg,
    rgba(0, 163, 255, 0.55),
    rgba(122, 44, 255, 0.55),
    rgba(180, 0, 255, 0.25),
    rgba(0, 163, 255, 0.55)
  );
  opacity: 0.55;
  filter: blur(22px);
  transform: translateY(-10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}
.card3d:hover::before {
  opacity: 0.85;
  transform: translateY(0px);
}
.card3dInner {
  position: relative;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 10, 20, 0.35);
  padding: 18px;
  overflow: hidden;
}
.statRow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}
.miniStat {
  border: var(--border);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 12px;
  transition: transform 0.15s ease, background 0.2s ease, border 0.2s ease;
  position: relative;
  overflow: hidden;
}
.miniStat:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
}
.miniStat strong {
  display: block;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(234, 240, 255, 0.9);
  margin-bottom: 6px;
}
.miniStat span {
  color: rgba(170, 182, 218, 0.92);
  font-size: 12px;
  line-height: 1.45;
  display: block;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 8px 10px;
  border: var(--border);
  background: rgba(255, 255, 255, 0.03);
  font-size: 12px;
  color: rgba(234, 240, 255, 0.88);
  margin-right: 8px;
  margin-top: 8px;
  transition: all 0.2s ease;
}
.chip:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

/* Sections */
section {
  padding: 42px 0;
}
.sectionHead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.sectionHead h3 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.sectionHead p {
  margin: 0;
  color: rgba(170, 182, 218, 0.95);
  max-width: 62ch;
  font-size: 13px;
  line-height: 1.55;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.card {
  border-radius: var(--radius);
  border: var(--border2);
  background: linear-gradient(
    180deg,
    rgba(15, 23, 48, 0.75),
    rgba(11, 16, 32, 0.55)
  );
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
  transition: transform 0.18s ease, border 0.2s ease, background 0.2s ease;
  min-height: 168px;
}
.card::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(
      circle at 30% 25%,
      rgba(0, 163, 255, 0.2),
      transparent 55%
    ),
    radial-gradient(
      circle at 70% 55%,
      rgba(122, 44, 255, 0.18),
      transparent 55%
    );
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.18);
  background: linear-gradient(
    180deg,
    rgba(15, 23, 48, 0.88),
    rgba(11, 16, 32, 0.62)
  );
}
.card:hover::after {
  opacity: 1;
}
.icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: var(--border);
  background: rgba(255, 255, 255, 0.03);
  margin-bottom: 10px;
  position: relative;
}
.icon svg {
  opacity: 0.9;
}
.card h4 {
  margin: 6px 0 8px;
  font-size: 16px;
}
.card p {
  margin: 0;
  color: rgba(170, 182, 218, 0.95);
  font-size: 13px;
  line-height: 1.6;
}

/* Process */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.step {
  border: var(--border2);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 18px;
  padding: 14px;
  position: relative;
  transition: transform 0.18s ease, background 0.2s ease, border 0.2s ease;
  overflow: hidden;
  min-height: 132px;
}
.step:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.18);
}
.step b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(0, 163, 255, 0.9),
    rgba(122, 44, 255, 0.9)
  );
  color: #071025;
  font-weight: 800;
  margin-bottom: 10px;
}
.step h5 {
  margin: 0 0 6px;
  font-size: 14px;
}
.step p {
  margin: 0;
  color: rgba(170, 182, 218, 0.95);
  font-size: 12.5px;
  line-height: 1.55;
}

/* Form */
.formGrid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
  align-items: start;
}
.panel {
  border-radius: var(--radius2);
  border: var(--border2);
  background: linear-gradient(
    180deg,
    rgba(15, 23, 48, 0.72),
    rgba(11, 16, 32, 0.58)
  );
  padding: 16px;
  box-shadow: var(--shadow);
}
form {
  display: grid;
  gap: 10px;
}
.field {
  display: grid;
  gap: 6px;
}
label {
  font-size: 12px;
  color: rgba(170, 182, 218, 0.95);
}
input,
textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 10, 20, 0.35);
  color: rgba(234, 240, 255, 0.95);
  padding: 11px 12px;
  outline: none;
  transition: border 0.2s ease, background 0.2s ease;
  font-family: var(--font);
}
input:focus,
textarea:focus {
  border-color: rgba(0, 163, 255, 0.55);
  background: rgba(7, 10, 20, 0.5);
}
textarea {
  min-height: 120px;
  resize: vertical;
}
.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 12px;
  border-radius: 14px;
  border: var(--border);
  background: rgba(255, 255, 255, 0.02);
}
.consent input {
  width: auto;
  margin-top: 3px;
}
.consent small {
  color: rgba(170, 182, 218, 0.95);
  line-height: 1.5;
}
.hint {
  font-size: 12px;
  color: rgba(170, 182, 218, 0.9);
  line-height: 1.55;
}

.contactBox {
  display: grid;
  gap: 10px;
}
.contactRow {
  border-radius: 16px;
  border: var(--border);
  background: rgba(255, 255, 255, 0.03);
  padding: 12px;
  transition: background 0.2s ease, border 0.2s ease, transform 0.15s ease;
}
.contactRow:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}
.contactRow .k {
  font-size: 12px;
  color: rgba(170, 182, 218, 0.95);
}
.contactRow .v {
  font-size: 13px;
  color: rgba(234, 240, 255, 0.95);
  margin-top: 4px;
  word-break: break-word;
}
.copy {
  margin-top: 8px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Legal */
.legal {
  border-radius: var(--radius2);
  border: var(--border2);
  background: rgba(255, 255, 255, 0.02);
  padding: 16px;
}
.legal h4 {
  margin: 0 0 10px;
  font-size: 16px;
}
.legal h5 {
  margin: 16px 0 8px;
  font-size: 13px;
  letter-spacing: 0.02em;
}
.legal p,
.legal li {
  color: rgba(170, 182, 218, 0.98);
  font-size: 12.8px;
  line-height: 1.7;
}
.legal ul {
  margin: 8px 0 8px 18px;
}
.legal code {
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(234, 240, 255, 0.92);
  background: rgba(255, 255, 255, 0.05);
  padding: 2px 6px;
  border-radius: 10px;
  border: var(--border);
}

/* Footer */
footer {
  border-top: var(--border);
  padding: 24px 0 34px;
  color: rgba(170, 182, 218, 0.9);
  font-size: 12px;
}
.footerGrid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.links a {
  color: rgba(170, 182, 218, 0.92);
  padding: 6px 8px;
  border-radius: 12px;
  border: 1px solid transparent;
}
.links a:hover {
  color: rgba(234, 240, 255, 0.95);
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

/* Utilities */
.divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  margin: 26px 0;
}

/* Responsive */
@media (max-width: 980px) {
  .heroGrid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  .formGrid {
    grid-template-columns: 1fr;
  }
  .menu {
    display: none;
  }
  .actions {
    min-width: auto;
  }
  .burger {
    display: inline-flex;
  }
  .brand {
    min-width: auto;
  }
}
@media (max-width: 520px) {
  .steps {
    grid-template-columns: 1fr;
  }
  .btn {
    width: 100%;
  }
  .actions {
    display: none;
  }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* ========== Contato (aside novo) ========== */
.contactAside h4 {
  margin: 10px 0 8px;
  font-size: 16px;
}
.contactAside p {
  margin: 0 0 14px;
  color: rgba(170, 182, 218, 0.95);
  line-height: 1.6;
  font-size: 13px;
}
.badge {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  border: var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(234, 240, 255, 0.9);
  font-size: 12px;
  letter-spacing: 0.06em;
}
.quickActions {
  display: grid;
  gap: 10px;
  margin: 12px 0 14px;
}
.miniNote {
  border: var(--border);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  padding: 12px;
  color: rgba(170, 182, 218, 0.95);
  font-size: 12.5px;
  line-height: 1.6;
}

/* ========== Rodapé institucional (discreto) ========== */
footer {
  border-top: var(--border);
  padding: 26px 0 34px;
  color: rgba(170, 182, 218, 0.9);
  font-size: 12px;
  background: rgba(7, 10, 20, 0.25);
}

.footerTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.footerBrand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footerLogo {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: var(--border);
  background: rgba(255, 255, 255, 0.03);
  font-weight: 800;
  color: rgba(234, 240, 255, 0.92);
  font-family: var(--mono);
}
.footerSub {
  color: rgba(170, 182, 218, 0.92);
  margin-top: 2px;
  font-size: 12px;
}

.footerContact a {
  color: rgba(234, 240, 255, 0.92);
  text-decoration: none;
}
.footerContact a:hover {
  text-decoration: underline;
}

.footerMeta {
  margin-top: 10px;
  color: rgba(170, 182, 218, 0.9);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.sep {
  opacity: 0.6;
}

.footerDocs {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

/* Accordion via <details> */
.doc {
  border: var(--border2);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 18px;
  overflow: hidden;
}
.doc summary {
  cursor: pointer;
  list-style: none;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(234, 240, 255, 0.92);
  user-select: none;
}
.doc summary::-webkit-details-marker {
  display: none;
}

.doc summary::after {
  content: "▾";
  opacity: 0.85;
  transform: translateY(-1px);
  transition: transform 0.2s ease;
}
.doc[open] summary::after {
  transform: rotate(180deg) translateY(1px);
}

.docBody {
  padding: 12px 14px 14px;
  border-top: var(--border);
}
.docBody h5 {
  margin: 14px 0 8px;
  font-size: 12.5px;
  color: rgba(234, 240, 255, 0.92);
}
.docBody p,
.docBody li {
  color: rgba(170, 182, 218, 0.96);
  font-size: 12.8px;
  line-height: 1.7;
}
.docBody ul {
  margin: 8px 0 8px 18px;
}
.docBody code {
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(234, 240, 255, 0.92);
  background: rgba(255, 255, 255, 0.05);
  padding: 2px 6px;
  border-radius: 10px;
  border: var(--border);
}
.docDate {
  margin-top: 12px;
  opacity: 0.9;
}

/* links finais */
.footerBottom {
  margin-top: 14px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.footerBottom a {
  color: rgba(170, 182, 218, 0.92);
  padding: 6px 8px;
  border-radius: 12px;
  border: 1px solid transparent;
}
.footerBottom a:hover {
  color: rgba(234, 240, 255, 0.95);
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

@media (max-width: 980px) {
  .footerTop {
    align-items: flex-start;
  }
}

/* ========== Documentos (na página) ========== */
#documentos .sectionHead p {
  max-width: 72ch;
}

.docGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: start;
}

.docCard {
  border-radius: var(--radius2);
  border: var(--border2);
  background: linear-gradient(
    180deg,
    rgba(15, 23, 48, 0.7),
    rgba(11, 16, 32, 0.55)
  );
  box-shadow: var(--shadow);
  overflow: hidden;
}

.docCard summary {
  cursor: pointer;
  list-style: none;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  user-select: none;
}

.docCard summary::-webkit-details-marker {
  display: none;
}

.docTitle {
  font-weight: 800;
  color: rgba(234, 240, 255, 0.95);
  font-size: 14px;
}

.docHint {
  color: rgba(170, 182, 218, 0.9);
  font-size: 12px;
  border: var(--border);
  background: rgba(255, 255, 255, 0.03);
  padding: 6px 10px;
  border-radius: 999px;
}

.docCard[open] .docHint {
  opacity: 0.9;
}

.docContent {
  border-top: var(--border);
  padding: 14px 16px 16px;
  max-height: 520px; /* evita virar “paredão” */
  overflow: auto; /* rolagem interna só no documento */
}

.docContent h4 {
  margin: 12px 0 8px;
  font-size: 13.5px;
  color: rgba(234, 240, 255, 0.95);
}

.docContent p,
.docContent li {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(170, 182, 218, 0.98);
}

.docContent ul {
  margin: 8px 0 8px 18px;
}

.docContent code {
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(234, 240, 255, 0.92);
  background: rgba(255, 255, 255, 0.05);
  padding: 2px 6px;
  border-radius: 10px;
  border: var(--border);
}

.docUpdate {
  margin-top: 12px;
  opacity: 0.9;
  font-size: 12px;
}

/* responsivo */
@media (max-width: 980px) {
  .docGrid {
    grid-template-columns: 1fr;
  }
}

/* ===== Contato: formulário em duas colunas ===== */
#contato form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Campos que devem ocupar a largura toda */
#contato .field:nth-of-type(3),  /* Empresa */
#contato .field:nth-of-type(4),  /* Mensagem */
#contato .consent,
#contato .hint,
#contato form > div:not(.field):not(.consent):not(.hint) {
  grid-column: 1 / -1;
}

#contato textarea {
  min-height: 140px;
}
#contato form > div[style*="display: flex"] {
  grid-column: 1 / -1;
}

@media (max-width: 720px) {
  #contato form {
    grid-template-columns: 1fr;
  }
}

/* ===== Contato: permitir usar a largura disponível ===== */
#contato .formGrid {
  display: block; /* elimina qualquer grid/centering anterior */
}

#contato .formGrid .panel {
  width: 100%;
  max-width: 100%; /* ajuste: 860~980 fica bom */
  margin: 0 auto;
}
