/* ===== TOKENS ===== */
:root {
  --cream: #f6f1e7;
  --cream-2: #efe6d6;
  --green-deep: #1a3a2a;
  --green-deeper: #142e21;
  --green-card: #234738;
  --green-cta: #1f9d55;
  --green-cta-hover: #178347;
  --gold: #c9a961;
  --gold-bright: #d8b96a;
  --gold-soft: #b89b5e;
  --text-dark: #1a1a1a;
  --text-muted-dark: #6b6358;
  --text-light: #e8e2d4;
  --text-muted-light: #b8b09d;
  --border-light: rgba(0, 0, 0, 0.08);
  --border-card: rgba(0, 0, 0, 0.06);
  --shadow-card: 0 1px 2px rgba(20, 16, 8, 0.03), 0 8px 24px rgba(20, 16, 8, 0.06);
  --sage: #829F81;
  --sage-dark: #6f8a6e;
  --serif: "Quicksand", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --sans: "Quicksand", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius-card: 12px;
  --radius-pill: 999px;
  --container: 1120px;
}

/* ===== RESET ===== */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 20px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
hr { border: 0; }

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container-mid { max-width: 760px; }
.center { text-align: center; }

/* ===== TYPOGRAPHY ===== */
.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 44px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text-dark);
  margin: 0 0 36px;
}
.accent {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-soft);
}
.accent-light {
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}
.dash {
  color: var(--text-dark);
  font-weight: 400;
}

/* ===== HEADER ===== */
.site-header {
  background: var(--sage);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.brand-logo {
  height: 30px;
  width: auto;
  display: block;
}
.site-header .pill-dark {
  background: var(--green-cta);
  color: #fff;
}
.site-header .pill-dark:hover { background: var(--green-cta-hover); }

/* ===== PILLS / BUTTONS ===== */
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .12s ease;
  white-space: nowrap;
}
.pill:hover { transform: translateY(-1px); }
.pill .ico { flex: 0 0 auto; }
.pill-sm { padding: 10px 18px; font-size: 12.5px; }

.pill-dark {
  background: var(--green-deep);
  color: var(--text-light);
}
.pill-dark:hover { background: var(--green-deeper); }

.pill-green {
  background: var(--green-cta);
  color: #fff;
}
.pill-green:hover { background: var(--green-cta-hover); }

.pill-outline {
  background: transparent;
  color: var(--text-dark);
  border-color: rgba(0, 0, 0, 0.18);
}
.pill-outline:hover { border-color: rgba(0, 0, 0, 0.36); background: rgba(0,0,0,0.02); }
.ico-pin { color: var(--green-cta); }

.pill-gold {
  background: var(--gold-bright);
  color: #0f1f17;
  font-weight: 600;
}
.pill-gold:hover { background: var(--gold); }

/* ===== HERO ===== */
.hero {
  background: var(--cream);
  padding: 48px 0 56px;
}
.hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 64px;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--text-dark);
  margin: 0 0 28px;
  max-width: 720px;
}
.hero-lead {
  font-size: 20px;
  color: var(--text-muted-dark);
  margin: 0 0 36px;
  max-width: 720px;
  line-height: 1.5;
  text-wrap: pretty;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ===== GALERIA DUPLA ===== */
.gallery-duo {
  background: var(--cream);
  padding: 24px 0 96px;
}
.gallery-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.gallery-head .rule-gold {
  margin: 0 auto 24px;
}
.gallery-head .eyebrow {
  margin-bottom: 16px;
}
.gallery-head .section-title {
  margin: 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}
.gallery-photo {
  margin: 0;
  background: transparent;
}
.gallery-photo__frame {
  position: relative;
  padding: 14px;
  background: #fffdf7;
  border-radius: 6px;
  box-shadow:
    0 1px 2px rgba(20, 16, 8, 0.04),
    0 22px 50px -22px rgba(20, 16, 8, 0.22);
  transition: transform .45s ease, box-shadow .45s ease;
}
.gallery-photo__frame::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(201, 169, 97, 0.5);
  border-radius: 3px;
  pointer-events: none;
  z-index: 2;
}
.gallery-photo__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(216, 185, 106, 0.0) 35%, rgba(216, 185, 106, 0.18) 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .45s ease;
}
.gallery-photo__frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}
.gallery-photo:hover .gallery-photo__frame {
  transform: translateY(-6px);
  box-shadow:
    0 1px 2px rgba(20, 16, 8, 0.04),
    0 34px 64px -22px rgba(20, 16, 8, 0.28);
}
.gallery-photo:hover .gallery-photo__frame::after {
  opacity: 1;
}
.gallery-photo__caption {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-top: 22px;
  padding: 0 6px;
}
.gallery-photo__num {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 0.02em;
}
.gallery-photo__num::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-left: 12px;
  margin-bottom: 6px;
}
.gallery-photo__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted-dark);
}

