/* ==========================================================================
   Treecap — Design System v5 (Boutique Finance Reference)
   Paleta: Cream / Emerald Deep / Gold
   Tipografia: Cormorant Garamond + Karla
   ========================================================================== */

:root {
  /* --- Paleta --- */
  --cream:          #f5f0e0;
  --cream-80:       rgba(245,240,224,0.80);
  --cream-95:       rgba(245,240,224,0.95);
  --emerald-deep:   #064e3b;
  --emerald-mid:    #0d7a5f;
  --gold:           #c9a84c;
  --gold-40:        rgba(201,168,76,0.40);
  --gold-soft:      rgba(201,168,76,0.15);

  /* --- Tipografia --- */
  --font-display: "Cormorant Garamond", "Georgia", serif;
  --font-body:    "Karla", "Helvetica Neue", Arial, sans-serif;

  /* --- Layout --- */
  --container:        1200px;
  --container-narrow: 860px;
  --space-xs:   8px;
  --space-sm:  16px;
  --space-md:  32px;
  --space-lg:  64px;
  --space-xl:  96px;

  /* --- Animação --- */
  --ease:     cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --duration: 650ms;
}

/* ---------- Reset / Base ---------- */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--emerald-deep);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main { display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--emerald-deep);
  margin: 0 0 var(--space-sm) 0;
  line-height: 1.1;
  font-weight: 500;
}

h1 {
  font-size: clamp(42px, 7vw, 88px);
  line-height: 0.95;
  font-weight: 500;
}
h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  margin-top: var(--space-lg);
}
h3 { font-size: 24px; margin-top: var(--space-md); }
h4 {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-top: var(--space-md);
}

p { margin: 0 0 var(--space-sm) 0; }

a {
  color: var(--emerald-deep);
  text-decoration: none;
  transition: color .15s ease;
}
a:hover { color: var(--emerald-mid); }

hr {
  border: 0;
  border-top: 1px solid var(--gold-40);
  margin: var(--space-lg) 0;
}

ul { padding-left: 1.2em; margin: 0 0 var(--space-sm) 0; }
ul li { margin-bottom: 8px; }
ul li::marker { color: var(--gold); }

/* ---------- Layout ---------- */

.container        { max-width: var(--container); margin: 0 auto; padding: 0 var(--space-md); }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--space-md); }

section { padding: var(--space-xl) 0; position: relative; overflow: hidden; }
section.tight { padding: var(--space-lg) 0; }

.grid { display: grid; gap: var(--space-md); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.col-4-8 { grid-template-columns: 4fr 8fr; gap: var(--space-lg); }

@media (max-width: 860px) {
  .grid-2, .grid-3, .grid-4, .col-4-8 { grid-template-columns: 1fr; }
  section { padding: var(--space-lg) 0; }
}

/* ---------- Scroll-reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--duration) var(--ease), transform var(--duration) var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Navbar ---------- */

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245,240,224,0.90);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gold-40);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px var(--space-md);
}

/* Logo — navbar (sobre cream: paths cream→emerald-deep, dourado→emerald-mid) */
.navbar .brand-logo svg path[fill="#D6D6BB"] { fill: var(--emerald-deep); }
.navbar .brand-logo svg path[fill="#A89C7A"] { fill: var(--emerald-mid); }
.navbar .brand-logo svg path[fill="#66644F"] { fill: var(--emerald-mid); }

/* Logo — footer (sobre emerald-deep: paths→cream) */
.footer .brand-logo svg path[fill="#D6D6BB"] { fill: var(--cream); }
.footer .brand-logo svg path[fill="#A89C7A"] { fill: rgba(245,240,224,0.75); }
.footer .brand-logo svg path[fill="#66644F"] { fill: rgba(245,240,224,0.55); }

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}
.brand:hover { text-decoration: none; }
.brand-logo {
  display: inline-flex;
  align-items: center;
  height: 36px;
}
.brand-logo svg {
  height: 100%;
  width: auto;
  display: block;
}

