* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Inter, sans-serif;
  background: #f7f5f1;
  color: #2c2c2c;
  line-height: 1.6;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  z-index: 1000;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 16px;
}

.header-inner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 700;
  font-size: 1.4rem;
  color: #8b6f47;
}

.nav a {
  margin-left: 18px;
  text-decoration: none;
  color: #2c2c2c;
  font-weight: 600;
}

.nav .cta {
  background: #8b6f47;
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
}

/* HERO */
.hero {
  height: 100vh;
  padding-top: 80px;
  background: url("https://images.unsplash.com/photo-1501117716987-c8e1ecb210a9") center/cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}

.hero-content {
  position: relative;
  color: #fff;
  text-align: center;
  max-width: 700px;
  padding: 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 16px;
}

/* BOTÕES */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
}

.btn-primary {
  background: #d4a056;
  color: #fff;
}

.btn-secondary {
  background: #8b6f47;
  color: #fff;
}

/* SEÇÕES */
.section {
  padding: 80px 16px;
  text-align: center;
}

.section.light {
  background: #eeeae2;
}

.section h2 {
  font-size: 2.2rem;
  color: #8b6f47;
  margin-bottom: 40px;
}

/* QUARTO */
.room {
  max-width: 900px;
  margin: auto;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
}

/* CARROSSEL CSS */
.carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.carousel img {
  min-width: 100%;
  height: 380px;
  object-fit: cover;
  scroll-snap-align: start;
}

/* INFO */
.room-info {
  padding: 32px;
}

.amenities {
  list-style: none;
  margin: 16px 0;
}

.amenities li {
  margin-bottom: 8px;
}

/* FEATURES */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 16px;
  max-width: 900px;
  margin: auto;
}

.feature {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
}

/* FORM */
.form {
  max-width: 500px;
  margin: auto;
}

.form input,
.form textarea,
.form button {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.form button {
  background: #8b6f47;
  color: #fff;
  font-weight: 700;
}

/* MAPA */
iframe {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  border: none;
}

/* WHATSAPP */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: #fff;
  padding: 14px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
}

/* FOOTER */
.footer {
  padding: 24px;
  background: #fff;
  text-align: center;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .carousel img {
    height: 260px;
  }
}
