/* PAGE */
header{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  padding:0px 50px; /* aumenta o espaço */
  display:flex;
  justify-content:center;
  align-items:center;
  z-index:1000;
}


.accommodation-hero{
  position:relative;
  height:90vh;
  overflow:hidden;
}

.accommodation-hero img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.accommodation-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.45);
}

.accommodation-hero-content{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  color:#fff;
  z-index:2;
  padding:20px;
}

.accommodation-hero-content h1{
  font-family:'Cormorant Garamond', serif;
  font-size:82px;
  font-weight:300;
  margin-bottom:20px;
}

.accommodation-hero-content p{
  max-width:600px;
  line-height:1.8;
}


/* ABOUT */

.hotel-about{
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  background:#f7f5f0;
}

.hotel-about-image{
  padding:60px;
}

.hotel-about-image img{
  width:100%;
  height:70vh;
  object-fit:cover;
  border-radius:14px;
}

.hotel-about-content{
  padding:80px;
}

.hotel-about-content h2{
  font-family:'Cormorant Garamond', serif;
  font-size:52px;
  font-weight:300;
  margin-bottom:24px;
}

.hotel-about-content p{
  line-height:1.9;
  margin-bottom:20px;
  color:#444;
}


/* FEATURES */

.hotel-features{
  padding:100px 80px;
  background:#fff;
}

.section-head{
  text-align:center;
  margin-bottom:60px;
}

.section-head h2{
  font-family:'Cormorant Garamond', serif;
  font-size:52px;
  font-weight:300;
}

.features-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

.feature-card{
  padding:40px;
  border:1px solid rgba(0,0,0,.08);
  text-align:center;
  transition:.3s;
}

.feature-card:hover{
  transform:translateY(-6px);
}

.feature-card h3{
  margin-bottom:15px;
}


/* GALERIA */

.hotel-gallery{
  padding:100px 80px;
  background:#f7f5f0;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}

.gallery-grid img{
  width:100%;
  height:380px;
  object-fit:cover;
  border-radius:14px;
  transition:.4s;
}

.gallery-grid img:hover{
  transform:scale(1.02);
}

.hero-hotel-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  margin-top:35px;

  height:56px;

  padding:0 34px;

  background:#9a8054;

  color:#fff;

  text-decoration:none;

  letter-spacing:2px;

  text-transform:uppercase;

  font-size:12px;

  transition:.3s;
}

.hero-hotel-btn:hover{
  transform:translateY(-2px);
  background:#b39563;
}
/* CTA */

.hotel-cta{
  padding:120px 40px;
  background:#ece6d8;
  color:#111;
  text-align:center;
}

.hotel-cta h2{
  font-family:'Cormorant Garamond', serif;
  font-size:60px;
  font-weight:300;
  margin-bottom:20px;
}

.hotel-cta p{
  max-width:700px;
  margin:auto;
  margin-bottom:35px;
  line-height:1.9;
}
.hotel-cta-content{
  max-width:800px;
  margin:auto;
}

/* RESPONSIVE */
@media(max-width:900px){
  .accommodation-hero{
    height:70vh;
  }
}

@media(max-width:600px){
  .accommodation-hero{
    height:60vh;
  }
}
@media(max-width:600px){
  .accommodation-hero-content h1{
    font-size:34px;
    line-height:1.1;
  }

  .accommodation-hero-content p{
    font-size:15px;
  }
}

@media(max-width:900px){
  .hotel-numbers{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media(max-width:600px){
  .hotel-numbers{
    grid-template-columns:1fr;
  }
}
@media(max-width:900px){
  .hotel-about-image{
    padding:30px;
  }

  .hotel-about-image img{
    height:400px;
  }
}

@media(max-width:600px){
  .hotel-about-image{
    padding:20px;
  }

  .hotel-about-image img{
    height:300px;
  }
}
@media(max-width:900px){

  .hotel-features,
  .hotel-gallery{
    padding:70px 35px;
  }

  .hotel-about-content{
    padding:40px;
  }

}

@media(max-width:600px){

  .hotel-features,
  .hotel-gallery{
    padding:60px 25px;
  }

}
@media(max-width:900px){

  .hotel-about{
    grid-template-columns:1fr;
  }
 
  .hotel-about-content{
    padding:40px;
  }

  .features-grid{
    grid-template-columns:1fr;
  }

  .gallery-grid{
    grid-template-columns:1fr;
  }

  .accommodation-hero-content h1{
    font-size:52px;
  }

  .hotel-cta h2{
    font-size:42px;
  }
}

/* NUMBERS */

.hotel-numbers{
  display:grid;
  grid-template-columns:repeat(4, 1fr);

  background:#f2efe8;

  color:#111;
}

.number{
  padding:50px 20px;

  text-align:center;

  border-right:1px solid rgba(0,0,0,.08);
}

.number:last-child{
  border-right:none;
}

.number span{
  display:block;

  font-family:'Cormorant Garamond', serif;

  font-size:58px;

  font-weight:300;

  color:#9a8054;

  margin-bottom:12px;

  line-height:1;
}

.number p{
  font-size:12px;

  letter-spacing:2px;

  text-transform:uppercase;

  color:#666;
}

@media(max-width:900px){

  .hotel-numbers{
    grid-template-columns:repeat(2, 1fr);
  }

  .number{
    border-right:none;
    border-bottom:1px solid rgba(255,255,255,.08);
  }

  .number span{
    font-size:42px;
  }

}

@media(max-width:600px){

  .hotel-numbers{
    grid-template-columns:1fr;
  }

}

.fade-item{
  opacity:0;
  transform:translateY(40px);
  transition:0.8s ease;
}

.fade-item.show{
  opacity:1;
  transform:translateY(0);
}