@media (max-width: 768px) {
  .acomodacao {
    flex-direction: column;
    height: auto;
  }

  .acomod-imagem, 
  .acomodacao-content {
    flex: unset;
    width: 100%;
    height: 250px;
  }

  .acomodacao-content {
    padding: 1.5rem;
  }
}

body {
    /*font-family: "Changa One", sans-serif;*/
    margin: 0;
}

/*BACKGROUND*/
#background {
  background-image: url(images/56d8144cbded6b64756f769dfd17493fdca80df2.jpg);
  height: 100vh;
  width: 100%;
  background-size: cover;
  background-position: center center;
  position: fixed;
  background-repeat: no-repeat;
  position: absolute;
  z-index: -1; /*isto é tipo fazer 'send to back' d imagem no illustrator*/

}

/*TÍTULO*/
.titulo-container {
  position: relative;
  height: 100vh; /*para o container ocupar a altura total da viewport*/
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.titulo {
  color: white;
  font-family: "Josefin Slab", sans-serif;
  position: absolute;
  text-align: center;
  margin: 0;
  transform: translateZ();
}

/*NAVBAR*/
.navbar {
  position: absolute;
  top: 20px;
  right: 50px;
  z-index: 10;
}

.navbar-nav {
  gap: 30px;
}

.nav-link {
  color: #1e1e1e;
  font-family: "Jura", sans-serif;
  font-weight: 400;
  font-weight: bold;
  letter-spacing: 1px;
  transition: 0.3s;
  font-optical-sizing: auto;
}

.nav-link:hover {
  color: #fff;
}



/*(ISTO)*/
.container-fluid {
  display: flex;
  justify-content: flex-end;
  flex-direction: row-reverse;
}

/*===========================================================================================*/

/*SECTION TRABALHOS REMOTOS*/
.trabalhos-remotos {
  height: 569px;
  background-color: #e6dfc8; /*background-color: #b49b2c; */
  padding: 4rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Jura", sans-serif;
}

.flex-jobs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 80%;
  max-width: 1100px;
  position: relative;
}

/*lado esquerdo*/
.lado-esquerdo {
  flex: 1;
  padding-right: 3rem;
}

.frase {
  font-size: 1.8rem;
  color: #000;
  line-height: 1.6;
  letter-spacing: 2px;
  text-align: left;
}

frase span {
  color: #b49b2c;
  font-weight: 600;
}

/*Linha Divisória*/
.linha-dividir {
  width: 1px;
  height: 200px;
  background-color: #6b6b6b;
}

/*lado direito*/
.lado-direito {
  flex: 1;
  text-align: center;
  position: relative;
}

.titulo-jobs {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #000;
  /* font-style: bold; */
}

/*Listas*/
.listas-jobs {
  display: flex;
  justify-content: center;
  gap: 3rem;
}

.lista-jobs {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.lista-jobs li {
  font-size: 1rem;
  line-height: 1.8;
}

/*DECORAÇÃO*/
.canto {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 3px solid #000;
}

.top-left {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}

.top-right {
  bottom: 0;
  right:  0;
  border-left: none;
  border-top: none;
}


/*===========================================================================================*/

/* SECTION ACOMODAÇÃO*/

.acomodacao {
  display: flex;
  width: 100%;
  height: 515px;
  background-color: beige;
}

/*IMAGEM*/
.acomod-imagem {
  flex: 1;
  overflow: hidden;
}

.acomod-imagem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*TEXTO À DIREITA*/
.acomodacao-content {
  flex: 1;
  background-color: #000;
  color: #fff;
  font-family: "Jura", sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.acomodacao-content p {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  line-height: 1.4;
}

/*BOTÃO DESCOBRIR*/
.acomodacao-btn {
  display: inline-block;
  padding: 1rem 3rem;
  background-color: #000; /*fundo preto inicial*/
  color: #fff; /*texto branco*/
  border: 2px solid #fff; /*borda branca*/
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all .3s ease;
  cursor: pointer;


}

.acomodacao-btn:hover {
  background-color: #fff; /*fundo branco de hover*/
  color: #000; /*texto preto do hover*/
  border-radius: 2px solid #000; /*borda preta do hover*/
  transform: scale(1.05);
}

/*===========================================================================================*/





/*SECTION LOCAIS*/
.locaisExp {
  display: flex;
  width: 100%;
  height: 541px;
}

.image-locais {
  flex: 1;
  overflow: hidden; /*vai cortar o excesso da imagem*/
}

.image-locais img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/*bloco de texto*/
.locais {
  flex: 1;
  background-color: #e6dfc8;
  font-family: "Jura", sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.locais.content {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

/*botão*/
.locais-button {
  display: inline-block;
  padding: 1rem 3rem;
  background-color: #e6dfc8; /*bege*/
  color: #000;
  border: 2px solid #000;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all .3s ease;
  cursor: pointer;
}

.locais-button:hover {
  background-color: #fff;
  color: #e6dfc8;
  border: 2px solid #e6dfc8;
  transform: scale(1.05);
}


/* invertendo a ordem */
.locaisExp {
  flex-direction: row;
}


/*para usar a imagem esquerda e texto na direita posso usar flex-direction: row-reverse*/


/*SECTION BLOG*/

.sectionBlog {
  position: relative;
  height: 691px;
  width: 100%;
  overflow: hidden;
}

.sectionBlog .imageQuatro img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #000;
  color: #fff;
  padding: 15px 40px;
  font-size: 18px;
  text-decoration: none;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.blog-btn:hover {
  background-color: #333;
}



/*FOOTER*/

.footer {
  height: 266px;
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
  font-family: "Jura", sans-serif;
}

.footer-title {
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.footer-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-icons .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #555;
  color: #000;
  width: 45px;
  height: 45px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.footer-icons .icon:hover {
  background-color: #fff;
  color: #000;
  transform: translateY(-3px);
}

.footer-credit {
  font-size: 0.8rem;
  color: #aaa;
  margin-top: 0.5rem;
}







