/* ------------------------------
   BASE
--------------------------------*/
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", Arial, sans-serif;
  background: #faf8f4;
  color: #333;
}

a { color: #c0841a; text-decoration: none; }
a:hover { opacity: .8; }

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ------------------------------
   HEADER
--------------------------------*/
header {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .logo img {
  height: 50px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

nav li {
  display: inline-block;
}

/* ------------------------------
   HERO
--------------------------------*/
.hero {
  height: 85vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero h1 {
  font-size: 4rem;
  color: white;
  text-shadow: 0 3px 8px rgba(0,0,0,0.4);
}

.hero p {
  font-size: 1.4rem;
  color: #fff;
  max-width: 600px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

/* ------------------------------
   GRID DE PACOTES
--------------------------------*/
.grid-pacotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 25px;
}

.pacote-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0,0,0,0.08);
  transition: .3s;
}

.pacote-card:hover {
  transform: translateY(-5px);
}

.pacote-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.pacote-card .info {
  padding: 20px;
}

.badge {
  display: inline-block;
  padding: 6px 14px;
  background: #c0841a;
  color: #fff;
  border-radius: 50px;
  font-size: 0.8rem;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  background: #c0841a;
  color: white;
  font-weight: 600;
  border-radius: 50px;
  transition: .3s;
}

.btn:hover { opacity: 0.85; }

/* ------------------------------
   SINGLE PACOTE
--------------------------------*/
.pacote-gallery img {
  width: 100%;
  border-radius: 14px;
}

.pacote-meta {
  margin: 20px 0;
}

.meta-item {
  padding: 14px 22px;
  background: #eee;
  border-radius: 12px;
  display: inline-block;
  margin-right: 14px;
}

/* ------------------------------
   FORMULÁRIO DE CONTATO
--------------------------------*/
form input, form textarea {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #ccc;
  margin-bottom: 15px;
}

form button {
  padding: 12px 26px;
  background: #c0841a;
  color: #fff;
  border-radius: 50px;
  border: none;
}

/* ------------------------------
   FOOTER
--------------------------------*/
footer {
  background: #111;
  color: #fff;
  padding: 40px 0;
  margin-top: 60px;
}

footer a { color: #f2d9b8; }

/* ------------------------------
   GALLERY PAGE
--------------------------------*/
.grid-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.grid-gallery img {
  width: 100%;
  border-radius: 12px;
}

/* ------------------------------
   TESTIMONIALS
--------------------------------*/
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.testimonial {
  padding: 25px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

/* ------------------------------
   RESPONSIVO
--------------------------------*/
@media(max-width: 768px) {
  .hero h1 { font-size: 2.4rem; }
  nav ul { flex-direction: column; display: none; }
  nav ul.active { display: flex; }
  .menu-btn { display: block; cursor: pointer; }
}
