:root {
  --bg: #f7f4ef;
  --card: #ffffff;
  --text: #1d1d1f;
  --muted: #666;
  --line: #e7e1d8;
  --accent: #146c43;
  --accent-dark: #0f5132;
  --soft: #eef7f1;
  --shadow: 0 12px 35px rgba(0,0,0,.08);
  --radius: 22px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
}

.top-ticker {
  width: 100%;
  overflow: hidden;
  background: #123524;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.12);
  white-space: nowrap;
  position: relative;
  z-index: 20;
}

.top-ticker::before, .top-ticker::after {
  content: "";
  position: absolute;
  top: 0;
  width: 90px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.top-ticker::before {
  left: 0;
  background: linear-gradient(90deg, #123524, rgba(18,53,36,0));
}

.top-ticker::after {
  right: 0;
  background: linear-gradient(270deg, #123524, rgba(18,53,36,0));
}

.top-ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: ticker-cnn 24s linear infinite;
  will-change: transform;
}

.top-ticker-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 9px 0;
}

.top-ticker-group span, .top-ticker-track > span {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0 24px;
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .02em;
  color: rgba(255,255,255,.94);
  text-transform: uppercase;
}

.top-ticker-group span::after, .top-ticker-track > span::after {
  content: "•";
  margin-left: 24px;
  color: #d7b56d;
  font-weight: 900;
}

.top-ticker:hover .top-ticker-track {
  animation-play-state: paused;
}

@keyframes ticker-cnn {
  0% { transform: translate3d(0,0,0); }
  100% { transform: translate3d(-50%,0,0); }
}

.topbar {
  background: var(--card);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}

.topbar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  font-weight: 800;
  letter-spacing: -.03em;
  font-size: 1.1rem;
}

.brand span {
  color: var(--accent);
}

.nav {
  display: flex;
  gap: 16px;
  font-size: .94rem;
  color: var(--muted);
}

.nav a {
  text-decoration: none;
}

.nav a:hover {
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  font-weight: 700;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(20,108,67,.22);
}

.btn:hover {
  background: var(--accent-dark);
}

.btn.secondary {
  background: white;
  color: var(--accent);
  border: 1px solid var(--line);
  box-shadow: none;
}

.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 64px 20px 36px;
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: 34px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #eef7f1, #dff1e6);
  color: var(--accent-dark);
  border: 1px solid #cfe8d7;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 800;
  margin-bottom: 16px;
  box-shadow: 0 8px 22px rgba(20,108,67,.12);
}

.eyebrow::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.75), rgba(255,255,255,0));
  transform: skewX(-18deg);
  animation: badge-shine 3.8s ease-in-out infinite;
}

@keyframes badge-shine {
  0% { left: -80%; }
  45% { left: 130%; }
  100% { left: 130%; }
}

h1, h2, h3 {
  line-height: 1.12;
  margin: 0 0 16px;
  letter-spacing: -.04em;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4.3rem);
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.6rem);
}

h3 {
  font-size: 1.25rem;
}

.lead {
  font-size: 1.18rem;
  color: #3c3c3c;
  margin: 0 0 24px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0;
}

.mini-info {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.pill {
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: .95rem;
  color: #333;
}

.hero-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid var(--line);
}

.photo-main {
  height: 330px;
  background: #f3efe7;
  display: block;
  overflow: hidden;
  padding: 0;
  color: white;
}

.photo-main img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  background: #f3efe7;
}

.photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #dad4ca, #f3efe7);
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #605b52;
  font-weight: 700;
  text-align: center;
  padding: 20px;
}

.price-box {
  padding: 22px;
}

.price {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -.04em;
  margin-bottom: 4px;
}

.small {
  color: var(--muted);
  font-size: .96rem;
  margin: 0;
}

section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 44px 20px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 6px 20px rgba(0,0,0,.04);
}

.feature-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 4px;
}

ul.clean {
  padding-left: 20px;
  margin: 10px 0 0;
}

.gallery {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 12px;
}

.gallery-item {
  position: relative;
  min-height: 180px;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  padding: 0;
  background: #e0dbd2;
  cursor: pointer;
  display: block;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
  font-family: inherit;
}

