/* ============================================================
   ADVOCACIA TRABALHISTA — Sistema de Design
   Paleta: navy profundo + dourado refinado + marfim
   Tipografia: Fraunces (display serif) + Manrope (sans body)
   ============================================================ */

:root {
  /* Cores */
  --navy: #0a1f3d;
  --navy-deep: #061528;
  --navy-light: #1a3556;
  --gold: #c9a961;
  --gold-deep: #a88a44;
  --gold-light: #e6d5a8;
  --ivory: #faf7f0;
  --cream: #f4f0e6;
  --paper: #ffffff;
  --ink: #1a1a1a;
  --ink-soft: #3a3a3a;
  --muted: #6b6b6b;
  --border: #e5dfd0;
  --success: #2e7d4f;
  --danger: #b53737;

  /* Tipografia */
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Espaçamento */
  --container: 1240px;
  --container-narrow: 880px;

  /* Sombras */
  --shadow-sm: 0 1px 3px rgba(10, 31, 61, 0.06), 0 1px 2px rgba(10, 31, 61, 0.04);
  --shadow-md: 0 4px 16px rgba(10, 31, 61, 0.08), 0 2px 4px rgba(10, 31, 61, 0.04);
  --shadow-lg: 0 16px 48px rgba(10, 31, 61, 0.12), 0 4px 12px rgba(10, 31, 61, 0.06);

  /* Transições */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern", "liga", "calt";
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); letter-spacing: -0.035em; font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; letter-spacing: -0.025em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 700; letter-spacing: -0.015em; }

p { margin-bottom: 1rem; }

/* Container */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: var(--navy);
  color: var(--ivory);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(201, 169, 97, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ivory);
}

.brand-mark {
  width: 38px;
  height: 38px;
  background: var(--gold);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy-deep);
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.brand-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: rgba(250, 247, 240, 0.85);
  position: relative;
  padding: 0.4rem 0;
  transition: color 0.2s var(--ease);
}
.nav a:hover { color: var(--gold); }
.nav a.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
}

.btn-cta {
  background: var(--gold);
  color: var(--navy-deep);
  padding: 0.7rem 1.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.25s var(--ease);
  border: 1px solid var(--gold);
}
.btn-cta:hover {
  background: transparent;
  color: var(--gold);
}

.menu-toggle { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--ivory);
  padding: 5rem 0 7rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(201, 169, 97, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 60%, rgba(201, 169, 97, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(180deg, transparent 0%, var(--ivory) 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 920px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-tag::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  color: var(--ivory);
  margin-bottom: 1.5rem;
  font-weight: 800;
}
.hero h1 em {
  color: var(--gold);
  font-style: normal;
  font-weight: 800;
}
.hero h1 strong {
  color: var(--gold);
  font-style: normal;
  font-weight: 800;
}

.hero-lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(250, 247, 240, 0.8);
  margin-bottom: 2.5rem;
  max-width: 640px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.8rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: all 0.25s var(--ease);
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy-deep);
  box-shadow: 0 4px 20px rgba(201, 169, 97, 0.25);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 169, 97, 0.35);
}
.btn-secondary {
  border-color: rgba(250, 247, 240, 0.3);
  color: var(--ivory);
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ============================================================
   SECTION HEADING
   ============================================================ */
.section {
  padding: 5rem 0;
}

.section-head {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1rem;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold);
}
.section-head h2 {
  margin-bottom: 1rem;
  font-weight: 500;
}
.section-head p {
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ============================================================
   BLOG / POST CARDS
   ============================================================ */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3.5rem;
  align-items: start;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.post-card {
  background: var(--paper);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s var(--ease);
  position: relative;
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-light);
}

.post-card-media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--cream);
}
.post-card-media img,
.post-card-media svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.post-card:hover .post-card-media img,
.post-card:hover .post-card-media svg {
  transform: scale(1.06);
}

.post-card-source {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--navy);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.4rem 0.7rem;
  text-transform: uppercase;
}

.post-card-body {
  padding: 1.5rem 1.5rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-bottom: 0.85rem;
}
.post-meta-cat {
  color: var(--gold-deep);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
}
.post-meta-dot {
  width: 3px;
  height: 3px;
  background: var(--border);
  border-radius: 50%;
}

