/* ============================================================
   DANILO SOLANO — Famílias e Sucessões
   style.css — Brand Book V6
   ============================================================ */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── TOKENS ── */
:root {
  --navy:      #1E3A5F;
  --green:     #607E5C;
  --gold:      #B8956A;
  --offwhite:  #F9F9F7;
  --bege:      #EAE3D9;
  --grafite:   #3D3D3D;
  --white:     #FFFFFF;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --max-w:    1180px;
  --pad-x:    40px;
  --pad-sec:  104px;
  --radius:   2px;

  --ease:     cubic-bezier(.4,0,.2,1);

  /* Navbar heights por breakpoint */
  --nav-h: 84px;  /* desktop (1024px+) */
}

/* ── BASE ── */
html  { scroll-behavior: smooth; }
body  {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--grafite);
  background: var(--offwhite);
  -webkit-font-smoothing: antialiased;
}

img   { display: block; max-width: 100%; }
a     { color: inherit; }
button { cursor: pointer; font-family: var(--font-sans); }
ul, ol { list-style: none; }

/* Focus visible para acessibilidade */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ── LAYOUT ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

section { padding: var(--pad-sec) 0; }
section:first-of-type { padding-top: calc(var(--pad-sec) + 20px); }

/* ── TYPOGRAPHY ── */
h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.18;
  color: var(--navy);
}
h1 { font-size: clamp(2.5rem, 5.2vw, 4rem); letter-spacing: -.01em; }
h2 { font-size: clamp(1.85rem, 3.5vw, 2.55rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.55rem); }
p  { font-weight: 300; }

.eyebrow {
  display: block;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.rule-gold {
  display: block;
  width: 44px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 28px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: none;
  transition: background .25s var(--ease), transform .2s var(--ease), border-color .25s;
  white-space: nowrap;
  cursor: pointer;
}
.btn:focus { outline: 2px solid var(--gold); outline-offset: 2px; }

.btn-primary  { background: var(--green); color: var(--white); }
.btn-primary:hover  { background: #4e6849; transform: translateY(-2px); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.50);
  transition: all .25s var(--ease);
}
.btn-ghost:hover { border-color: rgba(255,255,255,.90); background: rgba(255,255,255,.08); transform: translateY(-2px); }
.btn-ghost:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1px solid rgba(30,58,95,.30);
  transition: all .25s var(--ease);
}
.btn-outline:hover { border-color: var(--navy); background: rgba(30,58,95,.04); transform: translateY(-2px); }
.btn-outline:active { transform: translateY(0); }

/* ── NAVBAR ── */
#navbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 900;

  /* Glass / Blur moderno (estilo boutique) */
  background: rgba(249,249,247,.62);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-bottom: 1px solid rgba(30,58,95,.08);
  transition: background .35s var(--ease), box-shadow .35s, border-color .35s;
}

#navbar.scrolled {
  background: rgba(249,249,247,.92);
  box-shadow: 0 10px 30px rgba(30,58,95,.10);
  border-bottom-color: rgba(30,58,95,.10);
}

.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: var(--nav-h);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  gap: 26px;
}

/* ── NAVBAR LOGO (maior e bem posicionado) ── */
.nav-logo {
  opacity: 1;
  pointer-events: auto;
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

/* Navbar clara: sempre a versão navy, white nunca aparece */
.nav-sig--navy  { display: block; width: 260px; height: auto; }
.nav-sig--white { display: none;  width: 0;     height: 0;    }

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.nav-links a {
  font-size: .75rem;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(30,58,95,.80);
  position: relative;
  transition: color .2s var(--ease);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}

.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-links a[aria-current="page"] {
  color: var(--navy);
  font-weight: 500;
}
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-cta {
  font-size: .73rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 11px 24px;
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius);
  transition: background .25s var(--ease), transform .2s var(--ease);
  white-space: nowrap;
}
.nav-cta:hover { background: #4e6849; transform: translateY(-1px); }
.nav-cta:focus { outline: 2px solid var(--gold); outline-offset: 2px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--navy);
  transition: background .25s;
}