/* Nav links */
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-family: var(--font-body);
  color: var(--emerald-deep);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: color .15s, border-color .15s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
  text-decoration: none;
}

/* Dropdown */
.dropdown { position: relative; }
.dropdown-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 280px;
  background: var(--emerald-deep);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transition: all .18s ease;
  z-index: 200;
}
.dropdown:hover .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-panel a {
  display: block;
  padding: 10px 24px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.05em;
  border-bottom: none;
  opacity: 0.85;
  transition: opacity .12s, color .12s;
}
.dropdown-panel a:hover {
  opacity: 1;
  color: var(--gold);
  text-decoration: none;
}

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

/* ---------- Botões ---------- */

.btn {
  display: inline-block;
  padding: 16px 32px;
  background: var(--emerald-deep);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  text-decoration: none;
  border: 1px solid var(--emerald-deep);
  border-radius: 0;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s;
  cursor: pointer;
}
.btn:hover {
  background: var(--emerald-mid);
  border-color: var(--emerald-mid);
  color: var(--cream);
  text-decoration: none;
}
.btn-ghost {
  background: transparent;
  color: var(--emerald-deep);
  border: 1px solid rgba(6,78,59,0.30);
}
.btn-ghost:hover {
  background: var(--emerald-deep);
  color: var(--cream);
  border-color: var(--emerald-deep);
}
.btn-light {
  background: var(--cream);
  color: var(--emerald-deep);
  border-color: var(--cream);
}
.btn-light:hover {
  background: var(--emerald-deep);
  color: var(--cream);
  border-color: var(--emerald-deep);
}
.btn-xl {
  padding: 20px 48px;
  font-size: 12px;
  box-shadow: 0 20px 40px rgba(6,78,59,0.25);
}

/* ---------- Eyebrow ---------- */

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 24px;
  display: block;
}
.eyebrow-sm {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

/* ---------- Divisor gold ---------- */

.divider-gold {
  display: block;
  height: 1px;
  background: var(--gold-40);
  width: 100%;
  margin: 0;
}
.divider-gold-96 {
  display: block;
  height: 1px;
  background: var(--gold);
  width: 96px;
  margin-top: 24px;
}

/* ---------- Utility ---------- */

.mt-0  { margin-top: 0 !important; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mb-0  { margin-bottom: 0 !important; }
.mb-16 { margin-bottom: 16px; }
.mb-32 { margin-bottom: 32px; }
.center { text-align: center; }
.text-cream { color: var(--cream); }
.text-gold  { color: var(--gold); }
.muted { color: rgba(6,78,59,0.70); }
.muted-sm { font-size: 14px; color: rgba(6,78,59,0.70); }
.sm { font-size: 14px; }
.lead-text { font-size: 18px; line-height: 1.7; color: rgba(6,78,59,0.80); }
.body-text  { font-size: 17px; line-height: 1.7; color: rgba(6,78,59,0.80); }

/* ---------- HERO (tipográfico, fundo cream) ---------- */

.hero {
  padding: 128px 0 96px;
  background: var(--cream);
  position: relative;
}
.hero-inner { position: relative; z-index: 1; }
.hero .eyebrow { color: var(--gold); }
.hero h1 { max-width: 900px; color: var(--emerald-deep); }
.hero h1 em { font-style: italic; }
.hero .lead {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  color: rgba(6,78,59,0.80);
  max-width: 580px;
  margin: 24px 0 40px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-divider {
  width: 100%;
  height: 1px;
  background: var(--gold-40);
  margin-top: 96px;
}

/* ---------- Seção institucional (fundo branco/40) ---------- */

.section-institucional {
  background: rgba(255,255,255,0.40);
  padding: var(--space-xl) 0;
}

/* ---------- Serviços — Tabular Index (emerald-deep) ---------- */

.services-section {
  background: var(--emerald-deep);
  padding: var(--space-xl) 0;
  color: var(--cream);
}
.services-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 0;
}
.services-header h2 { color: var(--cream); margin-top: 0; }
.services-index-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
}
.services-divider {
  width: 100%;
  height: 1px;
  background: rgba(245,240,224,0.10);
  margin: 24px 0 0;
}
.services-table-header {
  display: grid;
  grid-template-columns: 80px 1fr 160px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(245,240,224,0.10);
}
.services-table-header span {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
}
.service-row {
  display: grid;
  grid-template-columns: 80px 1fr 160px;
  align-items: center;
  padding: 32px 0;
  border-top: 1px solid rgba(245,240,224,0.10);
  text-decoration: none;
  color: var(--cream);
  transition: background .15s ease;
  cursor: pointer;
}
.service-row:hover {
  background: rgba(245,240,224,0.05);
  color: var(--cream);
  text-decoration: none;
}
.service-num {
  font-family: var(--font-display);
  font-size: 24px;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
}
.service-name {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.1;
}
.service-cta {
  font-family: var(--font-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  opacity: 0;
  transition: opacity .15s ease;
  text-align: right;
}
.service-row:hover .service-cta { opacity: 1; }

@media (max-width: 640px) {
  .services-table-header { grid-template-columns: 56px 1fr; }
  .services-table-header span:last-child { display: none; }
  .service-row { grid-template-columns: 56px 1fr; padding: 20px 0; }
  .service-name { font-size: 22px; }
  .service-cta { display: none; }
}

/* ---------- Imagem Rochaverá (full-bleed) ---------- */

.rochavera-band {
  padding: 0;
  height: 70vh;
  min-height: 400px;
  overflow: hidden;
  position: relative;
}
.rochavera-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.rochavera-caption {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--cream-95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 16px 24px;
}
.rochavera-caption p {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--emerald-deep);
  margin: 0;
}

/* ---------- Diferenciais (fundo cream) ---------- */

.diferencial-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}
.diferencial-title {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--emerald-deep);
  margin: 0 0 8px 0;
}
.diferencial-text {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(6,78,59,0.70);
  margin: 0;
  line-height: 1.6;
}