.post-card h3 {
  font-size: 1.2rem;
  line-height: 1.3;
  margin-bottom: 0.85rem;
  font-weight: 600;
}
.post-card h3 a {
  background-image: linear-gradient(var(--gold), var(--gold));
  background-size: 0% 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s var(--ease);
}
.post-card h3 a:hover { background-size: 100% 1px; }

.post-card-excerpt {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1.25rem;
}

.post-card-link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.25s var(--ease);
}
.post-card-link:hover { gap: 0.7rem; color: var(--gold-deep); }
.post-card-link svg { transition: transform 0.25s var(--ease); }
.post-card-link:hover svg { transform: translateX(2px); }

/* ============================================================
   SIDEBAR
   ============================================================ */
.sidebar { position: sticky; top: 6rem; }

.widget {
  background: var(--paper);
  border: 1px solid var(--border);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}
.widget-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1.25rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.widget-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 40px;
  height: 2px;
  background: var(--gold);
}

.widget-list { list-style: none; }
.widget-list li {
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  line-height: 1.45;
}
.widget-list li:last-child { border-bottom: none; }
.widget-list a { transition: color 0.2s var(--ease); }
.widget-list a:hover { color: var(--gold-deep); }

.cta-widget {
  background: var(--navy);
  color: var(--ivory);
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
}
.cta-widget::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  border: 1px solid rgba(201, 169, 97, 0.3);
  border-radius: 50%;
}
.cta-widget h4 {
  font-family: var(--font-display);
  color: var(--ivory);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}
.cta-widget p {
  font-size: 0.9rem;
  color: rgba(250, 247, 240, 0.8);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.cta-widget .btn-primary { width: 100%; justify-content: center; position: relative; z-index: 1; }

/* ============================================================
   CALCULADORA
   ============================================================ */
.calc-hero {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--ivory);
  padding: 4rem 0 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.calc-hero h1 {
  color: var(--ivory);
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.calc-hero h1 em {
  color: var(--gold);
  font-style: italic;
}
.calc-hero p {
  font-size: 1.05rem;
  color: rgba(250, 247, 240, 0.8);
  max-width: 620px;
  margin: 0 auto;
}

.calc-wrap {
  max-width: 760px;
  margin: -2rem auto 5rem;
  background: var(--paper);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 5;
}

.calc-progress {
  display: flex;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}
.calc-step-tab {
  flex: 1;
  padding: 1rem 0.5rem;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  transition: all 0.3s var(--ease);
  border-bottom: 2px solid transparent;
}
.calc-step-tab.active {
  color: var(--navy);
  border-bottom-color: var(--gold);
  background: var(--paper);
}
.calc-step-tab.done {
  color: var(--gold-deep);
}
.calc-step-tab .step-num {
  display: inline-block;
  width: 22px;
  height: 22px;
  background: var(--border);
  color: var(--muted);
  border-radius: 50%;
  font-size: 0.7rem;
  line-height: 22px;
  margin-right: 0.4rem;
  transition: all 0.3s var(--ease);
}
.calc-step-tab.active .step-num { background: var(--navy); color: var(--ivory); }
.calc-step-tab.done .step-num { background: var(--gold); color: var(--navy-deep); }

.calc-body {
  padding: 2.5rem;
}

.calc-step { display: none; }
.calc-step.active { display: block; animation: fadeIn 0.35s var(--ease); }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.calc-step h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.calc-step-desc {
  color: var(--muted);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

/* Inputs */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 1.5rem;
}
.form-row { grid-column: 1 / -1; }
.form-row-half { grid-column: span 1; }

@media (max-width: 600px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-row-half { grid-column: 1 / -1; }
}

.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--navy);
  text-transform: uppercase;
}
.field input,
.field select {
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  background: var(--paper);
  font-size: 1rem;
  color: var(--ink);
  transition: all 0.2s var(--ease);
  font-family: var(--font-body);
}
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.15);
}
.field-hint {
  font-size: 0.78rem;
  color: var(--muted);
  font-style: italic;
}

