:root {
  --navy: #9E1F62;
  --navy-mid: #821750;
  --navy-light: #B52B75;
  --gold: #C9A04A;
  --gold-light: #D4B56A;
  --gold-pale: #F2E8D0;
  --cream: #FBF8F3;
  --white: #FFFFFF;
  --gray-100: #F0EDE8;
  --gray-300: #C8C4BB;
  --gray-500: #E0DDD5;
  --gray-700: #4A4740;
  --text: #1A1814;
  --text-muted: #4A4640;
  --red-risk: #8B2C2C;
  --red-pale: #FDF0F0;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'Plus Jakarta Sans', sans-serif; background: var(--cream); color: var(--text); line-height: 1.7; font-size: 1.05rem; overflow-x: hidden; }

a { color: inherit; }
img { max-width: 100%; height: auto; }
button { font: inherit; }

h1, h2, h3, .display { font-family: 'Plus Jakarta Sans', sans-serif; }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 500; line-height: 1.15; }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 500; line-height: 1.2; }
h3 { font-size: 1.25rem; font-weight: 500; }

nav { position: sticky; top: 0; z-index: 100; background: var(--navy); display: flex; align-items: center; justify-content: space-between; padding: 0 40px; height: 64px; border-bottom: 1px solid var(--navy-light); }
.nav-brand { display: flex; align-items: center; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { font-size: 0.95rem; color: var(--gray-300); text-decoration: none; letter-spacing: 0.04em; transition: color .2s; }
.nav-links a:hover { color: var(--gold-light); }
.btn-nav { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; background: transparent; color: var(--gold); border: 1px solid var(--gold); padding: 8px 20px; cursor: pointer; transition: all .25s; }
.btn-nav:hover { background: var(--gold); color: var(--navy); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: transparent; border: 0; }
.hamburger span { width: 22px; height: 1.5px; background: var(--gray-300); transition: all .3s; display: block; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }
.mobile-menu { display: none; position: fixed; inset: 64px 0 0 0; background: var(--navy); z-index: 99; padding: 32px 40px; flex-direction: column; gap: 20px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1rem; color: var(--gray-300); text-decoration: none; padding: 8px 0; border-bottom: 1px solid var(--navy-light); }

section { padding: 96px 40px; }
.container { max-width: 1100px; margin: 0 auto; }
.section-eyebrow { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.section-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); }

#hero { background: var(--navy); padding: 0; min-height: 92vh; display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.hero-left { padding: 96px 64px 96px 40px; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--navy-light); }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(201,168,76,0.35); padding: 6px 14px; margin-bottom: 40px; width: fit-content; }
.hero-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.hero-left h1 { color: var(--white); margin-bottom: 24px; }
.hero-left h1 em { color: var(--gold-light); font-style: italic; }
.hero-left p { color: var(--white); font-size: 1.15rem; font-weight: 400; max-width: 440px; margin-bottom: 48px; line-height: 1.75; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary { font-size: 0.9rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; background: var(--gold); color: var(--navy); border: none; padding: 14px 28px; cursor: pointer; transition: all .25s; text-decoration: none; display: inline-block; }
.btn-primary:hover { background: var(--gold-light); }
.btn-outline { font-size: 0.9rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; background: transparent; color: var(--gray-300); border: 1px solid var(--gray-500); padding: 14px 28px; cursor: pointer; transition: all .25s; text-decoration: none; display: inline-block; }
.btn-outline:hover { border-color: var(--gray-300); color: var(--white); }
.hero-right { padding: 96px 40px 96px 64px; display: flex; flex-direction: column; justify-content: center; gap: 24px; }
.hero-stat-row { display: flex; flex-direction: column; gap: 20px; }
.hero-stat { padding: 24px 28px; border: 1px solid var(--navy-light); }
.hero-stat .num { font-size: 2.2rem; font-weight: 700; color: var(--gold-light); line-height: 1; margin-bottom: 4px; }
.hero-stat .label { font-size: 0.75rem; color: var(--gray-500); letter-spacing: 0.04em; }

#servicos { background: var(--navy); }
#servicos h2 { color: var(--white); }
#servicos .section-eyebrow { color: var(--gold); }
.servicos-categoria { margin-top: 48px; }
.servicos-categoria:first-child { margin-top: 56px; }
.categoria-titulo { color: var(--gold-light); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; padding: 16px 0; border-bottom: 1px solid var(--navy-light); margin-bottom: 1px; }
.servicos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; background: transparent; padding-top: 1px; padding-left: 1px; }
.servicos-grid-2 { grid-template-columns: repeat(2, 1fr); }
.servicos-grid-1 { grid-template-columns: 1fr; }
.servico-card { border: 1px solid var(--navy-light); margin-top: -1px; margin-left: -1px; background: var(--navy); padding: 36px 32px; transition: background .25s; cursor: default; }
.servico-card:hover { background: var(--navy-mid); }
.servico-card.destaque { background: var(--navy-mid); border-top: 2px solid var(--gold); position: relative; z-index: 2; }
.servico-card .tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold-light); background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  padding: 6px 14px 6px 12px; margin-bottom: 24px;
}
.servico-card .tag svg { width: 14px; height: 14px; fill: none; stroke: var(--gold); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.servico-card h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 12px; }
.servico-card p { font-size: 0.95rem; font-weight: 400; color: var(--gray-100); line-height: 1.65; }
.servico-card ul { list-style: none; margin-top: 14px; }
.servico-card ul li { font-size: 0.95rem; font-weight: 400; color: var(--gray-100); line-height: 1.8; padding-left: 18px; position: relative; }
.servico-card ul li::before { content: '—'; position: absolute; left: 0; color: var(--gold); opacity: .6; }