.gallery-item:first-child {
  grid-row: span 2;
  min-height: 374px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform .35s ease, filter .35s ease;
}

.gallery-item span {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  background: rgba(18,53,36,.86);
  color: #fff;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: .86rem;
  font-weight: 800;
  text-align: center;
  backdrop-filter: blur(8px);
}

.gallery-item:hover img {
  transform: scale(1.045);
  filter: brightness(.9);
}

.gallery-all-wrap {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

/* Botão "Ver todas as fotos" - Efeito Premium */
.gallery-all-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 420px;
  padding: 18px 24px;
  border: 0;
  border-radius: 999px;
  background: #123524;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 28px rgba(18,53,36,.22);
  transition: all 0.3s ease;
}

.gallery-all-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: 0.5s;
}

.gallery-all-btn:hover {
  background: #0f5132;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(18,53,36,.3);
}

.gallery-all-btn:hover::after {
  left: 100%;
}

.gallery-all-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(18,53,36,.2);
}

.gallery-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.86);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  z-index: 999;
}

.gallery-modal.is-open {
  display: flex;
}

.gallery-modal-content {
  margin: 0;
  max-width: min(1100px, 94vw);
  max-height: 88vh;
  text-align: center;
}

.gallery-modal-content img {
  max-width: 100%;
  max-height: 66vh;
  display: block;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
}

.gallery-modal-content figcaption {
  color: #fff;
  margin-top: 12px;
  font-weight: 700;
}

/* REFINAMENTO PREMIUM: Barra de Miniaturas */
.gallery-thumbs {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 24px;
  max-width: min(840px, 92vw);
  overflow-x: auto;
  padding: 10px 4px 20px;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.gallery-thumbs::-webkit-scrollbar {
  display: none;
}

.gallery-thumb {
  width: 76px;
  height: 54px;
  flex: 0 0 auto;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  padding: 0;
  background: transparent;
  cursor: pointer;
  opacity: 0.4;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
}

.gallery-thumb:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

.gallery-thumb.is-active {
  opacity: 1;
  border-color: #d7b56d;
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(215, 181, 109, 0.3);
  z-index: 2;
}

.gallery-close, .gallery-nav {
  position: absolute;
  border: 0;
  background: rgba(255,255,255,.14);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  backdrop-filter: blur(8px);
}

.gallery-close {
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  font-size: 2rem;
  line-height: 1;
}

.gallery-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 999px;
  font-size: 2.7rem;
  line-height: 1;
}

.gallery-prev {
  left: 18px;
}

.gallery-next {
  right: 18px;
}

.gallery-close:hover, .gallery-nav:hover {
  background: rgba(255,255,255,.24);
}

.location-box {
  min-height: 310px;
  background: linear-gradient(135deg, rgba(20,108,67,.12), rgba(255,255,255,.6));
  border: 1px dashed #b8cbbb;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 30px;
  color: #3d463f;
}

.faq details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 20px;
  margin-bottom: 12px;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--text);
}

.contact {
  background: #123524;
  color: white;
  border-radius: 30px;
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.contact p {
  color: rgba(255,255,255,.82);
}

.contact .btn {
  background: white;
  color: #123524;
  box-shadow: none;
}

.mega-footer {
  max-width: none;
  margin: 0;
  background: radial-gradient(circle at top left, rgba(215,181,109,.16), transparent 32%), linear-gradient(180deg, #123524, #081d14);
  color: rgba(255,255,255,.82);
  padding: 58px 20px 34px;
  font-size: .96rem;
  text-align: left;
}

.mega-footer-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.mega-footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.12);
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.mega-footer-brand strong {
  display: block;
  font-size: 1.65rem;
  line-height: 1.1;
  letter-spacing: -.04em;
  color: #fff;
  margin-bottom: 12px;
}

.mega-footer-brand strong span {
  color: #d7b56d;
}

.mega-footer-brand p {
  max-width: 720px;
  margin: 0;
  color: rgba(255,255,255,.78);
}

.mega-footer-cta {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  padding: 20px;
  min-width: 260px;
  box-shadow: 0 18px 45px rgba(0,0,0,.16);
}

.mega-footer-cta p {
  margin: 0 0 12px;
  color: #fff;
  font-weight: 800;
}

.mega-footer-cta .btn {
  background: #fff;
  color: #123524;
  box-shadow: none;
  width: 100%;
}

.mega-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.1fr 1.2fr;
  gap: 18px;
  margin-bottom: 30px;
}

