/* ══════════════════════════════════════════════════════════
   FF CONSULTORIA — Design tokens + estilos partilhados
   Paleta e tipografia alinhadas com fabiofernandez.com.br
   ══════════════════════════════════════════════════════════ */

:root {
  --gold: #b8933a;
  --gold-light: #d4ae5e;
  --gold-pale: #f5ead6;
  --dark: #0e0d0b;
  --dark-2: #161410;
  --dark-3: #1e1b16;
  --dark-4: #28241d;
  --dark-5: #332e25;
  --text-primary: #f0ebe0;
  --text-secondary: #a89e8a;
  --text-muted: #6b6154;
  --border: rgba(184,147,58,0.18);
  --border-strong: rgba(184,147,58,0.35);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; position: relative; z-index: 1; }
.serif { font-family: 'Cormorant Garamond', serif; }
.gold { color: var(--gold-light); }
a { color: inherit; }
img { max-width: 100%; display: block; }

section { padding: 5rem 0; position: relative; z-index: 1; }

.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.section-eyebrow::before { content: ''; display: block; width: 20px; height: 1px; background: var(--gold); }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--gold-light); }

.section-lead {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 620px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,147,58,0.3); background: var(--gold-light); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-bottom: 1px solid var(--border-strong);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-secondary:hover { color: var(--text-primary); border-color: var(--gold-light); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
.live-dot { width: 7px; height: 7px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; display: inline-block; }
.fade-up { opacity: 0; animation: fadeUp 0.7s ease forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ── NAV ── */
nav#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.25rem 2rem; display: flex; justify-content: space-between; align-items: center;
  background: #0e0d0be0; backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 600; letter-spacing: .04em; color: var(--text-primary); text-decoration: none; flex-shrink: 0; }
.nav-logo span { color: var(--gold-light); }
.nav-center { display: flex; gap: 2rem; align-items: center; }
.nav-link { font-size: .82rem; font-weight: 400; letter-spacing: .05em; color: var(--text-secondary); text-decoration: none; transition: color .2s; position: relative; padding-bottom: 2px; }
.nav-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background: var(--gold); transition: width .2s; }
.nav-link:hover, .nav-link.active { color: var(--text-primary); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 1.5rem; }
.nav-cta { display: inline-flex; align-items: center; gap: .5rem; background: var(--gold); color: var(--dark); font-size: .82rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; padding: .6rem 1.4rem; text-decoration: none; transition: background .2s, transform .15s; }
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }
.nav-mobile-btn { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-mobile-btn span { display: block; width: 22px; height: 1px; background: var(--text-primary); transition: all .2s; }
.nav-mobile-menu { display: none; position: fixed; top: 64px; left: 0; right: 0; background: var(--dark-2); border-bottom: 1px solid var(--border); padding: 1.5rem 2rem; z-index: 99; flex-direction: column; gap: 1rem; }
.nav-mobile-menu.open { display: flex; }
.mobile-link { font-size: 1rem; color: var(--text-secondary); text-decoration: none; padding: .5rem 0; border-bottom: 1px solid var(--border); }
.mobile-link:hover { color: var(--text-primary); }
@media (max-width: 900px) {
  .nav-center, .nav-cta { display: none; }
  .nav-mobile-btn { display: flex; }
}

/* ── HERO ── */
.hero { min-height: 100vh; display: flex; align-items: center; padding: 7rem 0 5rem; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 80% 40%, rgba(184,147,58,.07) 0%, transparent 70%), radial-gradient(ellipse 40% 60% at 10% 80%, rgba(184,147,58,.04) 0%, transparent 60%); }
.hero-line { position: absolute; right: -80px; top: 50%; transform: translateY(-50%); width: 520px; height: 520px; border: 1px solid var(--border); border-radius: 50%; pointer-events: none; }
.hero-line::before { content: ''; position: absolute; inset: 40px; border: 1px solid var(--border); border-radius: 50%; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: .75rem; font-size: .72rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.75rem; }
.hero-eyebrow::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); }
.hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.6rem, 5vw, 4rem); font-weight: 600; line-height: 1.12; margin-bottom: 1.75rem; }
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-subtitle { font-size: 1.05rem; font-weight: 300; color: var(--text-secondary); line-height: 1.75; margin-bottom: 2.5rem; max-width: 480px; }
.hero-subtitle strong { color: var(--text-primary); font-weight: 500; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.hero-trust { display: flex; gap: 2rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); flex-wrap: wrap; }
.trust-number { font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; font-weight: 600; color: var(--gold-light); line-height: 1; display: block; }
.trust-label { font-size: .72rem; color: var(--text-muted); letter-spacing: .05em; text-transform: uppercase; margin-top: .25rem; display: block; }

