/* ── RESET E BASE ── */
html { scroll-behavior: smooth; }
:root {
  --brand-green-deep: #1b3d2f;
  --brand-green-main: #2d5a3a;
  --brand-green-light: #4a7c59;
  --brand-gold: #b5935a;
  --brand-cream: #f9f8f5;
  --brand-white: #ffffff;
  --text-main: #1a1a1a;
  --text-muted: #555555;
  --transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Inter', sans-serif;
  background-color: var(--brand-cream);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip; /* clip preserva position:fixed no Google Sites */
}

/* ── ACESSIBILIDADE ── */
.skip-link {
  position: absolute; top: -100px; left: 16px;
  background: var(--brand-green-deep); color: white;
  padding: 10px 20px; border-radius: 0 0 4px 4px;
  font-size: 13px; font-weight: 700; z-index: 10000; transition: top 0.2s;
}
.skip-link:focus { top: 0; }
:focus-visible { outline: 3px solid var(--brand-gold); outline-offset: 3px; border-radius: 2px; }
button:focus-visible, a:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--brand-gold); outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── HEADER ── */
header {
  text-align: center;
  padding: 80px 20px 40px;
  background: radial-gradient(circle at top, rgba(45,90,58,0.07) 0%, transparent 70%);
}
.logo-text {
  font-size: 68px; font-weight: 900;
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.04em; color: var(--brand-green-deep);
}
.logo-text span { color: var(--brand-green-light); }
.tagline {
  font-size: 13px; text-transform: uppercase;
  letter-spacing: 0.4em; color: var(--brand-gold);
  font-weight: 600; margin-bottom: 50px; margin-top: 10px;
}

/* ── NAVEGAÇÃO PRINCIPAL ── */
.main-nav {
  display: flex; justify-content: center;
  gap: 12px; flex-wrap: wrap;
  margin-bottom: 55px;
  position: sticky; top: 16px; z-index: 1000;
}
.tab-btn {
  padding: 13px 26px; border-radius: 4px;
  border: 1px solid rgba(45,90,58,0.2);
  background: rgba(255,255,255,0.85); backdrop-filter: blur(12px);
  cursor: pointer; font-weight: 700; color: var(--brand-green-deep);
  font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px;
  transition: var(--transition);
}
.tab-btn.active {
  background: var(--brand-green-deep); color: white;
  border-color: var(--brand-green-deep);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* ── MAIN / PANELS ── */
main { max-width: 1200px; margin: 0 auto; padding: 0 25px 100px; }
.panel { display: none; }
.panel.active { display: block; animation: fadeInUp 0.55s ease forwards; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── AUDIENCE TOGGLE ── */
.audience-wrapper { display: flex; justify-content: center; margin-bottom: 48px; }
.audience-toggle {
  display: inline-flex; background: var(--brand-white);
  border-radius: 6px; padding: 6px; gap: 4px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06), 0 0 0 1px rgba(45,90,58,0.1);
  max-width: 100%;
}
.aud-btn {
  position: relative; padding: 18px 48px; border: none;
  border-radius: 4px; cursor: pointer;
  font-family: 'Inter', sans-serif; font-weight: 700;
  font-size: 14px; text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--text-muted); background: transparent;
  transition: var(--transition); white-space: nowrap;
}
.aud-btn .aud-sub {
  display: block; font-size: 10px; font-weight: 500;
  letter-spacing: 0.5px; text-transform: none; color: #aaa;
  margin-top: 3px; transition: var(--transition);
}
.aud-btn.active {
  background: var(--brand-green-deep); color: white;
  box-shadow: 0 6px 20px rgba(27,61,47,0.2);
}
.aud-btn.active .aud-sub { color: rgba(255,255,255,0.65); }

/* ── BUSCA ── */
.search-bar { display: flex; justify-content: center; margin-bottom: 28px; }
.search-wrap { position: relative; width: 100%; max-width: 520px; }
.search-icon {
  position: absolute; left: 16px; top: 50%;
  transform: translateY(-50%); color: #bbb; pointer-events: none;
}
.search-input {
  width: 100%; padding: 13px 16px 13px 44px;
  border: 1px solid rgba(45,90,58,0.18); border-radius: 4px;
  font-size: 14px; font-family: 'Inter', sans-serif;
  background: rgba(255,255,255,0.95); color: var(--text-main);
  outline: none; transition: var(--transition);
}
.search-input:focus {
  border-color: var(--brand-green-deep);
  box-shadow: 0 0 0 3px rgba(27,61,47,0.07);
}
.search-input::placeholder { color: #bbb; }

/* ── FILTROS DE CATEGORIA ── */
.cat-filters {
  display: flex; justify-content: center;
  gap: 8px; flex-wrap: wrap;
  margin-bottom: 44px; padding-bottom: 24px;
  border-bottom: 1px solid rgba(45,90,58,0.08);
}
.cat-btn {
  padding: 10px 18px; border-radius: 100px;
  border: 1px solid rgba(45,90,58,0.15); background: transparent;
  font-size: 11px; cursor: pointer; font-weight: 700;
  color: var(--text-muted); text-transform: uppercase;
  letter-spacing: 1px; transition: var(--transition);
  white-space: nowrap; min-height: 36px;
}
.cat-btn:hover { border-color: var(--brand-green-main); color: var(--brand-green-main); }
.cat-btn.active {
  background: var(--brand-green-deep); color: white;
  border-color: var(--brand-green-deep);
}

/* ── STATS BAR ── */
.stats-bar {
  display: flex; justify-content: space-between;
  align-items: center; margin-bottom: 28px; padding: 0 2px;
}
.results-count { font-size: 12px; color: var(--text-muted); font-weight: 500; letter-spacing: 0.3px; }
.results-count strong { color: var(--brand-green-deep); }

/* ── RATE CHIPS (cartões com taxa) ── */
.rate-tag { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.rate-chip {
  display: inline-flex; align-items: center;
  font-size: 10px; font-weight: 700; letter-spacing: 0.5px;
  padding: 4px 10px; border-radius: 100px;
}
.chip-rate {
  background: rgba(27,61,47,0.07); color: var(--brand-green-deep);
  border: 1px solid rgba(27,61,47,0.15);
}
.chip-term {
  background: rgba(181,147,90,0.08); color: #7a6030;
  border: 1px solid rgba(181,147,90,0.2);
}
.chip-ltv {
  background: rgba(74,124,89,0.07); color: var(--brand-green-main);
  border: 1px solid rgba(74,124,89,0.15);
}

/* ── GRID DE CARDS ── */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(320px, 100%), 1fr));
  gap: 26px;
}
.card {
  background: var(--brand-white); padding: 42px 36px;
  border-radius: 3px; border: 1px solid rgba(45,90,58,0.07);
  cursor: pointer; transition: var(--transition);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.card::after {
  content: ""; position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--brand-gold), var(--brand-green-light));
  transform: scaleX(0); transform-origin: left; transition: var(--transition);
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.07);
  border-color: transparent;
}
.card:hover::after { transform: scaleX(1); }
.card-badge {
  display: inline-block; font-size: 9px; font-weight: 800;
  color: var(--brand-gold); text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 16px; padding: 4px 10px;
  background: rgba(181,147,90,0.08); border-radius: 100px; width: fit-content;
}
.card h3 {
  font-family: 'Playfair Display', serif; font-size: 22px;
  margin-bottom: 12px; color: var(--brand-green-deep); line-height: 1.3;
}
.card p {
  font-size: 14px; color: var(--text-muted);
  line-height: 1.75; margin-bottom: 22px; flex-grow: 1;
}
.card-cta {
  font-size: 11px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 2px; color: var(--brand-green-main);
  display: flex; align-items: center; gap: 6px; margin-top: auto;
}
.no-results {
  text-align: center; padding: 80px 20px;
  color: var(--text-muted); grid-column: 1/-1;
}
.no-results p { font-size: 16px; line-height: 2; }