/* ── MOBILE MENU ── */
#mobileMenu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 950;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
#mobileMenu.open { display: flex; }

#mobileMenu a {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 300;
  color: rgba(255,255,255,.88);
  text-decoration: none;
  transition: color .2s var(--ease);
}
#mobileMenu a:hover { color: var(--white); }
#mobileMenu a[aria-current="page"] {
  color: var(--gold);
  font-weight: 400;
}

.mobile-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none;
  border: none;
  color: rgba(255,255,255,.6);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: color .2s;
}
.mobile-close:hover { color: white; }

/* ── HERO ── */
#hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

/* Coluna esquerda: conteúdo centralizado, padding simétrico */
.hero-left {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 108px var(--pad-x) 108px;
  background: var(--navy);
  overflow: visible;
}

/* Gradiente extravasa 180px para dentro da coluna direita */
.hero-left::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 100%;
  width: 240px;
  background: linear-gradient(
    to right,
    rgba(30,58,95,1.00)  0%,
    rgba(30,58,95,.75)  25%,
    rgba(30,58,95,.35)  58%,
    rgba(30,58,95,.06)  82%,
    rgba(30,58,95,.00) 100%
  );
  pointer-events: none;
  z-index: 3;
}

/* Coluna direita: foto ocupa 100% da altura do grid */
.hero-right {
  position: relative;
  overflow: hidden;
  align-self: stretch;
}
.hero-right img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 55%;
}
/* gradiente coluna direita: mínimo complementar */
.hero-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(30,58,95,.45)  0%,
    rgba(30,58,95,.10)  35%,
    rgba(30,58,95,.00)  65%
  );
}

/* ── BLOCO PRINCIPAL: H1 + linha + descritor + CTA ── */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* H1: quebra editorial exata por span */
.hero-h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 4vw, 4.4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 36px;
  letter-spacing: -.015em;
}
.hero-h1 .h1-line {
  display: block;
  white-space: nowrap;
}
.hero-h1 em {
  font-style: italic;
  color: rgba(255,255,255,.80);
}

/* Descritor: lista vertical com bullets dourados */
.hero-descriptor {
  list-style: none;
  padding: 0;
  margin: 0 0 52px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-descriptor li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-descriptor .sep {
  font-size: 1rem;
  flex-shrink: 0;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-scroll  { display: none; }
/* ── TRUSTBAR ── */
.trustbar {
  background: var(--navy);
  padding: 10px 0;
}
.trustbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 28px;
  color: rgba(255,255,255,.78);
  font-size: .74rem;
  letter-spacing: .06em;
  border-right: 1px solid rgba(255,255,255,.08);
}
.trust-item:last-child { border-right: none; }
.trust-dot {
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── SOBRE ── */
#sobre {
  background: var(--bege);
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}

.sobre-text h2 { margin-bottom: 22px; }
.sobre-text p {
  font-size: 1rem;
  line-height: 1.82;
  margin-bottom: 18px;
  color: #555;
  text-align: justify;
  hyphens: auto;
}

.sobre-quote {
  margin-top: 32px;
  padding: 22px 26px;
  border-left: 2px solid var(--gold);
  background: rgba(184,149,106,.07);
}
.sobre-quote p {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--navy);
  font-weight: 400;
  margin: 0;
}

.sobre-actions { margin-top: 36px; }

.sobre-img-wrap {
  position: relative;
}
.sobre-img-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
}
.sobre-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--navy);
  color: rgba(255,255,255,.65);
  font-size: .7rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  text-align: center;
  padding: 13px;
  line-height: 1.9;
}

/* ── ATUAÇÃO ── */
#atuacao {
  background: var(--offwhite);
  padding-bottom: 0; /* cards colados na borda inferior da seção */
}

.atuacao-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 72px;
}
.atuacao-intro > div:first-child {
  margin-bottom: 32px;
}
.atuacao-intro .rule-gold {
  margin-left: auto;
  margin-right: auto;
}
.atuacao-intro-right p {
  font-size: 1.05rem;
  color: var(--gold);
  line-height: 1.78;
  max-width: 680px;
  text-align: center;
}