/* ── PRIORITY CARD (hero, right column) ── */
.priority-card { background: var(--dark-3); border: 1px solid var(--border-strong); padding: 2.5rem; position: relative; }
.priority-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold)); }
.priority-tag { display: inline-flex; align-items: center; gap: .4rem; font-size: .68rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); border: 1px solid var(--border-strong); padding: .35rem .75rem; margin-bottom: 1.5rem; }
.priority-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 600; line-height: 1.3; margin-bottom: 1.25rem; }
.priority-list { list-style: none; display: flex; flex-direction: column; gap: .85rem; margin-bottom: 2rem; }
.priority-list li { display: flex; align-items: flex-start; gap: .75rem; font-size: .88rem; color: var(--text-secondary); line-height: 1.5; }
.priority-list li::before { content: '→'; color: var(--gold); flex-shrink: 0; font-size: .8rem; margin-top: .15rem; }
.priority-cta { display: flex; flex-direction: column; gap: .75rem; }
.priority-cta a { display: flex; align-items: center; justify-content: center; gap: .5rem; padding: 1rem; font-size: .85rem; font-weight: 500; letter-spacing: .05em; text-transform: uppercase; text-decoration: none; transition: all .2s; }
.cta-whatsapp { background: var(--gold); color: var(--dark); }
.cta-whatsapp:hover { background: var(--gold-light); }
.cta-phone { background: transparent; color: var(--gold-light); border: 1px solid var(--border-strong); }
.cta-phone:hover { background: var(--dark-5); }
.priority-note { text-align: center; font-size: .72rem; color: var(--text-muted); margin-top: .75rem; }

.alert-bar { background: #b8933a1a; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 1rem 2rem; text-align: center; font-size: .82rem; color: var(--text-secondary); }
.alert-bar strong { color: var(--gold-light); font-weight: 500; }

/* ── JURISDICTION BAR (3-col) ── */
.jurisdiction-section { background: var(--dark-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.jurisdiction-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px; margin-top: 3.5rem; background: var(--border); }
.jurisdiction-card { background: var(--dark-2); padding: 2.5rem 2rem; position: relative; }
.jurisdiction-card::before { content: ''; position: absolute; top: 0; left: 0; width: 2px; height: 48px; background: var(--gold); }
.jurisdiction-flag { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--gold-light); margin-bottom: .35rem; display: block; }
.jurisdiction-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 600; margin-bottom: 1rem; }
.jurisdiction-card ul { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
.jurisdiction-card li { font-size: .85rem; color: var(--text-secondary); line-height: 1.5; padding-left: .9rem; position: relative; }
.jurisdiction-card li::before { content: '·'; color: var(--gold); position: absolute; left: 0; }

/* ── SERVICES GRID (2-col) ── */
.services-header { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; margin-bottom: 3.5rem; }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border); }
.service-card { background: var(--dark); padding: 2.5rem; transition: background .25s; }
.service-card:hover { background: var(--dark-3); }
.service-card h3, .service-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600; margin-bottom: .75rem; }
.service-card p { font-size: .87rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 1.25rem; }
.service-tag { display: inline-block; font-size: .68rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); border: 1px solid var(--border); padding: .3rem .65rem; }
.services-cta { text-align: center; padding: 3rem; background: var(--dark-2); border: 1px solid var(--border); }

/* ── SOBRE (homepage + página própria) ── */
.sobre-section { background: var(--dark-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.sobre-grid { display: grid; grid-template-columns: 1fr 380px; gap: 4rem; align-items: start; }
.sobre-content p { font-size: 1rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 1.5rem; }
.credentials { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); margin-top: 3rem; }
.credential-item { background: var(--dark-2); padding: 1.5rem; text-align: center; }
.credential-num { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 600; color: var(--gold-light); display: block; line-height: 1; }
.credential-label { font-size: .66rem; color: var(--text-muted); letter-spacing: .06em; text-transform: uppercase; margin-top: .4rem; display: block; }
.sobre-cta-block { background: var(--dark-3); border: 1px solid var(--border-strong); padding: 2rem; position: sticky; top: 6rem; }
.sobre-cta-block h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; margin-bottom: .75rem; }
.sobre-cta-block p { font-size: .87rem; color: var(--text-secondary); line-height: 1.7; }

