body {
  margin: 0;
  padding: 0;
  background-color: #fff;
  max-width: 100%;
  overflow-x: hidden;
}
section {
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-items: center;
  justify-content: center;
}
section:nth-child(odd) {
  background-color: #f4f6f8;
  border-top: 0.25rem solid;
  border-bottom: 0.25rem solid;
  border-image: linear-gradient(to right, #949494, #e4e4e4) 1;
}
.container {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  box-sizing: border-box;
}
img {
  max-width: 100%;
}
.img-profile {
  mask-image: linear-gradient(to bottom, #000 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, #000 70%, transparent 100%);
  align-self: center;
}
.container-coluna {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 2rem;
  padding: 2rem;
  max-width: 100%;
  height: auto;
}
.container-coluna img {
  display: block;
  max-width: 100%;
  height: auto;
}
h1 {
  font-size: 3rem;
  font-family: "Playfair Display";
  color: #363636;
  margin: 0;
  font-weight: 800;
}
p {
  font-family: "Inter";
  font-size: 1.25rem;
  color: #5a5a5a;
  margin: 0;
}
a {
  font-family: "playfair display";
  text-decoration: none;
  font-weight: 600;
  font-size: 1.75rem;
  color: white;
  background: linear-gradient(to bottom, #c6a75e, #a18032);
  padding: 1rem 2rem;
  border-radius: 0.5rem;
}
a:hover {
  background: linear-gradient(to bottom, #a18032, #c6a75e);
}
.container-video {
  max-width: 1200px;
  margin: 4rem auto;
}
.areas-atuacao {
  display: grid;
  grid-template-columns: 100%;
  max-width: 1200px;
  width: 100%;
  justify-content: center;
  padding: 1rem;
  box-sizing: border-box;
}
.container-areas {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin: 3rem 0;
  box-sizing: border-box;
}
.atuacoes {
  background: #f4f6f8;
  border-radius: 1rem;
  padding: 1rem;
  box-sizing: border-box;
  border: 2px solid #f4f6f8;
  display: grid;
  text-align: center;
  justify-items: center;
}
.atuacoes:hover {
  border: 2px solid #3d3b3a;
}
.atuacoes img {
  width: 48px;
  height: 48px;
}
h2 {
  font-family: "Playfair Display";
  font-size: 2rem;
  text-align: center;
  color: #3d3b3a;
}
ul {
  list-style: inside circle;
  padding: 0 1rem;
  margin: 0;
  font-family: "Inter";
  text-align: center;
}
li {
  padding-bottom: 1rem;
  color: #5a5a5a;
}

.link-centralizado {
  margin-bottom: 3rem;
  text-align: center;
  width: 100%;
}
.link-centralizado a {
  display: inline-block;
}
.lista-diferenciais {
  font-size: 1.25rem;
}
footer {
  justify-items: center;
  background-color: #000;
  padding: 1rem;
}
footer .footer p {
  color: white;
  font-size: 1rem;
  text-align: center;
  padding-bottom: 1rem;
}

.fade-in {
  opacity: 0;
  transform: translateY(-30px);
  animation: aparecer 1s ease-out forwards;
}

@keyframes aparecer {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-scroll {
  opacity: 0;
  transform: translateY(-30px);
  transition:
    opacity 1s ease,
    transform 1s ease;
}

.fade-scroll.aparecer {
  opacity: 1;
  transform: translateY(0);
}
