/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color:#5A582E;
  background-color: #f9f9f9;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* CORES PRINCIPAIS */
:root {
  --primaria: #5A582E;    /* azul marinho */
  --secundaria: #f4c10f;  /* dourado */
  --claro: #ffffff;
  --cinza: #f0f0f0;
}

/* CABEÇALHO */
header {
  background-color: var(--primaria);
  color: var(--claro);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
  flex-wrap: wrap;
}

header .logo img {
  height: 50px;
}

nav ul {
  display: flex;
  gap: 20px;
}

nav ul li a {
  color: var(--claro);
  font-weight: bold;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: var(--secundaria);
}

.redes-sociais a {
  color: var(--claro);
  margin-left: 15px;
  font-size: 18px;
  transition: color 0.3s;
}

.redes-sociais a:hover {
  color: var(--secundaria);
}

/* BANNER / SLIDESHOW */
.banner {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slideshow {
  position: relative;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide .texto {
  position: absolute;
  bottom: 100px;
  left: 50px;
  color: white;
  font-size: 2em;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 15px;
  border-radius: 10px;
  max-width: 80%;
}

/* BOTÃO */
.btn {
  display: inline-block;
  background-color: var(--secundaria);
  color: var(--primaria);
  padding: 12px 25px;
  margin-top: 20px;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  transition: background-color 0.3s;
  text-align: center;
}

.btn:hover {
  background-color: #e0b200;
}

/* SEÇÕES */
section {
  padding: 60px 30px;
  text-align: center;
}

h2 {
  font-size: 2em;
  color: var(--primaria);
  margin-bottom: 40px;
}

/* PACOTES */
.pacotes {
  background-color: var(--cinza);
}

.pacotes .pacote {
  background-color: white;
  padding: 20px;
  margin: 20px auto;
  max-width: 300px;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.pacote img {
  width: 100%;
  height: 280px;
  object-fit: contain; /* Mostra a imagem inteira */
  border-radius: 8px;
  margin-bottom: 15px;
  transition: transform 0.4s ease, box-shadow 0.3s ease;
  background-color: #f9f9f9; /* Fundo neutro caso a imagem não preencha tudo */
}

.pacote:hover img {
  transform: scale(1.3); /* Zoom mais visível */
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}


.pacote h3 {
  color: var(--primaria);
  margin: 15px 0 10px;
}

.pacote p {
  color: #666;
}

.sobre {
  background-color: var(--primaria);
  color: white;
}

.sobre p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1em;
}


.contato p a {
  color: var(--primaria);
  font-weight: bold;
}

/* FORMULÁRIO */
.formulario {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.formulario input,
.formulario textarea {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1em;
}

.formulario textarea {
  resize: vertical;
  height: 100px;
}

.formulario button {
  background-color: var(--primaria);
  color: rgb(231, 233, 114);
  border: none;
  font-weight: bold;
  padding: 12px;
  cursor: pointer;
  border-radius: 8px;
  transition: background-color 0.3s;
}

.formulario button:hover {
  background-color:#5A582E;
}

/* RODAPÉ */
footer {
  background-color: var(--primaria);
  color: white;
  text-align: center;
  padding: 20px;
}

footer .redes-sociais a {
  color: white;
  margin: 0 10px;
}

footer .redes-sociais a:hover {
  color: var(--secundaria);
}

/* RESPONSIVO */
@media (min-width: 768px) {
  .pacotes {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
  }

  .pacotes .pacote {
    flex: 1 1 300px;
  }

  nav ul {
    gap: 30px;
  }
}