/* Options (radio-like) */
.options-group {
  display: grid;
  gap: 0.75rem;
}
.option-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border: 1px solid var(--border);
  background: var(--paper);
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.option-card:hover { border-color: var(--gold-light); background: var(--cream); }
.option-card input[type="radio"],
.option-card input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--gold);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.option-card-content { flex: 1; }
.option-card-title {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.98rem;
  margin-bottom: 0.2rem;
}
.option-card-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.4;
}
.option-card.selected {
  border-color: var(--gold);
  background: rgba(201, 169, 97, 0.06);
  box-shadow: 0 0 0 1px var(--gold);
}

/* Toggle/Checkbox grid */
.toggle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
@media (max-width: 600px) {
  .toggle-grid { grid-template-columns: 1fr; }
}

/* Conditional fields */
.conditional {
  display: none;
  background: var(--cream);
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--gold);
  margin-top: 0.5rem;
  animation: fadeIn 0.3s var(--ease);
}
.conditional.show { display: grid; gap: 0.85rem; grid-template-columns: 1fr 1fr; }
@media (max-width: 600px) { .conditional.show { grid-template-columns: 1fr; } }

.conditional .field label { font-size: 0.72rem; }

/* Calc nav */
.calc-nav {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 2.5rem;
  background: var(--cream);
  border-top: 1px solid var(--border);
}
.btn-back {
  padding: 0.85rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted);
  transition: color 0.2s var(--ease);
}
.btn-back:hover { color: var(--navy); }
.btn-next {
  background: var(--navy);
  color: var(--ivory);
  padding: 0.95rem 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.25s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.btn-next:hover { background: var(--navy-light); }
.btn-next:disabled { opacity: 0.5; cursor: not-allowed; }

/* Result */
.result-summary {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--ivory);
  padding: 2.5rem;
  margin: -2.5rem -2.5rem 2rem;
  position: relative;
  overflow: hidden;
}
.result-summary::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(201, 169, 97, 0.2);
  border-radius: 50%;
}
.result-summary::after {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 140px;
  height: 140px;
  border: 1px solid rgba(201, 169, 97, 0.15);
  border-radius: 50%;
}
.result-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.result-total {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 3.8rem);
  font-weight: 500;
  color: var(--ivory);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.result-disclaimer {
  font-size: 0.85rem;
  color: rgba(250, 247, 240, 0.7);
  max-width: 480px;
}

.result-breakdown {
  list-style: none;
}
.result-breakdown li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.result-breakdown li:last-child { border-bottom: none; }
.result-breakdown .verba {
  color: var(--ink);
  font-weight: 500;
}
.result-breakdown .verba-desc {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 400;
  display: block;
  margin-top: 2px;
}
.result-breakdown .value {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  font-size: 1.1rem;
}
.result-breakdown .value.negative { color: var(--danger); }

.result-cta {
  margin-top: 2rem;
  padding: 2rem;
  background: var(--cream);
  border-left: 4px solid var(--gold);
  text-align: center;
}
.result-cta h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--navy);
}
.result-cta p {
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-deep);
  color: rgba(250, 247, 240, 0.7);
  padding: 4rem 0 2rem;
  margin-top: 5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand h4 {
  font-family: var(--font-display);
  color: var(--ivory);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 320px; }

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; font-size: 0.9rem; }
.footer-col a { transition: color 0.2s var(--ease); }
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(250, 247, 240, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--navy);
  color: var(--ivory);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--gold);
  font-size: 0.9rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s var(--ease);
  z-index: 1000;
  max-width: 360px;
}
.toast.show { opacity: 1; transform: translateY(0); }
.toast.success { border-left-color: var(--success); }

/* ============================================================
   ADMIN PANEL
   ============================================================ */
.admin-wrap {
  max-width: var(--container);
  margin: 3rem auto;
  padding: 0 1.5rem;
}
.admin-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}
.stat-card {
  background: var(--paper);
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
}
.stat-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--navy);
}

.leads-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--paper);
  border: 1px solid var(--border);
}
.leads-table th {
  background: var(--cream);
  padding: 0.95rem 1rem;
  text-align: left;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 2px solid var(--gold);
}
.leads-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.leads-table tr:hover { background: var(--cream); }
.lead-tag {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--cream);
  color: var(--navy);
  border: 1px solid var(--border);
}
.lead-tag.hot { background: rgba(181, 55, 55, 0.1); color: var(--danger); border-color: var(--danger); }

