:root {
  --ink: #0b1e36;
  --ink-2: #122845;
  --blue: #1e56c7;
  --blue-deep: #123b8f;
  --blue-soft: #1e56c7;
  --blue-soft-strong: #dee9fa;
  --blue-soft-fonte: #77ade0;
  --paper: #f4f2ea;
  --paper-line: #d8d3c4;
  --grid-line: rgba(11, 30, 54, 0.07);
  --grid-line-dark: rgba(244, 242, 234, 0.08);
  --ash: #5b6472;
  --white: #ffffff;
  --radius: 2px;
  --display: "Archivo", sans-serif;
  --mono: "IBM Plex Mono", monospace;
  --body: "Inter", sans-serif;
}

/* ---------- RESET E BASE ---------- */

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

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

img,
video {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

h1,
h2,
h3 {
  font-family: var(--display);
  letter-spacing: -0.01em;
}

section {
  position: relative;
  scroll-margin-top: 76px;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- UTILITÁRIOS ---------- */

.grid-light {
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 32px 32px;
}

.grid-dark {
  background-image:
    linear-gradient(var(--grid-line-dark) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line-dark) 1px, transparent 1px);
  background-size: 32px 32px;
}

.bracket {
  position: relative;
}

.bracket::before,
.bracket::after {
  position: absolute;
  width: 14px;
  height: 14px;
  border-color: currentColor;
  opacity: 0.55;
  content: "";
}

.bracket::before {
  top: -1px;
  left: -1px;
  border-top: 2px solid;
  border-left: 2px solid;
}

.bracket::after {
  right: -1px;
  bottom: -1px;
  border-right: 2px solid;
  border-bottom: 2px solid;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  display: inline-block;
  width: 22px;
  height: 1px;
  background: var(--blue);
  content: "";
}

.eyebrow.on-dark {
  color: #7ca6ff;
}

.sheet-index {
  color: var(--ash);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
}

.sec-pad {
  padding: 104px 0;
}

.divider {
  height: 1px;
  background: var(--paper-line);
}

/* ---------- BOTÕES ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 600;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
}

.btn-primary:hover {
  box-shadow: 0 6px 18px rgba(30, 86, 199, 0.35);
}

.btn-outline {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.btn-outline.on-dark {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.btn-ghost-dark {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
}

/* ---------- NAVEGAÇÃO ---------- */

header.nav {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid var(--paper-line);
  background: rgba(244, 242, 234, 0.9);
  backdrop-filter: blur(8px);
}

.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  max-width: 1180px;
  height: 76px;
  margin: 0 auto;
  padding: 0 32px;
}

.nav-left {
  display: flex;
}

.nav-right {
  display: flex;
  justify-content: flex-end;
}

.logo-img {
  width: auto;
  height: 60px;
}

nav.links {
  display: flex;
  justify-content: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
}

nav.links a {
  color: var(--ink-2);
  white-space: nowrap;
  opacity: 0.8;
  transition:
    color 0.15s ease,
    opacity 0.15s ease;
}

nav.links a:hover {
  color: var(--blue);
  opacity: 1;
}

nav.links a:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
}

.nav .btn {
  padding: 9px 16px;
  font-size: 13px;
}

/* ---------- HOME / HERO ---------- */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 640px;
  padding: 180px 0 120px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero-video-layer {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
}

.hero-video-layer video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 1.1s ease;
}

.hero-video-layer video.is-active {
  opacity: 1;
}

.hero-scrim {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(11, 30, 54, 0.94) 0%,
    rgba(11, 30, 54, 0.88) 38%,
    rgba(11, 30, 54, 0.62) 100%
  );
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-inner {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
}

.hero .eyebrow {
  justify-content: center;
}

.hero .eyebrow::after {
  display: inline-block;
  width: 22px;
  height: 1px;
  background: #7ca6ff;
  content: "";
}

.hero h1 {
  max-width: 900px;
  margin: 20px auto 22px;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 700;
  line-height: 1.05;
  text-align: center;
}

.hero p.lede {
  max-width: 980px;
  margin: 0 auto 36px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 56px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-tag {
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
}

.hero-tag b {
  color: var(--white);
  font-weight: 500;
}

.corner-frame {
  position: absolute;
  z-index: 2;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--mono);
  font-size: 10px;
}

/* ---------- CABEÇALHOS DE SEÇÃO ---------- */

.sec-head {
  max-width: 640px;
  margin-bottom: 56px;
}