/* ---------- Split section (emerald-deep) ---------- */

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  background: var(--emerald-deep);
}
.split-photo {
  overflow: hidden;
}
.split-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: url(#pencil-sketch);
}
.split-content {
  padding: 48px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--emerald-deep);
}
.split-content .eyebrow { color: var(--gold); }
.split-content h2 {
  color: var(--cream);
  font-size: clamp(28px, 3.5vw, 48px);
  margin-top: 0;
}
.split-content p {
  color: rgba(245,240,224,0.70);
  font-size: 18px;
  line-height: 1.7;
}

@media (max-width: 860px) {
  .split-section { grid-template-columns: 1fr; }
  .split-photo { height: 360px; }
  .split-content { padding: 48px var(--space-md); }
}

/* ---------- Pull Quote ---------- */

.pull-quote-section {
  background: var(--emerald-deep);
  border-top: 1px solid rgba(245,240,224,0.05);
  padding: 128px 0;
  text-align: center;
}
.pull-quote-section blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(28px, 3.5vw, 48px);
  color: var(--cream);
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.25;
  text-wrap: balance;
}
.pull-quote-dot {
  display: block;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin: 48px auto 0;
}

/* ---------- CTA Final ---------- */

.cta-section {
  background: var(--cream);
  padding: 128px 0;
  text-align: center;
}
.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  color: var(--emerald-deep);
  max-width: 750px;
  margin: 0 auto var(--space-sm);
}
.cta-section .lead {
  font-size: 18px;
  color: rgba(6,78,59,0.70);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.65;
}

/* ---------- Hero de páginas internas ---------- */

.hero-inner-page {
  padding: 128px 0 80px;
  background: var(--cream);
}
.hero-inner-page h1 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  max-width: 800px;
  color: var(--emerald-deep);
}
.hero-inner-page .lead {
  font-size: 18px;
  color: rgba(6,78,59,0.80);
  max-width: 680px;
  margin: 20px 0 0;
  line-height: 1.65;
}
.hero-inner-page .eyebrow { color: var(--gold); }

