:root {
  --green-deep: #1a2e1a;
  --green-mid: #2d4a2d;
  --green-light: #4a7a4a;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-pale: #f5e6b8;
  --cream: #faf6ee;
  --white: #ffffff;
  --text-dark: #1a1a14;
  --text-mid: #3d3d2e;
  --text-light: #6b6b50;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Cormorant Garamond', serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--green-deep) 0%, #0e1f0e 60%, #1c3010 100%);
  overflow: hidden;
}

.hero-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; opacity: 0.6;
}

.hero-lines {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(201,168,76,0.05) 80px);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 7rem 2rem 2rem;
  animation: fadeUp 1.2s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-block;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 0.5rem 1.5rem;
  margin-bottom: 2rem;
  animation: fadeUp 1.2s ease 0.1s both;
}

.hero-logo {
  width: 70%;
  margin: 0 auto 2rem;
  animation: fadeUp 1.2s ease 0.2s both;
  filter: drop-shadow(0 4px 24px rgba(201,168,76,0.3));
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 0.95;
  letter-spacing: -0.02em;
  animation: fadeUp 1.2s ease 0.3s both;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
  display: block;
}

.hero-sub {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 1.5rem;
  animation: fadeUp 1.2s ease 0.4s both;
}

.hero-price-box {
  margin: 3rem auto 0;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(201,168,76,0.3);
  padding: 1.5rem 3rem;
  animation: fadeUp 1.2s ease 0.5s both;
}

.hero-price-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.hero-price {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
}

.hero-price span {
  font-size: 0.7em;
  color: var(--gold-light);
}

.hero-cta-row {
  margin-top: 3rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 1.2s ease 0.6s both;
}

.btn-primary {
  background: var(--gold);
  color: var(--green-deep);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  display: inline-block;
}

.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s;
  display: inline-block;
}

.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  animation: fadeUp 1.2s ease 0.8s both;
}

.hero-scroll span {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; } 50% { opacity: 1; }
}

/* ─── DIVIDER ─── */
.divider {
  display: flex; align-items: center; gap: 1.5rem;
  padding: 0 2rem;
  margin: 0 auto;
  max-width: 800px;
}
.divider-line { flex: 1; height: 1px; background: var(--gold); opacity: 0.3; }
.divider-diamond {
  width: 8px; height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ─── STATS BAR ─── */
.stats-bar {
  background: var(--green-deep);
  padding: 3rem 2rem;
}

.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item { padding: 1rem; }

.stat-num {
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.stat-unit {
  font-size: 1rem;
  color: var(--gold-light);
}

.stat-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 0.4rem;
  display: block;
}

/* ─── SECTIONS ─── */
.section {
  padding: 6rem 2rem;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-tag {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--green-deep);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.section-title em { font-style: italic; color: var(--green-light); }

.section-body {
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 620px;
}

/* ─── ABOUT SPLIT ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
}

.about-image-stack {
  position: relative;
  height: 480px;
}

.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 80%; height: 85%;
  object-fit: cover;
  border: 3px solid rgba(201,168,76,0.2);
}

.about-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%; height: 55%;
  object-fit: cover;
  border: 3px solid var(--gold);
}

.about-label-box {
  position: absolute;
  top: 50%; right: 0; transform: translateY(-50%);
  background: var(--green-deep);
  padding: 1.5rem;
  text-align: center;
  width: 120px;
}

.about-label-num {
  font-size: 2rem;
  color: var(--gold);
  font-weight: 600;
  display: block;
}

.about-label-text {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.5rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 0.3rem;
  display: block;
}

/* ─── FEATURES GRID ─── */
.features-section {
  background: var(--green-deep);
  padding: 6rem 2rem;
}

.features-grid {
  max-width: 1100px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
}

.feature-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.12);
  padding: 2.5rem 2rem;
  transition: background 0.3s, border-color 0.3s;
}

.feature-card:hover {
  background: rgba(201,168,76,0.05);
  border-color: rgba(201,168,76,0.3);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  display: block;
}

.feature-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 0.8rem;
}

.feature-text {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* ─── GALLERY ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 4px;
  margin-top: 3rem;
}

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item:first-child { grid-column: 1 / -1; }
}

.gallery-item {
  overflow: hidden;
  position: relative;
}

.gallery-item:first-child { grid-row: 1 / 3; }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,20,10,0.6), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex; align-items: flex-end;
  padding: 1.2rem;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── LOCALIZACAO ─── */