/* ── BLOG (lista + destaque homepage) ── */
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border); margin-bottom: 2.5rem; }
.post-card { background: var(--dark); padding: 2.5rem; transition: background .25s; }
.post-card:hover { background: var(--dark-3); }
.post-meta { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.post-date { font-size: .72rem; color: var(--text-muted); letter-spacing: .04em; }
.post-tag { font-size: .65rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); border: 1px solid var(--border); padding: .2rem .5rem; }
.post-card h2, .post-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; line-height: 1.3; margin-bottom: .75rem; }
.post-card h2 a, .post-card h3 a { color: var(--text-primary); text-decoration: none; transition: color .2s; }
.post-card h2 a:hover, .post-card h3 a:hover { color: var(--gold-light); }
.post-card p { font-size: .87rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 1.25rem; }
.post-read-more { font-size: .8rem; color: var(--gold); text-decoration: none; }
.post-read-more:hover { color: var(--gold-light); }
.blog-cta { text-align: center; padding: 3rem; background: var(--dark-2); border: 1px solid var(--border); }
@media (max-width: 700px) { .blog-grid { grid-template-columns: 1fr; } }

/* ── FINAL CTA ── */
.final-cta { padding: 6rem 0; position: relative; overflow: hidden; }
.final-cta-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(184,147,58,.06) 0%, transparent 70%); }

/* ── STICKY MOBILE CTA ── */
.sticky-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 200; background: var(--dark-3); border-top: 1px solid var(--border-strong); padding: 1rem 1.5rem; gap: .75rem; }
.sticky-cta a { flex: 1; display: flex; align-items: center; justify-content: center; gap: .5rem; padding: .85rem; font-size: .8rem; font-weight: 500; letter-spacing: .05em; text-transform: uppercase; text-decoration: none; transition: all .2s; }
.sticky-cta .cta-whatsapp { background: var(--gold); color: var(--dark); }
.sticky-cta .cta-phone { background: transparent; color: var(--gold-light); border: 1px solid var(--border-strong); }