/* ── HEADER PF ── */
.pf-header {
  background: linear-gradient(135deg, var(--brand-green-deep) 0%, var(--brand-green-main) 100%);
  border-radius: 6px; padding: 50px 50px 45px;
  margin-bottom: 40px; position: relative; overflow: hidden;
}
.pf-header::before {
  content: ''; position: absolute; right: -40px; top: -40px;
  width: 240px; height: 240px; border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.pf-header::after {
  content: ''; position: absolute; right: 60px; bottom: -60px;
  width: 160px; height: 160px; border-radius: 50%;
  background: rgba(181,147,90,0.12);
}
.pf-header h2 {
  font-family: 'Playfair Display', serif; font-size: 34px;
  color: white; margin-bottom: 12px; position: relative; z-index: 1;
}
.pf-header p {
  font-size: 15px; color: rgba(255,255,255,0.7);
  line-height: 1.7; max-width: 580px; position: relative; z-index: 1;
}
.pf-highlights {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-top: 22px; position: relative; z-index: 1;
}
.pf-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18); border-radius: 100px;
  font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,0.85); letter-spacing: 0.3px;
}
.pf-pill::before { content: '✓'; color: var(--brand-gold); font-weight: 800; }

/* ── DETALHE DE PRODUTO ── */
.detail-view {
  background: var(--brand-white); padding: 70px 60px; border-radius: 4px;
}
.back-btn {
  background: none; border: none; color: var(--brand-gold);
  font-weight: 800; cursor: pointer; margin-bottom: 48px;
  text-transform: uppercase; letter-spacing: 2px; font-size: 11px;
  display: flex; align-items: center; gap: 8px; padding: 0;
  transition: var(--transition);
}
.back-btn:hover { color: var(--brand-green-deep); }
.detail-view h1 {
  font-family: 'Playfair Display', serif; font-size: 42px;
  color: var(--brand-green-deep); margin-bottom: 28px; line-height: 1.2;
}
.full-desc {
  font-size: 17px; line-height: 2;
  color: var(--text-muted); margin-bottom: 48px; text-align: left;
}
.h-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px; margin-bottom: 56px;
}
.h-item {
  background: var(--brand-cream); padding: 20px 22px; border-radius: 3px;
  font-size: 14px; font-weight: 600; color: var(--brand-green-deep);
  border-left: 4px solid var(--brand-gold);
  display: flex; align-items: center; gap: 10px;
}
.h-item::before { content: '✓'; color: var(--brand-gold); font-size: 13px; flex-shrink: 0; }
.cta-block {
  text-align: center; display: flex;
  gap: 16px; justify-content: center; flex-wrap: wrap;
}
.btn-premium {
  background: var(--brand-green-deep); color: white;
  padding: 20px 44px; text-decoration: none; font-weight: 800;
  letter-spacing: 2px; display: inline-flex; align-items: center;
  justify-content: center; transition: var(--transition);
  text-transform: uppercase; font-size: 12px; border-radius: 3px;
  border: none; cursor: pointer; font-family: 'Inter', sans-serif;
}
.btn-premium:hover {
  background: var(--brand-gold); transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}
.btn-secondary {
  background: transparent; color: var(--brand-green-deep);
  padding: 20px 44px; text-decoration: none; font-weight: 800;
  letter-spacing: 2px; display: inline-block; transition: var(--transition);
  text-transform: uppercase; font-size: 12px;
  border: 2px solid var(--brand-green-deep); border-radius: 3px;
}
.btn-secondary:hover {
  background: var(--brand-green-deep); color: white; transform: translateY(-3px);
}

/* ── ABA BOUTIQUE ── */
.inst-box { background: var(--brand-white); padding: 80px 60px; border-radius: 4px; }
.inst-box > h2 {
  font-family: 'Playfair Display', serif; font-size: 40px;
  color: var(--brand-green-deep); margin-bottom: 36px; text-align: center;
}
.inst-text { font-size: 17px; line-height: 2.1; color: var(--text-muted); text-align: left; }
.inst-text > p { margin-bottom: 28px; }
.inst-highlight-box {
  background: var(--brand-green-deep); color: white;
  padding: 48px; margin-top: 56px; margin-bottom: 56px;
  border-left: 10px solid var(--brand-gold); border-radius: 3px;
}
.inst-cta-bar { text-align: center; margin-top: 48px; }

