/* ============================================================
   HABREU ADVOCACIA — Shared Stylesheet
   Paleta: #0A1930 navy-marinho · #C9A857 dourado · #101418 preto
           #F7F4EE off-white · #1A1A1A texto
   Fontes: Playfair Display (serif) · DM Sans (sans)
   Estrutura/layout herdados do padrão PHN (Gonçalves) e recolorizados.
============================================================ */

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: #F7F4EE;
  color: #1A1A1A;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* TOPBAR */
.topbar { background: #0A1930; color: #fff; font-size: 12.5px; padding: 8px 0; z-index: 1000; position: relative; border-bottom: 1px solid rgba(201,168,87,0.18); }
.topbar-inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 16px; }
.topbar-left { grid-column: 2; justify-self: center; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; justify-content: center; }
.topbar-item { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.88); transition: color 0.2s; }
.topbar-item:hover { color: #C9A857; }
.topbar-item svg { flex-shrink: 0; color: #C9A857; }
.topbar-right { grid-column: 3; justify-self: end; display: flex; align-items: center; gap: 14px; }
.topbar-social { display: flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 4px; background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.85); transition: background 0.2s, color 0.2s; }
.topbar-social:hover { background: #C9A857; color: #0A1930; }

/* NAVBAR */
.navbar { background: #fff; position: sticky; top: 0; z-index: 999; transition: box-shadow 0.3s ease; }
.navbar.scrolled { box-shadow: 0 2px 16px rgba(10,25,48,0.12); }
.navbar-inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.navbar-logo { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.navbar-logo-img { display: block; height: 66px; width: auto; max-width: 84px; object-fit: contain; }
.navbar-wordmark-img { display: block; height: 34px; width: auto; max-width: 168px; object-fit: contain; }
.navbar-logo-text { display: flex; flex-direction: column; line-height: 1; }
.navbar-logo-text strong { font-family: 'Playfair Display', serif; font-size: 21px; font-weight: 700; color: #0A1930; letter-spacing: 0.3px; }
.navbar-logo-text > span { font-size: 10px; letter-spacing: 3.5px; text-transform: uppercase; color: #C9A857; font-weight: 600; margin-top: 3px; }
@media (max-width: 480px) { .navbar-wordmark-img { height: 28px; max-width: 140px; } .navbar-logo-img { height: 56px; } }
.navbar-nav { display: flex; align-items: center; gap: 28px; flex: 1; justify-content: center; }
.navbar-nav > a, .nav-dropdown > a { font-size: 14.5px; font-weight: 500; color: #1A1A1A; position: relative; padding-bottom: 2px; transition: color 0.2s; cursor: pointer; }
.navbar-nav > a::after, .nav-dropdown > a::after { content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: #C9A857; transition: width 0.25s ease; }
.navbar-nav > a:hover, .nav-dropdown:hover > a { color: #0A1930; }
.navbar-nav > a:hover::after, .nav-dropdown:hover > a::after { width: 100%; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px); background: #fff; border-radius: 8px; box-shadow: 0 12px 40px rgba(10,25,48,0.16); padding: 12px 0; min-width: 300px; opacity: 0; pointer-events: none; transition: opacity 0.2s, transform 0.2s; z-index: 1000; border-top: 3px solid #C9A857; }
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }
.nav-dropdown-menu a { display: block; padding: 10px 22px; font-size: 14px; color: #1A1A1A; transition: background 0.15s, color 0.15s; white-space: nowrap; }
.nav-dropdown-menu a:hover { background: #F7F4EE; color: #0A1930; }
.nav-dropdown-menu a::after { display: none; }
.nav-dropdown-menu .nav-dd-head { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: #C9A857; padding: 6px 22px 4px; }
.nav-dropdown-menu .nav-dd-sep { height: 1px; background: #EDE7DA; margin: 8px 16px; }

.btn-nav-cta { display: inline-flex; align-items: center; gap: 6px; background: #C9A857; color: #0A1930; font-size: 13.5px; font-weight: 700; padding: 11px 20px; border-radius: 4px; white-space: nowrap; transition: background 0.2s, transform 0.2s; flex-shrink: 0; }
.btn-nav-cta:hover { background: #b8963f; transform: scale(1.02); }

.navbar-hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 36px; height: 36px; padding: 4px; }
.navbar-hamburger span { display: block; height: 2px; background: #0A1930; border-radius: 2px; transition: 0.3s; }
.navbar-mobile-menu { display: none; flex-direction: column; background: #fff; border-top: 1px solid #EDE7DA; padding: 16px 32px 24px; gap: 4px; }
.navbar-mobile-menu a { padding: 10px 0; font-size: 15px; font-weight: 500; color: #1A1A1A; border-bottom: 1px solid #EDE7DA; }
.navbar-mobile-menu a:last-of-type { border-bottom: none; }
.navbar-mobile-menu .btn-nav-cta { margin-top: 12px; justify-content: center; }
.navbar-mobile-menu .mobile-submenu { padding-left: 16px; display: none; flex-direction: column; }
.navbar-mobile-menu .mobile-submenu.open { display: flex; }
.navbar-mobile-menu .mobile-submenu a { font-size: 14px; color: #55524B; border-bottom: none; padding: 6px 0; }
.navbar-mobile-menu .mobile-toggle { display: flex; justify-content: space-between; align-items: center; }
.navbar-mobile-menu .mobile-toggle::after { content: '+'; font-size: 18px; font-weight: 300; color: #55524B; transition: transform 0.2s; }
.navbar-mobile-menu .mobile-toggle.active::after { content: '−'; }

/* HERO HOME — split: texto + mini-formulário */
.hero-home {
  background:
    linear-gradient(90deg, rgba(10,25,48,0.95) 0%, rgba(10,25,48,0.86) 34%, rgba(10,25,48,0.62) 64%, rgba(10,25,48,0.44) 100%),
    url('img/hero-bg.jpg') center center / cover no-repeat,
    #0A1930;
  position: relative;
  overflow: hidden;
  padding: 84px 32px 88px;
  color: #fff;
}
.hero-home::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,87,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,87,0.05) 1px, transparent 1px);
  background-size: 44px 44px; pointer-events: none; z-index: 0;
}
.hero-home-inner { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1.35fr 0.9fr; gap: 56px; align-items: center; }
.hero-badge { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: #C9A857; border: 1px solid #C9A857; padding: 6px 14px; border-radius: 2px; margin-bottom: 24px; }
.hero-home h1 { font-family: 'Playfair Display', serif; font-size: 46px; font-weight: 700; color: #fff; line-height: 1.15; margin-bottom: 22px; max-width: 640px; }
.hero-home h1 em { font-style: italic; color: #C9A857; }
.hero-home p.lead { font-size: 17px; color: #E8E4DA; line-height: 1.7; max-width: 600px; margin-bottom: 32px; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { margin-top: 32px; display: flex; gap: 30px; flex-wrap: wrap; }
.hero-trust-item { display: flex; flex-direction: column; }
.hero-trust-item strong { font-family: 'Playfair Display', serif; font-size: 26px; color: #C9A857; line-height: 1; }
.hero-trust-item span { font-size: 12.5px; color: rgba(255,255,255,0.7); margin-top: 6px; }

/* Mini-formulário do Hero */
.hero-form-card { background: #fff; border-radius: 14px; padding: 30px 28px; box-shadow: 0 24px 60px rgba(0,0,0,0.35); border-top: 4px solid #C9A857; }
.hero-form-card h2 { font-family: 'Playfair Display', serif; font-size: 22px; color: #0A1930; margin-bottom: 6px; }
.hero-form-card p.hint { font-size: 13.5px; color: #6b6860; margin-bottom: 18px; }
.hero-form-card form { display: flex; flex-direction: column; gap: 12px; }
.hero-form-card input, .hero-form-card select, .hero-form-card textarea {
  font-family: inherit; font-size: 14.5px; color: #1A1A1A; border: 1.5px solid #E4DECF; border-radius: 6px;
  padding: 11px 13px; background: #FBFAF6; outline: none; transition: border-color 0.2s, background 0.2s; width: 100%;
}
.hero-form-card textarea { resize: vertical; min-height: 74px; }
.hero-form-card input:focus, .hero-form-card select:focus, .hero-form-card textarea:focus { border-color: #C9A857; background: #fff; }
.hero-form-card button[type="submit"] { margin-top: 4px; background: #0A1930; color: #fff; font-size: 15px; font-weight: 700; padding: 13px; border-radius: 6px; transition: background 0.2s, transform 0.2s; }
.hero-form-card button[type="submit"]:hover { background: #14243f; transform: scale(1.01); }

/* HERO INTERNO (páginas internas) */
.hero-inner {
  background:
    linear-gradient(90deg, rgba(10,25,48,0.94) 0%, rgba(10,25,48,0.82) 32%, rgba(10,25,48,0.50) 64%, rgba(10,25,48,0.30) 100%),
    url('img/hero-bg.jpg') center center / cover no-repeat,
    #0A1930;
  position: relative; overflow: hidden; padding: 76px 32px 68px; color: #fff;
}
.hero-inner::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,87,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,87,0.045) 1px, transparent 1px);
  background-size: 44px 44px; pointer-events: none; z-index: 0;
}
.hero-inner-content { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,0.65); margin-bottom: 20px; display: flex; flex-wrap: wrap; gap: 6px; }
.breadcrumb a { color: rgba(255,255,255,0.85); transition: color 0.2s; }
.breadcrumb a:hover { color: #C9A857; }
.breadcrumb span.sep { color: rgba(255,255,255,0.4); }
.hero-inner .hero-badge { margin-bottom: 22px; }
.hero-inner h1 { font-family: 'Playfair Display', serif; font-size: 44px; font-weight: 700; color: #fff; line-height: 1.15; margin-bottom: 20px; max-width: 880px; }
.hero-inner h1 em { font-style: italic; color: #C9A857; }
.hero-inner p.lead { font-size: 17px; color: #E8E4DA; line-height: 1.7; max-width: 780px; margin-bottom: 32px; }
.hero-inner .hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

/* BUTTONS */
.btn-primary { display: inline-flex; align-items: center; gap: 6px; background: #C9A857; color: #0A1930; font-size: 15px; font-weight: 700; padding: 14px 28px; border-radius: 4px; transition: background 0.2s, transform 0.2s; }
.btn-primary:hover { background: #b8963f; transform: scale(1.02); }
.btn-secondary { display: inline-flex; align-items: center; gap: 6px; background: transparent; color: #fff; font-size: 15px; font-weight: 600; padding: 13px 28px; border-radius: 4px; border: 2px solid rgba(255,255,255,0.6); transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s; }
.btn-secondary:hover { background: #fff; color: #0A1930; border-color: #fff; transform: scale(1.02); }
.btn-navy { display: inline-flex; align-items: center; gap: 6px; background: #0A1930; color: #fff; font-size: 15px; font-weight: 700; padding: 14px 28px; border-radius: 4px; transition: background 0.2s, transform 0.2s; }
.btn-navy:hover { background: #14243f; transform: scale(1.02); }
.btn-wa { display: inline-flex; align-items: center; gap: 8px; background: #25D366; color: #fff; font-size: 15px; font-weight: 700; padding: 13px 26px; border-radius: 4px; transition: background 0.2s, transform 0.2s; }
.btn-wa:hover { background: #1eb658; transform: scale(1.02); }

/* SEÇÕES GENÉRICAS */
.section { padding: 88px 32px; }
.section.alt { background: #fff; }
.section.cream { background: #F1EBDD; }
.section.navy { background: #0A1930; color: #fff; }
.section.navy h2, .section.navy h3 { color: #fff; }
.section.navy p { color: rgba(255,255,255,0.8); }
.section-inner { max-width: 1080px; margin: 0 auto; }
.section-inner.wide { max-width: 1280px; }
.section-eyebrow { display: inline-block; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 3px; color: #C9A857; margin-bottom: 14px; }
.section-eyebrow.centered { display: block; text-align: center; }
.section-title { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; color: #0A1930; line-height: 1.2; }
.section-title.centered { text-align: center; }
.section.navy .section-title { color: #fff; }
.section-subtitle { font-size: 17px; color: #55524B; margin-top: 12px; }
.section-subtitle.centered { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }
.section.navy .section-subtitle { color: rgba(255,255,255,0.75); }
.gold-divider { display: block; width: 60px; height: 3px; background: #C9A857; border-radius: 2px; margin: 18px 0 28px; }
.gold-divider.centered { margin: 18px auto 28px; }

.section-inner:not(.wide) > h2,
.section-inner:not(.wide) > .section-title:not(.centered),
.section-inner:not(.wide) > .gold-divider:not(.centered) { max-width: 820px; margin-left: auto; margin-right: auto; }
/* Alinha o eyebrow (rótulo) com o título centralizado no bloco de 820px */
.section-inner:not(.wide) > .section-eyebrow:not(.centered) { display: block; max-width: 820px; margin-left: auto; margin-right: auto; }

/* PROSE */
.prose { max-width: 820px; margin: 0 auto; }
.prose.wide { max-width: 1080px; }
.prose h2 { font-family: 'Playfair Display', serif; font-size: 30px; color: #0A1930; margin: 48px 0 16px; line-height: 1.25; font-weight: 700; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-family: 'DM Sans', sans-serif; font-size: 20px; color: #0A1930; margin: 32px 0 12px; font-weight: 700; }
.prose p { font-size: 16.5px; color: #33302B; line-height: 1.8; margin-bottom: 18px; }
.prose ul, .prose ol { margin: 0 0 20px 20px; }
.prose ul li, .prose ol li { font-size: 16px; color: #33302B; line-height: 1.75; margin-bottom: 8px; list-style: disc; }
.prose ol li { list-style: decimal; }
.prose strong { color: #0A1930; font-weight: 700; }
.prose a { color: #0A1930; font-weight: 600; text-decoration: underline; text-decoration-color: rgba(201,168,87,0.6); text-underline-offset: 2px; }
.prose a:hover { color: #C9A857; }
.prose blockquote { border-left: 4px solid #C9A857; padding: 4px 0 4px 20px; margin: 24px 0; font-style: italic; color: #55524B; }

/* Content Capsule — resposta curta destacada sob um H2-pergunta */
.capsule { background: #FBFAF6; border: 1px solid #E4DECF; border-left: 4px solid #C9A857; border-radius: 0 10px 10px 0; padding: 18px 22px; margin: 4px 0 22px; }
.capsule p { font-size: 16px; color: #33302B; line-height: 1.7; margin: 0; }

/* CARDS GRID */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1280px; margin: 0 auto; }
.cards-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cards-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.card { background: #fff; border: 1px solid #EAE3D4; border-radius: 8px; padding: 32px 26px; display: flex; flex-direction: column; transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease; }
.card:hover { border-color: #C9A857; transform: translateY(-4px); box-shadow: 0 12px 40px rgba(10,25,48,0.12); }
.card-icon { width: 54px; height: 54px; background: #0A1930; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: #C9A857; flex-shrink: 0; }
.card h3 { font-family: 'DM Sans', sans-serif; font-size: 18px; font-weight: 700; color: #0A1930; margin-bottom: 10px; line-height: 1.3; }
.card p { font-size: 14.5px; color: #55524B; line-height: 1.65; flex: 1; margin-bottom: 20px; }
.card-link { font-size: 14px; font-weight: 700; color: #0A1930; display: inline-flex; align-items: center; gap: 4px; margin-top: auto; transition: gap 0.2s, color 0.2s; }
.card-link:hover { color: #C9A857; gap: 8px; }
.card.featured { border-color: #C9A857; background: linear-gradient(180deg, #FBF8F0 0%, #fff 100%); }

/* FEATURE SECTION (imagem + conteúdo) */
.feature-section { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; max-width: 1280px; margin: 0 auto; }
.feature-section.img-right .feature-section-img { order: 2; }
.feature-section-img { border-radius: 50%; overflow: hidden; box-shadow: 0 20px 52px rgba(10,25,48,0.20); width: 100%; max-width: 430px; aspect-ratio: 1 / 1; margin: 0 auto; }
.feature-section-img.sm { max-width: 320px; }
.feature-section-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.feature-section-content .section-title { margin-bottom: 0; }
.feature-section-content .gold-divider { margin-bottom: 20px; }

/* FEATURE LIST (checklist) */
.feature-list { display: grid; grid-template-columns: repeat(1, 1fr); gap: 14px; margin: 24px 0; }
.feature-list.cols-2 { grid-template-columns: repeat(2, 1fr); gap: 14px 36px; }
.feature-list li { list-style: none !important; padding-left: 32px; position: relative; font-size: 15.5px; color: #33302B; line-height: 1.6; margin-left: 0 !important; }
.feature-list li::before {
  content: ''; position: absolute; left: 0; top: 3px; width: 20px; height: 20px; background: #C9A857;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / contain no-repeat;
}
.section.navy .feature-list li { color: rgba(255,255,255,0.85); }

/* STATS */
.stats-section { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; max-width: 1280px; margin: 0 auto; }
.stats-section-text .section-title { margin-bottom: 0; }
.stats-section-text .gold-divider { margin-bottom: 20px; }
.stats-section-text .prose { margin: 0; max-width: 100%; }
.stats-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.stat-card { background: #fff; border: 1px solid #EAE3D4; border-radius: 12px; padding: 26px 20px; text-align: center; transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; }
.stat-card:hover { transform: translateY(-3px); border-color: #C9A857; box-shadow: 0 10px 28px rgba(10,25,48,0.10); }
.stat-card strong { display: block; font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700; color: #C9A857; line-height: 1; margin-bottom: 8px; }
.stat-card span, .stat-card p { display: block; font-size: 13.5px; color: #55524B; line-height: 1.45; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 1280px; margin: 0 auto; }
.stat { text-align: center; }
.stat-number { font-family: 'Playfair Display', serif; font-size: 44px; font-weight: 700; color: #C9A857; line-height: 1; display: block; }
.stat-label { font-size: 14px; color: #55524B; margin-top: 8px; display: block; }
.section.navy .stat-label { color: rgba(255,255,255,0.75); }

/* TIMELINE / STEPS */
.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; max-width: 1100px; margin: 0 auto; }
.steps.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 780px; }
.steps.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); max-width: 1280px; }
.step { background: #fff; border: 1px solid #EAE3D4; border-radius: 14px; padding: 36px 30px 32px; position: relative; display: flex; flex-direction: column; text-align: left; transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; min-height: 210px; }
.step:hover { transform: translateY(-4px); border-color: #C9A857; box-shadow: 0 14px 40px rgba(10,25,48,0.10); }
.step::before { content: ''; position: absolute; top: 0; left: 30px; width: 44px; height: 4px; background: #C9A857; border-radius: 0 0 4px 4px; }
.step-number { font-family: 'Playfair Display', serif; font-size: 46px; font-weight: 700; color: #C9A857; line-height: 1; margin-bottom: 16px; letter-spacing: -1px; }
.step h3 { font-family: 'DM Sans', sans-serif; font-size: 17px; font-weight: 700; color: #0A1930; margin-bottom: 10px; line-height: 1.35; }
.step p { font-size: 15px; color: #55524B; line-height: 1.7; flex: 1; }

/* FAQ — bloco s-faq com <details>/<summary> e <h6> */
.s-faq { max-width: 860px; margin: 0 auto; }
.s-faq > h2 { font-family: 'Playfair Display', serif; font-size: 32px; color: #0A1930; text-align: center; margin-bottom: 8px; }
.faq-intro { text-align: center; color: #55524B; margin-bottom: 36px; }
.faq-item { background: #fff; border: 1px solid #EAE3D4; border-radius: 8px; padding: 20px 26px; transition: border-color 0.2s; margin-bottom: 14px; }
.faq-item:hover { border-color: #C9A857; }
.faq-item summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 24px; font-weight: 300; color: #C9A857; transition: transform 0.2s; flex-shrink: 0; }
.faq-item[open] summary::after { content: '−'; }
.faq-q-title { font-family: 'DM Sans', sans-serif; font-size: 17px; font-weight: 600; color: #0A1930; margin: 0; line-height: 1.4; }
.faq-item p { margin-top: 12px; font-size: 15.5px; color: #33302B; line-height: 1.75; }
.faq-item p a { color: #0A1930; text-decoration: underline; text-decoration-color: rgba(201,168,87,0.6); }
.faq-item p a:hover { color: #C9A857; }

/* PARA APROFUNDAR — post-related (pós-FAQ, estética de capsule) */
.related-strip { padding: 34px 32px; }
.related-strip.section.alt, .related-strip.section { background: transparent; }
.post-related { max-width: 860px; margin: 0 auto; background: #FBFAF6; border: 1px solid #E4DECF; border-left: 4px solid #C9A857; border-radius: 0 10px 10px 0; padding: 22px 28px; box-shadow: 0 2px 12px rgba(10,25,48,0.05); }
.post-related h2 { font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: #C9A857; margin-bottom: 12px; }
.post-related ul { display: flex; flex-direction: column; gap: 8px; }
.post-related li { position: relative; padding-left: 18px; font-size: 14px; color: #55524B; line-height: 1.55; }
.post-related li::before { content: '→'; position: absolute; left: 0; color: #C9A857; font-weight: 700; }
.post-related li a { color: #0A1930; font-weight: 600; text-decoration: none; border-bottom: none; }
.post-related li a:hover { color: #C9A857; }

/* COVERAGE NAVY */
.coverage-navy { background: linear-gradient(135deg, #0A1930 0%, #101a30 100%); padding: 88px 32px; position: relative; overflow: hidden; }
.coverage-navy::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(201,168,87,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(201,168,87,0.03) 1px, transparent 1px); background-size: 44px 44px; pointer-events: none; }
.coverage-layout { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: flex-start; }
.coverage-text h2 { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 34px; color: #fff; line-height: 1.2; margin-bottom: 8px; }
.coverage-text p { font-size: 16px; color: rgba(255,255,255,0.78); line-height: 1.7; margin-bottom: 20px; }
.coverage-text .btn-primary { margin-top: 8px; }
.coverage-cards { display: flex; flex-direction: column; gap: 18px; }
.coverage-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(201,168,87,0.22); border-radius: 10px; padding: 22px 26px; }
.coverage-card h4 { font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 700; color: #C9A857; text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 12px; }
.coverage-card p { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.75); }
.coverage-card ul { display: flex; flex-wrap: wrap; gap: 6px 18px; }
.coverage-card li { font-size: 14px; color: rgba(255,255,255,0.75); padding-left: 14px; position: relative; list-style: none; }
.coverage-card li::before { content: '·'; position: absolute; left: 0; color: #C9A857; font-weight: 700; }
.coverage-card li a { color: rgba(255,255,255,0.75); transition: color 0.2s; }
.coverage-card li a:hover { color: #C9A857; }

/* CTA BAND */
.cta-band { background: linear-gradient(180deg, rgba(10,25,48,0.72) 0%, rgba(10,25,48,0.80) 55%, rgba(10,25,48,0.88) 100%), url('img/cta-bg.jpg') center top / cover no-repeat, #0A1930; padding: 84px 32px; text-align: center; color: #fff; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(201,168,87,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(201,168,87,0.04) 1px, transparent 1px); background-size: 44px 44px; pointer-events: none; }
.cta-band .cta-eyebrow, .cta-band h2, .cta-band p, .cta-band .btns { position: relative; z-index: 1; }
.cta-band .cta-eyebrow { display: block; font-size: 12px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: #C9A857; margin-bottom: 14px; }
.cta-band h2 { font-family: 'Playfair Display', serif; font-size: 34px; color: #fff; margin-bottom: 14px; line-height: 1.25; }
.cta-band p { font-size: 17px; color: rgba(255,255,255,0.85); max-width: 700px; margin: 0 auto 28px; line-height: 1.7; }
.cta-band .btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* TWO-COL */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; max-width: 1280px; margin: 0 auto; }
.two-col.img-right .img { order: 2; }
.two-col .img { border-radius: 10px; overflow: hidden; box-shadow: 0 16px 56px rgba(10,25,48,0.16); }
.two-col .img img { width: 100%; height: 440px; object-fit: cover; }

/* CONTACT PAGE */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; max-width: 1180px; margin: 0 auto; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-info-item .icon { width: 46px; height: 46px; background: #0A1930; color: #C9A857; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-item h4 { font-size: 14px; font-weight: 700; color: #0A1930; text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a { font-size: 15.5px; color: #33302B; line-height: 1.55; }
.contact-info-item a:hover { color: #C9A857; }
.contact-form-card { background: #fff; border-radius: 12px; padding: 40px 36px; box-shadow: 0 12px 48px rgba(10,25,48,0.10); border: 1px solid #EAE3D4; border-top: 4px solid #C9A857; }
.contact-form-card h3 { font-family: 'Playfair Display', serif; font-size: 24px; color: #0A1930; margin-bottom: 20px; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form .form-group { display: flex; flex-direction: column; gap: 6px; }
.contact-form label { font-size: 13.5px; font-weight: 600; color: #55524B; }
.contact-form input, .contact-form select, .contact-form textarea { font-family: inherit; font-size: 15px; color: #1A1A1A; border: 1.5px solid #E4DECF; border-radius: 6px; padding: 11px 14px; background: #FBFAF6; outline: none; transition: border-color 0.2s, background 0.2s; width: 100%; }
.contact-form textarea { resize: vertical; min-height: 110px; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: #C9A857; background: #fff; }
.contact-form button[type="submit"] { margin-top: 8px; background: #0A1930; color: #fff; font-size: 16px; font-weight: 700; padding: 14px; border-radius: 6px; cursor: pointer; transition: background 0.2s, transform 0.2s; }
.contact-form button[type="submit"]:hover { background: #14243f; transform: scale(1.01); }

/* MAP */
.map-wrap { max-width: 1280px; margin: 0 auto; border-radius: 10px; overflow: hidden; box-shadow: 0 10px 40px rgba(10,25,48,0.12); }
.map-wrap iframe { display: block; width: 100%; height: 420px; border: 0; }

/* CONTACT MODAL */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; pointer-events: none; transition: opacity 0.25s ease; }
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal-card { background: #fff; border-radius: 12px; max-width: 560px; width: 100%; padding: 44px 40px 36px; position: relative; transform: translateY(20px); transition: transform 0.25s ease; border-top: 4px solid #C9A857; }
.modal-overlay.active .modal-card { transform: translateY(0); }
.modal-close { position: absolute; top: 16px; right: 20px; font-size: 26px; color: #55524B; line-height: 1; }
.modal-close:hover { color: #0A1930; }
.modal-title { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: #0A1930; margin-bottom: 24px; }

/* FADE-UP */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }

/* BYLINE E-E-A-T — compacto e discreto */
.s-author { background: #0A1930; color: #F7F4EE; padding: 30px 5vw; }
.s-author-inner { max-width: 940px; margin: 0 auto; display: grid; grid-template-columns: 60px 1fr; gap: 22px; align-items: center; }
.s-author-photo { width: 60px; height: 60px; border-radius: 50%; overflow: hidden; background: #14243f; border: 1.5px solid rgba(201,168,87,0.6); flex-shrink: 0; display: flex; align-items: center; justify-content: center; align-self: start; }
.s-author-photo img { display: none; }
.s-author-photo::before { content: "HH"; font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; letter-spacing: 1px; color: #C9A857; }
.s-author-text { display: flex; flex-direction: column; gap: 5px; }
.s-author-role { font-family: 'DM Sans', sans-serif; font-size: 10.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.6px; color: #C9A857; margin: 0; }
.s-author-name { font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 600; line-height: 1.4; color: #E8E4DA; margin: 0; }
.s-author-name em { font-style: normal; color: #C9A857; }
.s-author-bio { font-family: 'DM Sans', sans-serif; font-size: 13px; line-height: 1.55; color: #9AA4B4; margin: 0; }
.s-author-bio strong { color: #CBCABF; font-weight: 600; }
.s-author-bio a { color: #C9A857; text-decoration: none; border-bottom: 1px solid rgba(201,168,87,0.3); transition: border-color 0.2s; }
.s-author-bio a:hover { border-bottom-color: #C9A857; }
.s-author-meta { font-size: 11.5px; color: #6f7787; margin: 2px 0 0; }

/* TLDR "Em resumo" */
.s-tldr { background: #fff; border-left: 4px solid #C9A857; padding: 40px 56px; margin: 0 auto; max-width: 920px; border-radius: 0 12px 12px 0; box-shadow: 0 2px 12px rgba(10,25,48,0.07); }
.s-tldr-label { font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: #C9A857; margin: 0 0 12px; }
.s-tldr-title { font-family: 'Playfair Display', serif; font-size: 26px; line-height: 1.25; color: #0A1930; margin: 0 0 24px; font-weight: 700; }
.s-tldr-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.s-tldr-list li { font-family: 'DM Sans', sans-serif; font-size: 16px; line-height: 1.55; color: #33302B; padding-left: 22px; position: relative; }
.s-tldr-list li::before { content: ""; position: absolute; left: 0; top: 9px; width: 8px; height: 8px; background: #C9A857; border-radius: 50%; }
.s-tldr-list li strong { color: #0A1930; font-weight: 700; }

/* FOOTER */
.footer { background: #0A1930; padding: 72px 32px 0; }
.footer-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1.2fr 1.2fr 1.4fr; gap: 48px; padding-bottom: 56px; }
.footer-logo-img { display: block; height: 84px; width: auto; max-width: 240px; margin-bottom: 18px; object-fit: contain; }
.footer-tagline { font-size: 14px; color: #9AA4B4; line-height: 1.65; margin-bottom: 20px; }
.footer-oab { font-size: 13px; color: #C9A857; font-weight: 600; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social { width: 34px; height: 34px; border-radius: 6px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.65); transition: background 0.2s, color 0.2s; }
.footer-social:hover { background: #C9A857; color: #0A1930; }
.footer-col-title { font-size: 14px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: #9AA4B4; transition: color 0.2s; }
.footer-links a:hover { color: #C9A857; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: #9AA4B4; margin-bottom: 12px; line-height: 1.5; }
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; color: #C9A857; }
.footer-contact-item a { color: #9AA4B4; transition: color 0.2s; }
.footer-contact-item a:hover { color: #C9A857; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; }
.footer-bottom-inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.footer-bottom p { font-size: 13px; color: #9AA4B4; }
.footer-bottom a { color: #9AA4B4; }
.footer-bottom a:hover { color: #C9A857; }

/* WHATSAPP FLOAT */
.whatsapp-float { position: fixed; bottom: 32px; right: 32px; z-index: 9998; width: 58px; height: 58px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 24px rgba(37,211,102,0.40); transition: transform 0.2s, box-shadow 0.2s; }
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 10px 32px rgba(37,211,102,0.55); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .cards-grid, .cards-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .steps, .steps.cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 720px; }
  .two-col, .feature-section, .stats-section { grid-template-columns: 1fr; gap: 40px; }
  .feature-section.img-right .feature-section-img { order: -1; }
  .feature-section-img { max-width: 300px; }
  .feature-section-img.sm { max-width: 240px; }
  .two-col.img-right .img { order: -1; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .feature-list { grid-template-columns: 1fr; }
  .coverage-layout { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .navbar-nav { gap: 18px; }
  .hero-home-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-home h1, .hero-inner h1 { font-size: 38px; }
}
@media (max-width: 768px) {
  .topbar { display: none; }
  .navbar-nav { display: none; }
  .btn-nav-cta.desktop-only { display: none; }
  .navbar-hamburger { display: flex; }
  .navbar-mobile-menu.open { display: flex; }
  .section { padding: 60px 20px; }
  .cta-band, .coverage-navy { padding: 56px 20px; }
  .hero-home, .hero-inner { padding: 52px 20px; }
  .hero-home h1, .hero-inner h1 { font-size: 30px; }
  .hero-home p.lead, .hero-inner p.lead { font-size: 15px; }
  .section-title { font-size: 27px; }
  .cards-grid, .cards-grid.cols-4, .cards-grid.cols-2 { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stats-cards { grid-template-columns: 1fr; }
  .steps, .steps.cols-4, .steps.cols-2 { grid-template-columns: 1fr; max-width: 420px; }
  .step { padding: 28px 22px 24px; min-height: 0; }
  .two-col .img img { height: 280px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer { padding: 56px 20px 0; }
  .contact-form-card, .hero-form-card { padding: 28px 22px; }
  .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
  .modal-card { padding: 32px 22px 28px; }
  .s-tldr { padding: 28px 24px; border-radius: 0; }
  .s-tldr-title { font-size: 21px; }
  .s-author { padding: 26px 22px; }
  .s-author-inner { grid-template-columns: 52px 1fr; gap: 16px; }
  .s-author-photo { width: 52px; height: 52px; }
  .s-author-photo::before { font-size: 17px; }
  .post-related { padding: 26px 22px; }
}

/* ============================================================
   COBERTURA — 2 colunas (texto + painel de backlinks geo) na página de Contato
============================================================ */
.cobertura-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; max-width: 1180px; margin: 0 auto; }
.cobertura-text .section-title { margin-bottom: 0; }
.cobertura-text .gold-divider { margin-bottom: 20px; }
.cobertura-links { background: #fff; border: 1px solid #EAE3D4; border-top: 3px solid #C9A857; border-radius: 12px; padding: 30px 32px; box-shadow: 0 10px 34px rgba(10,25,48,0.07); }
.cobertura-links h4 { font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #C9A857; margin-bottom: 10px; }
.cobertura-links .rmm h4 { margin-top: 22px; }
.cobertura-links ul { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }
.cobertura-links li a { display: block; font-size: 14.5px; color: #33302B; padding: 8px 0 8px 18px; position: relative; border-bottom: 1px solid #EFE9DC; transition: color 0.2s; }
.cobertura-links li a::before { content: '→'; position: absolute; left: 0; color: #C9A857; font-weight: 700; }
.cobertura-links li a:hover { color: #C9A857; }
.cobertura-hub { margin-top: 16px; font-size: 14.5px; }
.cobertura-hub a { color: #0A1930; font-weight: 700; border-bottom: 1px solid rgba(201,168,87,0.5); }
.cobertura-hub a:hover { color: #C9A857; }
@media (max-width: 900px) { .cobertura-layout { grid-template-columns: 1fr; gap: 32px; } }
@media (max-width: 480px) { .cobertura-links ul { grid-template-columns: 1fr; } }

/* ============================================================
   TIMELINE — linha do tempo por etapas (ex.: reunião com o advogado)
============================================================ */
.tl { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; max-width: 1000px; margin: 48px auto 0; }
.tl-step { position: relative; padding: 0 26px; text-align: center; }
.tl-num { width: 58px; height: 58px; border-radius: 50%; background: #0A1930; color: #C9A857; border: 2px solid #C9A857; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 21px; font-weight: 700; margin: 0 auto 22px; position: relative; z-index: 1; }
.tl-step::before { content: ''; position: absolute; top: 28px; left: -50%; width: 100%; height: 2px; background: repeating-linear-gradient(90deg, #C9A857 0 7px, transparent 7px 15px); z-index: 0; }
.tl-step:first-child::before { display: none; }
.tl-step h3 { font-family: 'DM Sans', sans-serif; font-size: 17px; font-weight: 700; color: #0A1930; margin-bottom: 10px; line-height: 1.35; }
.tl-step p { font-size: 14.5px; color: #55524B; line-height: 1.65; }
@media (max-width: 768px) {
  .tl { grid-template-columns: 1fr; gap: 26px; max-width: 460px; }
  .tl-step { padding: 0 0 0 76px; text-align: left; min-height: 58px; }
  .tl-num { position: absolute; left: 0; top: 0; margin: 0; }
  .tl-step::before { display: block; top: 58px; left: 28px; width: 2px; height: calc(100% - 58px + 26px); background: repeating-linear-gradient(180deg, #C9A857 0 7px, transparent 7px 15px); }
  .tl-step:first-child::before { display: block; }
  .tl-step:last-child::before { display: none; }
}

/* ============================================================
   POR QUE — 2 colunas (texto + cards dos pilares) na Home
============================================================ */
.porque-bg { position: relative; overflow: hidden; }
.porque-bg::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 620px; height: 620px; max-width: 92%;
  background: url('img/logo-dourada.png') center / contain no-repeat;
  opacity: 0.06; pointer-events: none; z-index: 0;
}
.porque-bg .section-inner { position: relative; z-index: 1; }
.porque-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; max-width: 1180px; margin: 0 auto; }
.porque-cards { display: flex; flex-direction: column; gap: 14px; }
.porque-cards .card { padding: 20px 26px; border: 1px solid #EAE3D4; border-top: 3px solid #C9A857; border-radius: 0 0 8px 8px; }
.porque-cards .card h3 { margin-bottom: 6px; }
.porque-cards .card p { margin-bottom: 0; }
@media (max-width: 900px) { .porque-layout { grid-template-columns: 1fr; gap: 36px; } }

/* ============================================================
   FOOTER LOGO — lockup (emblema recorte + wordmark) no rodapé
============================================================ */
.footer-logo { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-logo .footer-logo-img { margin-bottom: 0; }
.footer-logo-text { display: flex; flex-direction: column; line-height: 1; }
.footer-logo-text strong { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: #fff; letter-spacing: 0.3px; }
.footer-logo-text > span { font-size: 11px; letter-spacing: 3.5px; text-transform: uppercase; color: #C9A857; font-weight: 600; margin-top: 3px; }
.footer-wordmark-img { display: block; height: 58px; width: auto; max-width: 210px; object-fit: contain; }

/* ============================================================
   PÚBLICO ATENDIDO — marca-d'água (logo recorte) nos cards
============================================================ */
.publico-cards .card { position: relative; overflow: hidden; }
.publico-cards .card::after {
  content: ''; position: absolute; right: -18px; bottom: -18px;
  width: 128px; height: 128px;
  background: url('img/logo-recorte.png') center / contain no-repeat;
  opacity: 0.11; pointer-events: none; z-index: 0;
}
.publico-cards .card > h3, .publico-cards .card > p { position: relative; z-index: 1; }

/* ============================================================
   FEATURE-LOGO — emblema dourado em círculo navy (feature-section)
============================================================ */
.feature-section-img.feature-logo { background: #0A1930; display: flex; align-items: center; justify-content: center; }
.feature-section-img.feature-logo img { width: 74%; height: 74%; object-fit: contain; }

/* ============================================================
   DIFERENCIAIS — grade numerada em seção navy
============================================================ */
.dif-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 34px 60px; max-width: 980px; margin: 50px auto 0; }
.dif-item { border-top: 2px solid rgba(201,168,87,0.35); padding-top: 22px; }
.dif-num { font-family: 'Playfair Display', serif; font-size: 40px; font-weight: 700; color: #C9A857; line-height: 1; display: block; margin-bottom: 14px; }
.dif-item h3 { font-family: 'DM Sans', sans-serif; font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 8px; line-height: 1.35; }
.dif-item p { font-size: 14.5px; color: rgba(255,255,255,0.7); line-height: 1.65; margin: 0; }
@media (max-width: 768px) { .dif-grid { grid-template-columns: 1fr; gap: 26px; max-width: 460px; } }

/* ============================================================
   LOGO-BG — marca-d'água leve da logo recorte (ex.: seção Origem)
============================================================ */
.logo-bg { position: relative; overflow: hidden; }
.logo-bg::before {
  content: ''; position: absolute; top: 50%; right: -30px;
  transform: translateY(-50%);
  width: 460px; height: 460px; max-width: 55%;
  background: url('img/logo-recorte.png') center / contain no-repeat;
  opacity: 0.05; pointer-events: none; z-index: 0;
}
.logo-bg .section-inner { position: relative; z-index: 1; }
@media (max-width: 768px) { .logo-bg::before { right: -80px; opacity: 0.04; } }

/* ============================================================
   PÁGINAS DE ÁREA — layouts de sub-tópicos
============================================================ */
/* Sub-tópico em 2 colunas: texto à esquerda + point list vertical à direita (ex.: Contratos) */
.topic-2col { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 52px; align-items: center; max-width: 1180px; margin: 0 auto; }
.topic-2col .feature-list { grid-template-columns: 1fr !important; margin: 0; }
.topic-2col .feature-list li { border-bottom: 1px solid #EAE3D4; padding-bottom: 13px; }
.topic-2col .feature-list li:last-child { border-bottom: none; padding-bottom: 0; }
@media (max-width: 900px) { .topic-2col { grid-template-columns: 1fr; gap: 30px; } }

/* Outras frentes — 2 colunas, bullets como check-cards com borda superior navy */
.outras-2col { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 52px; align-items: start; max-width: 1180px; margin: 0 auto; }
.outras-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.check-card { background: #fff; border: 1px solid #EAE3D4; border-top: 3px solid #0A1930; border-radius: 0 0 8px 8px; padding: 18px 20px; display: flex; gap: 12px; align-items: flex-start; transition: box-shadow 0.2s, transform 0.2s; }
.check-card:hover { box-shadow: 0 10px 26px rgba(10,25,48,0.10); transform: translateY(-2px); }
.check-ico { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: rgba(201,168,87,0.16); display: flex; align-items: center; justify-content: center; color: #C9A857; margin-top: 1px; }
.check-card p { font-size: 14.5px; color: #55524B; line-height: 1.55; margin: 0; }
.check-card p strong { color: #0A1930; font-weight: 700; }
@media (max-width: 900px) { .outras-2col { grid-template-columns: 1fr; gap: 28px; } }
@media (max-width: 560px) { .outras-cards { grid-template-columns: 1fr; } }

/* Outras frentes — card ÚNICO com a lista (em vez de um card por item) */
.outras-single { background: #fff; border: 1px solid #EAE3D4; border-left: 3px solid #0A1930; border-radius: 0 10px 10px 0; padding: 28px 32px; box-shadow: 0 8px 26px rgba(10,25,48,0.06); }
.outras-single .feature-list { grid-template-columns: 1fr !important; margin: 0; gap: 14px; }

/* Responsabilidade civil — bloco navy (escuro) com dourado, em 2 colunas */
.resp-2col { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; max-width: 1180px; margin: 0 auto; }
.section.navy .resp-text p { color: rgba(255,255,255,0.8); }
.resp-text .capsule { background: rgba(201,168,87,0.08); border-color: rgba(201,168,87,0.3); }
.resp-text .capsule p { color: #E8E4DA; }
.resp-items { display: flex; flex-direction: column; gap: 14px; }
.resp-item { background: rgba(255,255,255,0.045); border: 1px solid rgba(201,168,87,0.22); border-left: 3px solid #C9A857; border-radius: 0 10px 10px 0; padding: 20px 24px; transition: background 0.2s; }
.resp-item:hover { background: rgba(255,255,255,0.07); }
.resp-item h4 { font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 700; color: #C9A857; margin-bottom: 5px; }
.resp-item p { font-size: 14px; color: rgba(255,255,255,0.72); line-height: 1.55; margin: 0; }
@media (max-width: 900px) { .resp-2col { grid-template-columns: 1fr; gap: 34px; } }

/* Cards em seção navy (padrão azul + dourado, centralizado) */
.navy-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 900px; margin: 42px auto 0; }
.navy-card { background: rgba(255,255,255,0.045); border: 1px solid rgba(201,168,87,0.25); border-top: 3px solid #C9A857; border-radius: 0 0 10px 10px; padding: 28px 26px; text-align: center; transition: background 0.2s, transform 0.2s; }
.navy-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-3px); }
.navy-card h3 { font-family: 'DM Sans', sans-serif; font-size: 17px; font-weight: 700; color: #C9A857; margin-bottom: 9px; line-height: 1.35; }
.navy-card p { font-size: 14.5px; color: rgba(255,255,255,0.75); line-height: 1.6; margin: 0; }
@media (max-width: 700px) { .navy-cards { grid-template-columns: 1fr; } }

/* Logo recorte "limpa" (sem círculo/fundo navy) — ex.: Agendamento das geo pages */
.feature-section-img.feature-logo-plain { background: none; border-radius: 0; box-shadow: none; overflow: visible; }
.feature-section-img.feature-logo-plain img { width: 100%; height: 100%; object-fit: contain; border-radius: 0; }

.navy-cards.navy-cards-3 { grid-template-columns: repeat(6, 1fr); max-width: 1080px; }
.navy-cards.navy-cards-3 > .navy-card { grid-column: span 2; }
/* Seção com 5 cards: centraliza os 2 últimos (que sobram sozinhos na 2ª linha) */
.navy-cards.navy-cards-3 > .navy-card:nth-child(4):nth-last-child(2) { grid-column: 2 / span 2; }
@media (max-width: 900px) {
  .navy-cards.navy-cards-3 { grid-template-columns: 1fr 1fr; }
  .navy-cards.navy-cards-3 > .navy-card,
  .navy-cards.navy-cards-3 > .navy-card:nth-child(4):nth-last-child(2) { grid-column: auto; }
}
@media (max-width: 640px) { .navy-cards.navy-cards-3 { grid-template-columns: 1fr; } }