/* ============================================================
   MOBILE
   ============================================================ */
@media (max-width: 968px) {
  .blog-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .nav { gap: 1.25rem; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .nav.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 1.5rem;
    border-top: 1px solid rgba(201, 169, 97, 0.2);
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0.5rem;
  }
  .menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--ivory);
    transition: all 0.3s var(--ease);
  }
  .btn-cta { padding: 0.55rem 1rem; font-size: 0.75rem; }
  .hero { padding: 3.5rem 0 5rem; }
  .calc-body { padding: 1.75rem 1.25rem; }
  .calc-nav { padding: 1.25rem 1.25rem; }
  .calc-step-tab { font-size: 0.65rem; padding: 0.85rem 0.3rem; }
  .calc-step-tab .step-num { width: 18px; height: 18px; font-size: 0.65rem; line-height: 18px; }
  .result-summary { margin: -1.75rem -1.25rem 1.5rem; padding: 2rem 1.25rem; }
}

/* Utilities */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }

/* Print */
@media print {
  .site-header, .site-footer, .calc-progress, .calc-nav, .btn-cta, .hero { display: none; }
  body { background: white; }
  .result-summary { background: var(--navy) !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
}

/* ============================================================
   STATS / NÚMEROS DO ESCRITÓRIO
   ============================================================ */
.stats-band {
  background: var(--navy-deep);
  color: var(--ivory);
  padding: 3.5rem 0;
  border-top: 1px solid rgba(201, 169, 97, 0.15);
  border-bottom: 1px solid rgba(201, 169, 97, 0.15);
  position: relative;
}
.stats-band::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 500;
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-num small {
  font-size: 0.55em;
  color: var(--gold-light);
  margin-left: 0.15em;
}
.stat-desc {
  font-size: 0.85rem;
  color: rgba(250, 247, 240, 0.7);
  letter-spacing: 0.05em;
  line-height: 1.5;
}

/* ============================================================
   LOGO BRAND (Alex Amaral)
   ============================================================ */
.brand-logo {
  width: 40px;
  height: 40px;
  display: inline-block;
  color: var(--gold);
  flex-shrink: 0;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ivory);
  letter-spacing: 0.01em;
}
.brand-tagline {
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

/* ============================================================
   FOTO ALEX + CITAÇÃO
   ============================================================ */
.advogado-card {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  overflow: hidden;
  aspect-ratio: 4/5;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.advogado-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  filter: grayscale(15%) contrast(1.05);
}
.advogado-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 31, 61, 0.1) 0%, rgba(10, 31, 61, 0.5) 50%, rgba(6, 21, 40, 0.92) 100%);
}
.advogado-overlay {
  position: relative;
  z-index: 2;
  padding: 2.5rem;
  color: var(--ivory);
}
.advogado-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--ivory);
  margin-bottom: 0.5rem;
  letter-spacing: -0.005em;
}
.advogado-quote-source {
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
}
.advogado-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 0.15rem;
}
.advogado-oab {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.advogado-cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.advogado-cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all 0.25s var(--ease);
}
.advogado-cta .wa-btn {
  background: var(--gold);
  color: var(--navy-deep);
}
.advogado-cta .wa-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}
.advogado-cta .site-btn {
  border: 1px solid rgba(250, 247, 240, 0.3);
  color: var(--ivory);
}
.advogado-cta .site-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ============================================================
   CASOS REAIS
   ============================================================ */
.casos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.caso-card {
  background: var(--paper);
  border: 1px solid var(--border);
  padding: 1.75rem;
  position: relative;
  transition: all 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}
