/* === ESTILO GERAL === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #faf0dc; /* bege claro */
  color: #3e2c1c; /* marrom escuro */
  line-height: 1.6;
}

/* === CABEÇALHO === */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 60px;
  background-color: transparent;
}

header h1 {
  font-size: 32px;
  font-weight: 700;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  text-decoration: none;
  color: #3e2c1c;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #c36a36; /* laranja terroso */
}

/* === SEÇÃO HERO === */
.hero {
  background: url("assets/explore.jpg") center/cover no-repeat;
  border-radius: 16px;
  margin: 0 auto;
  width: 90%;
  max-width: 1200px;
  height: 500px;
  display: flex;
  align-items: center;
  color: #fff;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 16px;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-left: 60px;
  max-width: 500px;
}

.hero-content h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 25px;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: #c36a36;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #a45528;
}

/* === SEÇÃO SOBRE NÓS === */
#sobrenós {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

#sobrenós h1 {
  font-size: 32px;
  font-weight: 700;
  flex: 1 1 100%;
  margin-bottom: 20px;
}

#sobrenós p {
  font-size: 18px;
  max-width: 700px;
  flex: 1;
}

/* === SEÇÃO DESTINOS === */
#destinos {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 60px;
}

#destinos h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
}

.destinos-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  align-items: stretch;
}

.card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card h3 {
  padding: 15px 0;
  color: #3e2c1c;
  font-size: 18px;
}

/* === SEÇÃO CONTATOS === */
#contatos {
  background-color: #fdf4e3;
  text-align: center;
  padding: 80px 20px;
  font-family: "Poppins", sans-serif;
}

#contatos h1 {
  font-size: 2.3rem; /* maior, igual à seção "Sobre nós" */
  color: #4a2d1a; /* marrom escuro */
  margin-bottom: 15px;
  font-weight: 700;
}

#contatos p {
  font-size: 1.1rem; /* aumenta o texto */
  color: #3b2415;
  margin-bottom: 25px;
}

.btn2 {
  display: inline-block;
  background-color: #c36a36;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: 0.3s;
}

.btn2:hover {
  background-color: #a75429;
}

/* === RODAPÉ  === */
footer {
  text-align: center;
  padding: 20px;
  background-color: #c36a36;
  color: #fff;
  font-size: 14px;
}

/* === RESPONSIVIDADE === */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    gap: 15px;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    height: 400px;
  }

  .hero-content {
    padding: 20px;
    text-align: center;
  }

  .hero-content h2 {
    font-size: 36px;
  }

  #sobrenós {
    flex-direction: column;
    text-align: center;
  }

  .destinos-container {
    grid-template-columns: 1fr;
  }

  .card {
    width: 100%;
  }
}

footer {
  background-color: #c36a36; /* laranja terroso */
  color: #fff;
  text-align: center;
  padding: 25px 10px;
  font-size: 15px;
  margin-top: 60px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

footer p {
  margin: 0;
  letter-spacing: 0.5px;
}

/* --- SEÇÃO SOBRE NÓS --- */
#sobrenos {
  padding: 80px 12%;
  background-color: #faf0dc;
}

.sobre-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.sobre-texto {
  flex: 1;
  min-width: 300px;
}

.sobre-texto h1 {
  font-size: 2rem;
  color: #4a2e14;
  margin-bottom: 20px;
}

.sobre-texto p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #3c2a18;
}

/* imagem à direita */
.sobre-imagem {
  flex: 1;
  height: 390px;
  background-image: url("assets/mulher.jpg");
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
