* {
  box-sizing: border-box;
}

:root {
  --bg: #f5f7f8;
  --surface: #ffffff;
  --text: #162027;
  --muted: #66727a;
  --line: #dfe5e8;
  --brand: #16384a;
  --brand-dark: #0e2937;
  --accent: #b08a4a;
  --soft: #eaf0f3;
  --max: 1180px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 10px;
  z-index: 999;
  background: #fff;
  color: #000;
  padding: 10px 14px;
}

.skip-link:focus {
  left: 10px;
}

.topo {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.topo-inner {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.marca {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: var(--brand);
}

.marca-nome {
  font-size: 29px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.marca-sub {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--muted);
}

.status {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--brand);
  border: 1px solid #bdcbd2;
  background: var(--soft);
  padding: 10px 14px;
  border-radius: 3px;
  text-align: center;
}

.hero {
  background: linear-gradient(135deg, #16384a 0%, #0e2937 100%);
  color: white;
  padding: 86px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(310px, .75fr);
  gap: 54px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  color: var(--accent);
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.15em;
  font-weight: 800;
  margin-bottom: 13px;
}

.hero h1,
.section-heading h2,
.comunicado h2,
.sobre h2 {
  margin: 0;
  line-height: 1.12;
}

.hero h1 {
  font-size: clamp(36px, 5vw, 62px);
  max-width: 850px;
}

.lead {
  font-size: 23px;
  font-weight: 600;
  margin: 12px 0 26px;
  color: #dce7ec;
}

.hero p:not(.lead) {
  max-width: 780px;
  color: #e8eef1;
  font-size: 17px;
}

.acoes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 700;
  transition: .2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  filter: brightness(.94);
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,.38);
  color: #fff;
}

.btn-secondary:hover {
  background: rgba(255,255,255,.08);
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 30px;
  border-radius: 4px;
}

.hero .destaque {
  color: var(--text);
  padding: 34px;
  border: 0;
  box-shadow: 0 16px 42px rgba(0,0,0,.20);
}

.card-label {
  font-size: 11px;
  letter-spacing: .14em;
  font-weight: 800;
  color: var(--accent);
}

.destaque h2 {
  margin: 8px 0 12px;
  font-size: 26px;
  line-height: 1.2;
}

.destaque p {
  color: var(--muted) !important;
  font-size: 15px !important;
}

.divider {
  height: 1px;
  background: var(--line);
  margin: 24px 0;
}

.ato {
  font-size: 23px !important;
  color: var(--brand) !important;
  font-weight: 800;
  line-height: 1.3;
}

.ato small {
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
}

.info-section {
  padding: 82px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 38px;
}

.section-heading h2 {
  font-size: clamp(30px, 4vw, 44px);
  color: var(--brand-dark);
}

.section-heading p {
  color: var(--muted);
  font-size: 17px;
}

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

.icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--soft);
  color: var(--brand);
  font-weight: 800;
  border-radius: 50%;
  margin-bottom: 24px;
}

.card h3 {
  margin: 7px 0 12px;
  color: var(--brand-dark);
  font-size: 21px;
}

.card p,
.card address {
  color: var(--muted);
  font-style: normal;
  margin-bottom: 0;
}

.card a {
  color: var(--brand);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.comunicado {
  padding: 0 0 82px;
}

.comunicado-box {
  background: #fff;
  border-left: 5px solid var(--accent);
  padding: 34px 38px;
  display: grid;
  grid-template-columns: .75fr 1.5fr;
  gap: 42px;
  align-items: center;
  box-shadow: 0 8px 26px rgba(22,56,74,.07);
}

.comunicado h2 {
  color: var(--brand-dark);
  font-size: 30px;
}

.comunicado p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.sobre {
  background: var(--surface);
  padding: 82px 0;
  border-top: 1px solid var(--line);
}

.sobre-grid {
  display: grid;
  grid-template-columns: .75fr 1.5fr;
  gap: 80px;
}

.sobre h2 {
  font-size: 36px;
  color: var(--brand-dark);
}

.texto p {
  margin-top: 0;
  color: var(--muted);
  font-size: 17px;
}

.rodape {
  background: #0d222d;
  color: #fff;
  padding: 40px 0 22px;
}

.rodape-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.rodape-inner strong,
.rodape-inner span,
.rodape-contato a {
  display: block;
}

.rodape-inner span {
  color: #b9c5cb;
}

.rodape-contato {
  text-align: right;
}

.rodape-contato a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 3px;
}

.legal {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 28px;
  padding-top: 18px;
  color: #93a4ad;
  font-size: 12px;
}

.legal p {
  margin: 0;
}

@media (max-width: 850px) {
  .topo-inner,
  .rodape-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .topo-inner {
    padding: 22px 0;
  }

  .hero {
    padding: 62px 0;
  }

  .hero-grid,
  .cards,
  .comunicado-box,
  .sobre-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .sobre-grid {
    gap: 34px;
  }

  .cards {
    gap: 14px;
  }

  .comunicado-box {
    gap: 18px;
  }

  .rodape-contato {
    text-align: left;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .marca {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .hero h1 {
    font-size: 37px;
  }

  .acoes {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .card,
  .hero .destaque,
  .comunicado-box {
    padding: 24px;
  }
}
