@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200..800;1,200..800&display=swap');

/*Resolução de tela 1920x1080*/

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
    font-family: Montserrat;
}

.material-symbols-outlined {
  color: black;
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
}

header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*background-color: #5085A8;*/
    height: 11vh;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.116);
    z-index: 10;
    position: relative;
    background-image: url(../assets/pexels-pixabay-358636.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    background-attachment: fixed;
}

#redesheader{
    display: flex;
    justify-content: space-evenly;
    width: 13vw;
    margin-right: 15px;
}

#redesheader > img{
    height: 19px;
}

#headerlogo{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 45px;
    justify-content: space-between;
}

#headerlogo > img{
    height: 20px;
}

#headercontainer{
    display: flex;
    width: 600px;
    justify-content: start;
    align-items: center;
    margin-left: 40px;
    font-weight: 300;
}

section#hero{
    background-image: url(../assets/pexels-pixabay-358636.jpg);
    height: 658px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    display: flex;
    background-attachment: fixed;
    transition: 0.5s;
}

#conteudo{
    display: flex;
    flex-direction: column;
    height: 400px;
    width: 550px;
    margin-top: 50px;
    margin-left: 100px;
    font-weight: 400;
    justify-content: space-evenly;
    padding-left: 25px;
    transition: 0.5s;
}

#conteudo > h1{
    font-size: 3em;
    transition: 0.5s;
}

button{
    height: 45px;
    width: 200px;
    background-color: transparent;
    font-family: Montserrat;
    border: 1px solid black;
    transition: 0.5s;
}

#herobotoes > #opcao02{
    border: none;
    text-decoration: underline;
}

.botaopadrao:hover{
    text-decoration: underline;
}

#herobotoes > #opcao02:hover{
    text-decoration: none;
}

#sessaodestaque{
    height: 658px;
    background-color: white;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    margin-top: 100px;
    overflow: hidden;
    transition: 0.5s;
}

#conteudodestaque{
    display: flex;
    flex-direction: column;
    height: 400px;
    width: 450px;
    margin-top: 50px;
    margin-left: 70px;
    font-weight: 400;
    justify-content: space-evenly;
    padding-left: 25px;
    transition: 0.5s;
}

#sessaodestaque > img{
   height: 500px;
   z-index: 10;
   transition: 0.5s;
}

.fade-esquerda {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 1s ease-out;
}

.fade-direita {
  opacity: 0;
  transform: translateX(100px);
  transition: all 1s ease-out;
}

.ativo {
  opacity: 1;
  transform: translateX(0);
}

#sessaocasas{
    display: flex;
    flex-direction: column;
    background-color: white;
    height: 700px;
    align-items: center;
    justify-content: space-evenly;
}

#sessaocasas > h2{
    margin: 40px;
}

#imagenscasas > img {
    height: 400px;
    margin: 15px;
}

#partebaixo{
    display: flex;
    margin: 40px;
    width: 600px;
    justify-content: space-between;
    align-items: center;
}

.aparecer-cima {
  opacity: 0;
  transform: translateY(-100px);
  transition: all 1s ease-out;
}

.aparecer-cima.ativo {
  opacity: 1;
  transform: translateY(0);
}