#processo { background: var(--cream); }
.processo-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 56px; position: relative; }
.processo-steps::before { content: ''; position: absolute; top: 28px; left: 10%; right: 10%; height: 1px; background: var(--gold); opacity: .3; z-index: 0; }
.pstep { padding: 0 24px; position: relative; z-index: 1; }
.pstep-num { width: 56px; height: 56px; border: 1px solid var(--gold); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; font-weight: 600; color: var(--gold); background: var(--cream); margin-bottom: 24px; }
.pstep h4 { font-size: 0.9rem; font-weight: 500; margin-bottom: 8px; }
.pstep p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; }

#simulador { background: var(--white); }
.simulador-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; margin-top: 56px; align-items: start; }
.simulador-intro p { font-size: 1.05rem; color: var(--text-muted); line-height: 1.8; margin-top: 16px; }
.simulador-form { background: var(--gray-100); padding: 40px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.form-group input, .form-group select { width: 100%; padding: 12px 16px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.9rem; background: var(--white); border: 1px solid var(--gray-300); color: var(--text); outline: none; transition: border-color .2s; appearance: none; }
.form-group input:focus, .form-group select:focus { border-color: var(--gold); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn-calc { width: 100%; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; background: var(--navy); color: var(--gold-light); border: none; padding: 16px; cursor: pointer; transition: background .25s; margin-top: 8px; }
.btn-calc:hover { background: var(--navy-mid); }
.result-box { display: none; margin-top: 24px; border-top: 1px solid var(--gray-300); padding-top: 24px; }
.result-box.show { display: block; }
.result-items { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.r-item { background: var(--white); padding: 14px 16px; }
.r-item span { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); display: block; margin-bottom: 4px; }
.r-item strong { font-size: 1rem; font-weight: 600; }
.r-item.risk strong { color: var(--red-risk); }
.result-total-row { background: var(--navy); padding: 20px; display: flex; justify-content: space-between; align-items: center; }
.result-total-row span { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-300); }
.result-total-row strong { font-size: 2rem; font-weight: 700; color: var(--gold-light); }
.alerts-box { margin-top: 16px; display: none; }
.alerts-box.show { display: block; }
.alert-item { background: var(--red-pale); border-left: 3px solid var(--red-risk); padding: 10px 14px; margin-bottom: 8px; font-size: 0.8rem; color: var(--red-risk); line-height: 1.5; }
.btn-consult { width: 100%; margin-top: 16px; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; background: transparent; color: var(--gold); border: 1px solid var(--gold); padding: 14px; cursor: pointer; transition: all .25s; }
.btn-consult:hover { background: var(--gold); color: var(--navy); }
.calc-note { font-size: 0.72rem; color: var(--gray-500); margin-top: 12px; line-height: 1.5; }

#sobre { background: var(--navy); padding: 96px 40px; }
.sobre-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: center; margin-top: 0; }
.sobre-avatar-wrap { position: relative; }
.sobre-avatar { width: 100%; aspect-ratio: 3/4; background: var(--navy-light); display: flex; align-items: center; justify-content: center; border: 1px solid var(--navy-light); position: relative; overflow: hidden; }
.sobre-avatar img { width: 100%; height: 100%; object-fit: cover; }
.sobre-content h2 { color: var(--white); margin-bottom: 8px; }
.sobre-oab { font-size: 0.72rem; letter-spacing: 0.08em; color: var(--gold); text-transform: uppercase; margin-bottom: 28px; display: block; }
.sobre-content p { font-size: 1.05rem; font-weight: 400; color: var(--gray-300); line-height: 1.85; margin-bottom: 16px; }
.credenciais { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.credencial { font-size: 0.72rem; color: var(--gray-300); border: 1px solid var(--navy-light); padding: 6px 14px; letter-spacing: 0.03em; }

#blog { background: var(--cream); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.blog-card { background: var(--white); border: 1px solid var(--gray-100); transition: transform .25s, box-shadow .25s; cursor: pointer; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.07); }
.blog-card-link { text-decoration: none; display: block; height: 100%; }
.blog-card-top { padding: 28px 28px 0; }
.blog-card-tag { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); border-bottom: 1px solid var(--gold); padding-bottom: 2px; display: inline-block; margin-bottom: 16px; }
.blog-card h3 { font-size: 1.1rem; line-height: 1.35; margin-bottom: 12px; }
.blog-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; }
.blog-card-foot { padding: 16px 28px; border-top: 1px solid var(--gray-100); margin-top: 20px; display: flex; justify-content: space-between; align-items: center; }
.blog-card-foot span { font-size: 0.72rem; color: var(--gray-500); }
.blog-read { font-size: 0.72rem; color: var(--gold); font-weight: 500; letter-spacing: 0.04em; }

