* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #faf7ef;
  color: #2f3328;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1150px;
  margin: auto;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #2f4a2f;
  color: white;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
}

.nav {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 25px;
}

.logo span {
  color: #e5c16b;
}

nav {
  display: flex;
  gap: 20px;
}

nav a,
.voltar {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover,
.voltar:hover {
  color: #e5c16b;
}

.menu-btn {
  display: none;
  background: none;
  color: white;
  border: none;
  font-size: 30px;
  cursor: pointer;
}

.hero {
  min-height: 100vh;
  background:
    linear-gradient(rgba(20, 40, 20, 0.65), rgba(20, 40, 20, 0.65)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  color: white;
  display: flex;
  align-items: center;
  padding-top: 90px;
}

.hero-content {
  max-width: 700px;
}

.tag,
.subtag {
  display: inline-block;
  background: #e5c16b;
  color: #2f4a2f;
  padding: 8px 15px;
  border-radius: 30px;
  font-weight: bold;
  margin-bottom: 18px;
}

.hero h2 {
  font-size: 50px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero p {
  font-size: 19px;
  margin-bottom: 30px;
  color: #f5f5f5;
}

.btn {
  display: inline-block;
  background: #2f4a2f;
  color: white;
  padding: 14px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  border: none;
  transition: 0.3s;
}

.btn:hover {
  background: #1f331f;
  transform: translateY(-3px);
}

.btn.small {
  margin-top: 18px;
  padding: 11px 18px;
}

.whatsapp {
  background: #25d366;
}

.mapa {
  background: #2f4a2f;
}

.section {
  padding: 85px 0;
}

.section h2 {
  text-align: center;
  font-size: 38px;
  color: #2f4a2f;
  margin-bottom: 35px;
}

.light {
  background: #eee4d2;
}

.sobre {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  align-items: center;
}

.sobre h2 {
  text-align: left;
  margin-bottom: 20px;
}

.sobre p {
  margin-bottom: 15px;
  font-size: 17px;
}

.sobre img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.10);
}

.card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.card-info {
  padding: 25px;
}

.card-info h3 {
  color: #2f4a2f;
  font-size: 24px;
  margin-bottom: 10px;
}

.card-info strong {
  display: block;
  color: #2f4a2f;
  margin-top: 12px;
  font-size: 18px;
}

.galeria {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.galeria img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 18px;
  cursor: pointer;
  transition: 0.3s;
}

.galeria img:hover {
  transform: scale(1.04);
}

.localizacao {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 35px;
  align-items: center;
}

.localizacao h2 {
  text-align: left;
  margin-bottom: 20px;
}

.localizacao p {
  margin-bottom: 15px;
}

.localizacao iframe {
  width: 100%;
  height: 370px;
  border: none;
  border-radius: 24px;
}

.contato {
  text-align: center;
}

.contato-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.contato-card {
  background: white;
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contato-card h3 {
  color: #2f4a2f;
  margin-bottom: 12px;
}

.contato-card p {
  margin-bottom: 20px;
}

.redes {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.redes a {
  background: #2f4a2f;
  color: white;
  padding: 12px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}

footer {
  background: #2f4a2f;
  color: white;
  text-align: center;
  padding: 25px;
}

.detalhe-hero {
  padding: 150px 0 80px;
  background:
    linear-gradient(rgba(20, 40, 20, 0.72), rgba(20, 40, 20, 0.72)),
    url("https://images.unsplash.com/photo-1631049307264-da0ec9d70304?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
}

.detalhe-hero.familia {
  background:
    linear-gradient(rgba(20, 40, 20, 0.72), rgba(20, 40, 20, 0.72)),
    url("https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
}

.detalhe-hero.chale {
  background:
    linear-gradient(rgba(20, 40, 20, 0.72), rgba(20, 40, 20, 0.72)),
    url("https://images.unsplash.com/photo-1590490360182-c33d57733427?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
}

.detalhe-hero h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.detalhe-hero p {
  font-size: 19px;
  margin-bottom: 25px;
}

.detalhe {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 35px;
  align-items: start;
}

.detalhe h2 {
  text-align: left;
  margin-bottom: 20px;
}

.detalhe ul {
  margin-top: 20px;
  padding-left: 20px;
}

.detalhe li {
  margin-bottom: 10px;
}

.preco-box {
  background: #2f4a2f;
  color: white;
  padding: 30px;
  border-radius: 24px;
  text-align: center;
}

.preco-box strong {
  display: block;
  color: #e5c16b;
  font-size: 32px;
  margin: 10px 0;
}

.video-box {
  max-width: 900px;
  margin: auto;
}

.video-box iframe {
  width: 100%;
  height: 480px;
  border: none;
  border-radius: 24px;
}

.modal-img {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
}

.modal-img.ativo {
  display: flex;
}

.modal-img img {
  max-width: 92%;
  max-height: 85vh;
  border-radius: 18px;
}

.modal-img span {
  position: absolute;
  top: 25px;
  right: 35px;
  color: white;
  font-size: 45px;
  cursor: pointer;
}

@media (max-width: 950px) {
  .sobre,
  .cards,
  .localizacao,
  .contato-grid,
  .detalhe {
    grid-template-columns: 1fr;
  }

  .galeria {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero h2 {
    font-size: 38px;
  }

  .sobre h2,
  .localizacao h2,
  .detalhe h2 {
    text-align: center;
  }
}

@media (max-width: 768px) {
  nav {
    position: absolute;
    top: 74px;
    left: 0;
    width: 100%;
    background: #2f4a2f;
    display: none;
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  nav.active {
    display: flex;
  }

  .menu-btn {
    display: block;
  }

  .hero {
    text-align: center;
  }

  .hero h2,
  .detalhe-hero h1 {
    font-size: 32px;
  }

  .section h2 {
    font-size: 29px;
  }

  .galeria {
    grid-template-columns: 1fr;
  }

  .video-box iframe {
    height: 260px;
  }
}