/* ── FOOTER ── */
footer { background: var(--dark-2); border-top: 1px solid var(--border); padding: 3rem 0 1.5rem; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 2rem; flex-wrap: wrap; margin-bottom: 2rem; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; color: var(--text-secondary); margin-bottom: .35rem; }
.footer-logo span { color: var(--gold); }
.footer-cedula { font-size: .68rem; color: var(--text-muted); letter-spacing: .03em; margin-bottom: 1rem; }
.footer-nav { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-nav a { font-size: .78rem; color: var(--text-muted); text-decoration: none; letter-spacing: .04em; transition: color .2s; }
.footer-nav a:hover { color: var(--gold-light); }
.footer-info { font-size: .78rem; color: var(--text-muted); text-align: right; line-height: 1.8; }
.footer-info a { color: var(--gold-light); text-decoration: none; }
.footer-info a:hover { color: var(--text-primary); }
.footer-bottom { font-size: .7rem; color: var(--text-muted); text-align: center; padding-top: 1.5rem; border-top: 1px solid var(--border); letter-spacing: .03em; }
@media (max-width: 700px) { .footer-inner { flex-direction: column; } .footer-info { text-align: left; } }

/* ── PÁGINAS INTERNAS (page-header comum) ── */
.page-main { padding-top: 7rem; padding-bottom: 5rem; }
.page-header { margin-bottom: 3.5rem; }

/* ── CONTACTO ── */
.contact-grid { display: grid; grid-template-columns: 1fr 320px; gap: 4rem; align-items: start; }
.contact-channels { display: flex; flex-direction: column; gap: 1.5rem; }
.channel-card { background: var(--dark-2); border: 1px solid var(--border); padding: 2rem; position: relative; }
.channel-card.preferred { border-color: var(--border-strong); }
.channel-card.preferred::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.channel-tag { font-size: .65rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: .75rem; }
.channel-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; margin-bottom: .5rem; }
.channel-card p { font-size: .87rem; color: var(--text-secondary); line-height: 1.7; }
.contact-info-block { background: var(--dark-3); border: 1px solid var(--border-strong); padding: 2rem; position: sticky; top: 6rem; }
.contact-info-block h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600; margin-bottom: .75rem; }
.contact-info-block p { font-size: .87rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 1rem; }
.contact-note { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.contact-note p { font-size: .82rem; color: var(--text-muted); line-height: 1.7; margin-bottom: .75rem; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* ── BLOG POST (artigo individual) ── */
.post-main { padding-top: 7rem; padding-bottom: 5rem; }
.post-layout { display: grid; grid-template-columns: 1fr 300px; gap: 4rem; align-items: start; }
.post-header-full { margin-bottom: 3rem; padding-bottom: 2rem; border-bottom: 1px solid var(--border); }
.post-header-full h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 600; line-height: 1.2; margin-bottom: 1rem; }
.post-excerpt { font-size: 1.05rem; color: var(--text-secondary); line-height: 1.7; font-weight: 300; }
.post-body { line-height: 1.8; color: var(--text-secondary); }
.post-body h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 600; color: var(--text-primary); margin: 2.5rem 0 1rem; }
.post-body h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600; color: var(--text-primary); margin: 2rem 0 .75rem; }
.post-body p { margin-bottom: 1.25rem; font-size: .97rem; }
.post-body strong { color: var(--text-primary); font-weight: 500; }
.post-body ul, .post-body ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.post-body li { margin-bottom: .5rem; font-size: .97rem; }
.post-body a { color: var(--gold-light); text-decoration: none; border-bottom: 1px solid var(--border-strong); transition: color .2s; }
.post-body a:hover { color: var(--text-primary); }
.post-body hr { border: none; border-top: 1px solid var(--border); margin: 2.5rem 0; }
.post-body blockquote { border-left: 3px solid var(--gold); padding-left: 1.5rem; margin: 1.5rem 0; font-style: italic; color: var(--text-secondary); }
.post-disclaimer { margin-top: 2.5rem; padding: 1.25rem 1.5rem; background: var(--dark-2); border: 1px solid var(--border); font-size: .8rem; color: var(--text-muted); line-height: 1.6; }
.post-footer-nav { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.back-link { font-size: .82rem; color: var(--text-muted); text-decoration: none; letter-spacing: .04em; transition: color .2s; }
.back-link:hover { color: var(--gold-light); }
.post-sidebar { position: sticky; top: 6rem; display: flex; flex-direction: column; gap: 2rem; }
.sidebar-cta { background: var(--dark-3); border: 1px solid var(--border-strong); padding: 1.75rem; position: relative; }
.sidebar-cta::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.sidebar-eyebrow { font-size: .65rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: .75rem; }
.sidebar-cta h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 600; line-height: 1.3; margin-bottom: .6rem; }
.sidebar-cta p { font-size: .83rem; color: var(--text-secondary); line-height: 1.6; }
.sidebar-link { display: block; text-align: center; font-size: .78rem; color: var(--text-muted); text-decoration: none; margin-top: .75rem; transition: color .2s; }
.sidebar-link:hover { color: var(--gold-light); }
.sidebar-posts { background: var(--dark-2); border: 1px solid var(--border); padding: 1.5rem; }
.sidebar-posts a.post-link { display: block; font-size: .85rem; color: var(--text-secondary); text-decoration: none; padding: .6rem 0; border-bottom: 1px solid var(--border); transition: color .2s; }
.sidebar-posts a.post-link:last-child { border-bottom: none; }
.sidebar-posts a.post-link:hover { color: var(--gold-light); }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-line { display: none; }
  .jurisdiction-grid { grid-template-columns: 1fr; gap: 1px; }
  .services-header { grid-template-columns: 1fr; gap: 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .sobre-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .post-layout { grid-template-columns: 1fr; }
  .post-sidebar { position: static; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 80px; }
}
@media (max-width: 600px) {
  .hero { padding-top: 5.5rem; }
  .hero-title { font-size: 2.2rem; }
  .credentials { grid-template-columns: repeat(2, 1fr); }
}