.location-section {
  background: linear-gradient(135deg, var(--green-deep), #0e240e);
  padding: 6rem 2rem;
}

.location-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

@media (max-width: 768px) {
  .location-grid { grid-template-columns: 1fr; gap: 3rem; }
}

.location-info .section-title { color: var(--white); }
.location-info .section-body { color: rgba(255,255,255,0.65); }

.location-points {
  list-style: none;
  margin-top: 2rem;
}

.location-points li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  font-weight: 300;
}

.location-points li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.map-placeholder {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 2px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.map-coord-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: rgba(201,168,76,0.06);
  border-left: 2px solid var(--gold);
}

.map-coord-key {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.map-coord-val {
  font-size: 1rem;
  color: var(--white);
  font-weight: 300;
}

.map-embed {
  width: 100%;
  height: 220px;
  border: none;
  border-radius: 2px;
  filter: grayscale(30%) saturate(0.8);
}

/* ─── DOCUMENTS ─── */
.docs-section {
  padding: 6rem 2rem;
  background: var(--cream);
}

.docs-grid {
  max-width: 1100px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.doc-card {
  border: 1px solid rgba(201,168,76,0.25);
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: white;
  transition: box-shadow 0.3s, border-color 0.3s;
}

.doc-card:hover {
  box-shadow: 0 8px 40px rgba(26,46,26,0.1);
  border-color: var(--gold);
}

.doc-icon {
  font-size: 2rem;
  flex-shrink: 0;
  line-height: 1;
}

.doc-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 0.4rem;
}

.doc-text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  font-weight: 300;
}

/* ─── INVESTIMENTO ─── */
.invest-section {
  background: var(--green-mid);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.invest-section::before {
  content: 'R$';
  position: absolute;
  font-size: 30vw;
  font-weight: 700;
  color: rgba(255,255,255,0.02);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  line-height: 1;
}

.invest-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.invest-inner .section-title { color: var(--white); }

.invest-amount {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 600;
  color: var(--gold);
  margin: 2rem 0 1rem;
  line-height: 1;
}

.invest-note {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 3rem;
}

.invest-highlights {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin: 2rem 0 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201,168,76,0.2);
}

.invest-hl {
  text-align: center;
}

.invest-hl-val {
  font-size: 1.6rem;
  color: var(--gold-light);
  font-weight: 600;
  display: block;
}

.invest-hl-key {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 0.3rem;
  display: block;
}

/* ─── FORM ─── */
.form-section {
  padding: 6rem 2rem;
  background: var(--cream);
}

.form-wrap {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

@media (max-width: 768px) {
  .form-wrap { grid-template-columns: 1fr; gap: 3rem; }
}

.form-side-title {
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--green-deep);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.form-side-title em { font-style: italic; color: var(--green-light); }

.form-side-text {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.contact-direct {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--text-mid);
}

.contact-item-icon {
  width: 40px; height: 40px;
  background: var(--green-deep);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.contact-item-text { font-weight: 300; }
.contact-item-text strong { display: block; font-weight: 600; color: var(--green-deep); }

form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 500px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-light);
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid rgba(26,46,26,0.2);
  padding: 0.9rem 1rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--text-dark);
  background: white;
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-submit {
  background: var(--green-deep);
  color: var(--gold);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1.1rem 2rem;
  border: 1px solid var(--green-deep);
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  margin-top: 0.5rem;
}

.form-submit:hover {
  background: var(--gold);
  color: var(--green-deep);
  border-color: var(--gold);
}

.form-notice {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 300;
  text-align: center;
  margin-top: 0.5rem;
}

/* ─── SUCCESS ─── */
.form-success {
  display: none;
  background: var(--green-deep);
  color: var(--white);
  padding: 2.5rem;
  text-align: center;
  border: 1px solid var(--gold);
}