/* ---------- Seções internas: bg-light, bg-dark ---------- */

.bg-light { background: rgba(255,255,255,0.50); }
.bg-dark  { background: var(--emerald-deep); color: var(--cream); }
.bg-dark h1,
.bg-dark h2,
.bg-dark h3 { color: var(--cream); }
.bg-dark h4  { color: var(--gold); }
.bg-dark p   { color: rgba(245,240,224,0.80); }
.bg-dark a   { color: var(--cream); }

/* ---------- Cards (páginas internas) ---------- */

.card-link { text-decoration: none; color: inherit; display: block; }
.card-link:hover { text-decoration: none; color: inherit; }
.card {
  background: rgba(255,255,255,0.60);
  padding: 28px 28px 24px;
  border: 1px solid var(--gold-40);
  transition: all .2s ease;
}
.card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.card h3 { margin-top: 0; margin-bottom: 10px; font-size: 22px; }
.card p { color: rgba(6,78,59,0.70); font-size: 15px; margin-bottom: 16px; }
.card .arrow {
  color: var(--gold);
  font-size: 14px;
  transition: transform .2s var(--ease);
  display: inline-block;
}
.card:hover .arrow { transform: translateX(4px); }

/* ---------- Card-num (páginas internas) ---------- */

.card-num {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--gold);
  font-style: italic;
  line-height: 1;
  margin-bottom: 12px;
}
.h3-sm { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--emerald-deep); margin: 0 0 8px; font-family: var(--font-body); }

/* ---------- Section utilitários (pages internas) ---------- */

.section-eyebrow { color: var(--gold); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.25em; margin-bottom: 16px; display: block; }
.section-subtitle { font-size: 18px; color: rgba(6,78,59,0.75); max-width: 780px; margin-bottom: 48px; line-height: 1.65; }
.link-strong { font-weight: 600; color: var(--emerald-deep); border-bottom: 1px solid var(--gold); padding-bottom: 1px; }
.link-strong:hover { color: var(--gold); }

/* ---------- Pull quote (páginas internas) ---------- */

.pull-quote {
  font-family: var(--font-display);
  font-size: 26px;
  font-style: italic;
  line-height: 1.4;
  color: var(--cream);
  border-left: 3px solid var(--gold);
  padding-left: 28px;
  margin: 0;
}

/* ---------- Process (páginas de serviço) ---------- */

.process { counter-reset: step; }
.process .step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--gold-40);
}
.process .step:last-child { border-bottom: none; }
.process .step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 32px;
  font-style: italic;
  color: var(--gold);
  line-height: 1.1;
}
.process .step h4 {
  margin-top: 0;
  color: var(--emerald-deep);
  text-transform: none;
  letter-spacing: 0;
  font-size: 17px;
  font-weight: 600;
  font-family: var(--font-body);
}
.process .step p { color: rgba(6,78,59,0.70); font-size: 15px; margin-bottom: 0; }

/* ---------- Stats ---------- */

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-md); }
.stat { border-top: 1px solid var(--gold); padding-top: 16px; }
.stat .num {
  font-family: var(--font-display);
  font-size: 48px;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}
.stat .label { color: rgba(6,78,59,0.65); font-size: 13px; line-height: 1.4; font-family: var(--font-body); }

