:root {
  --off: #FAFAF7;
  --areia: #E8E5DE;
  --areia-fundo: #F2F0EA;
  --grafite: #2D2D2D;
  --grafite-claro: #6B6B6B;
  --petroleo: #3D8B8B;
  --petroleo-escuro: #2F6E6E;
  --verde: #5FA88A;
  --verde-escuro: #4E9174;
  --branco: #FFFFFF;
  --r: 8px;
  --s2: 16px;
  --s3: 24px;
  --s4: 32px;
  --s5: 48px;
  --s6: 64px;
  --s7: 96px;
  --display: 'Hanken Grotesk', system-ui, sans-serif;
  --texto: 'Inter', system-ui, -apple-system, sans-serif;
  --max: 1120px;
  --borda: 1px solid var(--areia);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--off);
  color: var(--grafite);
  font-family: var(--texto);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--s3);
}

h1,
h2,
h3 {
  font-family: var(--display);
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -.03em;
}

h2 {
  font-size: 1.25rem;
  margin: var(--s5) 0 var(--s2);
}

h3 {
  font-family: var(--texto);
  font-size: 1.0625rem;
  margin: var(--s4) 0 10px;
}

p {
  margin: 0;
}

.lead {
  font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
  color: var(--grafite-claro);
  line-height: 1.6;
  margin-top: var(--s3);
}

.eyebrow {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--petroleo);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--s2);
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--petroleo);
  flex: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--texto);
  font-size: .9375rem;
  font-weight: 600;
  line-height: 1;
  padding: 16px 24px;
  border-radius: var(--r);
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}

.btn--acao {
  background: var(--verde);
  color: var(--branco);
}

.btn--acao:hover {
  background: var(--verde-escuro);
}

.btn:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--petroleo);
  outline-offset: 3px;
}

.topo {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 247, .92);
  backdrop-filter: blur(8px);
  border-bottom: var(--borda);
}

.topo__interno {
  display: flex;
  align-items: center;
  gap: var(--s3);
  height: 72px;
}

.marca {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex: none;
}

.marca img {
  height: 26px;
  width: auto;
}

.marca span {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -.02em;
}

.topo nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: auto;
  font-size: .875rem;
  font-weight: 500;
  color: var(--grafite-claro);
}

.topo nav a {
  text-decoration: none;
  padding: 8px 0;
}

.topo nav a:hover,
.topo nav a[aria-current="page"] {
  color: var(--grafite);
}

.topo .btn {
  padding: 12px 18px;
  margin-left: var(--s3);
  white-space: nowrap;
}

.rotulo-curto {
  display: none;
}

.hero-legal {
  padding: var(--s7) 0 var(--s5);
}

.atualizado {
  margin-top: var(--s3);
  font-size: .8125rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--grafite-claro);
}

.aviso {
  margin-top: var(--s4);
  padding: var(--s3);
  border: var(--borda);
  border-radius: var(--r);
  background: var(--branco);
  font-size: .9375rem;
  color: var(--grafite-claro);
}

.aviso dt {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--petroleo);
  margin-top: 14px;
}

.aviso dt:first-child {
  margin-top: 0;
}

.aviso dd {
  margin: 4px 0 0;
  color: var(--grafite);
}

.abas {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: var(--s5) 0 var(--s4);
}

.abas [role="tab"] {
  font-family: var(--texto);
  font-size: .875rem;
  font-weight: 600;
  line-height: 1;
  padding: 12px 16px;
  border-radius: var(--r);
  border: 1px solid var(--areia);
  background: var(--branco);
  color: var(--grafite-claro);
  cursor: pointer;
}

.abas [role="tab"][aria-selected="true"] {
  background: var(--petroleo);
  color: var(--branco);
  border-color: var(--petroleo);
}

.legal {
  max-width: 720px;
  padding-bottom: var(--s7);
}

.legal p,
.legal li {
  color: var(--grafite-claro);
}

.legal p + p {
  margin-top: 14px;
}

.legal ul,
.legal ol {
  margin: 12px 0 0;
  padding-left: 1.25em;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal strong {
  color: var(--grafite);
  font-weight: 600;
}

.legal a {
  color: var(--petroleo);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.legal a:hover {
  border-color: var(--petroleo);
}

.rodape {
  background: var(--grafite);
  color: var(--off);
  padding: var(--s6) 0 var(--s4);
}

.rodape__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--s5);
}

.rodape img {
  height: 24px;
  width: auto;
}

.rodape__tag {
  margin-top: var(--s3);
  color: rgba(250, 250, 247, .62);
  font-size: .9375rem;
  max-width: 34ch;
}

.rodape h4 {
  margin: 0 0 var(--s2);
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(250, 250, 247, .5);
  font-weight: 600;
  font-family: var(--texto);
}

.rodape ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rodape a {
  color: rgba(250, 250, 247, .82);
  text-decoration: none;
  font-size: .9375rem;
}

.rodape a:hover {
  color: var(--off);
}

.rodape__base {
  margin-top: var(--s6);
  padding-top: var(--s3);
  border-top: 1px solid rgba(250, 250, 247, .14);
  display: flex;
  justify-content: space-between;
  gap: var(--s3);
  flex-wrap: wrap;
  font-size: .8125rem;
  color: rgba(250, 250, 247, .5);
}

@media (max-width:720px) {
  body {
    font-size: 16px;
  }

  .hero-legal {
    padding: var(--s5) 0 var(--s4);
  }

  .topo nav {
    display: none;
  }

  .rotulo-longo {
    display: none;
  }

  .rotulo-curto {
    display: inline;
  }

  .rodape__grid {
    grid-template-columns: 1fr;
    gap: var(--s4);
  }

  .abas [role="tab"] {
    flex: 1 1 calc(50% - 8px);
  }
}