/* ===== WHY ===== */
.why {
  background: var(--cream);
  padding: 32px 0 96px;
}
.rule-gold {
  width: 80px;
  height: 1px;
  background: var(--gold);
  margin: 0 0 32px;
  border: 0;
}
.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 560px;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  color: var(--text-dark);
}
.check {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

/* ===== STATS ===== */
.stats {
  background: var(--green-deep);
  padding: 56px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 760px;
  margin: 0 auto;
}
.stat-card {
  background: var(--green-card);
  border-radius: var(--radius-card);
  padding: 32px 20px;
  text-align: center;
  color: var(--text-light);
}
.stat-number {
  font-family: var(--serif);
  font-size: 48px;
  line-height: 1;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.stat-number.stars {
  font-family: var(--sans);
  font-size: 26px;
  letter-spacing: 2px;
  display: flex;
  justify-content: center;
  gap: 2px;
}
.stat-label {
  font-size: 11.5px;
  color: var(--text-muted-light);
  letter-spacing: 0.04em;
}
.stars-inline {
  display: block;
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

/* ===== ONDE ESTAMOS ===== */
.where {
  background: var(--cream);
  padding: 96px 0;
}
.where-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.where-text .section-title { margin-bottom: 30px; }
.info-block {
  margin-bottom: 18px;
}
.info-label {
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.info-value {
  font-size: 15.5px;
  color: var(--text-muted-dark);
}
.where-ctas {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}
.where-map {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--cream-2);
  border: 1px solid var(--border-light);
}
.where-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--cream);
  padding: 32px 0 96px;
}
.testimonials .section-title { margin-bottom: 56px; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 26px 24px 24px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-card);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.stars-sm {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 1px;
}
.testimonial-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.4;
  color: var(--text-dark);
  margin: 0;
}
.testimonial-name {
  font-size: 12.5px;
  color: var(--text-muted-dark);
  margin-top: auto;
}