@media (max-width: 860px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Aside ---------- */

.aside {
  border-left: 3px solid var(--gold);
  padding: 22px 26px;
  background: rgba(201,168,76,0.08);
}
.aside-title { margin-top: 0; color: var(--emerald-deep); font-size: 15px; }
.aside-body  { margin-bottom: 0; font-size: 15px; color: rgba(6,78,59,0.75); line-height: 1.65; }

/* ---------- Glossário / Legal ---------- */

.glossary dt { font-weight: 600; color: var(--emerald-deep); margin-top: 20px; font-size: 16px; }
.glossary dd { margin-left: 0; color: rgba(6,78,59,0.70); font-size: 15px; line-height: 1.6; }

.legal-doc { font-size: 16px; line-height: 1.75; color: rgba(6,78,59,0.80); }
.legal-doc h3 { margin-top: 40px; margin-bottom: 14px; font-size: 22px; color: var(--emerald-deep); }
.legal-doc h4 { margin-top: 28px; margin-bottom: 10px; font-size: 12px; color: var(--gold); text-transform: uppercase; letter-spacing: 0.2em; }
.legal-doc p { margin: 0 0 16px; }
.legal-doc ul, .legal-doc ol { margin: 0 0 20px 20px; padding: 0; }
.legal-doc li { margin-bottom: 8px; line-height: 1.7; }
.legal-doc .legal-updated { margin-top: 48px; padding-top: 20px; border-top: 1px solid var(--gold-40); font-size: 14px; color: rgba(6,78,59,0.55); }
.legal-table-wrap { overflow-x: auto; margin: 12px 0 24px; border: 1px solid var(--gold-40); }
.legal-table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.legal-table th, .legal-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--gold-40); vertical-align: top; }
.legal-table th { background: rgba(201,168,76,0.10); color: var(--emerald-deep); font-weight: 600; }
.legal-table tr:last-child td { border-bottom: none; }

/* ---------- Time / Team cards ---------- */

.team-grid { gap: 36px var(--space-md); }
.team-card {
  background: rgba(255,255,255,0.50);
  padding: 32px 28px;
  border: 1px solid var(--gold-40);
  text-align: left;
  transition: all .2s ease;
}
.team-card:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
}
.team-photo {
  width: 96px;
  height: 96px;
  margin-bottom: 20px;
  overflow: hidden;
  background: var(--gold-soft);
}
.team-photo img, .team-photo svg { width: 100%; height: 100%; object-fit: cover; display: block; }
.team-name { font-size: 22px; margin: 0 0 4px 0; color: var(--emerald-deep); }
.team-role {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 700;
  font-family: var(--font-body);
  margin-bottom: 16px;
  display: block;
}
.team-bio { color: rgba(6,78,59,0.70); font-size: 15px; line-height: 1.6; margin-bottom: 0; }

/* ---------- Form ---------- */

.form { display: grid; gap: 20px; max-width: 620px; }
.form label { display: block; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(6,78,59,0.75); margin-bottom: 6px; font-family: var(--font-body); }
.form input, .form textarea, .form select {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  font-family: var(--font-body);
  border: 1px solid var(--gold-40);
  border-radius: 0;
  background: rgba(255,255,255,0.70);
  color: var(--emerald-deep);
  transition: border-color .15s, box-shadow .15s;
}
.form input:focus, .form textarea:focus, .form select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.form textarea { min-height: 140px; resize: vertical; }
.form .checkbox-row { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: rgba(6,78,59,0.75); }
.form .checkbox-row input[type="checkbox"] { width: auto; margin-top: 3px; }

/* ---------- Img band (páginas internas) ---------- */

.img-band {
  padding: 0;
  height: 440px;
  overflow: hidden;
  position: relative;
}
.img-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.img-band-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,78,59,0.75) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
}
.img-band-caption {
  padding: 28px 40px;
  color: rgba(245,240,224,0.80);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 700;
}

/* ---------- Split img / texto (páginas internas) ---------- */

.img-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  gap: 0;
}
.img-split-photo { overflow: hidden; }
.img-split-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.img-split-content {
  background: var(--emerald-deep);
  color: var(--cream);
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.img-split-content h2 { color: var(--cream); margin-top: 0; }
.img-split-content .split-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}
.img-split-content p { color: rgba(245,240,224,0.75); line-height: 1.75; margin-bottom: 16px; }
.img-split-content p:last-child { margin-bottom: 0; }
@media (max-width: 860px) {
  .img-split { grid-template-columns: 1fr; }
  .img-split-photo { height: 320px; }
  .img-split-content { padding: 48px var(--space-md); }
}