.atuacao-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(30,58,95,.09);
  margin-top: 0; /* atuacao-intro já tem margin-bottom: 72px */
}

.card-area {
  background: var(--offwhite);
  padding: 52px 38px;
  text-decoration: none;
  display: block;
  transition: background .28s var(--ease);
}
.card-area:hover { background: var(--bege); }

.card-num {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 300;
  color: rgba(30,58,95,.1);
  line-height: 1;
  margin-bottom: 18px;
}

.card-area h3 { margin-bottom: 14px; line-height: 1.28; }

.card-area p {
  font-size: .87rem;
  line-height: 1.76;
  color: #606060;
  margin-bottom: 28px;
}

.card-link {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s;
}
.card-area:hover .card-link { gap: 12px; }

/* ── VALORES ── */
#valores {
  background: var(--white);
  padding-top: 72px;
}

.valores-header {
  text-align: center;
  margin-bottom: 68px;
}
.valores-header .rule-gold { margin: 16px auto 0; }

.valores-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 0; /* valores-header já tem margin-bottom: 68px */
}

.valor-card {
  text-align: center;
  padding: 0 12px;
}
.valor-icon {
  width: 44px; height: 44px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.valor-icon svg {
  width: 30px; height: 30px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.valor-card h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 10px;
}
.valor-card p {
  font-size: .84rem;
  color: #777;
  line-height: 1.72;
}

/* ── MÉTODO ── */
#metodo {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
#metodo::after {
  content: '';
  position: absolute;
  top: -160px; right: -100px;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: rgba(184,149,106,.04);
  pointer-events: none;
}

.metodo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.metodo-left .eyebrow { color: var(--gold); }
.metodo-left h2 { color: var(--white); margin-bottom: 22px; }
.metodo-left p  { color: rgba(255,255,255,.62); font-size: .97rem; margin-bottom: 18px; text-align: justify; hyphens: auto; }

.metodo-seal {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(184,149,106,.28);
}
.metodo-seal p {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(255,255,255,.75);
  font-weight: 300;
  margin: 0;
}

.metodo-pilares { display: flex; flex-direction: column; }

.metodo-step {
  display: flex;
  gap: 26px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.metodo-step:first-child { border-top: 1px solid rgba(255,255,255,.06); }

.step-num {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--gold);
  font-weight: 300;
  min-width: 26px;
  padding-top: 2px;
}
.step-body h4 {
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}
.step-body p {
  font-size: .86rem;
  color: rgba(255,255,255,.5);
  line-height: 1.72;
  margin: 0;
}

/* ── CONTATO ── */
#contato { background: var(--bege); }

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contato-left h2  { margin-bottom: 14px; }
.contato-left .sub {
  font-size: .97rem;
  color: #606060;
  line-height: 1.8;
  margin-bottom: 44px;
}

.contact-items { display: flex; flex-direction: column; gap: 22px; }

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  width: 36px; height: 36px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg {
  width: 15px; height: 15px;
  fill: none;
  stroke: white;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-text strong {
  display: block;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 3px;
}
.contact-text a,
.contact-text span {
  display: block;
  font-size: .88rem;
  font-weight: 300;
  color: var(--grafite);
  text-decoration: none;
}
.contact-text a:hover { color: var(--navy); }

/* ── FORM ── */
.form-card {
  background: var(--white);
  padding: 48px;
  border-radius: 2px;
  box-shadow: 0 4px 16px rgba(30,58,95,.06);
}

#formStatus {
  display: none;
  margin-bottom: 16px;
  padding: 12px 14px;
  font-size: .85rem;
  font-weight: 500;
  text-align: center;
  border-radius: var(--radius);
  letter-spacing: .05em;
}
#formStatus.is-visible   { display: block; }
#formStatus.status-success { background: #4e6849; color: #fff; }
#formStatus.status-error   { background: #c0392b; color: #fff; }
#formStatus.status-info    { background: rgba(30,58,95,.06); color: var(--navy); }

