/* Estilo base compartilhado por todas as páginas */
:root {
  --gold: #d29e44;
  --gold-soft: #e9c8ae;
  --sand: #bea384;
  --bg: #fdf8f4;
  --bg-2: #f7f0eb;
  --bg-3: #efe5db;
  --ink: #3a2e1f;
  --ink-2: #5a4a36;
  --ink-3: #8a7559;
  --dark: #2a2218;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--ink); }
body {
  font-family: 'Manrope', sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
::selection { background: var(--gold); color: var(--bg); }
a { color: inherit; }
img { max-width: 100%; display: block; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: var(--gold-soft); }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* Typography */
h1, h2, h3, h4 { font-family: 'Manrope', sans-serif; font-weight: 300; letter-spacing: -0.02em; color: var(--ink); margin: 0; }
h1 { font-size: clamp(48px, 6vw, 88px); line-height: 1.05; }
h2 { font-size: clamp(36px, 4.2vw, 60px); line-height: 1.1; }
h3 { font-size: clamp(22px, 1.8vw, 28px); line-height: 1.25; font-weight: 400; }
.script { font-family: 'Caveat', cursive; font-weight: 400; color: var(--gold); font-style: normal; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 11px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--sand);
}
.eyebrow::before {
  content: ""; width: 32px; height: 1px; background: var(--gold);
}
p { margin: 0 0 18px; text-wrap: pretty; text-align: justify; hyphens: auto; -webkit-hyphens: auto; }
.lead { font-size: 19px; line-height: 1.75; color: var(--ink-2); max-width: 660px; text-align: justify; hyphens: auto; -webkit-hyphens: auto; }

/* Layout */
.container { max-width: 1200px; margin: 0 auto; padding: 0 6vw; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 6vw; }
section { padding: 100px 0; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px; border: none; cursor: pointer;
  font-family: 'Manrope', sans-serif; font-size: 12px;
  letter-spacing: 0.25em; text-transform: uppercase;
  text-decoration: none; transition: all 0.25s ease;
}
.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover { background: var(--gold); color: var(--ink); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--sand); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--ink); color: var(--bg); }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253, 248, 244, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(233, 200, 174, 0.5);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; gap: 24px;
  padding: 18px 5vw;
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--ink);
  font-size: 14px; letter-spacing: 0.18em;
  text-transform: lowercase; font-weight: 500;
}
.nav-brand-mark { color: var(--gold); }
.nav-links {
  flex: 1; display: flex; justify-content: center; gap: 4px; flex-wrap: wrap;
}
.nav-link {
  padding: 10px 14px; font-size: 13px; color: var(--ink-2);
  text-decoration: none; transition: color 0.2s; position: relative;
}
.nav-link:hover { color: var(--gold); }
.nav-link.active { color: var(--gold); font-weight: 500; }
.nav-link.active::after {
  content: ""; position: absolute; bottom: -2px; left: 50%;
  transform: translateX(-50%); width: 4px; height: 4px;
  border-radius: 999px; background: var(--gold);
}
.nav-cta {
  background: var(--ink); color: var(--bg);
  padding: 10px 18px; font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none; transition: background 0.2s;
}
.nav-cta:hover { background: var(--gold); color: var(--ink); }

@media (max-width: 900px) {
  .nav-links { display: none; }
}

/* Footer */
.footer {
  background: var(--dark); color: var(--bg);
  padding: 80px 0 40px;
}
.footer .container { padding: 0 6vw; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 64px;
}
.footer-h {
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 20px;
}
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin-bottom: 10px; }
.footer-list a {
  color: var(--gold-soft); text-decoration: none;
  font-size: 14px; transition: color 0.2s;
}
.footer-list a:hover { color: var(--bg); }
.footer-tag {
  font-family: 'Caveat', cursive; font-size: 28px;
  color: var(--gold); margin-bottom: 24px; line-height: 1.2;
}
.footer-bot {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  padding-top: 32px; border-top: 1px solid rgba(210, 158, 68, 0.2);
  font-size: 12px; color: var(--sand); letter-spacing: 0.05em;
}

@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* Cards */
.card {
  background: var(--bg); padding: 36px 32px;
  border: 1px solid var(--gold-soft);
  transition: all 0.3s ease;
}
.card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* Hero patterns */
.bg-soft { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }
.bg-warm { background: var(--bg-2); }
.bg-deep { background: var(--ink); color: var(--bg); }
.bg-deep h1, .bg-deep h2, .bg-deep h3 { color: var(--bg); }

/* Page hero header (smaller, calm) */
.page-hero {
  padding: 140px 0 80px; position: relative; overflow: hidden;
}
.page-hero h1 { max-width: 900px; }
.page-hero .lead { margin-top: 28px; }

/* Botanical decorations */
.decor { position: absolute; pointer-events: none; opacity: 0.4; }

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s ease both; }
.fade-up-1 { animation-delay: 0.05s; }
.fade-up-2 { animation-delay: 0.15s; }
.fade-up-3 { animation-delay: 0.25s; }
.fade-up-4 { animation-delay: 0.35s; }

/* Reveal — only hides when JS has marked the page ready */
html.js-ready [data-reveal]:not(.revealed) { opacity: 0; transform: translateY(20px); }
[data-reveal] { transition: opacity 0.8s ease, transform 0.8s ease; }

/* Utility */
.divider {
  height: 1px; background: var(--gold-soft);
  margin: 64px 0; opacity: 0.6;
}
.gold-line { width: 80px; height: 2px; background: var(--gold); margin: 0 0 24px; }
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; }
.tag {
  padding: 6px 14px; border: 1px solid var(--gold-soft);
  border-radius: 999px; font-size: 12px;
  color: var(--ink-3); background: var(--bg);
}
