:root {
  --fundo-principal: #E9E9DD;
  --marom: #AB8868;
  --verde: #C7CCB4;
  --texto: #2f2f2f;
  --fundo-verde: #889D96;
  --fonte-principal: 'Montserrat', sans-serif;
}

body {
  margin: 0;
  font-family: var(--fonte-principal);
  background-color: var(--fundo-principal);
  color: var(--texto);
}


header {
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  background-color: var(--marrom);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 60px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 100;
}


header .logo {
  display: flex;
  position: absolute;
  overflow: visible;
}

/* Logo alinhada à esquerda */
header .logo img {
  height: 250px;
  width: auto;
  transform: translateY(10px);

}


/* Centralização do menu */
header nav {
  flex: 1;
  text-align: center;
}

header nav ul {
  list-style: none;
  display: inline-flex;
  gap: 40px;
  margin: 0;
  padding: 0;
}

header nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s;
}

header nav ul li a:hover {
  color: var(--verde);
}

/* Espaço à direita caso queira botões depois (ex: login) */
.header-right {
  width: 100px;
}

.banner {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4),
      rgba(0, 0, 0, 0.4)),
    url('img/bannerfloresta.png');
  background-size: cover;
  background-position: center;
  height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #f5deb3;
  /* dourado suave */
  padding: 0 20px;
}

.banner-content h1 {
  font-size: 2.5em;
  margin: 0;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.banner-content p {
  font-size: 1.3em;
  margin-top: 10px;
  color: #fffaf0;
}

.hero-content {
  text-align: center;
  align-items: center;
  background-color: #E9E9DD;
  align-content: center;
  height: 200px;
}

.hero-content h2 {
  font-size: 30px;
  color: var(--texto);
}

.hero-content p {
  font-size: 20px;
  color: var(--texto);
}

.hero-content a {
  font-size: 18px;
  color: white;
}

.titulo-chales {
  text-align: center;
  align-content: center;
  background-color: var(--fundo-verde);
  width: 95%;
  height: 150px;
  font-size: 45px;
  padding: 20px 0;
  color: #fcf6e6;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
}

.chalets-container {
  background-color: #E9E9DD;
  padding-top: 30px;

}

.chalets-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #AB8868;
  border-radius: 15px;
  margin: 20px auto;
  max-width: 1000px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;

}

.chalets-card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.chalets-card img {
  width: 600px;
  height: 650px;
}

.columns-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  padding: 20px 30px;
}

.columns-text h3 {
  font-size: 48px;
  color: #fcf6e6;
  font-weight: bold;
}

.columns-text p {
  font-size: 22px;
  color: #E9E9DD;
  line-height: 1.5;
  font-style: italic;
}

.columns-text span {
  font-size: 22px;
  font-weight: bold;
  color: var(--texto);
}

.btn {
  background-color: #2e5d34;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.3s;
}

.columns-text button:hover {
  background-color: #3b7c43;
}



section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

section.visivel {
  opacity: 1;
  transform: translateY(0);
}

.btn-reserve.destaque {
  box-shadow: 0 0 15px #00b7ff;
}

.about-content {
  background-color: var(--verde);
  margin: 50px auto;
  overflow: hidden;
  border-bottom: solid 5px #3b7c43;
}

.titulo-sobre {
  padding: 0px 30px;
  color: var(--texto);
  text-align: left;
  font-size: 35px;
  font-style: oblique;
}

.about-text {
  text-align: left;
  padding: 0px 30px;
  font-size: 20px;
}

.contact-text {
  background-color: var(--fundo-verde);
  height: 150px;
  text-align: center;
  align-content: center;
  font-size: 18px;
  color: #fcf6e6;
}

.booking-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #AB8868;
  border-radius: 15px;
  margin: 20px auto;
  max-width: 1000px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.booking-content:hover {
    transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.titlle-booking {
  font-size: 38px;
  text-align: center;
  color: #fcf6e6;
  padding: 30px;
}

.table-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  background-color: var(--fundo-principal);
  color: var(--texto);
  justify-content: center;
  align-items: flex-start;
  align-content: flex-end;
  gap: 10px;
  padding: 20px 30px;
}

.name-reserve {
  font-family: var(--fonte-principal);
  font-size: 25px;
  font-style: bold;
  color: var(--texto);
}

.table-form button {
  background-color: #2e5d34;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.3s;
}