:root {
  --ink: #18221c;
  --forest: #173f2b;
  --forest-2: #245a3c;
  --coffee: #5a3827;
  --gold: #c49a4a;
  --cream: #f6f1e7;
  --paper: #fffdf8;
  --mist: #e9eee9;
  --muted: #667069;
  --line: #d9dfd9;
  --white: #fff;
  --shadow: 0 18px 50px rgba(24, 34, 28, 0.1);
  --max: 1180px;
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
}
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 92px 0; }
.section-soft { background: var(--cream); }
.section-dark { color: var(--white); background: var(--forest); }
.section-head { max-width: 720px; margin-bottom: 42px; }
.section-head.center { margin-inline: auto; text-align: center; }
.kicker {
  margin: 0 0 8px; color: var(--gold); font-size: .78rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
}
h1, h2, h3 { margin-top: 0; line-height: 1.12; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; }
h1 { font-size: clamp(2.8rem, 6.5vw, 5.6rem); }
h2 { margin-bottom: 16px; font-size: clamp(2rem, 4vw, 3.35rem); }
h3 { margin-bottom: 10px; font-size: 1.15rem; }
p { margin-top: 0; }
.lead { max-width: 720px; color: var(--muted); font-size: 1.1rem; }
.section-dark .lead { color: rgba(255,255,255,.76); }