.caso-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: var(--gold);
  transform: scaleY(0.4);
  transform-origin: top;
  transition: transform 0.35s var(--ease);
}
.caso-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.caso-card:hover::before {
  transform: scaleY(1);
}
.caso-cat {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1rem;
}
.caso-card h3 {
  font-size: 1.15rem;
  line-height: 1.35;
  margin-bottom: 1rem;
  color: var(--navy);
}
.caso-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
  flex: 1;
}
.caso-resultado {
  padding-top: 1.1rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
}
.caso-resultado::before {
  content: "✓";
  display: inline-flex;
  width: 20px;
  height: 20px;
  background: var(--gold);
  color: var(--navy-deep);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.casos-disclaimer {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.78rem;
  color: var(--muted);
  font-style: italic;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ============================================================
   SEGMENTOS GRID (homepage)
   ============================================================ */
.segmentos-band {
  background: var(--paper);
  padding: 5rem 0;
  border-top: 1px solid var(--border);
}
.segmentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.segmento-card {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 1.75rem;
  transition: all 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}
.segmento-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: -50px;
  width: 120px;
  height: 120px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  opacity: 0.15;
  transition: all 0.4s var(--ease);
}
.segmento-card:hover {
  background: var(--navy);
  color: var(--ivory);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.segmento-card:hover::after {
  opacity: 0.4;
  border-color: var(--gold);
  transform: scale(1.4) translate(-20px, 20px);
}
.segmento-card:hover h3,
.segmento-card:hover .segmento-resumo,
.segmento-card:hover .segmento-link { color: var(--ivory); }
.segmento-card:hover .segmento-icon { color: var(--gold); }
.segmento-card:hover .segmento-tag { color: var(--gold); border-color: var(--gold); }

.segmento-icon {
  width: 36px;
  height: 36px;
  color: var(--gold-deep);
  transition: color 0.3s var(--ease);
}
.segmento-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-deep);
  border: 1px solid var(--gold-deep);
  padding: 0.2rem 0.55rem;
  align-self: flex-start;
  transition: all 0.3s var(--ease);
}
.segmento-card h3 {
  font-size: 1.2rem;
  line-height: 1.3;
  color: var(--navy);
  margin: 0;
  transition: color 0.3s var(--ease);
}
.segmento-resumo {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
  flex: 1;
  transition: color 0.3s var(--ease);
  position: relative;
  z-index: 1;
}
.segmento-link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.25s var(--ease);
}

/* ============================================================
   GUIA / PÁGINA DE SEGMENTO INDIVIDUAL
   ============================================================ */
.guia-hero {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--ivory);
  padding: 4.5rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.guia-hero .container { max-width: 880px; }
.guia-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.guia-tag::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold);
}
.guia-hero h1 {
  color: var(--ivory);
  font-weight: 500;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.guia-hero p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(250, 247, 240, 0.85);
  max-width: 720px;
}

.guia-content {
  max-width: 880px;
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
}
.publico-band {
  background: var(--cream);
  padding: 1.5rem 1.75rem;
  border-left: 4px solid var(--gold);
  margin-bottom: 3rem;
}
.publico-band h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.85rem;
}
.publico-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.publico-tag {
  font-size: 0.82rem;
  background: var(--paper);
  border: 1px solid var(--border);
  padding: 0.35rem 0.85rem;
  color: var(--navy);
}

.direito-bloco {
  margin-bottom: 2.5rem;
  padding-left: 1.75rem;
  border-left: 2px solid var(--border);
  transition: border-color 0.3s var(--ease);
}
.direito-bloco:hover { border-left-color: var(--gold); }
.direito-bloco h3 {
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
  color: var(--navy);
  line-height: 1.3;
}
.direito-bloco p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 0;
}
.direito-bloco p strong {
  color: var(--navy);
  font-weight: 600;
}

.alerta-box {
  background: linear-gradient(135deg, rgba(181, 55, 55, 0.05), rgba(181, 55, 55, 0.02));
  border: 1px solid rgba(181, 55, 55, 0.2);
  border-left: 4px solid var(--danger);
  padding: 2rem;
  margin: 3rem 0;
}
.alerta-box h3 {
  color: var(--danger);
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.alerta-box h3::before {
  content: "⚠";
  font-size: 1.4rem;
}
.alerta-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.alerta-box li {
  padding: 0.55rem 0 0.55rem 1.75rem;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.alerta-box li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--danger);
  font-weight: 700;
}

.guia-cta {
  background: var(--navy);
  color: var(--ivory);
  padding: 3rem 2.5rem;
  text-align: center;
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
}
.guia-cta::before {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  border: 1px solid rgba(201, 169, 97, 0.2);
  border-radius: 50%;
}
.guia-cta h3 {
  color: var(--ivory);
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
  position: relative;
}
.guia-cta p {
  font-size: 1.05rem;
  color: rgba(250, 247, 240, 0.8);
  max-width: 560px;
  margin: 0 auto 1.75rem;
  position: relative;
}
.guia-cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
}