.sec-head h2 {
  margin-top: 14px;
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
}

.sec-head p {
  margin-top: 14px;
  color: var(--ash);
  font-size: 16px;
  line-height: 1.6;
}

.sec-head.center {
  margin-right: auto;
  margin-left: auto;
  text-align: justify;
}

.sec-head.center .eyebrow {
  justify-content: center;
}

/* ---------- SOLUÇÕES / NÚCLEO ---------- */

.nucleo {
  background: var(--paper);
}

.nucleo .nucleo-intro {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 44px 64px 48px;
  border: 1px solid var(--paper-line);
  background: rgba(255, 255, 255, 0.48);
}

.nucleo-intro p {
  max-width: 920px;
  margin-right: auto;
  margin-left: auto;
}

.nucleo-diagram {
  width: 100%;
  max-width: none;
  margin: 0;
  border: 1px solid var(--paper-line);
  border-top: 0;
}

.nucleo-modalidades {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.nucleo-col {
  padding: 36px;
  background: var(--blue-soft);
}

.nucleo-col + .nucleo-col {
  border-left: 1px solid var(--paper-line);
}

.modalidade {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.modalidade h4 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
}

.modalidade .modalidade-subtitulo {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
}

.modalidade .modalidade-descricao {
  margin: 0;
  color: var(--white);
  font-size: 14px;
  line-height: 1.65;
}

.modalidade .tag {
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 4px 9px;
  border: 1px solid var(--blue);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--blue);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---------- PILARES ---------- */

#pilares .pilares-intro {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 15px 24px 16px;
  border: 1px solid var(--paper-line);
  background: rgba(255, 255, 255, 0.48);
}

.pilares-intro h2 {
  margin-top: 10px;
}

.pilares-intro p {
  max-width: 920px;
  margin: 12px auto 0;
  text-align: center;
}

.pilares-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: 1px;
  width: 100%;
  border: 1px solid var(--paper-line);
  border-top: 0;
  background: var(--paper-line);
}

.pilar {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  min-height: 280px;
  padding: 16px;
  background: var(--ink);
  transition: background 0.15s ease;
}

.pilar:hover {
  background: var(--ink-2);
}

.pilar-num {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  margin-bottom: 28px;
  color: var(--blue-soft-fonte);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.3;
  text-align: center;
}

.pilar > div:last-child {
  flex: 1;
}

.pilar p {
  margin: 0;
  color: var(--white);
  font-size: 16px;
  line-height: 1.6;
  text-align: justify;
}

.pilares-fechamento {
  width: 100%;
  padding: 13px 24px;
  border: 1px solid var(--paper-line);
  border-top: 0;
  background: var(--white);
}

.pilares-fechamento p {
  max-width: 980px;
  margin: 0 auto;
  color: var(--ink-2);
  font-size: 15.5px;
  line-height: 1.6;
  text-align: justify;
  text-align-last: center;
}

/* ---------- QUEM SOMOS ---------- */

.quemsomos {
  background: var(--ink);
  color: var(--white);
}

.qs-heading {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 64px 48px;
  text-align: center;
}

.qs-heading .eyebrow {
  justify-content: center;
}

.qs-heading .eyebrow::after {
  display: inline-block;
  width: 22px;
  height: 1px;
  background: #7ca6ff;
  content: "";
}

.qs-heading h2 {
  max-width: 820px;
  margin: 16px auto 0;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(25px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-align: center;
}

.qs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 56px;
}

.qs-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.qs-copy p {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15.5px;
  line-height: 1.7;
  text-align: justify;
}

.qs-copy p:last-child {
  margin-bottom: 0;
}

.qs-photo {
  min-width: 0;
  min-height: 420px;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: var(--ink-2);
}

.qs-photo video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* Indicadores mantidos para ativação futura. */

.dash-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 56px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.dash-item {
  padding: 28px 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.dash-item:first-child {
  border-left: 0;
}

.dash-num {
  color: #7ca6ff;
  font-family: var(--display);
  font-size: 38px;
  font-weight: 700;
}

.dash-label {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

/* ---------- CONTEÚDOS ---------- */

.conteudos {
  background: var(--paper);
}

.conteudos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.conteudo-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 26px;
  border: 1px solid var(--paper-line);
  background: var(--white);
}

.conteudo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  color: var(--blue);
  font-family: var(--mono);
  font-size: 12px;
}

.conteudo-card h4 {
  font-size: 15px;
  font-weight: 600;
}