/* ── PARCEIROS (aba boutique) ── */
.partners-section { margin-top: 8px; }
.section-label {
  font-size: 10px; font-weight: 800; letter-spacing: 3px;
  text-transform: uppercase; color: var(--brand-gold);
  display: block; margin-bottom: 10px;
}
.section-title {
  font-family: 'Playfair Display', serif; font-size: 28px;
  font-weight: 900; color: var(--brand-green-deep);
  margin-bottom: 12px; letter-spacing: -0.02em;
}
.section-sub {
  font-size: 14px; color: var(--text-muted);
  max-width: 640px; line-height: 1.8; margin-bottom: 32px;
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px; margin-bottom: 24px;
}
.partner-card {
  display: flex; align-items: center; gap: 12px;
  background: var(--brand-cream); border: 1px solid rgba(45,90,58,0.08);
  border-radius: 4px; padding: 14px 16px; transition: border-color 0.2s, box-shadow 0.2s;
}
.partner-card:hover {
  border-color: var(--brand-gold);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.partner-logo {
  width: 40px; height: 40px;
  background: var(--brand-green-deep); color: white;
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; letter-spacing: 0.5px; flex-shrink: 0;
}
.partner-info { flex: 1; min-width: 0; }
.partner-name { font-size: 12px; font-weight: 700; color: var(--brand-green-deep); line-height: 1.3; }
.partner-type { font-size: 10px; color: var(--text-muted); margin-top: 2px; }
.partners-disclosure {
  font-size: 11px; color: #999; line-height: 1.85;
  background: var(--brand-cream); border: 1px solid rgba(45,90,58,0.08);
  border-left: 4px solid var(--brand-gold); padding: 16px 20px;
  border-radius: 3px; margin-bottom: 56px;
}

/* ── CERTIFICAÇÕES ── */
.certs-section { margin-top: 0; }
.certs-strip { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 56px; }
.cert-badge {
  display: flex; align-items: center; gap: 14px;
  background: var(--brand-cream); border: 1px solid rgba(45,90,58,0.08);
  border-radius: 4px; padding: 14px 18px; transition: border-color 0.2s;
}
.cert-badge:hover { border-color: var(--brand-gold); }
.cert-icon {
  width: 40px; height: 40px; background: var(--brand-green-deep);
  color: var(--brand-gold); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 800; letter-spacing: 0.3px;
  flex-shrink: 0; text-align: center; line-height: 1.2;
}
.cert-name { font-size: 13px; font-weight: 700; color: var(--brand-green-deep); }
.cert-issuer { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

/* ── TABELA DE CONDIÇÕES ── */
.cond-section { margin-top: 0; }
.cond-table-wrap {
  overflow-x: auto; margin-bottom: 4px;
  border-radius: 4px; border: 1px solid rgba(45,90,58,0.08);
}
.cond-table {
  width: 100%; border-collapse: collapse;
  font-size: 13px; min-width: 600px;
}
.cond-table thead tr { background: var(--brand-green-deep); }
.cond-table th {
  padding: 13px 16px; font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: rgba(255,255,255,0.8); text-align: left; white-space: nowrap;
}
.cond-table td {
  padding: 12px 16px; border-bottom: 1px solid rgba(45,90,58,0.06);
  color: var(--text-muted); white-space: nowrap;
}
.cond-table tr:last-child td { border-bottom: none; }
.cond-table tr:nth-child(even) td { background: rgba(249,248,245,0.8); }
.cond-table tr:hover td { background: rgba(181,147,90,0.04); }
.cond-rate { color: var(--brand-green-deep); font-weight: 700; }

/* ── FOOTER ── */
footer { background: var(--brand-white); border-top: 1px solid #eee; text-align: center; }
.footer-top { padding: 70px 20px 50px; border-bottom: 1px solid #f0f0f0; }
.footer-logo {
  font-family: 'Playfair Display', serif; font-size: 34px;
  font-weight: 900; letter-spacing: -0.03em;
  color: var(--brand-green-deep); margin-bottom: 6px;
}
.footer-logo span { color: var(--brand-green-light); }
.footer-tagline {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.35em;
  color: var(--brand-gold); font-weight: 600; margin-bottom: 38px;
}
.icon-bar { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; }
.icon-link {
  transition: var(--transition); width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
}
.icon-link:hover { transform: translateY(-5px); }
.icon-link svg { fill: var(--brand-green-deep); width: 100%; height: 100%; transition: var(--transition); }
.icon-link:hover svg { fill: var(--brand-gold); }
.footer-bottom {
  padding: 38px 20px; display: flex;
  flex-direction: column; align-items: center; gap: 22px;
}
.legal-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.legal-link {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--brand-green-deep);
  text-decoration: none; padding: 7px 16px;
  border: 1px solid rgba(45,90,58,0.15); border-radius: 2px;
  transition: var(--transition); cursor: pointer; background: none;
}
.legal-link:hover {
  background: var(--brand-green-deep); color: white;
  border-color: var(--brand-green-deep);
}
.legal-disclaimer {
  max-width: 900px; font-size: 10.5px; color: #aaa;
  line-height: 1.9; text-align: center;
}
.footer-copy { font-size: 11px; color: #ccc; letter-spacing: 0.5px; }

/* ── MODAIS LEGAIS ── */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(15,30,20,0.72); backdrop-filter: blur(6px);
  z-index: 9999; align-items: flex-start;
  justify-content: center; padding: 40px 20px; overflow-y: auto;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--brand-white); border-radius: 4px;
  max-width: 800px; width: 100%;
  box-shadow: 0 60px 120px rgba(0,0,0,0.2);
  animation: modalIn 0.38s cubic-bezier(0.165,0.84,0.44,1) forwards; margin: auto;
}
@keyframes modalIn {
  from { opacity:0; transform:translateY(36px); }
  to   { opacity:1; transform:translateY(0); }
}
.modal-header {
  background: var(--brand-green-deep); padding: 38px 48px 32px;
  border-radius: 4px 4px 0 0;
  display: flex; justify-content: space-between; align-items: flex-start;
}
.modal-header h2 { font-family: 'Playfair Display', serif; font-size: 26px; color: white; line-height: 1.3; }
.modal-header p { font-size: 11px; color: rgba(255,255,255,0.55); margin-top: 5px; text-transform: uppercase; letter-spacing: 1.5px; }
.modal-close {
  background: none; border: none; color: rgba(255,255,255,0.65);
  font-size: 28px; cursor: pointer; line-height: 1;
  flex-shrink: 0; margin-left: 20px; margin-top: -4px; transition: var(--transition);
}
.modal-close:hover { color: var(--brand-gold); }
.modal-body {
  padding: 48px; max-height: 64vh; overflow-y: auto; scroll-behavior: smooth;
}
.modal-body::-webkit-scrollbar { width: 4px; }
.modal-body::-webkit-scrollbar-track { background: #f5f5f5; }
.modal-body::-webkit-scrollbar-thumb { background: var(--brand-gold); border-radius: 2px; }
.modal-section { margin-bottom: 34px; }
.modal-section:last-child { margin-bottom: 0; }
.modal-section h3 {
  font-size: 12px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 2px; color: var(--brand-gold); margin-bottom: 12px;
  padding-bottom: 8px; border-bottom: 1px solid #f0f0f0;
}
.modal-section p, .modal-section li {
  font-size: 14px; color: var(--text-muted); line-height: 1.9; margin-bottom: 8px;
}
.modal-section ul { list-style: none; padding: 0; }
.modal-section ul li::before { content: "\2014"; color: var(--brand-gold); margin-right: 10px; font-weight: 700; }
.modal-section strong { color: var(--text-main); font-weight: 600; }
.modal-footer-bar {
  padding: 22px 48px; border-top: 1px solid #f0f0f0;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 12px;
}
.modal-date { font-size: 11px; color: #bbb; letter-spacing: 1px; }
.modal-cta {
  background: var(--brand-green-deep); color: white;
  padding: 11px 26px; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px; border: none;
  cursor: pointer; border-radius: 2px; transition: var(--transition);
  text-decoration: none; display: inline-block;
}
.modal-cta:hover { background: var(--brand-gold); }

/* ── BOTÃO FLUTUANTE SOLICITAR PROPOSTA ── */
/* Sempre fixo no canto direito inferior, acompanha a rolagem */
.float-lead {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9997;
}
.float-lead-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--brand-green-deep);
  color: white;
  border: none;
  border-radius: 100px;
  padding: 15px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 6px 24px rgba(27,61,47,0.35);
  transition: var(--transition);
  animation: floatPulse 3.5s ease-in-out infinite;
}
.float-lead-btn:hover {
  background: var(--brand-gold);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(181,147,90,0.45);
  animation: none;
}
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(27,61,47,0.35), 0 0 0 0 rgba(27,61,47,0.3); }
  50%       { box-shadow: 0 6px 24px rgba(27,61,47,0.35), 0 0 0 10px rgba(27,61,47,0); }
}