/* ============================================================
   HERO REFINADO (versão impactante)
   ============================================================ */
.hero h1 strong {
  color: var(--gold);
  font-style: normal;
  font-weight: 500;
}

/* ============================================================
   FAB — BOTÕES FLUTUANTES (Calculadora + WhatsApp sempre visíveis)
   ============================================================ */
.fab-stack {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: flex-end;
}

.fab {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.95rem 1.4rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18), 0 2px 6px rgba(0, 0, 0, 0.12);
  transition: all 0.3s var(--ease);
  white-space: nowrap;
  cursor: pointer;
  border: none;
}
.fab svg { flex-shrink: 0; }
.fab:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25), 0 4px 8px rgba(0, 0, 0, 0.15); }

.fab-whatsapp {
  background: #25d366;
  color: white;
}
.fab-whatsapp:hover { background: #20bd5a; }

.fab-calc {
  background: var(--gold);
  color: var(--navy-deep);
  border: 2px solid var(--gold);
  animation: pulseGold 2.5s ease-in-out infinite;
}
.fab-calc:hover {
  background: var(--gold-light);
  animation: none;
}

@keyframes pulseGold {
  0%, 100% { box-shadow: 0 8px 24px rgba(0,0,0,0.18), 0 2px 6px rgba(0,0,0,0.12), 0 0 0 0 rgba(201, 169, 97, 0.55); }
  50% { box-shadow: 0 8px 24px rgba(0,0,0,0.18), 0 2px 6px rgba(0,0,0,0.12), 0 0 0 16px rgba(201, 169, 97, 0); }
}

@media (max-width: 768px) {
  .fab-stack { bottom: 1rem; right: 1rem; gap: 0.6rem; }
  .fab { padding: 0.85rem 1.2rem; font-size: 0.82rem; }
  .fab .fab-text-long { display: none; }
}

/* ============================================================
   BLOCO CTA INLINE (entre seções, reforça calcular + WhatsApp)
   ============================================================ */
.cta-strip {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--ivory);
  padding: 3rem 2rem;
  text-align: center;
  margin: 4rem 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(201, 169, 97, 0.18);
  border-radius: 50%;
}
.cta-strip::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(201, 169, 97, 0.1);
  border-radius: 50%;
}
.cta-strip-content { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.cta-strip h3 {
  color: var(--ivory);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
  letter-spacing: -0.015em;
}
.cta-strip h3 em { color: var(--gold); font-style: normal; font-weight: 700; }
.cta-strip p { color: rgba(250, 247, 240, 0.78); font-size: 1rem; margin-bottom: 1.75rem; }
.cta-strip-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   AJUSTES TIPOGRÁFICOS PLAYFAIR DISPLAY
   ============================================================ */
.advogado-quote {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1.25;
  letter-spacing: -0.025em;
}
.advogado-subquote {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

/* Itálicos sutis (Playfair tem itálico belo mas comportado) */
em { font-style: italic; }

/* Ícone temático no topo do card de caso */
.caso-icon-wrap {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  color: var(--gold);
  position: relative;
}
.caso-icon-wrap svg {
  width: 32px;
  height: 32px;
}
.caso-icon-wrap::after {
  content: "";
  position: absolute;
  top: -2px;
  right: -2px;
  width: 8px;
  height: 8px;
  background: var(--gold);
}

/* ============================================================
   BANNER LGPD
   ============================================================ */
.lgpd-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: var(--navy);
  color: var(--ivory);
  border-top: 2px solid var(--gold);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.25);
  animation: slideUpLGPD 0.4s var(--ease);
}
@keyframes slideUpLGPD {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
.lgpd-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
}
@media (max-width: 768px) {
  .lgpd-content { grid-template-columns: 1fr; }
}
.lgpd-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--gold);
  margin-bottom: 0.35rem;
  font-weight: 700;
}
.lgpd-text p {
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
  color: rgba(250, 247, 240, 0.85);
}
.lgpd-text a { color: var(--gold); text-decoration: underline; }
.lgpd-actions {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}
.lgpd-btn {
  padding: 0.7rem 1.3rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  font-family: var(--font-body);
}
.lgpd-reject {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(250, 247, 240, 0.25);
}
.lgpd-reject:hover { border-color: var(--gold); color: var(--gold); }
.lgpd-accept {
  background: var(--gold);
  color: var(--navy-deep);
}
.lgpd-accept:hover { background: var(--gold-light); }