/* ---------- Footer ---------- */

.footer {
  background: var(--emerald-deep);
  color: var(--cream);
  padding: var(--space-lg) 0 var(--space-md);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--space-md);
}
.footer h4 {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 16px;
  margin-top: 0;
}
.footer a {
  color: var(--cream);
  text-decoration: none;
  display: block;
  padding: 4px 0;
  font-size: 14px;
  opacity: 0.80;
  transition: opacity .15s, color .15s;
  font-family: var(--font-body);
}
.footer a:hover { opacity: 1; color: var(--gold); text-decoration: none; }
.footer .brand-footer { margin-bottom: 12px; display: inline-flex; }
.footer .brand-footer .brand-logo { height: 44px; }
.footer-tagline {
  color: var(--cream);
  opacity: 0.65;
  font-size: 14px;
  line-height: 1.55;
  margin: 16px 0 0 0;
  max-width: 320px;
  font-family: var(--font-body);
}
.footer-address {
  font-size: 13px;
  line-height: 1.5;
  opacity: 0.75;
  margin-top: 10px;
  padding-top: 4px;
  font-family: var(--font-body);
}
.footer-bottom {
  border-top: 1px solid rgba(245,240,224,0.10);
  margin-top: var(--space-lg);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--cream);
  opacity: 0.65;
  font-family: var(--font-body);
}
.footer-bottom a.inline { display: inline; margin-right: 16px; padding: 0; opacity: 1; }
.footer-disclaimer {
  font-size: 12px;
  line-height: 1.55;
  opacity: 0.55;
  max-width: 900px;
  margin-top: 16px;
  font-family: var(--font-body);
}

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; }
  .footer .brand-footer .brand-logo { height: 36px; }
}

/* ---------- Language switcher ---------- */

.nav-controls { display: flex; align-items: center; gap: 16px; }

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0;
}
.lang-switch button {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emerald-deep);
  background: none;
  border: none;
  padding: 4px 8px;
  cursor: pointer;
  opacity: 0.45;
  transition: opacity .15s, color .15s;
  position: relative;
}
.lang-switch button + button::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--gold-40);
}
.lang-switch button:hover { opacity: 0.8; }
.lang-switch button.active { color: var(--gold); opacity: 1; }

/* ---------- Mobile nav ---------- */

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 1px;
  width: 100%;
  background: var(--emerald-deep);
  transition: transform .25s var(--ease), opacity .2s;
}
.navbar.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.navbar.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.navbar.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--gold-40);
    padding: 8px 0 16px;
  }
  .navbar.nav-open .nav-links { display: flex; }
  .nav-links > a, .nav-links .dropdown > a {
    padding: 14px var(--space-md);
    border-bottom: none;
    font-size: 14px;
  }
  .dropdown-panel {
    position: static;
    transform: none !important;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--gold-40);
    margin: 0 0 4px var(--space-md);
    padding: 0;
    min-width: 0;
    background: transparent;
  }
  .dropdown-panel a {
    color: var(--emerald-deep);
    padding: 10px 16px;
    opacity: 0.75;
    font-size: 13px;
  }
  .dropdown-panel a:hover { color: var(--gold); opacity: 1; }
}

/* ---------- Accessibility ---------- */

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
::selection { background: var(--gold-soft); color: var(--emerald-deep); }

/* ---------- Print ---------- */

@media print {
  .navbar, .footer, .hero-actions, .btn { display: none; }
  .hero, .hero-inner-page { padding: 0 0 16px 0; background: none; }
  section { padding: 16px 0; page-break-inside: avoid; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Big list / Aside reutilizáveis ---------- */

.big-list { font-size: 16px; line-height: 1.7; margin-top: 20px; }
.col-title { color: var(--emerald-deep); font-size: 20px; }
.cta-band-body { font-size: 18px; color: rgba(6,78,59,0.70); max-width: 600px; margin: 0 auto 32px; }