.form-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 22px; }

.form-group label {
  display: block;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid rgba(30,58,95,.18);
  background: var(--offwhite);
  font-family: var(--font-sans);
  font-size: .9rem;
  font-weight: 300;
  color: var(--grafite);
  outline: none;
  border-radius: var(--radius);
  transition: border-color .2s var(--ease), background-color .2s var(--ease), box-shadow .2s var(--ease);
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(30,58,95,.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  font-weight: 600;
  letter-spacing: .09em;
}
.form-submit:disabled {
  opacity: .65;
  cursor: not-allowed;
}

.form-note {
  font-size: .73rem;
  color: #aaa;
  line-height: 1.6;
  margin-top: 14px;
}

/* ── SEPARADOR ── */
.divider-gold {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .35;
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  padding: 40px 0 32px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-minimal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.footer-minimal-logo {
  height: 36px;
  width: auto;
  opacity: .85;
}
.footer-copy {
  font-size: .70rem;
  font-weight: 300;
  color: rgba(255,255,255,.22);
  letter-spacing: .04em;
}

/* ── WHATSAPP FAB ── */
.whatsapp-fab {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 52px; height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(37,211,102,.3);
  z-index: 800;
  transition: transform .2s var(--ease);
}
.whatsapp-fab:hover { transform: scale(1.08); }
.whatsapp-fab svg { width: 26px; height: 26px; fill: white; }

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }

/* ── RESPONSIVO ── */
@media (max-width: 1024px) {
  :root {
    --pad-sec: 80px;
    --nav-h: 80px;  /* tablet */
  }
  .nav-sig--navy { width: 200px; }
}

@media (max-width: 900px) {
  :root {
    --pad-x: 28px;
    --pad-sec: 64px;
    --nav-h: 72px;  /* mobile landscape */
  }

  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-sig--navy { width: 180px; }

  /* Navbar mobile: logo à esquerda, hamburger à direita */
  .nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--nav-h);
  }

  /* Hero vira stack: foto em cima, texto em baixo */
  #hero {
    grid-template-columns: 1fr;
    grid-template-rows: 55vw 1fr;
  }
  .hero-right {
    grid-row: 1;
    min-height: 55vw;
  }
  .hero-right img { object-position: 60% 55%; }
  .hero-right::after {
    background: linear-gradient(
      to bottom,
      transparent 40%,
      var(--navy) 100%
    );
  }
  .hero-left {
    grid-row: 2;
    box-shadow: none;
    padding: 40px var(--pad-x) 48px;
    justify-content: flex-start;
  }
  .hero-h1 { max-width: 100%; }
  .hero-scroll { display: none; }

  .sobre-grid,
  .atuacao-intro,
  .metodo-grid,
  .contato-grid    { grid-template-columns: 1fr; gap: 48px; }

  .atuacao-cards { grid-template-columns: 1fr; }
  .valores-grid  { grid-template-columns: repeat(2, 1fr); }

  .sobre-img-wrap { max-width: 380px; margin: 0 auto; }
}

@media (max-width: 540px) {
  :root {
    --pad-x: 20px;
    --nav-h: 68px;  /* mobile portrait */
  }
  .valores-grid { grid-template-columns: 1fr; }
  .form-row     { grid-template-columns: 1fr; }
  .form-card    { padding: 28px 20px; }
  .trust-item   { padding: 6px 16px; font-size: .68rem; }
  .nav-sig--navy { width: 160px; }
  .hero-h1 { font-size: clamp(2rem, 7vw, 2.8rem); line-height: 1.1; }
  .hero-h1 .h1-line { white-space: normal; }
  .hero-descriptor li { font-size: .74rem; letter-spacing: .14em; }
  .trustbar-inner { flex-direction: column; gap: 4px; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); width: 100%; justify-content: center; }
  .trust-item:last-child { border-bottom: none; }
  #hero { grid-template-rows: 60vw 1fr; }
}
/* Compensa a navbar fixed sem criar "faixa" entre navbar e hero */
body {
  padding-top: var(--nav-h);
}