.conteudo-card p {
  color: var(--ash);
  font-size: 13px;
  line-height: 1.55;
}

.conteudo-card a.card-link {
  margin-top: auto;
  color: var(--blue);
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
}

/* ---------- CONTATO ---------- */

.contato {
  background: var(--paper);
}

.contato-grid {
  display: grid;
  grid-template-columns: minmax(0, 640px);
  justify-content: center;
  width: 100%;
}

.contato-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  margin: 0 auto;
}

.contato-card {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  min-height: 70px;
  padding: 20px 22px;
  border: 1px solid var(--paper-line);
  background: var(--white);
}

.contato-card .ic,
.contato-card .ic-email,
.contato-card .ic-agenda {
  display: flex;
  flex: none;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  overflow: hidden;
  border-radius: 8px;
  background: transparent;
}

.contato-card .ic img,
.contato-card .ic-email img,
.contato-card .ic-agenda img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contato-card h5 {
  margin-bottom: 2px;
  font-size: 14.5px;
  font-weight: 600;
}

.contato-card p {
  color: var(--ash);
  font-size: 12.5px;
}

.contato-card-link {
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  transition:
    border-color 0.15s ease,
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.contato-card-link:hover {
  border-color: var(--blue);
  box-shadow: 0 6px 16px rgba(11, 30, 54, 0.08);
  transform: translateY(-1px);
}

.contato-card-link:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.contato-card.destaque {
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  border-color: var(--ink);
  background: var(--ink);
}

.contato-card.destaque .destaque-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contato-card.destaque .ic,
.contato-card.destaque .ic-agenda {
  background: rgba(124, 166, 255, 0.16);
  color: #7ca6ff;
}

.contato-card.destaque h5 {
  color: var(--white);
}

.contato-card.destaque p {
  color: rgba(255, 255, 255, 0.6);
}

.contato-card.destaque .btn {
  width: 100%;
  margin-top: 6px;
  justify-content: center;
}

/* Formulário mantido para ativação futura. */

.contato-form {
  padding: 36px;
  border: 1px solid var(--paper-line);
  background: var(--white);
}

.contato-form h3 {
  margin-bottom: 22px;
  font-size: 20px;
  font-weight: 700;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field label {
  color: var(--ink-2);
  font-size: 12.5px;
  font-weight: 600;
}

.field label span {
  color: var(--blue);
}

.field input,
.field textarea {
  padding: 11px 13px;
  border: 1px solid var(--paper-line);
  border-radius: 2px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 14px;
}

.field input:focus,
.field textarea:focus {
  outline: 2px solid var(--blue);
  outline-offset: 1px;
}

.field textarea {
  min-height: 96px;
  resize: vertical;
}

.contato-form .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 13px;
  font-size: 14.5px;
}

/* ---------- RODAPÉ / COMPLIANCE ---------- */

footer {
  padding: 72px 0 32px;
  background: var(--ink);
  color: var(--white);
}

.compliance-banner {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 64px;
  padding: 30px 32px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.compliance-banner p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14.5px;
  line-height: 1.6;
}

.compliance-banner .tag-lgpd {
  padding: 4px 10px;
  border: 1px solid #7ca6ff;
  border-radius: 2px;
  color: #7ca6ff;
  font-family: var(--mono);
  font-size: 11px;
  white-space: nowrap;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  align-items: stretch;
  gap: 40px;
  margin-bottom: 56px;
}

.foot-grid > .foot-col:first-child {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.foot-logo {
  display: block;
  width: 190px;
  max-height: 110px;
  height: auto;
  margin: 0;
  object-fit: contain;
  opacity: 0.92;
  filter: brightness(0) invert(1);
}

.foot-col h5 {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.foot-col a,
.foot-col p {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.foot-col a:hover {
  color: var(--white);
}

.foot-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--mono);
  font-size: 12.5px;
}

.foot-copyright {
  flex: none;
}

.foot-copyright,
.foot-address {
  line-height: 1.6;
}

.foot-address {
  max-width: 440px;
  color: rgba(255, 255, 255, 0.58);
  font-style: normal;
  text-align: right;
}

.social-dots {
  display: flex;
  gap: 10px;
}

.social-dots span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
}

/* ---------- RESPONSIVIDADE: TABLETS E TELAS MÉDIAS ---------- */

@media (max-width: 900px) {
  .container {
    padding-right: 24px;
    padding-left: 24px;
  }

  .sec-pad {
    padding: 80px 0;
  }

  .nav-inner {
    grid-template-columns: 1fr auto;
    height: 72px;
    padding-right: 24px;
    padding-left: 24px;
  }

  nav.links {
    display: none;
  }

  .logo-img {
    height: 54px;
  }

  .hero {
    min-height: 600px;
    padding: 152px 0 96px;
  }

  .hero p.lede {
    font-size: 17px;
  }

  .nucleo .nucleo-intro {
    padding: 40px 36px;
  }

  .nucleo-modalidades {
    grid-template-columns: 1fr;
  }

  .nucleo-col + .nucleo-col {
    border-top: 1px solid var(--paper-line);
    border-left: 0;
  }

  #pilares .pilares-intro {
    padding: 24px 32px 26px;
  }

  .pilares-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pilares-fechamento {
    padding: 20px 32px;
  }

  .qs-heading {
    padding: 0 36px 40px;
  }

  .qs-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .qs-copy {
    display: block;
  }

  .qs-photo {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .dash-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dash-item:nth-child(3) {
    border-left: 0;
  }

  .conteudos-grid {
    grid-template-columns: 1fr;
  }

  .contato-grid {
    grid-template-columns: minmax(0, 640px);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .foot-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .foot-logo {
    width: 170px;
  }

  .compliance-banner {
    flex-direction: column;
  }
}

/* ---------- RESPONSIVIDADE: CELULARES ---------- */

@media (max-width: 560px) {
  .container {
    padding-right: 20px;
    padding-left: 20px;
  }

  .sec-pad {
    padding: 64px 0;
  }

  .eyebrow {
    gap: 8px;
    font-size: 10px;
  }

  .eyebrow::before,
  .hero .eyebrow::after,
  .qs-heading .eyebrow::after {
    width: 16px;
  }

  .nav-inner {
    height: 68px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .nav .btn {
    padding: 8px 12px;
    font-size: 12px;
  }

  .logo-img {
    height: 48px;
  }

  .hero {
    min-height: auto;
    padding: 128px 0 76px;
  }

  .hero h1 {
    margin-top: 18px;
    font-size: clamp(34px, 11vw, 44px);
    line-height: 1.08;
  }

  .hero p.lede {
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    max-width: 290px;
    margin: 0 auto 44px;
  }

  .hero-ctas .btn {
    justify-content: center;
  }

  .sec-head {
    margin-bottom: 40px;
  }

  .sec-head h2 {
    font-size: 28px;
  }

  .sec-head.center {
    text-align: left;
  }

  .nucleo .nucleo-intro {
    padding: 28px 20px 30px;
  }

  .nucleo-col {
    padding: 28px 22px;
  }

  #pilares .pilares-intro {
    padding: 20px 20px 22px;
  }

  .pilares-intro p {
    text-align: left;
  }

  .pilares-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .pilar {
    min-height: auto;
    padding: 24px 20px;
  }

  .pilar-num {
    min-height: auto;
    margin-bottom: 20px;
  }

  .pilar p {
    text-align: left;
  }

  .pilares-fechamento {
    padding: 22px 20px;
  }

  .pilares-fechamento p {
    text-align: left;
    text-align-last: left;
  }

  .qs-heading {
    padding: 0 0 32px;
  }

  .qs-heading h2 {
    font-size: 27px;
  }

  .qs-grid {
    gap: 28px;
  }

  .qs-copy p {
    font-size: 15px;
    line-height: 1.65;
    text-align: left;
  }

  .qs-photo {
    aspect-ratio: 16 / 9;
  }

  .dash-grid {
    grid-template-columns: 1fr;
  }

  .dash-item {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 0;
  }

  .dash-item:first-child {
    border-top: 0;
  }

  .contato-grid {
    grid-template-columns: 1fr;
  }

  .contato-card {
    padding: 18px;
  }

  .contato-card p {
    line-height: 1.45;
  }

  footer {
    padding: 56px 0 28px;
  }

  .foot-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 40px;
  }

  .foot-grid > .foot-col:first-child {
    justify-content: flex-start;
  }

  .foot-logo {
    width: 160px;
  }

  .foot-bottom {
    flex-direction: column;
    gap: 14px;
  }

  .foot-address {
    max-width: none;
    text-align: left;
  }
}

/* ---------- PREFERÊNCIAS DE MOVIMENTO ---------- */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .btn:hover,
  .contato-card-link:hover {
    transform: none;
  }
}