.form-success h3 {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.form-success p {
  font-weight: 300;
  color: rgba(255,255,255,0.7);
}




/* ─── FOOTER ─── */
footer {
  background: var(--green-deep);
  padding: 3rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(201,168,76,0.15);
}

.footer-logo { width: 20%; margin: 0 auto 1.5rem; opacity: 0.8; }

.footer-company {
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
}

.footer-cnpj {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
}

.footer-sep {
  width: 50px; height: 1px;
  background: rgba(201,168,76,0.3);
  margin: 1.5rem auto;
}

.footer-legal {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ─── STICKY CTA ─── */
.sticky-cta {
  position: fixed;
  bottom: 2rem; right: 2rem;
  background: var(--gold);
  color: var(--green-deep);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 1.5rem;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  z-index: 100;
  transition: background 0.3s, transform 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sticky-cta:hover { background: var(--gold-light); transform: translateY(-3px); }

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  transition: background 0.4s;
}

nav.scrolled {
  background: rgba(12, 26, 12, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0 0.6rem;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.nav-brand-logo {
  height: 34px;
  width: auto;
  filter: drop-shadow(0 2px 6px rgba(201,168,76,0.25));
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-brand-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.05em;
}

.nav-brand-sub {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.45rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-top-right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav-phone {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-phone:hover { color: var(--gold); }
.nav-phone strong { color: rgba(255,255,255,0.85); }

@media (max-width: 500px) { .nav-phone { display: none; } }

.nav-cta {
  background: var(--gold);
  border: none;
  color: var(--green-deep);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.6rem 1.2rem;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
  white-space: nowrap;
}

.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

.nav-bottom {
  display: flex;
  justify-content: center;
}

@media (max-width: 700px) { .nav-bottom { display: none; } }

.nav-links {
  display: flex;
  gap: 0;
  list-style: none;
}

.nav-links a {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.54rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.3s;
  padding: 0.55rem 1.1rem;
  display: block;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 1.1rem; right: 1.1rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

@media (max-width: 700px) { .nav-hamburger { display: flex; } }

.nav-hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--gold);
}

.nav-mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(12,26,12,0.98);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 0.5rem 0;
}

.nav-mobile-menu.open { display: flex; }

.nav-mobile-menu a {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  padding: 0.9rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 0.3s;
}

.nav-mobile-menu a:hover { color: var(--gold); }

/* ─── BUYER PROFILES ─── */
.buyers-section {
  padding: 6rem 2rem;
  background: white;
}

.buyers-inner { max-width: 1100px; margin: 0 auto; }

.buyers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.buyer-card {
  border: 1px solid rgba(26,46,26,0.1);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.buyer-card:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(201,168,76,0.1);
  transform: translateY(-4px);
}

.buyer-card-icon { font-size: 2.4rem; margin-bottom: 1rem; display: block; }

.buyer-card-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 0.6rem;
}

.buyer-card-text {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.65;
}

.buyer-card-tag {
  display: inline-block;
  margin-top: 1rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.48rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 0.3rem 0.8rem;
}

/* ─── AÇAÍ CAPITAL ─── */
.acai-section {
  background: linear-gradient(135deg, #0b1f0b 0%, #162b10 50%, #0e1e0e 100%);
  padding: 7rem 2rem;
  position: relative;
  overflow: hidden;
}

.acai-section::before {
  content: 'AÇAÍ';
  position: absolute;
  font-size: 22vw;
  font-weight: 700;
  font-family: 'Cormorant Garamond', serif;
  opacity: 0.04;
  color: var(--gold);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  white-space: nowrap;
}

.acai-inner { max-width: 1100px; margin: 0 auto; position: relative; }

.acai-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

@media (max-width: 768px) { .acai-grid { grid-template-columns: 1fr; gap: 3rem; } }

.acai-text .section-title { color: var(--white); }
.acai-text .section-body { color: rgba(255,255,255,0.65); }
.acai-text .section-body + .section-body { margin-top: 1rem; }

.acai-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.acai-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.18);
  padding: 1.8rem 1.5rem;
  text-align: center;
  transition: border-color 0.3s, background 0.3s;
}

.acai-stat:hover { border-color: var(--gold); background: rgba(201,168,76,0.06); }

.acai-stat-num {
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.acai-stat-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.53rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 0.5rem;
  display: block;
  line-height: 1.5;
}

.acai-highlight-box {
  grid-column: 1 / -1;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.3);
  border-left: 4px solid var(--gold);
  padding: 1.5rem 2rem;
}

.acai-highlight-box p {
  font-size: 1.05rem;
  color: var(--gold-light);
  font-weight: 300;
  line-height: 1.75;
  font-style: italic;
}

/* ─── TESTIMONIAL / CREDIBILITY ─── */
.cred-section {
  padding: 5rem 2rem;
  background: white;
}

.cred-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.cred-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.cred-item {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(26,46,26,0.08);
  transition: border-color 0.3s;
}

.cred-item:hover { border-color: var(--gold); }

.cred-emoji { font-size: 2.2rem; display: block; margin-bottom: 1rem; }

.cred-item-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 0.5rem;
}

.cred-item-text {
  font-size: 0.88rem;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.6;
}

/* ─── URGENCY ─── */
.urgency-bar {
  background: var(--gold);
  padding: 1rem 2rem;
  text-align: center;
}

.urgency-bar p {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-deep);
  font-weight: 600;
}

/* ─── REVEAL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }


@media (max-width: 1024px) {
  .footer-logo {
    width: 60%;
  }
  
  hero-logo{
	  width:90%;
  }
  
  .urgency-bar{
	  display:none;
  }
}