.mega-footer-col {
  max-width: none;
  margin: 0;
  padding: 22px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
}

.mega-footer-col h2 {
  font-size: 1.05rem;
  margin: 0 0 14px;
  color: #fff;
  letter-spacing: -.02em;
}

.mega-footer-col p {
  margin: 0 0 9px;
  color: rgba(255,255,255,.76);
}

.mega-footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mega-footer-col li {
  margin: 0 0 8px;
  color: rgba(255,255,255,.76);
}

.mega-footer-col strong {
  color: #fff;
}

.mega-footer-col nav {
  display: grid;
  gap: 9px;
}

.mega-footer-col nav a {
  display: block;
  text-decoration: none;
  color: rgba(255,255,255,.78);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.mega-footer-col nav a:hover {
  color: #d7b56d;
}

.mega-footer-seo {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  padding: 28px;
  margin-bottom: 26px;
}

.mega-footer-seo h2 {
  color: #fff;
  font-size: 1.55rem;
  margin: 0 0 14px;
  letter-spacing: -.04em;
}

.mega-footer-seo p {
  margin: 0 0 14px;
  color: rgba(255,255,255,.78);
}

.mega-footer-seo p:last-child {
  margin-bottom: 0;
}

.mega-footer-seo strong {
  color: #fff;
}

.mega-footer-bottom {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 22px;
  color: rgba(255,255,255,.62);
  font-size: .88rem;
}

.mega-footer-bottom p {
  margin: 0;
}

footer:not(.mega-footer) {
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px 20px 44px;
  color: var(--muted);
  font-size: .92rem;
  text-align: center;
}

.map-box {
  width: 100%;
  min-height: 350px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
  border: 1px solid var(--line);
  background: var(--card);
}

.map-box iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 350px;
}

@media (max-width: 850px) {
  .hero, .grid-2, .contact {
    grid-template-columns: 1fr;
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .gallery {
    grid-template-columns: 1fr;
  }
  .gallery-item:first-child {
    grid-row: auto;
    min-height: 240px;
  }
  .gallery-item {
    min-height: 220px;
  }
  .nav {
    display: none;
  }
  .hero {
    padding-top: 38px;
  }
  .top-ticker-track {
    animation-duration: 18s;
  }
  .top-ticker-group span, .top-ticker-track > span {
    padding: 0 18px;
    font-size: .78rem;
  }
  .top-ticker-group span::after, .top-ticker-track > span::after {
    margin-left: 18px;
  }
  .top-ticker::before, .top-ticker::after {
    width: 42px;
  }
  .gallery-all-btn {
    max-width: 100%;
    font-size: .92rem;
    padding: 15px 20px;
  }
  .gallery-modal {
    padding: 18px;
  }
  .gallery-modal-content img {
    max-height: 58vh;
  }
  .gallery-thumbs {
    justify-content: flex-start;
    max-width: 88vw;
  }
  .gallery-thumb {
    width: 70px;
    height: 50px;
  }
  .gallery-nav {
    width: 42px;
    height: 42px;
    font-size: 2.1rem;
  }
  .gallery-prev {
    left: 8px;
  }
  .gallery-next {
    right: 8px;
  }
  .mega-footer {
    padding: 42px 20px 28px;
  }
  .mega-footer-top {
    grid-template-columns: 1fr;
  }
  .mega-footer-cta {
    min-width: 0;
  }
  .mega-footer-grid {
    grid-template-columns: 1fr;
  }
  .mega-footer-col {
    padding: 20px;
  }
  .mega-footer-seo {
    padding: 22px;
  }
  .mega-footer-seo h2 {
    font-size: 1.35rem;
  }
  .mega-footer-bottom {
    grid-template-columns: 1fr;
  }
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin-top: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}