/* ── LEAD MODAL ── */
.lead-modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(10,22,15,0.75); backdrop-filter: blur(8px);
  z-index: 9998; align-items: flex-start; justify-content: center;
  padding: 32px 20px 60px; overflow-y: auto;
}
.lead-modal-overlay.open { display: flex; }
.lead-modal-box {
  background: var(--brand-white); border-radius: 6px;
  max-width: 680px; width: 100%; margin: auto;
  box-shadow: 0 40px 100px rgba(0,0,0,0.25), 0 0 0 1px rgba(45,90,58,0.08);
  animation: modalIn 0.4s cubic-bezier(0.165,0.84,0.44,1) forwards; overflow: hidden;
}
.lead-modal-header {
  background: linear-gradient(135deg, var(--brand-green-deep) 0%, #2d5a3a 100%);
  padding: 36px 44px 30px; position: relative;
}
.lead-modal-header::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--brand-gold), rgba(181,147,90,0.3));
}
.lead-modal-header h2 {
  font-family: 'Playfair Display', serif; font-size: 26px;
  font-weight: 900; color: white; margin-bottom: 8px; line-height: 1.25;
}
.lead-modal-header p { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.6; }
.lead-modal-close {
  position: absolute; top: 20px; right: 22px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.8); width: 32px; height: 32px;
  border-radius: 50%; font-size: 18px; line-height: 1;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.lead-modal-close:hover {
  background: var(--brand-gold); border-color: var(--brand-gold);
  color: white; transform: rotate(90deg);
}
.lead-form { padding: 36px 44px 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-row-full { margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--brand-green-deep);
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid rgba(45,90,58,0.15);
  border-radius: 4px; font-size: 14px; font-family: 'Inter', sans-serif;
  color: var(--text-main); background: var(--brand-cream);
  outline: none; transition: var(--transition); appearance: none; -webkit-appearance: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #bbb; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--brand-green-main); background: white;
  box-shadow: 0 0 0 3px rgba(45,90,58,0.07);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231b3d2f' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 36px; cursor: pointer; color: var(--text-main);
}
.form-group select option[value=""] { color: #bbb; }
.form-group textarea { resize: vertical; min-height: 88px; line-height: 1.6; }
.form-submit {
  width: 100%; background: var(--brand-green-deep); color: white; border: none;
  border-radius: 4px; padding: 18px 24px; font-family: 'Inter', sans-serif;
  font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; transition: var(--transition); margin-top: 8px; margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.form-submit::before { content: '→'; font-size: 16px; transition: var(--transition); }
.form-submit:hover:not(:disabled) {
  background: var(--brand-gold); transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(27,61,47,0.18);
}
.form-submit:hover:not(:disabled)::before { transform: translateX(3px); }
.form-submit:disabled {
  background: #999; cursor: not-allowed;
  transform: none !important; box-shadow: none !important; opacity: 0.7;
}
.form-disclaimer { font-size: 11px; color: #aaa; line-height: 1.8; text-align: center; padding: 0 4px; }

/* ── STATS SECTION ── */
.stats-section {
  background: linear-gradient(135deg, #0d2018 0%, #1b3d2f 50%, #162e23 100%);
  position: relative; overflow: hidden; padding: 64px 40px; width: 100%;
}
.stats-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  opacity: 0.4; pointer-events: none;
}
.stats-section::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--brand-gold) 30%, var(--brand-gold) 70%, transparent 100%);
  opacity: 0.6;
}
.stats-section-title {
  font-size: 10px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase;
  color: var(--brand-gold); text-align: center; margin-bottom: 48px;
  position: relative; display: flex; align-items: center; justify-content: center; gap: 16px;
}
.stats-section-title::before, .stats-section-title::after {
  content: ''; height: 1px; width: 60px;
  background: linear-gradient(90deg, transparent, var(--brand-gold)); opacity: 0.5;
}
.stats-section-title::after { background: linear-gradient(90deg, var(--brand-gold), transparent); }
.stats-inner {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px;
  background: rgba(181,147,90,0.12); border: 1px solid rgba(181,147,90,0.12);
  border-radius: 4px; overflow: hidden; max-width: 1100px; margin: 0 auto;
}
.stat-card {
  background: rgba(255,255,255,0.025); padding: 32px 28px;
  display: flex; flex-direction: column; gap: 12px;
  opacity: 0; animation: statFadeUp 0.6s ease forwards; transition: background 0.4s ease;
}
.stat-card:hover { background: rgba(181,147,90,0.07); }
.stat-card:nth-child(1) { animation-delay: 0.05s; }
.stat-card:nth-child(2) { animation-delay: 0.12s; }
.stat-card:nth-child(3) { animation-delay: 0.19s; }
.stat-card:nth-child(4) { animation-delay: 0.26s; }
.stat-card:nth-child(5) { animation-delay: 0.33s; }
@keyframes statFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.stat-card-icon { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; opacity: 0.85; }
.stat-card-icon svg { width: 22px; height: 22px; fill: var(--brand-gold); }
.stat-card-num {
  font-family: 'Playfair Display', serif; font-size: 40px; font-weight: 900;
  color: white; line-height: 1; letter-spacing: -0.03em;
  display: flex; align-items: baseline; gap: 2px;
}
.stat-card-num .num-suffix { font-size: 22px; color: var(--brand-gold); font-weight: 700; margin-left: 2px; }
.stat-card-num .num-prefix { font-size: 18px; color: var(--brand-gold); font-weight: 700; margin-right: 2px; }
.stat-card-label {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 1.5px; color: rgba(255,255,255,0.5); line-height: 1.4;
}
.stat-card-bar {
  height: 2px; background: rgba(181,147,90,0.15); border-radius: 1px; overflow: hidden; margin-top: 8px;
}
.stat-card-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--brand-gold), rgba(181,147,90,0.4));
  border-radius: 1px; width: 0%; transition: width 1.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── DASHBOARD SECTION ── */
