:root{
  --cor-white:#FFFFFF;
  --cor-preto:#050505;
  --cor-amarelo:#C19F60;
}
html{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body{
  background: var(--cor-preto) url(img/bg.jpg) no-repeat center;
  background-size: cover;
  font-family: 'Inter', sans-serif;
  height: 100vh;
}
a{
  transition: .5s ease;
  color: var(--cor-white);
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  text-decoration: none;
}
a:hover{
  color: var(--cor-amarelo);
  transition: .5s ease;
}
svg path{
  transition: .5s ease;
}
a:hover svg path{
  stroke: var(--cor-amarelo);
}
.conteudos{
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
img{
  width: 100%;
  max-width: 370px;
  height: auto;
  margin-bottom: 25px;
}
h1{
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  line-height: 27px;
  color: var(--cor-amarelo);
  margin-bottom: 40px;
}
.contatos{
  display: flex;
  gap: 24px;
  margin-bottom: 30px;
}
.contatos span a{
  display: flex;
  gap: 12px;
  color: var(--cor-white);
}

.endereco{
  display: flex;
  gap: 24px;
  margin-bottom: 30px;
}
.endereco span{
  display: flex;
  gap: 12px;
  color: var(--cor-white);
    font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  text-decoration: none;
}
h2{
  font-style: normal;
font-weight: 800;
font-size: 22px;
line-height: 27px;
/* identical to box height */
padding: 50px;
letter-spacing: 0.075em;
text-transform: uppercase;
color: var(--cor-amarelo);
}
@media (max-width:991px){
  body{
    background-size: auto 124% ;
  }
  .conteudos{
    padding: 32px;
    width: 85%;
  }
  img{
    max-width: 80%;
  }
  .contatos{
    flex-direction: column;
    align-items: center;
  }
  h1, h2{
    text-align: center;
  }
  .endereco span{
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}