/* Remove o padding global do section no HERO e ajusta altura */
#hero {
  padding: 0;
  min-height: calc(100svh - var(--nav-h));
}

/* Quando clicar no menu, evita que a navbar cubra o topo da seção */
section {
  scroll-margin-top: var(--nav-h);
}

/* --nav-h: 68px para mobile portrait já definido no breakpoint 540px acima */

/* ══════════════════════════════════════
   PÁGINAS INTERNAS — classes utilitárias
   Substitui inline styles das seções de serviço
══════════════════════════════════════ */

/* Parágrafo de introdução no hero interno (fundo navy) */
.hero-inner-lead {
  color: rgba(255,255,255,.85);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 36px;
  font-weight: 300;
}

/* Wrapper principal do corpo de conteúdo */
.content-body    { margin-top: 52px; }
.content-spacer  { margin-top: 56px; }

/* Título da seção "Situações" — mais respiro acima da lista */
.content-spacer h3 {
  margin-bottom: 28px;
}

/* Textos do corpo das seções internas */
.content-text p {
  font-size: 1.05rem;
  line-height: 1.82;
  margin-bottom: 24px;
  color: #555;
  text-align: justify;
  hyphens: auto;
}
.content-text h3 {
  margin-bottom: 20px;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
}

/* Lista de tópicos com bullet dourado */
.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-list li {
  margin-bottom: 20px;
  padding-left: 28px;
  position: relative;
  font-size: .97rem;
  line-height: 1.82;
  color: #555;
  font-weight: 300;
}
.service-list li:last-child { margin-bottom: 0; }
.service-list__bullet {
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Bloco CTA interno (bege com borda gold) */
.inner-cta-block {
  margin-top: 48px;
  padding: 40px;
  background: var(--bege);
  border-left: 3px solid var(--gold);
}
.inner-cta-block h3          { margin-bottom: 16px; }
.inner-cta-block p           { font-size: 1rem; line-height: 1.8; color: #555; margin-bottom: 16px; }
.inner-cta-block p:last-child { margin-bottom: 0; }

/* Seção "Outras Áreas" */
.section-outras-areas { background: var(--offwhite); padding: 64px 0; }

.outras-areas-header {
  text-align: center;
  margin-bottom: 40px;
}
.outras-areas-header .rule-gold { margin: 0 auto; }
.outras-areas-header h2         { font-size: 1.6rem; }

.outras-areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

/* Variantes da regra dourada */
.rule-gold--dim    { background: rgba(184,149,106,.45); }
.rule-gold--mt     { margin-top: 14px; }

/* Span de label opcional */
.label-optional {
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(30,58,95,.4);
  margin-bottom: 32px;
}
.breadcrumb a {
  color: rgba(30,58,95,.4);
  text-decoration: none;
  transition: color .2s;
}
.breadcrumb a:hover     { color: var(--navy); }
.breadcrumb__sep        { font-size: .6rem; color: rgba(30,58,95,.25); }
.breadcrumb__current    { color: var(--navy); }
/* Texto de corpo das páginas internas */
.inner-body-text {
  font-size: 1.05rem;
  line-height: 1.82;
  margin-bottom: 24px;
  color: #555;
  text-align: justify;
  hyphens: auto;
}

/* Título da seção Outras Áreas */
.outras-areas-title { font-size: 1.6rem; }

/* rule-gold centralizada na seção Outras Áreas */
.section-outras-areas .rule-gold { margin: 0 auto; }

/* ── MAPA EMBED ── */
.mapa-embed {
  margin-top: 48px;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(30,58,95,.08);
}
.mapa-embed iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: none;
  filter: grayscale(20%) contrast(1.03);
}
.mapa-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  margin-top: 8px;
  transition: opacity .2s;
}
.mapa-link:hover { opacity: .75; }
.mapa-link svg {
  width: 13px; height: 13px;
  fill: var(--gold);
  flex-shrink: 0;
}