.dashboard-section {
  background: var(--brand-white); padding: 80px 40px;
  border-top: 1px solid rgba(45,90,58,0.07);
}
.dashboard-header { text-align: center; margin-bottom: 56px; }
.dashboard-header .section-eye {
  font-size: 10px; font-weight: 800; letter-spacing: 4px;
  text-transform: uppercase; color: var(--brand-gold); display: block; margin-bottom: 10px;
}
.dashboard-header h2 {
  font-family: 'Playfair Display', serif; font-size: 34px; font-weight: 900;
  color: var(--brand-green-deep); margin-bottom: 12px; line-height: 1.2;
}
.dashboard-header p { font-size: 15px; color: var(--text-muted); max-width: 520px; margin: 0 auto; line-height: 1.7; }
.dashboard-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  max-width: 1100px; margin: 0 auto;
}
.dash-card {
  background: var(--brand-cream); border: 1px solid rgba(45,90,58,0.08);
  border-radius: 6px; padding: 36px 32px; position: relative; overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.dash-card:hover { box-shadow: 0 16px 40px rgba(0,0,0,0.06); border-color: rgba(181,147,90,0.25); }
.dash-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--brand-gold), var(--brand-green-light));
}
.dash-card-title {
  font-size: 11px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 2px; color: var(--brand-gold); margin-bottom: 6px;
}
.dash-card-heading {
  font-family: 'Playfair Display', serif; font-size: 20px;
  color: var(--brand-green-deep); margin-bottom: 28px; font-weight: 700;
}
.donut-wrap { display: flex; align-items: center; gap: 32px; }
.donut-svg-wrap { flex-shrink: 0; position: relative; width: 160px; height: 160px; }
.donut-center-text {
  position: absolute; inset: 0; display: flex;
  flex-direction: column; align-items: center; justify-content: center; pointer-events: none;
}
.donut-center-num {
  font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 900;
  color: var(--brand-green-deep); line-height: 1;
}
.donut-center-label {
  font-size: 9px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: var(--text-muted); margin-top: 4px;
}
.donut-legend { flex: 1; display: flex; flex-direction: column; gap: 10px; }
.legend-item { display: flex; align-items: center; gap: 10px; }
.legend-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.legend-text { font-size: 12px; color: var(--text-muted); font-weight: 500; flex: 1; }
.legend-pct { font-size: 12px; font-weight: 700; color: var(--brand-green-deep); }
.bar-chart { display: flex; flex-direction: column; gap: 14px; }
.bar-row { display: flex; flex-direction: column; gap: 5px; }
.bar-row-header { display: flex; justify-content: space-between; align-items: center; }
.bar-row-label { font-size: 11px; font-weight: 600; color: var(--brand-green-deep); text-transform: uppercase; letter-spacing: 0.5px; }
.bar-row-value { font-size: 11px; font-weight: 700; color: var(--brand-gold); }
.bar-track { height: 6px; background: rgba(45,90,58,0.08); border-radius: 3px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 3px; width: 0%; transition: width 1.4s cubic-bezier(0.16, 1, 0.3, 1); }
.process-flow { display: grid; grid-template-columns: 1fr; gap: 0; }
.process-step {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 0; border-bottom: 1px solid rgba(45,90,58,0.07);
}
.process-step:last-child { border-bottom: none; padding-bottom: 0; }
.process-num {
  width: 32px; height: 32px; background: var(--brand-green-deep); color: var(--brand-gold);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; flex-shrink: 0; font-family: 'Playfair Display', serif;
}
.process-content { flex: 1; }
.process-title { font-size: 13px; font-weight: 700; color: var(--brand-green-deep); margin-bottom: 3px; }
.process-desc { font-size: 12px; color: var(--text-muted); line-height: 1.5; }
.process-time { font-size: 10px; font-weight: 700; color: var(--brand-gold); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.dash-card-highlight {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--brand-green-deep) 0%, #2d5a3a 100%);
  color: white; display: flex; align-items: center; gap: 40px;
}
.dash-card-highlight::before { background: linear-gradient(90deg, var(--brand-gold), rgba(181,147,90,0.3)); }
.dash-highlight-left { flex: 1; }
.dash-highlight-left .dash-card-title { color: rgba(255,255,255,0.5); }
.dash-highlight-left .dash-card-heading { color: white; font-size: 24px; margin-bottom: 12px; }
.dash-highlight-left p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.7; }
.dash-highlight-right { flex-shrink: 0; display: flex; flex-direction: column; gap: 12px; }
.highlight-metric {
  display: flex; flex-direction: column; align-items: center;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px; padding: 16px 24px; text-align: center; min-width: 140px;
}
.highlight-metric-num {
  font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 900;
  color: var(--brand-gold); line-height: 1;
}
.highlight-metric-label {
  font-size: 10px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 1px; color: rgba(255,255,255,0.5); margin-top: 5px;
}
.highlight-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.highlight-tag {
  font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px; padding: 5px 12px; letter-spacing: 0.3px;
}

