:root {
  --navy: #0d1b2a;
  --navy-soft: #16283a;
  --ivory: #f6f2ea;
  --paper: #fffdf9;
  --gold: #b79a5b;
  --gold-light: #d7c49b;
  --ink: #17212b;
  --muted: #66717c;
  --line: rgba(13, 27, 42, .14);
  --shadow: 0 24px 60px rgba(13, 27, 42, .12);
  --radius: 20px;
  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

.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;
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  background: var(--paper);
  color: var(--navy);
  padding: 10px 14px;
  border-radius: 8px;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 249, .92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: 0 10px 30px rgba(13, 27, 42, .06); }
.nav-wrap { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 13px; text-decoration: none; }
.brand-mark {
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  letter-spacing: .12em;
}
.brand-text { display: grid; line-height: 1.25; }
.brand-text strong { font-family: Georgia, "Times New Roman", serif; font-size: 18px; font-weight: 600; }
.brand-text small { color: var(--muted); font-size: 12px; margin-top: 4px; }
.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a { text-decoration: none; font-weight: 600; font-size: 14px; }
.main-nav a:not(.nav-cta):hover { color: var(--gold); }
.nav-cta { background: var(--navy); color: white; padding: 12px 18px; border-radius: 999px; }
.nav-cta:hover { background: var(--navy-soft); }
.menu-button { display: none; border: 0; background: transparent; width: 44px; height: 44px; padding: 10px; }
.menu-button span:not(.sr-only) { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; transition: .25s ease; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 15%, rgba(183, 154, 91, .18), transparent 30%),
    linear-gradient(135deg, var(--ivory), var(--paper) 55%);
  padding: 88px 0 98px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .25;
  background-image: linear-gradient(rgba(13, 27, 42, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(13, 27, 42, .08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to right, transparent, black 65%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.1fr .75fr; align-items: center; gap: 72px; }
.eyebrow { margin: 0 0 16px; color: #886e37; font-size: 12px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; font-weight: 500; line-height: 1.12; margin-top: 0; }
h1 { font-size: clamp(44px, 6vw, 74px); letter-spacing: -.035em; margin-bottom: 24px; max-width: 850px; }
h2 { font-size: clamp(34px, 4.2vw, 52px); letter-spacing: -.025em; margin-bottom: 20px; }
h3 { font-size: 24px; }
.lead { font-size: 19px; color: #4c5965; max-width: 700px; margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; justify-content: center; align-items: center; min-height: 52px; padding: 13px 22px; border-radius: 999px; border: 1px solid transparent; text-decoration: none; font-weight: 800; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--navy); color: white; box-shadow: 0 12px 26px rgba(13, 27, 42, .16); }
.button-primary:hover { background: var(--navy-soft); }
.button-secondary { border-color: var(--line); background: rgba(255,255,255,.55); }
.button-secondary:hover { background: white; box-shadow: 0 10px 24px rgba(13, 27, 42, .08); }
.credential-list { display: flex; flex-wrap: wrap; gap: 10px 20px; padding: 0; margin: 34px 0 0; list-style: none; color: var(--muted); font-size: 13px; }
.credential-list li::before { content: "•"; color: var(--gold); margin-right: 8px; }
.hero-card { min-height: 520px; background: var(--navy); border-radius: 220px 220px 28px 28px; padding: 26px; box-shadow: var(--shadow); position: relative; }
.hero-card::after { content: ""; position: absolute; inset: 16px; border: 1px solid rgba(215, 196, 155, .38); border-radius: 204px 204px 18px 18px; pointer-events: none; }
.hero-card-inner { height: 100%; min-height: 468px; display: flex; flex-direction: column; justify-content: center; align-items: center; color: var(--gold-light); text-align: center; position: relative; z-index: 1; }
.scales { width: 106px; color: var(--gold); margin-bottom: 24px; }
.monogram { font-family: Georgia, "Times New Roman", serif; font-size: 74px; letter-spacing: .12em; margin: 0 0 8px .12em; color: white; }
.signature { font-family: Georgia, "Times New Roman", serif; font-size: 25px; margin: 0; }
.office-label { text-transform: uppercase; letter-spacing: .28em; font-size: 11px; margin-top: 12px; }

.trust-strip { background: var(--navy); color: white; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-grid div { padding: 30px 34px; border-right: 1px solid rgba(255,255,255,.12); }
.trust-grid div:last-child { border-right: 0; }
.trust-grid strong { display: block; font-family: Georgia, "Times New Roman", serif; color: var(--gold-light); font-size: 20px; }
.trust-grid span { color: rgba(255,255,255,.72); font-size: 13px; }

.section { padding: 110px 0; }
.section-alt { background: var(--ivory); }
.section-heading { max-width: 720px; }
.section-heading p:not(.eyebrow) { color: var(--muted); font-size: 17px; }
.section-heading.centered { text-align: center; margin: 0 auto 54px; }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 96px; align-items: start; }
.about-copy { font-size: 18px; color: #46535f; }
.about-copy p:first-child { margin-top: 0; }
.text-link { display: inline-flex; gap: 8px; margin-top: 10px; color: var(--navy); font-weight: 800; text-underline-offset: 5px; }

.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.service-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; min-height: 420px; transition: transform .25s ease, box-shadow .25s ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-number { display: inline-grid; place-items: center; width: 44px; height: 44px; border: 1px solid var(--gold); border-radius: 50%; color: #866b34; font-weight: 800; font-size: 12px; margin-bottom: 38px; }
.service-card p { color: var(--muted); }
.service-card ul { padding-left: 18px; margin-top: 26px; }
.service-card li { margin-bottom: 8px; }

.process-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 86px; align-items: start; }
.process-list { list-style: none; margin: 0; padding: 0; }
.process-list li { display: grid; grid-template-columns: 58px 1fr; gap: 22px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.process-list li:first-child { padding-top: 0; }
.process-list li > span { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; background: var(--navy); color: white; font-weight: 800; }
.process-list h3 { margin-bottom: 8px; }
.process-list p { margin: 0; color: var(--muted); }

.faq-section { background: var(--navy); color: white; }
.faq-section .eyebrow { color: var(--gold-light); }
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; }
.accordion details { border-top: 1px solid rgba(255,255,255,.18); padding: 22px 0; }
.accordion details:last-child { border-bottom: 1px solid rgba(255,255,255,.18); }
.accordion summary { cursor: pointer; list-style: none; font-family: Georgia, "Times New Roman", serif; font-size: 21px; padding-right: 35px; position: relative; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; position: absolute; right: 0; color: var(--gold-light); font-family: ui-sans-serif, system-ui; }
.accordion details[open] summary::after { content: "–"; }
.accordion p { color: rgba(255,255,255,.72); max-width: 720px; }

.contact-section { padding: 110px 0; background: linear-gradient(135deg, #f0eadf, #fffdf9); }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 78px; align-items: start; }
.contact-copy h2 { margin-bottom: 16px; }
.contact-copy > p:not(.eyebrow) { color: var(--muted); }
.contact-links { display: grid; gap: 12px; margin-top: 36px; }
.contact-item { display: grid; padding: 18px 0; border-bottom: 1px solid var(--line); text-decoration: none; }
.contact-item span { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .12em; }
.contact-item strong { font-family: Georgia, "Times New Roman", serif; font-size: 20px; font-weight: 500; }
a.contact-item:hover strong { color: #80662e; }
.contact-form { background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow); display: grid; }
.contact-form label:not(.consent) { font-weight: 800; font-size: 13px; margin: 15px 0 7px; }
.contact-form label:first-child { margin-top: 0; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid #cfd5db; border-radius: 10px; padding: 13px 14px; background: #fff; color: var(--ink); outline: none; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(183,154,91,.14); }
.contact-form textarea { resize: vertical; }
.contact-form small { color: var(--muted); text-align: right; margin-top: 5px; }
.consent { display: grid; grid-template-columns: 18px 1fr; gap: 10px; margin: 20px 0; color: var(--muted); font-size: 13px; }
.consent input { width: 18px; height: 18px; margin: 3px 0 0; }
.form-note { font-size: 12px; color: var(--muted); text-align: center; margin: 14px 0 0; }

.site-footer { background: #08131f; color: white; padding: 56px 0; }
.footer-grid { display: grid; grid-template-columns: 1fr auto 1.2fr; gap: 46px; align-items: start; }
.footer-brand .brand-text small { color: rgba(255,255,255,.55); }
.footer-links { display: grid; gap: 10px; }
.footer-links a { text-decoration: none; color: rgba(255,255,255,.72); }
.footer-links a:hover { color: var(--gold-light); }
.footer-legal { color: rgba(255,255,255,.55); font-size: 12px; }
.footer-legal p:first-child { margin-top: 0; }

.floating-whatsapp { position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; background: #1f8f59; color: white; box-shadow: 0 14px 32px rgba(0,0,0,.24); transition: transform .2s ease; }
.floating-whatsapp:hover { transform: translateY(-3px) scale(1.02); }
.floating-whatsapp svg { width: 29px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

.privacy-page { background: var(--ivory); min-height: 100vh; }
.privacy-main { padding: 80px 0 110px; }
.privacy-card { max-width: 860px; margin: auto; background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: 48px; box-shadow: var(--shadow); }
.privacy-card h1 { font-size: 48px; }
.privacy-card h2 { font-size: 28px; margin-top: 38px; }
.privacy-card p, .privacy-card li { color: #4d5965; }


/* Destaque para Inventários */
.inventory-highlight { padding: 100px 0 0; background: linear-gradient(145deg, #f5efe3 0%, #fffdf9 55%, #eee3cc 100%); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.inventory-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; padding-bottom: 66px; }
.inventory-copy h2 { max-width: 720px; margin-bottom: 18px; }
.inventory-lead { font-size: 18px; color: var(--muted); max-width: 760px; }
.inventory-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin-top: 30px; }
.inventory-options { display: grid; gap: 16px; }
.inventory-options article { background: rgba(255,255,255,.82); border: 1px solid rgba(183,154,91,.34); border-radius: var(--radius); padding: 28px; box-shadow: 0 12px 32px rgba(13,27,42,.06); }
.inventory-options article span { color: #866b34; font-weight: 800; font-size: 12px; letter-spacing: .12em; }
.inventory-options h3 { margin: 8px 0 10px; }
.inventory-options p { margin: 0; color: var(--muted); }
.inventory-details { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--navy); color: white; border-radius: 18px 18px 0 0; overflow: hidden; }
.inventory-details div { padding: 28px 30px; border-right: 1px solid rgba(255,255,255,.12); }
.inventory-details div:last-child { border-right: 0; }
.inventory-details strong { display: block; font-family: Georgia, "Times New Roman", serif; color: var(--gold-light); font-size: 19px; margin-bottom: 5px; }
.inventory-details span { color: rgba(255,255,255,.72); font-size: 13px; }
.service-card-featured { border-color: rgba(183,154,91,.7); background: linear-gradient(180deg, #fffdf8, #f7f0e3); position: relative; }
.service-kicker { margin: -24px 0 12px; color: #866b34 !important; text-transform: uppercase; letter-spacing: .12em; font-size: 11px; font-weight: 800; }
.service-link { display: inline-block; margin-top: 18px; color: var(--navy); font-weight: 800; text-underline-offset: 4px; }
.faq-intro { color: rgba(255,255,255,.7) !important; }

@media (max-width: 980px) {
  .hero-grid, .about-grid, .process-grid, .faq-grid, .contact-grid, .inventory-hero-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 48px; }
  .hero-card { min-height: 440px; max-width: 560px; width: 100%; margin: auto; }
  .hero-card-inner { min-height: 388px; }
  .service-grid { grid-template-columns: 1fr; }
  .inventory-details { grid-template-columns: 1fr; border-radius: 14px 14px 0 0; }
  .inventory-details div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .inventory-details div:last-child { border-bottom: 0; }
  .service-card { min-height: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-legal { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .nav-wrap { min-height: 74px; }
  .brand-text strong { font-size: 15px; }
  .brand-mark { width: 42px; height: 42px; }
  .menu-button { display: block; z-index: 2; }
  .main-nav { position: fixed; inset: 74px 0 auto 0; background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 28px 20px 34px; display: grid; gap: 18px; transform: translateY(-130%); opacity: 0; pointer-events: none; transition: .28s ease; }
  .main-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-nav a { font-size: 16px; }
  .nav-cta { text-align: center; }
  .menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { padding: 64px 0 72px; }
  h1 { font-size: 43px; }
  .lead { font-size: 17px; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-card { border-radius: 160px 160px 24px 24px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); padding: 22px 4px; }
  .section, .contact-section { padding: 76px 0; }
  .inventory-highlight { padding-top: 72px; }
  .inventory-hero-grid { gap: 38px; padding-bottom: 44px; }
  .inventory-actions { display: grid; }
  .about-grid, .process-grid, .faq-grid, .contact-grid { gap: 42px; }
  .contact-form { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-legal { grid-column: auto; }
  .privacy-card { padding: 26px; }
  .privacy-card h1 { font-size: 38px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* v05 — identidade visual e equilíbrio de destaque */
.hero-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 430px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-logo img {
  display: block;
  width: 100%;
  max-width: 700px;
  height: auto;
  object-fit: contain;
}

.inventory-highlight {
  padding: 84px 0;
  background: #fffdf9;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.inventory-hero-grid {
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding-bottom: 36px;
}
.inventory-options article {
  background: #fff;
  border-color: var(--line);
  box-shadow: none;
}
.inventory-details {
  border-radius: 14px;
  background: #13283b;
}
.service-card-featured {
  border-color: var(--line);
  background: #fff;
}
.service-kicker {
  color: var(--muted) !important;
}

@media (max-width: 980px) {
  .hero-logo { min-height: 0; max-width: 680px; width: 100%; margin: auto; }
  .inventory-hero-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .hero-logo { padding: 16px; border-radius: 18px; }
  .inventory-highlight { padding: 70px 0; }
}