/* ===== FAQ ===== */
.faq {
  background: var(--cream);
  padding: 32px 0 120px;
}
.faq-list {
  margin-top: 8px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.faq-item > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 4px;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  color: var(--text-dark);
  list-style: none;
  cursor: pointer;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item .caret {
  font-family: var(--sans);
  color: var(--text-muted-dark);
  font-size: 18px;
  transition: transform .2s ease;
  line-height: 1;
}
.faq-item[open] .caret { transform: rotate(180deg); }
.faq-answer {
  padding: 0 4px 22px;
  font-size: 16px;
  color: var(--text-muted-dark);
  line-height: 1.6;
  max-width: 620px;
}

/* ===== CTA FINAL ===== */
.cta-final {
  position: relative;
  background: var(--green-deeper);
  padding: 96px 0;
  overflow: hidden;
  color: var(--text-light);
  text-align: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0 14px, transparent 14px 28px),
    var(--green-deeper);
}
.cta-bg::after {
  content: "Imagem de fundo · substituir";
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  border: 1px dashed rgba(255,255,255,0.25);
  padding: 6px 14px;
  border-radius: 999px;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 60%, rgba(201,169,97,0.20) 0%, rgba(20,46,33,0) 55%),
    linear-gradient(180deg, rgba(20,46,33,0.85) 0%, rgba(20,46,33,0.92) 100%);
}
.cta-content {
  position: relative;
  z-index: 2;
}
.cta-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 48px;
  line-height: 1.12;
  margin: 0 0 16px;
  color: var(--text-light);
  letter-spacing: -0.01em;
}
.cta-lead {
  font-size: 16px;
  color: var(--text-muted-light);
  margin: 0 auto 28px;
  max-width: 460px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--green-deep);
  color: var(--text-light);
  padding: 56px 0 64px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 32px;
  align-items: start;
}
.brand-logo-foot {
  height: 32px;
  width: auto;
  display: block;
  margin-bottom: 10px;
}
.brand-sub-foot {
  font-size: 12.5px;
  color: var(--text-muted-light);
  letter-spacing: 0.03em;
}
.footer-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.footer-value {
  font-size: 13px;
  color: var(--text-muted-light);
  line-height: 1.6;
}
.footer-link {
  display: inline-block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--text-muted-light);
  border-bottom: 1px solid rgba(184,176,157,0.3);
  padding-bottom: 1px;
}
.footer-link:hover { color: var(--gold); border-color: var(--gold); }
.footer-copy {
  font-size: 12.5px;
  color: var(--text-muted-light);
  text-align: right;
  line-height: 1.6;
}

/* ===== FLOATING WHATSAPP ===== */
.fab-whats {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green-cta);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  z-index: 80;
  transition: transform .2s ease, background .2s ease;
}
.fab-whats:hover { background: var(--green-cta-hover); transform: scale(1.06); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1023px) {
  .hero-title { font-size: 52px; }
  .section-title { font-size: 38px; }
  .cta-title { font-size: 40px; }
  .where-grid { gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-copy { text-align: left; grid-column: 1 / -1; }
}

@media (max-width: 767px) {
  body { font-size: 16px; }
  .container { padding: 0 20px; }

  .hero { padding: 32px 0 40px; }
  .hero-title { font-size: 38px; }
  .hero-title br { display: none; }
  .hero-lead br { display: none; }
  .hero-lead { font-size: 16px; margin-bottom: 28px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .pill { width: 100%; }

  .gallery-duo { padding: 16px 0 64px; }
  .gallery-grid { grid-template-columns: 1fr; gap: 32px; }
  .gallery-head { margin-bottom: 32px; }
  .gallery-photo__frame { padding: 10px; }
  .gallery-photo__frame::before { inset: 4px; }
  .gallery-photo__num { font-size: 26px; }

  .why { padding: 16px 0 64px; }
  .section-title { font-size: 30px; }
  .section-title br { display: none; }

  .stats { padding: 40px 0; }
  .stats-grid { grid-template-columns: 1fr; gap: 12px; }
  .stat-card { padding: 24px 16px; }
  .stat-number { font-size: 40px; }

  .where { padding: 64px 0; }
  .where-grid { grid-template-columns: 1fr; gap: 32px; }
  .where-map { aspect-ratio: 4 / 3; }

  .testimonials { padding: 16px 0 64px; }
  .testimonials .section-title { margin-bottom: 36px; }
  .testimonial-grid { grid-template-columns: 1fr; }

  .faq { padding: 16px 0 80px; }
  .faq-item > summary { font-size: 17px; padding: 18px 4px; }

  .cta-final { padding: 72px 0; }
  .cta-title { font-size: 32px; }
  .cta-title br { display: none; }

  .site-footer { padding: 40px 0 48px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  .fab-whats { width: 48px; height: 48px; right: 16px; bottom: 16px; }
}