/* ── CSS: CRÉDITO CONSTRUÇÃO (cc-*) ── */
.cc-metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; background: var(--brand-green-deep); border-radius: 6px; overflow: hidden; margin-bottom: 36px; border: 1px solid rgba(181,147,90,0.2); }
.cc-metric-item { padding: 26px 18px; border-right: 1px solid rgba(181,147,90,0.15); text-align: center; transition: background 0.25s; }
.cc-metric-item:last-child { border-right: none; }
.cc-metric-item:hover { background: rgba(181,147,90,0.08); }
.cc-metric-num { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 900; color: var(--brand-gold); line-height: 1; }
.cc-metric-label { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.55); margin-top: 8px; line-height: 1.4; }
.cc-restrictions { background: rgba(27,61,47,0.04); border: 1px solid rgba(45,90,58,0.12); border-radius: 4px; padding: 16px 20px; margin-bottom: 32px; display: flex; flex-direction: column; gap: 8px; }
.cc-restriction-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-muted); }
.cc-restriction-item::before { content: '✗'; color: #c0392b; font-weight: 800; font-size: 14px; flex-shrink: 0; }
.cc-cases { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 40px; }
.cc-case-card { border: 1px solid rgba(45,90,58,0.1); border-radius: 6px; overflow: hidden; transition: border-color 0.3s, box-shadow 0.3s; background: var(--brand-white); }
.cc-case-card:hover { border-color: var(--brand-gold); box-shadow: 0 8px 32px rgba(0,0,0,0.06); }
.cc-case-img { width: 100%; height: 170px; object-fit: cover; display: block; }
.cc-case-body { padding: 20px; }
.cc-case-location { font-size: 10px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--brand-gold); margin-bottom: 6px; }
.cc-case-title { font-family: 'Playfair Display', serif; font-size: 14px; font-weight: 700; color: var(--brand-green-deep); margin-bottom: 14px; line-height: 1.3; }
.cc-case-metrics { display: flex; flex-direction: column; gap: 6px; }
.cc-case-metric { display: flex; justify-content: space-between; align-items: center; padding: 7px 11px; background: var(--brand-cream); border-radius: 3px; font-size: 11px; }
.cc-m-label { color: var(--text-muted); font-weight: 400; }
.cc-m-value { font-weight: 700; color: var(--brand-green-deep); }
.cc-m-value.hl { color: var(--brand-gold); font-size: 12px; }
.cc-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 40px; }
.cc-step { background: var(--brand-cream); border: 1px solid rgba(45,90,58,0.08); border-radius: 4px; padding: 22px 16px; position: relative; overflow: hidden; transition: border-color 0.3s; }
.cc-step:hover { border-color: var(--brand-gold); }
.cc-step::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--brand-gold), var(--brand-green-light)); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.cc-step:hover::after { transform: scaleX(1); }
.cc-step-num { font-family: 'Playfair Display', serif; font-size: 38px; font-weight: 900; color: rgba(27,61,47,0.07); line-height: 1; margin-bottom: 10px; }
.cc-step-icon { font-size: 20px; margin-bottom: 8px; }
.cc-step-title { font-size: 12px; font-weight: 700; color: var(--brand-green-deep); margin-bottom: 6px; }
.cc-step-text { font-size: 11px; color: var(--text-muted); line-height: 1.6; }
.cc-benefits { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; margin-bottom: 40px; }
.cc-benefit { background: var(--brand-cream); border: 1px solid rgba(45,90,58,0.08); border-radius: 4px; padding: 20px 16px; transition: border-color 0.3s, background 0.3s; }
.cc-benefit:hover { border-color: rgba(181,147,90,0.4); background: rgba(181,147,90,0.04); }
.cc-benefit-icon { width: 38px; height: 38px; background: rgba(27,61,47,0.06); border: 1px solid rgba(27,61,47,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 17px; margin-bottom: 12px; }
.cc-benefit-title { font-size: 13px; font-weight: 700; color: var(--brand-green-deep); margin-bottom: 7px; }
.cc-benefit-text { font-size: 11px; color: var(--text-muted); line-height: 1.65; }
.cc-benefit-text strong { color: var(--brand-gold); font-weight: 600; }
.cc-section-head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid rgba(45,90,58,0.08); }
.cc-section-eyebrow { font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: 2.5px; color: var(--brand-gold); background: rgba(181,147,90,0.08); padding: 3px 10px; border-radius: 100px; white-space: nowrap; }
.cc-section-h3 { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; color: var(--brand-green-deep); }
.cc-disclaimer { background: var(--brand-cream); border: 1px solid rgba(45,90,58,0.1); border-left: 4px solid var(--brand-gold); border-radius: 3px; padding: 13px 16px; font-size: 11px; color: #999; line-height: 1.8; margin-bottom: 32px; }

/* ── CSS: SEGUROS (sg-*) ── */
.sg-intro { font-size: 16px; line-height: 1.85; color: var(--text-muted); margin-bottom: 32px; }
.sg-intro strong { color: var(--brand-green-deep); }
.sg-comp-wrap { overflow-x: auto; margin-bottom: 40px; }
.sg-comp-table { width: 100%; border-collapse: collapse; font-size: 12px; border-radius: 4px; overflow: hidden; min-width: 500px; }
.sg-comp-table th { padding: 12px 14px; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; }
.sg-comp-table th:first-child { background: rgba(27,61,47,0.06); color: var(--text-muted); text-align: left; }
.sg-comp-table th:not(:first-child) { background: var(--brand-cream); color: var(--text-muted); text-align: center; }
.sg-comp-table th:nth-child(2) { background: var(--brand-green-deep); color: var(--brand-gold); }
.sg-comp-table td { padding: 11px 14px; border-bottom: 1px solid rgba(45,90,58,0.06); font-size: 12px; }
.sg-comp-table td:first-child { color: var(--brand-green-deep); font-weight: 600; }
.sg-comp-table td:not(:first-child) { text-align: center; }
.sg-comp-table tr:hover td { background: rgba(181,147,90,0.04); }
.sg-ok { color: #27ae60; font-weight: 800; font-size: 14px; }
.sg-nok { color: #ccc; font-size: 14px; }
.sg-maybe { color: var(--brand-gold); font-size: 10px; font-weight: 700; }
.sg-cat { margin-bottom: 44px; border-left: 4px solid var(--brand-gold); padding-left: 22px; }
.sg-cat-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.sg-cat-badge { background: rgba(27,61,47,0.08); color: var(--brand-green-deep); font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; padding: 4px 12px; border-radius: 100px; white-space: nowrap; margin-top: 4px; flex-shrink: 0; }
.sg-cat-title { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--brand-green-deep); margin-bottom: 6px; line-height: 1.3; }
.sg-cat-desc { font-size: 13px; color: var(--text-muted); line-height: 1.75; }
.sg-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 14px; margin-top: 18px; }
.sg-card { background: var(--brand-cream); border: 1px solid rgba(45,90,58,0.08); border-radius: 4px; padding: 20px 18px; transition: border-color 0.25s, box-shadow 0.25s; }
.sg-card:hover { border-color: var(--brand-gold); box-shadow: 0 6px 24px rgba(0,0,0,0.05); }
.sg-card-head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.sg-card-num { width: 28px; height: 28px; background: var(--brand-green-deep); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 800; flex-shrink: 0; }
.sg-card-name { font-family: 'Playfair Display', serif; font-size: 13px; font-weight: 700; color: var(--brand-green-deep); line-height: 1.3; }
.sg-card-desc { font-size: 12px; color: var(--text-muted); line-height: 1.65; margin-bottom: 12px; }
.sg-card-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.sg-card-list li { font-size: 11px; color: var(--text-muted); display: flex; gap: 7px; align-items: flex-start; }
.sg-card-list li::before { content: '→'; color: var(--brand-gold); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.sg-pills { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 12px; }
.sg-pill { background: rgba(27,61,47,0.06); color: var(--brand-green-deep); font-size: 9px; font-weight: 700; padding: 3px 9px; border-radius: 100px; letter-spacing: 0.3px; border: 1px solid rgba(27,61,47,0.1); }
.sg-insurers { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; margin-bottom: 40px; }
.sg-ins-badge { background: var(--brand-white); border: 1px solid rgba(45,90,58,0.12); border-radius: 4px; padding: 9px 16px; font-size: 11px; font-weight: 700; color: var(--brand-green-deep); transition: all 0.2s; }
.sg-ins-badge:hover { border-color: var(--brand-gold); color: var(--brand-gold); }
.sg-rcpm { background: linear-gradient(135deg, var(--brand-green-deep) 0%, #0f3d25 100%); border-radius: 6px; padding: 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; margin-top: 18px; }
.sg-rcpm h4 { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--brand-gold); margin-bottom: 10px; }
.sg-rcpm p { font-size: 13px; color: rgba(255,255,255,0.72); line-height: 1.8; margin-bottom: 14px; }
.sg-rcpm-list { list-style: none; padding: 0; }
.sg-rcpm-list li { font-size: 12px; color: rgba(255,255,255,0.78); padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.07); display: flex; gap: 9px; align-items: flex-start; }
.sg-rcpm-list li:last-child { border-bottom: none; }
.sg-rcpm-list li::before { content: '✦'; color: var(--brand-gold); font-size: 9px; flex-shrink: 0; margin-top: 3px; }
.sg-divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(45,90,58,0.15), transparent); margin: 32px 0; }

