:root {
  --verde-escuro: #0b3b29;
  --verde-claro: #2d8a5f;
  --dourado: #c9a84a;
  --bg: #faf7f3;
  --white: #fff;
  --max: 1200px;
}

/* RESET */
* {margin:0;padding:0;box-sizing:border-box;}
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: #444;
  line-height: 1.7;
  text-align: center;
}
img, video, iframe {max-width:100%;height:auto;border-radius:12px;}

/* NAV */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  background: rgba(11,59,41,0.9);
  backdrop-filter: blur(8px);
  z-index: 1000;
}
.nav-wrapper {
  max-width: var(--max);
  margin: auto;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.2rem;
}
.menu {
  display: flex;
  gap: 22px;
  align-items: center;
}
.menu a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}
.menu a:hover {color: var(--dourado);}
.menu a.whatsapp {
  background: var(--dourado);
  color: var(--verde-escuro);
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
}
.menu-toggle {
  display: none;
  font-size: 1.6rem;
  color: var(--white);
  background: transparent;
  border: none;
  cursor: pointer;
}

/* HERO */
.hero {
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  filter: brightness(0.6);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,rgba(0,0,0,0.2),rgba(0,0,0,0.5));
}
.hero-content {
  position: relative;
  color: var(--white);
  text-align: center;
  max-width: 600px;
  padding: 20px;
}
.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 10px;
}
.hero-content p {font-size:1.1rem;margin-bottom:20px;}
.btn {
  display:inline-block;
  padding:12px 22px;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
}
.btn.solid {
  background: linear-gradient(135deg,var(--verde-claro),var(--verde-escuro));
  color: var(--white);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition:0.3s;
}
.btn.solid:hover {
  background: var(--dourado);
  color: var(--verde-escuro);
}

/* SECTIONS */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 20px;
}
.section.alt {background: var(--white);border-radius:16px;box-shadow:0 8px 25px rgba(0,0,0,0.05);}
.section-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.section-inner.reverse {flex-direction: row-reverse;}
.text {flex:1 1 45%;text-align:left;}
.media {flex:1 1 45%;}

/* GALERIA */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 20px;
  margin-top: 30px;
}
.card {
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}
.card video {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* MAPA */
iframe {
  width: 100%;
  height: 450px;
  margin-top: 20px;
  border: none;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  border-radius: 12px;
}

/* PAINEL */
#painel {padding: 40px 0;max-width:800px;margin:auto;text-align:center;}
.linha {position:relative;height:6px;background:#ccc;margin:40px 0;border-radius:3px;}
.ponto {position:absolute;top:-10px;width:20px;height:20px;background:#2d8a5f;border-radius:50%;cursor:pointer;transition:.3s;}
.ponto:hover {transform:scale(1.2);}
.info {margin-top:20px;padding:15px;background:#f7f7f7;border-radius:8px;}

/* FOOTER */
.footer {
  background: var(--verde-escuro);
  color: var(--white);
  padding: 24px 0;
  margin-top: 60px;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .menu {display:none;flex-direction:column;background:rgba(11,59,41,0.95);position:absolute;top:60px;left:0;width:100%;padding:20px 0;}
  .menu.show {display:flex;}
  .menu a {padding:10px 0;}
  .menu-toggle {display:block;}
  .section-inner, .section-inner.reverse {flex-direction:column;text-align:center;}
  .text {text-align:center;}
  .hero-content h1 {font-size:2.2rem;}
  .hero-content p {font-size:1rem;}
}