.single-post-page { padding: 96px 40px; }
.single-post-layout { display: grid; grid-template-columns: minmax(0, 1.75fr) 340px; gap: 40px; align-items: start; }
.single-post-main { min-width: 0; }
.single-post-header { margin-bottom: 32px; }
.single-post-category { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); margin-bottom: 12px; }
.single-post-meta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; color: var(--text-muted); font-size: 0.9rem; }
.single-post-thumb { margin-bottom: 32px; border: 1px solid var(--gray-300); overflow: hidden; background: var(--white); }
.single-post-thumb img { width: 100%; display: block; }
.single-entry-content { background: var(--white); border: 1px solid var(--gray-100); padding: 40px; }
.single-entry-content > * + * { margin-top: 1.2em; }
.single-entry-content h2, .single-entry-content h3, .single-entry-content h4 { margin-top: 1.7em; margin-bottom: 0.5em; color: var(--navy); }
.single-entry-content p, .single-entry-content li { color: var(--text-muted); }
.single-entry-content ul, .single-entry-content ol { padding-left: 1.25rem; }
.single-entry-content blockquote { border-left: 3px solid var(--gold); padding-left: 18px; color: var(--text); font-style: italic; }
.single-entry-content a { color: var(--navy); text-decoration: underline; }
.single-entry-content img { margin: 24px 0; }
.single-author-box { margin-top: 40px; display: grid; grid-template-columns: 140px 1fr; gap: 24px; background: var(--navy); color: var(--white); padding: 28px; }
.single-author-media img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
.single-author-eyebrow { display: inline-block; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 12px; }
.single-author-content h2 { color: var(--white); margin-bottom: 6px; }
.single-author-subtitle { color: var(--gold-light); margin-bottom: 14px; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 0.06em; }
.single-author-content p { color: var(--gray-300); }
.single-related-posts { margin-top: 48px; }
.single-blog-grid { margin-top: 24px; }
.single-post-sidebar { position: sticky; top: 88px; display: flex; flex-direction: column; gap: 20px; }
.single-sidebar-card { background: var(--white); border: 1px solid var(--gray-300); padding: 28px; }
.single-sidebar-eyebrow { display: inline-block; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.single-sidebar-card h3 { margin-bottom: 12px; }
.single-sidebar-card p { color: var(--text-muted); font-size: 0.95rem; }
.single-cta-card .btn-primary { width: 100%; text-align: center; margin-top: 4px; }
.single-popular-list { display: flex; flex-direction: column; gap: 14px; }
.single-popular-item a { text-decoration: none; display: block; }
.single-popular-item strong { display: block; color: var(--text); font-size: 0.98rem; line-height: 1.45; }
.single-popular-item span { display: block; color: var(--gray-700); font-size: 0.8rem; margin-top: 4px; }
.single-empty-state { color: var(--text-muted); font-size: 0.92rem; }

#diferencial { background: var(--navy); padding: 96px 40px; text-align: center; }
#diferencial h2 { color: var(--white); max-width: 600px; margin: 0 auto 20px; }
.diferencial-quote { font-size: 1.2rem; font-style: italic; color: var(--gold-light); max-width: 700px; margin: 0 auto 40px; line-height: 1.8; }
.diferencial-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

#contato { background: var(--cream); padding: 96px 40px; }
.contato-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; background: transparent; padding-top: 1px; padding-left: 1px; margin-top: 56px; }
.contato-card { border: 1px solid var(--gray-300); margin-top: -1px; margin-left: -1px; background: var(--white); padding: 32px; }
.contato-card h4 { font-size: 1.15rem; font-weight: 600; margin-bottom: 12px; }
.contato-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.65; }
.contato-card .contato-link { display: block; margin-top: 16px; font-size: 0.78rem; color: var(--gold); text-decoration: none; font-weight: 500; }