/* ============================================================
   MODAL DE COMENTÁRIO
   ============================================================ */
.comment-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.comment-modal.open { display: flex; animation: fadeInModal 0.2s var(--ease); }
@keyframes fadeInModal { from { opacity: 0; } to { opacity: 1; } }

.comment-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 21, 40, 0.7);
  backdrop-filter: blur(4px);
}
.comment-modal-box {
  position: relative;
  background: var(--paper);
  width: 100%;
  max-width: 600px;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: scaleInModal 0.25s var(--ease);
}
@keyframes scaleInModal {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.comment-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  border: none;
  transition: all 0.2s var(--ease);
}
.comment-modal-close:hover { color: var(--navy); background: var(--cream); }

.comment-modal-header {
  padding: 2rem 2.5rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.comment-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.5rem;
}
.comment-modal-header h3 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
  color: var(--navy);
  line-height: 1.3;
}
.comment-modal-sub {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.comment-form {
  padding: 1.75rem 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.comment-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
@media (max-width: 600px) {
  .comment-row { grid-template-columns: 1fr; }
  .comment-form { padding: 1.5rem 1.25rem; }
  .comment-modal-header { padding: 1.5rem 1.25rem 1rem; }
}
.comment-field { display: flex; flex-direction: column; gap: 0.4rem; }
.comment-field label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--navy);
  text-transform: uppercase;
}
.comment-field input,
.comment-field textarea {
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--paper);
  color: var(--ink);
  transition: all 0.2s var(--ease);
}
.comment-field input:focus,
.comment-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.15);
}
.comment-field textarea { resize: vertical; }

.comment-consent {
  background: var(--cream);
  padding: 0.95rem 1.1rem;
  border-left: 3px solid var(--gold);
}
.comment-consent label {
  display: flex;
  gap: 0.65rem;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.5;
  align-items: flex-start;
}
.comment-consent input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--gold);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.comment-consent a { color: var(--gold-deep); text-decoration: underline; }

.comment-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.comment-success {
  padding: 2.5rem 2.5rem 3rem;
  text-align: center;
}
.comment-success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background: var(--gold);
  color: var(--navy-deep);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 2rem;
  font-weight: 700;
}
.comment-success h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--navy);
}
.comment-success p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 440px;
  margin: 0 auto;
}

/* ============================================================
   BOTÃO "COMENTAR" no card de notícia
   ============================================================ */
.post-card-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  gap: 0.5rem;
}
.btn-comentar {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted);
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0.4rem 0;
  transition: color 0.2s var(--ease);
  font-family: var(--font-body);
}
.btn-comentar:hover { color: var(--gold-deep); }
.btn-comentar svg { width: 14px; height: 14px; }

/* ============================================================
   ABAS DO ADMIN
   ============================================================ */
.admin-tab {
  padding: 0.95rem 1.4rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--muted);
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.admin-tab:hover { color: var(--navy); }
.admin-tab.active {
  color: var(--navy);
  border-bottom-color: var(--gold);
}
.tab-count {
  background: var(--cream);
  color: var(--navy);
  padding: 0.15rem 0.55rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
}
.admin-tab.active .tab-count {
  background: var(--gold);
  color: var(--navy-deep);
}

/* ============================================================
   RECLAMAÇÃO PRÉ-PROCESSUAL — Seção destacada (diferencial)
   ============================================================ */
.reclamacao-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--ivory);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.reclamacao-bg-shape {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(201, 169, 97, 0.08);
  border-radius: 50%;
  pointer-events: none;
}
.reclamacao-bg-shape::before {
  content: "";
  position: absolute;
  top: 100px;
  left: 100px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(201, 169, 97, 0.1);
  border-radius: 50%;
}
.reclamacao-bg-shape::after {
  content: "";
  position: absolute;
  top: 220px;
  left: 220px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(201, 169, 97, 0.18);
  border-radius: 50%;
}

