.row1{
  width: 100%;
  min-height: 100vh;
  background-image: url(/images/background.jpeg);
  background-attachment: fixed;
  background-clip: border-box;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom -70px left 0px;
  color: white;
  display: flex;
  gap: 10px;
}
.row1-1{
  height: max-content;
  width: max-content;
  padding: 40px;
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  gap: 30px;
  flex-direction: column;
  padding: 20px;
  background: #00000040;
  border-radius: 20px;
  text-align: justify;
  text-justify: inter-word;
}
.row1buttons a{
  text-align: center;
  text-justify: unset;
}
.row1 div h1 {
  font-size: 50px;
  max-width: 600px;
  line-height: 40px;
  text-align: center;
  color: white;
}
.row1 div p{
  max-width: 600px;
}
.row1buttons{
  display: flex;
  flex-direction: row;
  gap: 15px;
  width: 100%;
}
.row1buttons a{
  width: 100%;
  background: #4e3a1f;
  color: var(--color);
  padding: 10px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.row3{
  width: 100%;
  min-height: calc(100vh - 100px);
  padding: 10px;  
  background: var(--bg);
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}
.proflist{
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  width: 100%;
  justify-content: center;
  max-width: calc(330px * 3);
}
.pessoa{
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.imagempessoa{
  width: 300px;
  height: 450px;
  text-align: center;
  border-radius: 10px;
}
.nomepessoa{
  text-align: center;
}
.sobrepessoa{
  text-align: center;
}
.row4{
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.areasatuacao{
  display: grid;
  grid-template-columns: auto auto auto;
  grid-template-rows: auto auto auto;
  gap: 10px;
}
.areaatuacao{
  padding: 20px;
  border-radius: 5px;
  border: 3px solid transparent;
  background: white;
  color: black;
  pointer-events: all;
  transition: all .5s ease-in-out;
}
.areaatuacao img{
  filter: invert(0)
}
.areaatuacao:hover{
  background: #f1f1f1;
}
.areaatuacao, .areaatuacao2{
  display: flex;
  gap: 10px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 400px;
}
.areaatuacao h1{
  max-width: 300px;
  text-align: center;
}
.logo2{
  width: 100%;
}
.areaimagem{
  width: 100px;
  height: 100px;
}
.row5{
  padding: 10px;
}
.row5rows{
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.row5-1, .row5-2{
  width: 100%;
}
.row5-1{
  display: flex;
  gap: 5px;
  flex-direction: column;
  align-items: center;
}
.fc{
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 5px 10px;
  border: 1px solid var(--color);
  background: var(--color);
  color: var(--bg);
  border-radius: 5px;
  width: 50%;
}
.fc p{
  margin-left: auto;
}
.row2{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.leftbutton svg{
  transform: rotateZ(90deg);
  width: 32px;
  height: 32px;
  fill: var(--color)
}
.rightbutton svg{
  transform: rotateZ(270deg);
  width: 32px;
  height: 32px;;
  fill: var(--color)
}
.leftbutton, .rightbutton{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border: 1px solid var(--color);
  pointer-events: all;
  border-radius: 10px;
}
.leftbutton:hover, .rightbutton:hover{
  background: var(--color);
}
.leftbutton:hover svg, .rightbutton:hover svg{
  fill: var(--bg)
}
.card{
  display: flex;
  gap: 5px
}
.images{
  display: flex;
  gap: 10px;
  overflow: hidden;
  width: 400px;
}
.image{
  display: none;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity .5s ease, transform .5s ease, visibility 0s linear 0s;
}
.left {
  opacity: 0;
  transform: translateX(-100%);
}
.right {
  opacity: 0;
  transform: translateX(100%);
}
.image.selected{
  opacity: 1;
  transform: translateX(0);
  display: unset;
}
.circles{
  display: flex;
  gap: 5px;
  max-width: 400px;
  justify-content: center;
}
.circle{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid var(--color);
}
.circle.selected{
  background: var(--color)
}

@media (max-width: 700px) {
  .row1{
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url(/images/background.jpeg);
    background-size: auto;
  }
  .row1-1{
    max-width: 100%;
    min-width: 30%;
    max-width: 100%;
    padding: 40px;
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 30px;
    flex-direction: column;
    padding: 20px;
    background: rgba(1, 1, 1, 0.356);
    border-radius: 20px;
  }
  .row1-1 p{
    font-size: 80%;
  }
  .row1-1 h1{
    font-size: 80%;
  }
  .row5rows{
    flex-direction: column;
  }
  .fc{
    width: 100%;
  }
  .image{
    width: 300px;
    height: 200px;
  }
  .areasatuacao{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0px;
  }
  .logo2{
    display: none;
  }
  .areaimagem{
    width: 55px;
    height: 55px;
  }
  .areaatuacao{
    font-size: 10px;
    width: 40%;
    height: 206px;
    border-radius: 30px;
  }
  .areasatuacao{
    gap: 10px;
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    max-width: 100vw;
  }
  a.button span {
    display: none;
  }
}
@media (max-width: 400px) {
  .row1-1 p, .row1-1 a{
    font-size: 8px;
  }
  .row1-1 h1{
    font-size: 12px;
  }
}