footer { background: var(--navy); color: var(--gray-500); padding: 32px 40px; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--navy-light); }
footer p { font-size: 0.75rem; }
.footer-oab { font-size: 0.7rem; letter-spacing: 0.06em; }

.wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 200; }
.wa-button { display: flex; align-items: center; gap: 10px; background: #25D366; color: white; border: none; padding: 14px 22px; font-size: 0.8rem; font-weight: 500; cursor: pointer; box-shadow: 0 4px 20px rgba(37,211,102,0.35); transition: all .25s; text-decoration: none; }
.wa-button:hover { background: #20BA5A; box-shadow: 0 6px 28px rgba(37,211,102,0.45); }
.wa-button svg { flex-shrink: 0; }

.access-tools { display: flex; gap: 8px; align-items: center; margin-left: 16px; border-left: 1px solid var(--navy-light); padding-left: 16px; }
.access-tools button { background: transparent; border: 1px solid var(--gray-500); color: var(--gray-300); font-size: 0.85rem; font-weight: 500; cursor: pointer; border-radius: 4px; padding: 4px 8px; transition: all 0.2s; }
.access-tools button:hover { border-color: var(--gold); color: var(--gold); }

.theme-light { background: #FFFFFF; color: #333; }
.theme-light section#hero, .theme-light section#servicos, .theme-light section#sobre, .theme-light section#diferencial { background: #FDF5F9; }
.theme-light section#processo, .theme-light section#blog, .theme-light section#contato, .theme-light section#simulador { background: #FFFFFF; }
.theme-light h1, .theme-light h2, .theme-light .servico-card h3 { color: #9E1F62 !important; }
.theme-light .hero-left p, .theme-light .servico-card p, .theme-light .servico-card ul li, .theme-light .sobre-content p, .theme-light #diferencial p { color: #4A0D2D; }
.theme-light .hero-left { border-color: #E8D5DF; }
.theme-light .hero-stat { border-color: #E8D5DF; }
.theme-light .hero-stat .num { color: #9E1F62; }
.theme-light .hero-stat .label { color: #7A164B; font-weight: 500; }
.theme-light .hero-badge { color: #9E1F62; border-color: rgba(158, 31, 98, 0.35); }
.theme-light .hero-badge::before { background: #9E1F62; }
.theme-light .servico-card { background: #FFFFFF; border-color: #E8D5DF; }
.theme-light .servico-card:hover { background: #F9EFF4; }
.theme-light .servico-card .tag { color: #9E1F62; background: rgba(158, 31, 98, 0.08); border-color: rgba(158, 31, 98, 0.25); }
.theme-light .servico-card .tag svg { stroke: #9E1F62; }
.theme-light .servico-card.destaque { background: #F9EFF4; border-top-color: #9E1F62; }
.theme-light .categoria-titulo { color: #9E1F62; border-bottom-color: #E8D5DF; }
.theme-light .processo-steps::before { background: #E8D5DF; }
.theme-light .pstep-num { background: #FDF5F9; border-color: #E8D5DF; color: #9E1F62; }
.theme-light .blog-card, .theme-light .contato-card, .theme-light .single-entry-content, .theme-light .single-sidebar-card { background: #FDF5F9; border-color: #E8D5DF; }
.theme-light .simulador-form { background: #FDF5F9; border: 1px solid #E8D5DF; }
.theme-light .simulador-form input, .theme-light .simulador-form select, .theme-light .single-sidebar-card select { border-color: #E8D5DF; }
.theme-light .simulador-form .r-item { border: 1px solid #E8D5DF; }
.theme-light .result-total-row, .theme-light .single-author-box { background: #9E1F62; }
.theme-light .result-total-row span { color: #E8D5DF; }
.theme-light .result-total-row strong, .theme-light .single-author-content h2 { color: #FFF; }
.theme-light .btn-calc { background: #9E1F62; color: #FFF; }
.theme-light .btn-calc:hover { background: #821750; }
.theme-light .credencial { border-color: #9E1F62; color: #9E1F62; }
.theme-light .btn-outline { color: #9E1F62; border-color: #9E1F62; }
.theme-light .btn-outline:hover { background: #9E1F62; color: #FFF; }
.theme-light .btn-primary { color: #FFF; background: #9E1F62; }
.theme-light .btn-primary:hover { background: #821750; }
.theme-light nav { background: #9E1F62; border-bottom-color: #B52B75; }
.theme-light footer { background: #9E1F62; border-top-color: #B52B75; color: #FFF; }
.theme-light .footer-oab { color: #E8D5DF; }

@media (max-width: 900px) {
  section { padding: 64px 24px; }
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  #hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 64px 24px; border-right: none; border-bottom: 1px solid var(--navy-light); }
  .hero-right { padding: 40px 24px 64px; }
  .hero-stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .servicos-grid, .servicos-grid-2, .servicos-grid-1 { grid-template-columns: 1fr; }
  .processo-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .processo-steps::before { display: none; }
  .pstep { padding: 0; text-align: center; }
  .pstep-num { margin: 0 auto 24px; }
  #processo h2 { text-align: center; }
  #processo .section-eyebrow { justify-content: center; }
  .simulador-wrap { grid-template-columns: 1fr; }
  .sobre-grid { grid-template-columns: 1fr; gap: 40px; }
  .sobre-avatar { aspect-ratio: 4/3; }
  .blog-grid, .single-blog-grid { grid-template-columns: 1fr; }
  .contato-grid { grid-template-columns: 1fr 1fr; }
  .single-post-page { padding: 64px 24px; }
  .single-post-layout { grid-template-columns: 1fr; }
  .single-post-sidebar { position: static; }
  .single-author-box { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 8px; text-align: center; }
  #diferencial { padding: 64px 24px; }
  #sobre { padding: 64px 24px; }
  #contato { padding: 64px 24px; }
  footer { padding: 24px; }
  .access-tools { margin-left: auto; margin-right: 16px; border-left: none; padding-left: 0; }
}

@media (max-width: 500px) {
  .hero-stat-row { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .result-items { grid-template-columns: 1fr; }
  .contato-grid { grid-template-columns: 1fr; }
  .processo-steps { grid-template-columns: 1fr; }
  .single-entry-content { padding: 28px 20px; }
}