.reclamacao-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: start;
  position: relative;
  z-index: 2;
}
@media (max-width: 968px) {
  .reclamacao-grid { grid-template-columns: 1fr; gap: 3rem; }
}

.reclamacao-left {
  position: sticky;
  top: 6rem;
}
@media (max-width: 968px) {
  .reclamacao-left { position: static; }
}

.reclamacao-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(201, 169, 97, 0.12);
  border: 1px solid rgba(201, 169, 97, 0.3);
  padding: 0.55rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: relative;
}
.badge-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.4;
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { transform: scale(0.8); opacity: 0.6; }
  50% { transform: scale(1.5); opacity: 0; }
}

.reclamacao-title {
  font-size: clamp(2rem, 3.8vw, 3rem);
  color: var(--ivory);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}
.reclamacao-title em {
  color: var(--gold);
  font-style: normal;
  font-weight: 800;
}

.reclamacao-lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(250, 247, 240, 0.85);
  margin-bottom: 2rem;
}
.reclamacao-lead strong { color: var(--gold-light); font-weight: 700; }

.reclamacao-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.reclamacao-right {
  display: grid;
  gap: 1.25rem;
}

.reclamacao-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 169, 97, 0.18);
  padding: 1.85rem 2rem 1.85rem 4.5rem;
  position: relative;
  transition: all 0.3s var(--ease);
  backdrop-filter: blur(8px);
}
.reclamacao-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(201, 169, 97, 0.4);
  transform: translateX(4px);
}
.card-num {
  position: absolute;
  top: 1.85rem;
  left: 1.75rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.reclamacao-card h3 {
  font-size: 1.1rem;
  color: var(--ivory);
  margin-bottom: 0.6rem;
  font-weight: 700;
  letter-spacing: -0.015em;
}
.reclamacao-card p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(250, 247, 240, 0.78);
  margin: 0;
}
.reclamacao-card p strong { color: var(--gold-light); font-weight: 600; }

/* ============================================================
   FORMAÇÕES ACADÊMICAS — card da foto
   ============================================================ */
.advogado-formacoes {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.advogado-formacoes li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  line-height: 1.4;
  color: rgba(250, 247, 240, 0.78);
  letter-spacing: -0.005em;
}
.advogado-formacoes svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
  flex-shrink: 0;
  opacity: 0.85;
}
.advogado-formacoes strong {
  color: var(--gold-light);
  font-weight: 600;
}

/* ============================================================
   DEPOIMENTOS — cards de prova social
   ============================================================ */
.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
  margin-top: 3rem;
}

.depoimento-card {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 2rem 1.85rem 1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.3s var(--ease);
}
.depoimento-card:hover {
  background: var(--paper);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.depoimento-aspas {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  width: 38px;
  height: 38px;
  color: var(--gold);
  opacity: 0.4;
  transition: opacity 0.3s var(--ease);
}
.depoimento-card:hover .depoimento-aspas {
  opacity: 0.7;
}

.depoimento-stars {
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 1.1rem;
  line-height: 1;
}

.depoimento-texto {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 1.5rem 0;
  flex: 1;
  font-style: italic;
}

.depoimento-rodape {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.depoimento-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  flex-shrink: 0;
}

.depoimento-info {
  flex: 1;
  min-width: 0;
}

.depoimento-nome {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.15rem;
}

.depoimento-verified {
  display: inline-flex;
  color: var(--gold);
  flex-shrink: 0;
}

.depoimento-contexto {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.01em;
  line-height: 1.4;
}

@media (max-width: 600px) {
  .depoimentos-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .depoimento-card { padding: 1.75rem 1.5rem 1.25rem; }
}

/* ============================================================
   GRID DE ARTIGOS (página /artigos/)
   ============================================================ */
.artigos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.artigo-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--paper);
  border: 1px solid var(--border);
  padding: 1.85rem;
  transition: all 0.3s var(--ease);
  position: relative;
}
.artigo-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s var(--ease);
}
.artigo-card:hover {
  background: var(--cream);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.artigo-card:hover::before { transform: scaleY(1); }
.artigo-cat {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1rem;
}
.artigo-card h3 {
  font-size: 1.2rem;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--navy);
}
.artigo-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 1.25rem;
}
.artigo-meta {
  display: flex;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--muted);
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
