/*Base*/
body {
  margin: 0;
  font-family: "Jura", sans-serif;
  background-color: #d7d0a8;
  color: #2b2b2b;
}

/*AQUI*/
.page-acomodacao {
  width: 100%;
  height: 500px;
  background-image: url(images/df91b617ee90d6e829d46a02b68192a91cea73a0.jpg);
  background-size: cover;
  background-position: center;
  position: fixed;
  background-repeat: no-repeat;
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*opcional - overlay escuro para melhorar legibilidade do título*/
.page-acomodacao::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1
}


/* TÍTULO  */
.container-titulo {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
   /*height: 100vh;  para o container ocupar a altura total da viewport*/
}

.titulo-acomodacao {
  color: #fff;
  font-family: "Josefin Slab", sans-serif;
  font-size: 100px; /*tava 80px*/
  font-weight: 900;
  text-align: center;
  margin: 0;
  pointer-events: auto;
}



/*===NAVBAR===*/
.navbar {
  position: absolute;
  top: 20px; /*tava 12px*/
  /*left: 0; não precisa left*/
  right: 50px; /*tava 0*/
  z-index: 5; /*tentar 10?*/
}

.navbar-nav {
  gap: 30px;
}

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

.nav-link:hover {
  
  color: #1e1e1e;
}


/*SECTION CARDS*/
.section-cards {
  padding: 80px 0;
  background-color: #d7d0a8;
  /*background: transparent; mantem o fundo da imagem geral*/
}  

.section-cards .container {
  max-width: 1200px;
}

.section-cards .row {
  justify-content: center;
}


.section-cards .card {
  width: 100%;
  max-width: 350px;
  background-color: #efe8cc;
  border: none;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  margin: 0 auto;
}

.section-cards .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.18);
}

/*imagem do card*/
.section-cards .card-img-top {
  width: 100%;
  height: 170px; /*ajustaaaaaar*/
  object-fit: cover;
  /* display: block; */
}

.section-cards .card-body {
  padding: 18px;
}

.section-cards .card-tittle {
  font-family: "Josefin Slab", serif;
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #242424;
}

.section-cards .card-text {
  font-size: 0.95rem;
  color: #4a4a4a;
  line-height: 1.4;
  margin-bottom: 14px;
}

.section-cards .btn {
  background-color: #000;
  color: #fff !important;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  text-transform: uppercase;
  font-weight: 600;
  transition: background-color 0.2s ease, transform 0.12s ease;
  display: inline-block;
}

.section-cards .btn:hover {
  background-color: #222;
  transform: translateY(-2px);
}


/*===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;
}