/* ══════════════════════════════════════════
   MEDIA QUERIES — RESPONSIVIDADE
   (bloco único, sem duplicatas)
   ══════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Header */
  header { padding: 56px 16px 32px; }
  .logo-text { font-size: 38px; }
  .tagline { font-size: 11px; letter-spacing: 0.2em; margin-bottom: 30px; }
  .main-nav { top: 8px; gap: 8px; margin-bottom: 30px; }
  .tab-btn { padding: 10px 14px; font-size: 11px; }
  /* Main */
  main { padding: 0 16px 80px; }
  /* Cards */
  .grid { grid-template-columns: 1fr; }
  .card { padding: 28px 22px; }
  .card h3 { font-size: 18px; }
  /* Audience toggle */
  .audience-wrapper { padding: 0 4px; }
  .audience-toggle { width: 100%; }
  .aud-btn { padding: 12px 16px; font-size: 11px; flex: 1; }
  .aud-btn .aud-sub { display: none; }
  /* PF header */
  .pf-header { padding: 28px 20px; }
  .pf-header h2 { font-size: 24px; }
  /* Detail view */
  .detail-view { padding: 28px 16px; }
  .detail-view h1 { font-size: 26px; }
  .full-desc { font-size: 15px; }
  .h-list { grid-template-columns: 1fr; }
  .cta-block { flex-direction: column; align-items: stretch; }
  .btn-premium, .btn-secondary { text-align: center; padding: 16px 24px; }
  /* Boutique */
  .inst-box { padding: 28px 16px; }
  .inst-box > h2 { font-size: 28px; }
  .inst-highlight-box { padding: 28px 20px; }
  .partners-grid { grid-template-columns: 1fr 1fr; }
  .certs-strip { gap: 6px; }
  .cert-badge { padding: 10px 12px; gap: 8px; }
  .cert-icon { width: 32px; height: 32px; font-size: 9px; }
  .section-title { font-size: 22px; }
  .cond-table { font-size: 12px; }
  .cond-table th, .cond-table td { padding: 10px 10px; }
  /* Modais */
  .modal-header { padding: 24px 20px; }
  .modal-body { padding: 20px; max-height: 70vh; }
  .modal-footer-bar { padding: 16px 20px; }
  /* Lead modal */
  .lead-form { padding: 24px 20px; }
  .lead-modal-header { padding: 28px 20px 22px; }
  .lead-modal-header h2 { font-size: 20px; }
  .form-row { grid-template-columns: 1fr; gap: 12px; }
  /* Float button */
  .float-lead { bottom: 16px; right: 16px; }
  .float-lead-btn { padding: 13px 20px; font-size: 11px; letter-spacing: 1px; }
  /* Stats bar */
  .stats-bar { flex-direction: column; align-items: flex-start; gap: 10px; }
  /* Stats section */
  .stats-section { padding: 40px 16px; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-card { padding: 22px 18px; }
  .stat-card-num { font-size: 30px; }
  .stat-card:nth-child(5) { grid-column: 1 / -1; }
  /* Dashboard */
  .dashboard-section { padding: 50px 16px; }
  .dashboard-grid { grid-template-columns: 1fr; gap: 16px; }
  .dash-card { padding: 24px 20px; }
  .dash-card-highlight { flex-direction: column; gap: 24px; }
  .dash-highlight-right { flex-direction: row; width: 100%; }
  .highlight-metric { flex: 1; min-width: unset; }
  .donut-wrap { flex-direction: column; gap: 20px; }
  .donut-svg-wrap { width: 140px; height: 140px; }
  .highlight-tags { gap: 6px; }
  .highlight-tag { font-size: 10px; padding: 4px 10px; }
  /* Construção */
  .cc-metrics { grid-template-columns: 1fr 1fr; }
  .cc-metric-item { padding: 18px 12px; }
  .cc-metric-num { font-size: 22px; }
  .cc-cases { grid-template-columns: 1fr; }
  .cc-steps { grid-template-columns: 1fr 1fr; }
  .cc-benefits { grid-template-columns: 1fr 1fr; }
  /* Seguros */
  .sg-grid { grid-template-columns: 1fr; }
  .sg-rcpm { grid-template-columns: 1fr; gap: 20px; }
  .sg-comp-table { font-size: 11px; }
  .sg-comp-table th, .sg-comp-table td { padding: 9px 10px; }
}

