:root {
  --ink: #17231f;
  --muted: #5c6964;
  --green: #174f42;
  --green-2: #246b58;
  --mint: #dcebe5;
  --coral: #df725c;
  --paper: #f7f9f7;
  --white: #ffffff;
  --line: #d9e1dd;
  --shadow: 0 16px 42px rgba(23, 35, 31, 0.12);
  --radius: 6px;
  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--green);
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(23, 35, 31, 0.94);
  color: var(--white);
  backdrop-filter: blur(14px);
}
.nav-wrap {
  width: min(calc(100% - 40px), var(--container));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-weight: 800;
  white-space: nowrap;
}
.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: var(--coral);
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
}
.brand-name { line-height: 1.1; }
.brand-name small { display: block; margin-top: 3px; color: #bcd2c9; font-size: 10px; font-weight: 700; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 10px 12px;
  color: #e8f0ed;
  text-decoration: none;
  font-size: 14px;
  font-weight: 650;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--white); background: rgba(255,255,255,0.09); }
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.25);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 20px;
}

.container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }
.eyebrow { margin: 0 0 12px; color: var(--coral); font-size: 12px; font-weight: 850; text-transform: uppercase; }
.section { padding: 76px 0; }
.section-soft { background: var(--paper); }
.section-green { background: var(--green); color: var(--white); }
.section-heading { max-width: 720px; margin-bottom: 34px; }
.section-heading h2 { margin: 0 0 12px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(30px, 4vw, 50px); line-height: 1.08; font-weight: 600; }
.section-heading p { margin: 0; color: var(--muted); font-size: 18px; }
.section-green .section-heading p { color: #cce0d8; }

.hero {
  min-height: 76svh;
  max-height: 820px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink) url("images/hero-assessoria.png") center / cover no-repeat;
  color: var(--white);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 34, 29, 0.94) 0%, rgba(15, 34, 29, 0.78) 36%, rgba(15, 34, 29, 0.12) 72%);
}
.hero-content { position: relative; z-index: 1; width: min(640px, 58%); padding: 72px 0; }
.hero h1 { margin: 0 0 20px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(48px, 6.2vw, 86px); line-height: 0.98; font-weight: 600; }
.hero p { max-width: 590px; margin: 0 0 28px; color: #e8f0ed; font-size: clamp(17px, 2vw, 21px); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border: 1px solid transparent;
  background: var(--coral);
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
}
.button:hover { filter: brightness(0.95); }
.button-secondary { border-color: rgba(255,255,255,0.56); background: rgba(23,35,31,0.25); }
.button-dark { background: var(--green); }

.intro-band { padding: 26px 0; border-bottom: 1px solid var(--line); background: var(--white); }
.intro-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.intro-item { min-height: 96px; padding: 18px 28px; border-left: 1px solid var(--line); }
.intro-item:first-child { border-left: 0; padding-left: 0; }
.intro-item strong { display: block; margin-bottom: 5px; font-size: 15px; }
.intro-item span { color: var(--muted); font-size: 14px; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { min-height: 255px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.service-card .number { color: var(--coral); font-size: 13px; font-weight: 900; }
.service-card h3 { margin: 38px 0 10px; font-size: 21px; line-height: 1.25; }
.service-card p { margin: 0; color: var(--muted); }

.split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 70px; align-items: start; }
.statement { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(32px, 4vw, 54px); line-height: 1.08; }
.prose { color: var(--muted); font-size: 17px; }
.prose p:first-child { margin-top: 0; }
.check-list { margin: 26px 0 0; padding: 0; list-style: none; }
.check-list li { padding: 13px 0 13px 28px; border-top: 1px solid var(--line); position: relative; }
.check-list li::before { content: ""; position: absolute; left: 0; top: 22px; width: 9px; height: 9px; background: var(--coral); }

.cta-band { padding: 56px 0; background: var(--mint); }
.cta-row { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.cta-row h2 { max-width: 680px; margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(30px, 4vw, 48px); line-height: 1.1; }

.page-hero { padding: 92px 0 58px; background: var(--green); color: var(--white); }
.page-hero h1 { max-width: 850px; margin: 0 0 18px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(44px, 6vw, 76px); line-height: 1; font-weight: 600; }
.page-hero p { max-width: 720px; margin: 0; color: #d5e4de; font-size: 19px; }

.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; }
.contact-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.contact-list li { padding: 20px 0; border-bottom: 1px solid var(--line); }
.contact-list strong { display: block; margin-bottom: 4px; font-size: 13px; text-transform: uppercase; color: var(--green-2); }
.contact-list a { text-decoration-thickness: 1px; text-underline-offset: 4px; }
.legal { max-width: 860px; }
.legal h2 { margin: 42px 0 10px; font-size: 25px; }
.legal h2:first-child { margin-top: 0; }
.legal h3 { margin: 28px 0 8px; font-size: 18px; }
.legal p, .legal li { color: #46534e; }
.legal ul { padding-left: 22px; }
.legal .updated { margin-bottom: 34px; color: var(--muted); font-size: 14px; }

.site-footer { padding: 60px 0 24px; background: var(--ink); color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.1fr 0.7fr 1.2fr; gap: 48px; padding-bottom: 40px; }
.footer-title { margin: 0 0 14px; font-family: Georgia, "Times New Roman", serif; font-size: 27px; }
.footer-copy { max-width: 420px; color: #bcd0c8; }
.footer-heading { margin: 0 0 14px; color: #a9c7bb; font-size: 12px; text-transform: uppercase; }
.footer-links { display: grid; gap: 9px; }
.footer-links a { color: #e7efec; text-decoration: none; }
.footer-links a:hover { text-decoration: underline; text-underline-offset: 4px; }
.legal-data { color: #bcd0c8; font-size: 14px; }
.legal-data p { margin: 0 0 8px; }
.footer-bottom { padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.14); color: #9bb1a8; font-size: 13px; }

.not-found { min-height: 70vh; display: grid; place-items: center; text-align: center; background: var(--paper); }
.not-found h1 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(70px, 15vw, 160px); color: var(--green); }
.not-found p { max-width: 540px; margin: 0 auto 24px; color: var(--muted); }

@media (max-width: 840px) {
  .nav-toggle { display: grid; place-items: center; }
  .nav-links { position: absolute; top: 72px; left: 0; right: 0; display: none; padding: 12px 20px 20px; background: var(--ink); border-top: 1px solid rgba(255,255,255,0.12); }
  .nav-links.is-open { display: grid; }
  .nav-links a { padding: 12px; }
  .hero { min-height: 78svh; background-position: 62% center; }
  .hero::before { background: linear-gradient(90deg, rgba(15,34,29,0.95) 0%, rgba(15,34,29,0.84) 55%, rgba(15,34,29,0.35) 100%); }
  .hero-content { width: min(620px, 88%); }
  .intro-grid, .service-grid { grid-template-columns: 1fr; }
  .intro-item { padding: 18px 0; border-left: 0; border-top: 1px solid var(--line); }
  .intro-item:first-child { border-top: 0; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .container, .nav-wrap { width: min(calc(100% - 28px), var(--container)); }
  .brand-name { font-size: 14px; }
  .brand-name small { display: none; }
  .hero { min-height: 74svh; }
  .hero-content { width: 100%; padding: 58px 0; }
  .hero h1 { font-size: 46px; }
  .actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .section { padding: 58px 0; }
  .service-card { min-height: 220px; }
  .cta-row { align-items: stretch; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-grid > :first-child { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