.site-header {
  position: sticky; top: 0; z-index: 100; border-bottom: 1px solid rgba(23,63,43,.1);
  background: rgba(255,253,248,.94); backdrop-filter: blur(16px);
}
.nav {
  min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.logo { display: flex; align-items: center; gap: 10px; color: var(--forest); font-weight: 900; }
.logo-mark {
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%;
  color: var(--white); background: var(--forest); font-family: Georgia, serif; font-size: .88rem;
}
.logo-copy { display: grid; line-height: 1.05; }
.logo-copy small { color: var(--muted); font-size: .62rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.nav-panel { display: flex; align-items: center; gap: 24px; }
.nav-links { display: flex; align-items: center; gap: 20px; padding: 0; margin: 0; list-style: none; }
.nav-links a { color: #354139; font-size: .91rem; font-weight: 700; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--gold); }
.nav-cta, .button {
  display: inline-flex; min-height: 46px; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 19px; border: 1px solid var(--forest); border-radius: 4px;
  color: var(--white); background: var(--forest); font-weight: 800;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.button:hover, .nav-cta:hover { transform: translateY(-2px); background: var(--forest-2); box-shadow: 0 12px 28px rgba(23,63,43,.18); }
.button-gold { border-color: var(--gold); color: var(--ink); background: var(--gold); }
.button-light { border-color: rgba(255,255,255,.55); color: var(--white); background: transparent; }
.button-outline { color: var(--forest); background: transparent; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.menu-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line);
  border-radius: 4px; background: var(--paper);
}
.menu-toggle span { display: block; width: 20px; height: 2px; margin: 4px auto; background: var(--forest); }

.hero {
  position: relative; min-height: 690px; display: flex; align-items: center; color: var(--white);
  background: linear-gradient(90deg, rgba(10,35,23,.92), rgba(20,43,29,.66) 56%, rgba(20,43,29,.2)),
    url("https://images.unsplash.com/photo-1447933601403-0c6688de566e?auto=format&fit=crop&w=1900&q=85") center/cover;
}
.hero-content { position: relative; z-index: 1; max-width: 820px; padding: 110px 0; }
.hero h1 { margin-bottom: 22px; }
.hero .lead { color: rgba(255,255,255,.84); font-size: 1.18rem; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 20px; margin-top: 44px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.22); color: rgba(255,255,255,.82); font-size: .9rem; font-weight: 700;
}
.page-hero {
  min-height: 410px; display: flex; align-items: end; padding: 90px 0 70px; color: var(--white);
  background: linear-gradient(90deg, rgba(13,46,29,.94), rgba(35,58,42,.68)),
    url("https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?auto=format&fit=crop&w=1800&q=82") center/cover;
}
.page-hero .lead { color: rgba(255,255,255,.8); }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.card {
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--white);
  box-shadow: var(--shadow); overflow: hidden;
}
.card-body { padding: 25px; }
.card-image { height: 230px; object-fit: cover; }
.card p { color: var(--muted); }
.metric { padding: 28px 22px; border-top: 3px solid var(--gold); }
.metric strong { display: block; margin-bottom: 7px; color: var(--forest); font-family: Georgia, serif; font-size: 1.65rem; }
.icon-box {
  display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 18px;
  border-radius: 50%; color: var(--forest); background: var(--mist); font-weight: 900;
}
.profile-band { display: grid; grid-template-columns: repeat(5, 1fr); border: 1px solid var(--line); background: var(--white); }
.profile-item { padding: 24px; border-right: 1px solid var(--line); }
.profile-item:last-child { border-right: 0; }
.profile-item small { display: block; color: var(--muted); text-transform: uppercase; }
.profile-item strong { color: var(--forest); font-family: Georgia, serif; font-size: 1.15rem; }
.split { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 56px; }
.split-image { min-height: 500px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.check-list, .plain-list { display: grid; gap: 11px; padding: 0; margin: 22px 0; list-style: none; }
.check-list li { position: relative; padding-left: 28px; }
.check-list li::before { position: absolute; left: 0; content: "✓"; color: var(--gold); font-weight: 900; }

.timeline { display: grid; grid-template-columns: repeat(7, 1fr); gap: 10px; counter-reset: process; }
.timeline-item { position: relative; padding: 24px 14px; border-top: 2px solid var(--gold); background: rgba(255,255,255,.06); text-align: center; }
.timeline-item::before {
  counter-increment: process; content: counter(process); display: grid; place-items: center;
  width: 34px; height: 34px; margin: -42px auto 14px; border-radius: 50%;
  color: var(--ink); background: var(--gold); font-weight: 900;
}
.document-card { padding: 26px; border: 1px dashed #aeb8b0; background: rgba(255,255,255,.72); }
.document-card span { color: var(--gold); font-size: .75rem; font-weight: 900; text-transform: uppercase; }
.quote { padding: 30px; border-left: 4px solid var(--gold); background: var(--white); box-shadow: var(--shadow); }
.quote blockquote { margin: 0 0 15px; color: #354139; font-family: Georgia, serif; font-size: 1.2rem; }
.cta-band {
  padding: 54px; display: flex; align-items: center; justify-content: space-between; gap: 28px;
  color: var(--white); background: var(--coffee);
}
.cta-band h2 { margin-bottom: 8px; font-size: clamp(1.9rem,3vw,2.8rem); }

.spec-table { width: 100%; border-collapse: collapse; background: var(--white); }
.spec-table th, .spec-table td { padding: 15px 18px; border: 1px solid var(--line); text-align: left; }
.spec-table th { width: 35%; color: var(--forest); background: var(--mist); }
.form-card { padding: 32px; border: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 17px; }
.field { display: grid; gap: 7px; color: #354139; font-size: .9rem; font-weight: 800; }
.field.full { grid-column: 1 / -1; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 48px; padding: 11px 13px; border: 1px solid #cfd7d1;
  border-radius: 4px; outline: none; color: var(--ink); background: var(--paper);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(196,154,74,.17); }
.form-status { margin: 14px 0 0; color: var(--forest); font-weight: 800; }
.article-card { padding: 28px; }
.article-card time { color: var(--gold); font-size: .8rem; font-weight: 800; text-transform: uppercase; }
.article-card a { color: var(--forest); font-weight: 900; }
.download-card { display: flex; flex-direction: column; min-height: 220px; padding: 28px; }
.download-card .button { width: fit-content; margin-top: auto; }
.contact-list { display: grid; gap: 15px; padding: 0; list-style: none; }
.map-placeholder {
  min-height: 330px; display: grid; place-items: center; border: 1px solid var(--line);
  color: var(--muted); background: linear-gradient(135deg, var(--mist), var(--cream)); text-align: center;
}
.whatsapp {
  position: fixed; right: 20px; bottom: 20px; z-index: 80; display: grid; place-items: center;
  width: 56px; height: 56px; border-radius: 50%; color: var(--white); background: #168c4b;
  box-shadow: 0 14px 30px rgba(22,140,75,.3); font-weight: 900;
}

.site-footer { padding: 66px 0 24px; color: rgba(255,255,255,.72); background: #112a1d; }
.footer-grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr 1.2fr; gap: 38px; }
.site-footer h3 { color: var(--white); }
.site-footer ul { display: grid; gap: 8px; padding: 0; list-style: none; }
.site-footer a:hover { color: var(--gold); }
.footer-logo { color: var(--white); }
.copyright { margin-top: 42px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.13); text-align: center; font-size: .86rem; }

@media (max-width: 1050px) {
  .menu-toggle { display: block; }
  .nav-panel {
    position: fixed; top: 84px; left: 20px; right: 20px; display: grid; padding: 25px;
    border: 1px solid var(--line); background: var(--paper); box-shadow: var(--shadow);
    opacity: 0; pointer-events: none; transform: translateY(-10px); transition: .18s ease;
  }
  .nav-panel.open { opacity: 1; pointer-events: auto; transform: none; }
  .nav-links { align-items: stretch; flex-direction: column; gap: 13px; }
  .nav-cta { width: 100%; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .profile-band { grid-template-columns: repeat(3,1fr); }
  .profile-item { border-bottom: 1px solid var(--line); }
  .timeline { grid-template-columns: repeat(4,1fr); row-gap: 42px; }
}

@media (max-width: 720px) {
  .container { width: min(var(--max), calc(100% - 28px)); }
  .section { padding: 68px 0; }
  .hero { min-height: 650px; }
  .hero-content { padding: 90px 0; }
  .hero h1 { font-size: clamp(2.65rem, 13vw, 4rem); }
  .grid-2, .grid-3, .grid-4, .split, .footer-grid, .form-grid { grid-template-columns: 1fr; }
  .profile-band { grid-template-columns: 1fr 1fr; }
  .profile-item { border-bottom: 1px solid var(--line); }
  .timeline { grid-template-columns: 1fr 1fr; }
  .split-image { min-height: 340px; }
  .cta-band { padding: 34px 24px; align-items: flex-start; flex-direction: column; }
  .field.full { grid-column: auto; }
}

@media (max-width: 430px) {
  .logo-copy small { display: none; }
  .profile-band, .timeline { grid-template-columns: 1fr; }
  .button-row .button { width: 100%; }
}
