header {
  background-color: #d2d3d5;
  padding: 5px 0;
}

header .menu {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 30px;
}

header .menu a {
  font-family: 'nunito sans';
  font-weight: 600;
  color: #4a4b4d;
  text-decoration: none;
}

header .menu button {
  width: 35px;
  height: 35px;
  border: none;
  padding: 0;
  background: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

header .social {
  background-color: #fcfcfa;
  display: inline-flex;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}

header .menu svg,
header .social svg {
  width: 32px;
  height: 32px;
}

header .menu svg,
header .social svg {
  fill: #4a4b4d;
}

.p-itens {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: column;
  gap: 15px;
  padding-top: 30px;
}

.p-item {
  width: calc(100% - 10px);
  height: 60px;
  background-color: #bfbfbf;
  background: linear-gradient(135deg, #b1b1b1 0%, #bfbfbf 50%);
  border-radius: 0 40px 40px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding-left: 10px;
  font-weight: 600;
  font-size: 1.1rem;
  font-family: 'poppins';
}

.p-item img {
  height: 70px;
  position: absolute;
  right: -10px;
}

.painel {
  background-color: #16131a;
  background: linear-gradient(135deg, #4a4152 0%, #16131a 50%);
  color: #fafafc;
  padding: 35px 20px;
}

.painel .header {
  font-weight: 600;
  font-size: 2rem;
  font-family: 'poppins';
  margin-bottom: 20px;
}

.painel p {
  font-weight: 600;
  font-size: 1.3rem;
  font-family: 'poppins';
}

.btn-light {
  display: table;
  font-weight: 600;
  font-size: 1rem;
  font-family: 'poppins';
  text-transform: uppercase;
  letter-spacing: .1rem;
  margin: 0 auto;
}

.aspas {
  color: #084D6E;
  font-weight: 600;
  font-size: 2rem;
  line-height: 2.4rem;
  font-family: 'poppins';
  padding: 20px 0;
}

.aspas-icon-a {
  width: 100px;
  height: 100%;
  display: flex;
  align-items: flex-start;
}

.aspas-icon-a img {
  width: 100%;
}

.aspas-icon-b {
  width: 100px;
  height: 100%;
  display: flex;
  align-items: flex-end;
}

.aspas-icon-b img {
  width: 100%;
}

.autor {
  background-color: #16131a;
  background: linear-gradient(135deg, #4a4152 0%, #16131a 50%);
  height: 400px;
  display: flex;
  justify-content: space-around;
  padding: 20px 0 0 0;
}

.autor .foto {
  height: 100%;
}

.autor img {
  object-fit: cover;
  height: 100%;
}

.autor .sobre {
  color: #fcfcfa;
  font-weight: 600;
  font-size: 2rem;
  font-family: 'poppins';
  line-height: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  max-width: 600px;
}

.autor span {
  display: block;
  font-size: 1rem;
  margin-bottom: 30px;
}

.autor p {
  display: inline-block;
  font-size: 1.4rem;
  border: solid 2px #f5811e;
  padding: 2px 5px;
  max-width: 300px;
}

.contato {
  font-weight: 500;
  font-size: 1.1rem;
  font-family: 'poppins';
  color: #000;
}

.contato .header {
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
}

.contato .social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-direction: row;
}

.contato .social a {
  color: #4a4152 !important;
  text-decoration: none !important;
}

.contato .social svg {
  border: solid 1px #4a4152;
  border-radius: 7px;
  width: 32px;
  height: 32px;
}

.contato .social svg {
  fill: #084D6E;
}

footer {
  margin-top: 80px;
  background-color: #16131a;
  color: #fcfcfa;
}

@media (max-width: 520px) {
  .autor {
    padding: 20px 20px 0 20px;
    height: 820px;
    flex-direction: column-reverse;
  }

  .autor .foto {
    height: auto;
    width: 100%;
  }

  .autor img {
    object-fit: cover;
    height: auto;
    width: 100%;
  }

  .p-itens {
    gap: 20px;
    padding-top: 20px;
  }

  .contato .social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-direction: column;
  }
}