@media (max-width: 480px) {
  .logo-text { font-size: 32px; }
  main { padding: 0 12px 60px; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-card:nth-child(5) { grid-column: auto; }
  .stat-card-num { font-size: 26px; }
  .dash-card-highlight { flex-direction: column; }
  .dash-highlight-right { flex-direction: column; }
  .float-lead-btn { padding: 12px 16px; gap: 8px; font-size: 11px; }
  .partners-grid { grid-template-columns: 1fr; }
  .cc-steps { grid-template-columns: 1fr; }
  .cc-benefits { grid-template-columns: 1fr; }
}

/* ── NAVEGAÇÃO MULTI-PÁGINA ── */
.main-nav a.tab-btn { text-decoration: none; display: inline-block; }
.breadcrumb {
  max-width: 1200px; margin: 0 auto; padding: 18px 25px 0;
  font-size: 11px; color: #999; letter-spacing: 0.5px;
}
.breadcrumb a { color: var(--brand-green-main); text-decoration: none; font-weight: 600; }
.breadcrumb a:hover { color: var(--brand-gold); }
.breadcrumb span.sep { margin: 0 7px; color: #ccc; }

/* ── PÁGINA DE SOLUÇÃO ── */
.solution-page { background: var(--brand-white); padding: 56px 60px 70px; border-radius: 4px; margin-top: 24px; }
.solution-page .cat-eyebrow {
  display: inline-block; font-size: 10px; font-weight: 800;
  color: var(--brand-gold); text-transform: uppercase; letter-spacing: 2.5px;
  margin-bottom: 18px; padding: 5px 14px;
  background: rgba(181,147,90,0.08); border-radius: 100px;
}
.solution-page h1 {
  font-family: 'Playfair Display', serif; font-size: 40px;
  color: var(--brand-green-deep); margin-bottom: 18px; line-height: 1.2;
}
.solution-lead { font-size: 17px; line-height: 1.9; color: var(--text-muted); margin-bottom: 28px; }
.solution-body { font-size: 16px; line-height: 2; color: var(--text-muted); margin-bottom: 44px; }
.solution-body strong { color: var(--brand-green-deep); }

/* ── SOLUÇÕES RELACIONADAS ── */
.related-section { margin-top: 64px; padding-top: 44px; border-top: 1px solid rgba(45,90,58,0.1); }
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 16px; margin-top: 24px; }
.related-card {
  display: block; background: var(--brand-cream); padding: 22px 20px;
  border-radius: 4px; border: 1px solid rgba(45,90,58,0.08);
  text-decoration: none; transition: var(--transition);
}
.related-card:hover { border-color: var(--brand-gold); transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,0,0,0.05); }
.related-card .rc-title { font-family: 'Playfair Display', serif; font-size: 15px; font-weight: 700; color: var(--brand-green-deep); margin-bottom: 8px; line-height: 1.35; }
.related-card .rc-desc { font-size: 12px; color: var(--text-muted); line-height: 1.6; }
.related-card .rc-cta { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: var(--brand-gold); margin-top: 12px; display: block; }

/* ── PÁGINA PILAR DE CATEGORIA ── */
.pillar-intro { background: var(--brand-white); padding: 56px 60px; border-radius: 4px; margin: 24px 0 32px; }
.pillar-intro h1 { font-family: 'Playfair Display', serif; font-size: 38px; color: var(--brand-green-deep); margin-bottom: 16px; line-height: 1.2; }
.pillar-intro p { font-size: 16px; line-height: 1.95; color: var(--text-muted); max-width: 860px; }
a.card { text-decoration: none; color: inherit; }

@media (max-width: 768px) {
  .solution-page { padding: 28px 18px 44px; }
  .solution-page h1 { font-size: 27px; }
  .pillar-intro { padding: 28px 18px; }
  .pillar-intro h1 { font-size: 26px; }
}
