/* Valora Design System — stitch_redesign_meu_valor_l_quido/valores_p_blicos/DESIGN.md */

:root {
  --valora-primary: #004e47;
  --valora-primary-container: #00685f;
  --valora-on-primary: #ffffff;
  --valora-on-primary-container: #93e4d8;
  --valora-background: #f9f9ff;
  --valora-surface: #ffffff;
  --valora-surface-container-lowest: #ffffff;
  --valora-surface-container-low: #f3f3f9;
  --valora-surface-container: #ededf3;
  --valora-on-surface: #191c20;
  --valora-on-surface-variant: #3e4947;
  --valora-text-main: #1a202c;
  --valora-text-muted: #4a5568;
  --valora-outline: #6e7977;
  --valora-outline-variant: #bec9c6;
  --valora-border-subtle: #e2e8f0;
  --valora-secondary: #225abd;
  --valora-secondary-container: #6a98ff;
  --valora-secondary-fixed: #d9e2ff;
  --valora-on-secondary-fixed: #001945;
  --valora-trabalhista-blue: #1351b4;
  --valora-financeiro-teal: #00685f;
  --valora-fiscal-purple: #6b21a8;
  --valora-warning-bg: #fef3c7;
  --valora-warning-border: #f59e0b;
  --valora-warning-text: #92400e;
  --valora-badge-trabalhista-bg: rgb(19 81 180 / 10%);
  --valora-badge-trabalhista-text: #1351b4;
  --valora-badge-fiscal-bg: rgb(107 33 168 / 10%);
  --valora-badge-fiscal-text: #6b21a8;
  --valora-badge-financeiro-bg: rgb(0 104 95 / 10%);
  --valora-badge-financeiro-text: #00685f;
  --valora-container-max: 1200px;
  --valora-shadow: 0 4px 6px -1px rgb(0 0 0 / 6%), 0 2px 4px -1px rgb(0 0 0 / 4%);
  --valora-shadow-result: 0 8px 24px rgb(0 0 0 / 4%);
  --valora-radius-sm: 0.25rem;
  --valora-radius-md: 0.5rem;
  --valora-radius-lg: 0.75rem;
  --valora-radius-xl: 1rem;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--valora-on-surface);
  background: var(--valora-background);
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  vertical-align: middle;
  line-height: 1;
}

.valora-container {
  max-width: var(--valora-container-max);
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .valora-container { padding: 0 2rem; }
}

/* Header */
.valora-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgb(255 255 255 / 95%);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--valora-border-subtle);
}

.valora-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.valora-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}

.valora-brand-logo {
  display: block;
  width: auto;
  object-fit: contain;
}

.valora-brand-logo--horizontal {
  height: 2.25rem;
  max-width: min(240px, 52vw);
}

.valora-brand-logo--stacked {
  height: 5.5rem;
  max-width: 200px;
}

.valora-brand-logo--icon {
  height: 2rem;
  width: 2rem;
}

.valora-brand-logo--footer {
  height: 1.75rem;
  max-width: 180px;
}

.valora-nav {
  display: none;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 768px) {
  .valora-nav { display: flex; }
}

.valora-nav a {
  color: var(--valora-on-surface-variant);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding-bottom: 0.25rem;
  border-bottom: 2px solid transparent;
  transition: color 0.15s;
}

.valora-nav a:hover,
.valora-nav a.active {
  color: var(--valora-primary);
  border-bottom-color: var(--valora-primary);
}

.valora-nav-toggle {
  display: flex;
  background: none;
  border: none;
  color: var(--valora-primary);
  cursor: pointer;
  padding: 0.5rem;
}

@media (min-width: 768px) {
  .valora-nav-toggle { display: none; }
}

.valora-nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 0;
  border-top: 1px solid var(--valora-outline-variant);
}

.valora-nav-mobile.open { display: flex; }

.valora-nav-mobile a {
  color: var(--valora-on-surface-variant);
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 0;
}

/* Footer */
.valora-footer {
  margin-top: 3rem;
  padding: 2rem 0;
  background: var(--valora-surface-container);
  border-top: 1px solid var(--valora-outline-variant);
}

.valora-footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .valora-footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
  }
}

.valora-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.valora-footer-links a {
  color: var(--valora-on-secondary-container);
  text-decoration: underline;
  font-size: 0.875rem;
}

.valora-footer-links a:hover { color: var(--valora-primary); }

/* Typography */
.valora-h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--valora-on-surface);
  margin: 0 0 1rem;
}

.valora-h2 {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--valora-primary);
  margin: 0 0 0.5rem;
}

.valora-h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.valora-lead {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--valora-on-surface-variant);
  margin: 0;
}

.valora-text-muted { color: var(--valora-on-surface-variant); }
.valora-text-sm { font-size: 0.875rem; }

/* Hero */
.valora-hero {
  text-align: center;
  padding: 3rem 1.5rem;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, var(--valora-surface-container-low) 0%, var(--valora-surface-container-lowest) 60%);
  border: 1px solid var(--valora-outline-variant);
  border-radius: var(--valora-radius-xl);
  box-shadow: var(--valora-shadow);
}

.valora-hero .valora-h1 { color: var(--valora-primary); }

.valora-trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  padding: 1.5rem 0;
  margin: 2rem 0;
  border-top: 1px solid rgb(188 201 198 / 30%);
  border-bottom: 1px solid rgb(188 201 198 / 30%);
}

.valora-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--valora-on-surface-variant);
  font-weight: 600;
  font-size: 0.9375rem;
}

.valora-trust-item .material-symbols-outlined {
  color: var(--valora-primary);
  font-variation-settings: "FILL" 1;
}

/* Buttons */
.valora-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0 1.5rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--valora-radius-lg);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, filter 0.15s;
}

.valora-btn:active { transform: translateY(1px); }

.valora-btn-primary {
  background: var(--valora-primary-container);
  color: var(--valora-on-primary);
}

.valora-btn-primary:hover {
  background: var(--valora-primary);
  color: var(--valora-on-primary);
}

.valora-btn-outline {
  background: transparent;
  color: var(--valora-primary);
  border: 2px solid var(--valora-primary);
}

.valora-btn-outline:hover { background: rgb(0 104 95 / 5%); }

.valora-btn-block { width: 100%; }

/* Cards */
.valora-card {
  background: var(--valora-surface-container-lowest);
  border: 1px solid var(--valora-border-subtle);
  border-radius: var(--valora-radius-lg);
  box-shadow: none;
  padding: 1.5rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.valora-card:hover {
  border-color: var(--valora-primary-container);
  box-shadow: var(--valora-shadow);
  transform: none;
}

.valora-card--accent-trabalhista { border-left: 4px solid var(--valora-trabalhista-blue); }
.valora-card--accent-fiscal { border-left: 4px solid var(--valora-fiscal-purple); }
.valora-card--accent-financeiro { border-left: 4px solid var(--valora-financeiro-teal); }

.valora-monetary-display {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--valora-primary-container);
  line-height: 1.2;
}

.valora-hero-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgb(0 104 95 / 10%);
  color: var(--valora-primary-container);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

.valora-hero-split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 992px) {
  .valora-hero-split { grid-template-columns: 1fr 1fr; }
}

.valora-hero-visual {
  background: var(--valora-surface-container-low);
  border: 1px solid var(--valora-border-subtle);
  border-radius: var(--valora-radius-xl);
  padding: 1.5rem;
  box-shadow: var(--valora-shadow-result);
}

.valora-hero-visual-bar {
  height: 2.5rem;
  background: var(--valora-primary-container);
  border-radius: var(--valora-radius-md);
  margin-bottom: 1rem;
}

.valora-hero-visual-field {
  height: 2.75rem;
  border: 1px solid var(--valora-border-subtle);
  border-radius: var(--valora-radius-md);
  background: #fff;
  margin-bottom: 0.75rem;
}

.valora-hero-visual-btn {
  height: 2.75rem;
  background: var(--valora-primary-container);
  border-radius: var(--valora-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 0.9375rem;
}

.valora-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.valora-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--valora-border-subtle);
  border-radius: 9999px;
  background: #fff;
  color: var(--valora-on-surface-variant);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.valora-filter-chip:hover,
.valora-filter-chip.active {
  border-color: var(--valora-primary-container);
  color: var(--valora-primary-container);
  background: rgb(0 104 95 / 6%);
}

.valora-result-card {
  border: 1px solid var(--valora-border-subtle);
  border-radius: var(--valora-radius-lg);
  background: #fff;
  box-shadow: var(--valora-shadow-result);
  padding: 1.25rem;
}

.valora-input-currency {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--valora-border-subtle);
  border-radius: var(--valora-radius-sm);
  overflow: hidden;
  background: #fff;
}

.valora-input-currency:focus-within {
  border-color: var(--valora-primary-container);
  box-shadow: 0 0 0 2px rgb(0 104 95 / 15%);
}

.valora-input-currency-prefix {
  display: flex;
  align-items: center;
  padding: 0 0.75rem;
  background: var(--valora-surface-container-low);
  color: var(--valora-text-muted);
  font-weight: 600;
  border-right: 1px solid var(--valora-border-subtle);
}

.valora-input-currency input {
  flex: 1;
  border: 0;
  padding: 0.75rem;
  font-size: 1rem;
  min-width: 0;
  outline: none;
  background: transparent;
}

.valora-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .valora-card-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .valora-card-grid { grid-template-columns: repeat(3, 1fr); }
}

.valora-calc-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.valora-calc-card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--valora-radius-md);
  background: var(--valora-primary-container);
  color: var(--valora-on-primary-container);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: transform 0.2s;
}

.valora-calc-card:hover .valora-calc-card-icon {
  transform: scale(1.05) rotate(-3deg);
}

.valora-calc-card-footer {
  margin-top: auto;
  padding-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--valora-primary);
  font-weight: 600;
}

/* Badges */
.valora-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.valora-badge-trabalhista {
  background: var(--valora-badge-trabalhista-bg);
  color: var(--valora-badge-trabalhista-text);
}

.valora-badge-fiscal {
  background: var(--valora-badge-fiscal-bg);
  color: var(--valora-badge-fiscal-text);
}

.valora-badge-financeiro {
  background: var(--valora-badge-financeiro-bg);
  color: var(--valora-badge-financeiro-text);
}

/* Forms */
.valora-form-card {
  background: var(--valora-surface-container-lowest);
  border-radius: var(--valora-radius-xl);
  padding: 1.5rem;
  box-shadow: var(--valora-shadow);
}

.valora-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--valora-on-surface);
}

.valora-input,
.valora-textarea,
.valora-form-card .form-control {
  width: 100%;
  min-height: 3rem;
  padding: 0 1rem;
  border: 1px solid var(--valora-outline-variant);
  border-radius: var(--valora-radius-md);
  background: var(--valora-surface);
  font-family: inherit;
  font-size: 1rem;
  color: var(--valora-on-surface);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.valora-textarea { min-height: 8rem; padding-top: 0.75rem; resize: vertical; }

.valora-input:focus,
.valora-textarea:focus,
.valora-form-card .form-control:focus {
  outline: none;
  border-color: var(--valora-primary);
  box-shadow: 0 0 0 2px rgb(0 104 95 / 15%);
}

.valora-input-prefix {
  position: relative;
}

.valora-input-prefix .valora-prefix {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--valora-on-surface-variant);
  font-weight: 600;
}

.valora-input-prefix .valora-input,
.valora-input-prefix .form-control {
  padding-left: 2.75rem;
}

.valora-helper {
  font-size: 0.875rem;
  color: var(--valora-outline);
  margin-top: 0.25rem;
}

.valora-choice-group {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .valora-choice-group { grid-template-columns: repeat(2, 1fr); }
}

.valora-choice {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border: 2px solid var(--valora-outline-variant);
  border-radius: var(--valora-radius-lg);
  background: var(--valora-surface-container-lowest);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}

.valora-choice:has(input:checked) {
  border-color: var(--valora-primary);
  background: var(--valora-surface-container-low);
  box-shadow: 0 0 0 2px rgb(0 104 95 / 12%);
}

.valora-choice input[type="radio"] {
  width: 1.125rem;
  height: 1.125rem;
  margin-top: 0.125rem;
  accent-color: var(--valora-primary);
  flex-shrink: 0;
}

.valora-choice-text {
  font-weight: 600;
  color: var(--valora-on-surface);
  line-height: 1.4;
}

.valora-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .valora-form-row { grid-template-columns: repeat(2, 1fr); }
}

/* Result panel */
.valora-result-panel {
  background: #fff;
  color: var(--valora-text-main);
  border: 1px solid var(--valora-border-subtle);
  border-left: 4px solid var(--valora-primary-container);
  border-radius: var(--valora-radius-lg);
  padding: 1.5rem;
  box-shadow: var(--valora-shadow-result);
  position: relative;
}

.valora-result-panel::before {
  display: none;
}

.valora-result-line {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--valora-border-subtle);
  font-size: 0.9375rem;
  color: var(--valora-text-main);
}

.valora-result-line.discount { color: var(--valora-text-muted); }

.valora-result-summary-grid {
  margin: 0.75rem 0 0.25rem;
  padding: 0.75rem 1rem;
  background: var(--valora-surface-container-low);
  border-radius: var(--valora-radius-md);
  border: 1px solid var(--valora-border-subtle);
}

.valora-form-advanced summary::-webkit-details-marker {
  display: none;
}

.valora-result-total {
  margin-top: 1rem;
  padding: 1.25rem;
  background: var(--valora-surface-container-low);
  border-radius: var(--valora-radius-md);
  text-align: center;
  border: 1px solid var(--valora-border-subtle);
}

.valora-result-total-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--valora-text-muted);
  display: block;
  margin-bottom: 0.5rem;
}

.valora-result-total-value {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--valora-primary-container);
}

.valora-share-actions {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  border-radius: var(--valora-radius-md);
  background: var(--valora-surface);
  border: 1px solid var(--valora-border);
}

.valora-share-buttons {
  flex-wrap: wrap;
}

.valora-share-buttons .valora-btn {
  flex: 1 1 auto;
  min-width: 9rem;
}

.valora-share-feedback {
  margin: 0.75rem 0 0;
}

.valora-share-whatsapp:hover {
  border-color: #25d366;
  color: #128c7e;
}

.valora-nav-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.25rem;
  height: 1.25rem;
  margin-left: 0.35rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  background: var(--valora-primary);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1;
}

.valora-local-panel-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.valora-local-panel-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  padding: 2rem 1rem;
}

.valora-local-panel-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.valora-local-panel-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--valora-border);
  border-radius: var(--valora-radius-md);
  background: var(--valora-surface);
}

.valora-local-panel-item-main {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 12rem;
  flex: 1;
}

.valora-local-panel-item-title {
  font-size: 1rem;
}

.valora-local-panel-item-net {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--valora-primary);
}

.valora-local-panel-item-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.valora-btn-sm {
  padding: 0.45rem 0.85rem;
  font-size: 0.875rem;
}

.valora-embed-body {
  margin: 0;
  background: var(--valora-bg);
}

.valora-embed-main {
  padding: 1rem;
}

.valora-embed-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem 1rem;
  font-size: 0.75rem;
  color: var(--valora-muted);
  border-top: 1px solid var(--valora-border);
}

.valora-embed-footer a {
  color: var(--valora-primary);
  font-weight: 600;
  text-decoration: none;
}

.valora-embed-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.valora-embed-header {
  margin-bottom: 0.5rem;
}

.valora-embed-result .valora-result-panel {
  margin-top: 0;
}

.valora-widget-code {
  width: 100%;
  min-height: 8rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.8125rem;
  line-height: 1.45;
  resize: vertical;
}

.valora-result-view-toggle {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.valora-result-view-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgb(255 255 255 / 25%);
  border-radius: var(--valora-radius-md);
  background: rgb(255 255 255 / 8%);
  color: inherit;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
}

.valora-result-view-btn[aria-selected="true"] {
  background: rgb(255 255 255 / 18%);
  border-color: rgb(255 255 255 / 45%);
}

.valora-simple-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.valora-simple-step {
  padding: 0.75rem 0.875rem;
  border-radius: var(--valora-radius-md);
  background: rgb(255 255 255 / 8%);
  border: 1px solid rgb(255 255 255 / 15%);
}

.valora-simple-step-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.375rem;
}

.valora-simple-step-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  background: rgb(255 255 255 / 15%);
  font-size: 0.75rem;
  font-weight: 700;
}

.valora-simple-step-title {
  flex: 1 1 auto;
  font-size: 0.9375rem;
}

.valora-simple-step-highlight {
  font-size: 0.875rem;
  font-weight: 700;
  opacity: 0.95;
}

.valora-simple-step-body {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  opacity: 0.92;
}

.valora-related-tools {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  border-radius: var(--valora-radius-md);
  background: var(--valora-surface);
  border: 1px solid var(--valora-border);
}

.valora-related-tools-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.625rem;
}

.valora-related-tool-link {
  display: block;
  padding: 0.75rem 0.875rem;
  border-radius: var(--valora-radius-md);
  border: 1px solid var(--valora-border);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.valora-related-tool-link:hover {
  border-color: var(--valora-primary);
  background: var(--valora-surface-variant);
}

.valora-related-tool-name {
  display: block;
  font-weight: 600;
  color: var(--valora-primary);
  margin-bottom: 0.25rem;
}

.valora-related-tool-teaser {
  display: block;
  font-size: 0.8125rem;
  color: var(--valora-on-surface-variant);
  line-height: 1.45;
}

.valora-clt-pj-columns {
  display: grid;
  gap: 1rem;
}

@media (min-width: 480px) {
  .valora-clt-pj-columns {
    grid-template-columns: 1fr 1fr;
  }
}

.valora-clt-pj-heading {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.85;
  margin: 0 0 0.5rem;
}

.valora-clt-pj-total {
  margin-top: 0.75rem;
  padding: 0.875rem;
}

/* Calculator layout */
.valora-calc-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 992px) {
  .valora-calc-layout {
    grid-template-columns: 7fr 5fr;
  }

  .valora-calc-sidebar {
    position: sticky;
    top: 5.5rem;
  }
}

/* Sidebar categories */
.valora-page-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .valora-page-layout {
    grid-template-columns: 16rem 1fr;
  }
}

.valora-sidebar {
  background: var(--valora-surface-container-lowest);
  border-radius: var(--valora-radius-xl);
  padding: 1rem;
  box-shadow: var(--valora-shadow);
}

@media (min-width: 768px) {
  .valora-sidebar { position: sticky; top: 5.5rem; }
}

.valora-sidebar-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--valora-primary);
  margin: 0 0 0.75rem;
  padding: 0 0.5rem;
}

.valora-filter-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--valora-on-surface-variant);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s;
  margin-bottom: 0.25rem;
}

.valora-filter-btn:hover { background: var(--valora-secondary-container); }

.valora-filter-btn.active {
  background: var(--valora-primary-container);
  color: var(--valora-on-primary-container);
}

/* Breadcrumb */
.valora-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--valora-on-surface-variant);
  margin-bottom: 1.5rem;
  list-style: none;
  padding: 0;
}

.valora-breadcrumb a {
  color: var(--valora-on-surface-variant);
  text-decoration: none;
}

.valora-breadcrumb a:hover { color: var(--valora-primary); }

.valora-breadcrumb .active {
  color: var(--valora-primary);
  font-weight: 600;
}

/* Disclaimer & alerts */
.valora-disclaimer {
  background: var(--valora-warning-bg);
  border: 1px solid var(--valora-warning-border);
  border-radius: var(--valora-radius-md);
  padding: 1rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: 0.875rem;
  color: var(--valora-warning-text);
}

.valora-disclaimer .material-symbols-outlined { color: #d97706; flex-shrink: 0; }

.valora-alert-success {
  background: #d1fae5;
  border: 1px solid #6ee7b7;
  color: #065f46;
  padding: 1rem;
  border-radius: var(--valora-radius-md);
  margin-bottom: 1rem;
}

/* FAQ */
.valora-faq details {
  background: var(--valora-surface-container-lowest);
  border: 1px solid var(--valora-outline-variant);
  border-radius: var(--valora-radius-md);
  margin-bottom: 0.5rem;
  overflow: hidden;
}

.valora-faq summary {
  padding: 1rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.valora-faq summary::-webkit-details-marker { display: none; }

.valora-faq details[open] summary .material-symbols-outlined {
  transform: rotate(180deg);
}

.valora-faq .faq-body {
  padding: 0 1rem 1rem;
  font-size: 0.875rem;
  color: var(--valora-on-surface-variant);
  border-top: 1px solid rgb(188 201 198 / 30%);
  margin-top: 0;
  padding-top: 0.75rem;
}

/* Ad slot — altura reservada para reduzir CLS; ver docs/ADSENSE_COMPLIANCE.md */
.ad-slot-wrap {
  margin: 1.5rem 0;
}

.ad-slot-label {
  display: block;
  text-align: right;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--valora-outline);
  margin-bottom: 0.5rem;
}

.ad-slot {
  background: var(--valora-surface-container-low);
  border: 1px dashed var(--valora-outline-variant) !important;
  border-radius: var(--valora-radius-md);
  box-sizing: border-box;
  min-height: 120px;
  height: 120px;
  contain: layout style paint;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--valora-outline);
}

.ad-slot--live {
  display: block;
  height: auto;
  min-height: 120px;
  padding: 0;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: normal;
  text-transform: none;
  color: inherit;
}

.valora-cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--valora-surface-container-highest);
  border-top: 1px solid var(--valora-outline-variant);
  box-shadow: 0 -4px 24px rgb(0 0 0 / 8%);
}

.valora-cookie-consent[hidden] {
  display: none !important;
}

.valora-btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* Blog */
.valora-blog-card {
  background: var(--valora-surface-container-lowest);
  border: 1px solid rgb(188 201 198 / 20%);
  border-radius: var(--valora-radius-xl);
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: var(--valora-shadow);
  transition: box-shadow 0.2s;
}

.valora-blog-card:hover { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 10%); }

.valora-blog-card a {
  color: var(--valora-primary);
  font-weight: 600;
  text-decoration: none;
}

.valora-blog-card a:hover { text-decoration: underline; }

/* Utilities */
.valora-section { margin-bottom: 3rem; }
.valora-stack-md > * + * { margin-top: 1.5rem; }
.valora-stack-lg > * + * { margin-top: 2rem; }
.valora-gap-buttons { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.text-danger { color: var(--valora-error, #ba1a1a); font-size: 0.875rem; }
.valora-error { --valora-error: #ba1a1a; }

/* Article body */
.valora-article-body h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--valora-primary);
  margin: 1.5rem 0 0.75rem;
}

.valora-article-body p {
  margin: 0 0 1rem;
  line-height: 1.7;
  color: var(--valora-on-surface-variant);
}

.valora-article-body ul {
  margin: 0 0 1rem;
  padding-left: 1.5rem;
  color: var(--valora-on-surface-variant);
}

.valora-article-body li { margin-bottom: 0.5rem; }

.valora-article-body a {
  color: var(--valora-primary);
  font-weight: 600;
  text-decoration: underline;
}

.valora-article-body a:hover { color: var(--valora-primary-container); }

/* Bootstrap overrides when still loaded */
.form-control:focus {
  border-color: var(--valora-primary);
  box-shadow: 0 0 0 2px rgb(0 104 95 / 15%);
}

/* —— Stitch fidelity: shell + home (Sprint 21) —— */

.valora-app.valora-has-bottom-nav {
  padding-bottom: 4.5rem;
}

@media (min-width: 992px) {
  .valora-app.valora-has-bottom-nav { padding-bottom: 0; }
}

.valora-header--stitch {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgb(255 255 255 / 90%);
}

.valora-page-shell {
  padding-top: 4.5rem;
}

.valora-main {
  max-width: var(--valora-container-max);
  margin: 0 auto;
  padding: 0 1rem 2rem;
}

@media (min-width: 768px) {
  .valora-main { padding: 0 2rem 2rem; }
}

.valora-brand-mark {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  line-height: 0;
}

.valora-brand-mark--footer { justify-content: center; margin-bottom: 0.5rem; }

.valora-brand-mark--compact .valora-brand-logo--icon { height: 1.5rem; width: 1.5rem; }

.valora-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0.5rem 1rem;
  background: var(--valora-surface-container-lowest);
  border-top: 1px solid var(--valora-border-subtle);
}

.valora-bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.125rem;
  text-decoration: none;
  color: var(--valora-on-surface-variant);
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  transition: transform 0.15s, opacity 0.15s;
}

.valora-bottom-nav-item .material-symbols-outlined { font-size: 1.375rem; }

.valora-bottom-nav-item--active {
  background: var(--valora-primary-container);
  color: var(--valora-on-primary);
}

@media (min-width: 992px) {
  .valora-bottom-nav { display: none !important; }
}

.valora-footer--stitch {
  background: var(--valora-surface-container-low);
  border-top: 1px solid var(--valora-border-subtle);
  padding: 2rem 0;
  text-align: center;
}

.valora-footer--stitch .valora-footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.valora-footer-tagline {
  margin: 0;
  font-size: 0.875rem;
  color: var(--valora-text-muted);
  max-width: 28rem;
}

.valora-footer-copy {
  margin: 0;
  font-size: 0.75rem;
  color: var(--valora-outline);
}

/* Home Stitch mobile_1 */
.valora-stitch-home { max-width: 28rem; margin: 0 auto; }

@media (min-width: 992px) {
  .valora-stitch-home { max-width: none; }
}

.valora-stitch-hero { text-align: center; margin-bottom: 2rem; }

.valora-stitch-pill {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgb(0 78 71 / 10%);
  color: var(--valora-primary);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.valora-stitch-hero-title {
  font-size: clamp(1.75rem, 6vw, 2.25rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--valora-on-surface);
  margin: 0 0 1rem;
}

.valora-stitch-hero-lead {
  font-size: 1rem;
  color: var(--valora-text-muted);
  max-width: 20rem;
  margin: 0 auto 2rem;
  line-height: 1.5;
}

.valora-stitch-hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.valora-stitch-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: var(--valora-radius-xl);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.15s;
  white-space: nowrap;
}

.valora-stitch-btn:active { transform: scale(0.98); }

.valora-stitch-btn--primary {
  background: var(--valora-primary);
  color: var(--valora-on-primary);
  box-shadow: var(--valora-shadow);
}

.valora-stitch-btn--outline {
  border: 2px solid var(--valora-primary);
  color: var(--valora-primary);
  background: transparent;
}

.valora-stitch-search {
  position: relative;
  margin-bottom: 2rem;
}

.valora-stitch-search-icon {
  position: absolute;
  left: 1.125rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--valora-primary-container);
  pointer-events: none;
  font-size: 1.375rem;
}

.valora-stitch-search-input {
  width: 100%;
  height: 3.5rem;
  padding: 0 1.25rem 0 3.25rem;
  border: 1px solid var(--valora-border-subtle);
  border-radius: 9999px;
  background: var(--valora-surface-white);
  font-size: 1rem;
  font-family: inherit;
  box-shadow: 0 1px 3px rgb(0 0 0 / 6%), 0 1px 2px rgb(0 0 0 / 4%);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.valora-stitch-search-input::placeholder {
  color: var(--valora-outline);
}

.valora-stitch-search-input:hover {
  border-color: var(--valora-outline-variant);
}

.valora-stitch-search-input:focus {
  outline: none;
  border-color: var(--valora-primary-container);
  box-shadow: 0 0 0 3px rgb(0 104 95 / 12%), 0 2px 8px rgb(0 0 0 / 6%);
}

.valora-stitch-section { margin-bottom: 2rem; }

.valora-stitch-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1rem;
}

.valora-stitch-section-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  color: var(--valora-on-surface);
}

.valora-stitch-link {
  color: var(--valora-secondary);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
}

.valora-stitch-bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.valora-stitch-bento-card {
  display: block;
  padding: 1rem;
  background: var(--valora-surface);
  border: 1px solid var(--valora-border-subtle);
  border-radius: var(--valora-radius-xl);
  text-decoration: none;
  color: inherit;
}

.valora-stitch-bento-card--trabalhista { border-left: 4px solid var(--valora-trabalhista-blue); }
.valora-stitch-bento-card--fiscal { border-left: 4px solid var(--valora-fiscal-purple); }
.valora-stitch-bento-card--financeiro { border-left: 4px solid var(--valora-financeiro-teal); }
.valora-stitch-bento-card--warning { border-left: 4px solid var(--valora-warning-border); }

.valora-bento-icon--trabalhista { color: var(--valora-trabalhista-blue); }
.valora-bento-icon--fiscal { color: var(--valora-fiscal-purple); }
.valora-bento-icon--financeiro { color: var(--valora-financeiro-teal); }
.valora-bento-icon--warning { color: var(--valora-warning-border); }

.valora-stitch-bento-icon { font-size: 2rem; }

.valora-stitch-bento-title {
  font-size: 0.9375rem;
  font-weight: 600;
  margin: 0.75rem 0 0.25rem;
  color: var(--valora-on-surface);
}

.valora-stitch-bento-category {
  margin: 0;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--valora-text-muted);
}

.valora-stitch-ad-slot {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 6.25rem;
  margin-bottom: 2rem;
  background: var(--valora-surface-container-low);
  border: 1px dashed var(--valora-border-subtle);
  border-radius: var(--valora-radius-lg);
  overflow: hidden;
}

.valora-stitch-ad-label {
  position: absolute;
  top: 0.25rem;
  right: 0.5rem;
  font-size: 0.625rem;
  text-transform: uppercase;
  color: var(--valora-outline-variant);
}

.valora-stitch-ad-text {
  margin: 0;
  font-size: 0.75rem;
  color: var(--valora-outline-variant);
}

.valora-stitch-teaser {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-radius: 1rem;
  background: var(--valora-primary-container);
  color: var(--valora-on-primary-container);
}

.valora-stitch-teaser-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.valora-stitch-teaser-text {
  margin: 0 0 1rem;
  font-size: 1rem;
  opacity: 0.9;
  line-height: 1.5;
}

.valora-stitch-teaser-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--valora-surface);
  color: var(--valora-primary);
  border-radius: var(--valora-radius-md);
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  box-shadow: var(--valora-shadow);
}

.valora-stitch-teaser-decoration {
  position: absolute;
  right: -2.5rem;
  bottom: -2.5rem;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: rgb(147 228 216 / 10%);
}

.valora-stitch-disclaimer {
  padding: 1rem;
  background: var(--valora-surface);
  border: 1px dashed var(--valora-border-subtle);
  border-radius: var(--valora-radius-lg);
  text-align: center;
}

.valora-stitch-disclaimer p {
  margin: 0;
  font-size: 0.75rem;
  color: var(--valora-text-muted);
  line-height: 1.5;
}

/* Home desktop (Stitch home_meu_valor_l_quido_desktop) */
@media (min-width: 992px) {
  .valora-stitch-home { max-width: var(--valora-container-max); }

  .valora-stitch-hero--split {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2rem;
    align-items: center;
    text-align: left;
    margin-bottom: 2.5rem;
  }

  .valora-stitch-hero-lead { margin-left: 0; max-width: 36rem; }

  .valora-stitch-hero-actions {
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .valora-stitch-hero-actions .valora-stitch-btn {
    flex: 0 0 auto;
    padding-inline: 1.75rem;
  }

  .valora-stitch-search { max-width: 32rem; }

  .valora-stitch-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: var(--valora-text-muted);
  }

  .valora-stitch-trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
  }

  .valora-stitch-trust-row .material-symbols-outlined { font-size: 1.125rem; color: var(--valora-primary-container); }

  .valora-stitch-hero-visual-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-height: 22rem;
    border-radius: var(--valora-radius-xl);
    overflow: hidden;
    box-shadow: var(--valora-shadow);
    background: var(--valora-surface-container-low);
  }

  .valora-stitch-hero-visual {
    display: block;
    width: 100%;
    height: 100%;
    max-height: 22rem;
    object-fit: cover;
    object-position: center;
  }

  .valora-stitch-bento {
    grid-template-columns: repeat(4, 1fr);
  }

  .valora-stitch-articles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

.valora-stitch-hero-visual-wrap { display: none; }

@media (min-width: 992px) {
  .valora-stitch-hero-visual-wrap { display: flex; }
}

.valora-stitch-trust-row { display: none; }

.valora-stitch-article-card {
  display: block;
  padding: 1rem;
  background: var(--valora-surface);
  border: 1px solid var(--valora-border-subtle);
  border-radius: var(--valora-radius-lg);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s;
}

.valora-stitch-article-card:hover { border-color: var(--valora-primary-container); }

.valora-stitch-article-title {
  font-size: 0.9375rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--valora-on-surface);
}

.valora-stitch-article-summary {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--valora-text-muted);
  line-height: 1.45;
}

.valora-stitch-pill--trabalhista {
  background: rgb(19 81 180 / 10%);
  color: var(--valora-trabalhista-blue);
}

/* Central calculadoras (Stitch central_de_calculadoras) */
.valora-stitch-calc-hub { max-width: var(--valora-container-max); margin: 0 auto; }

.valora-stitch-calc-hero {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .valora-stitch-calc-hero {
    flex-direction: row;
    align-items: center;
    text-align: left;
    padding: 1.5rem 0;
  }
}

.valora-stitch-calc-hero-copy { flex: 1; }

.valora-stitch-calc-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 1rem;
  color: var(--valora-on-surface);
}

.valora-stitch-calc-lead {
  margin: 0;
  font-size: 1.125rem;
  color: var(--valora-text-muted);
  line-height: 1.55;
  max-width: 40rem;
}

.valora-stitch-calc-hero-visual {
  display: none;
  width: 18rem;
  height: 12rem;
  border: 1px solid var(--valora-border-subtle);
  border-radius: var(--valora-radius-xl);
  background: linear-gradient(135deg, #e8f5f3 0%, var(--valora-surface) 100%);
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.valora-stitch-calc-hero-visual .material-symbols-outlined {
  font-size: 4rem;
  color: var(--valora-primary-container);
  opacity: 0.35;
}

@media (min-width: 1024px) {
  .valora-stitch-calc-hero-visual { display: flex; }
}

.valora-stitch-calc-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.valora-stitch-filter-chip {
  display: inline-flex;
  padding: 0.5rem 1rem;
  border: 1px solid var(--valora-border-subtle);
  border-radius: 9999px;
  background: var(--valora-surface);
  color: var(--valora-on-surface-variant);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
}

.valora-stitch-filter-chip.active,
.valora-stitch-filter-chip:hover {
  border-color: var(--valora-primary-container);
  color: var(--valora-primary-container);
  background: rgb(0 104 95 / 6%);
}

.valora-stitch-calc-query {
  margin: 0 0 1.5rem;
  font-size: 0.9375rem;
  color: var(--valora-text-muted);
}

.valora-stitch-calc-bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .valora-stitch-calc-bento { grid-template-columns: repeat(12, 1fr); }
}

.valora-stitch-calc-featured {
  position: relative;
  background: var(--valora-surface);
  border: 1px solid var(--valora-border-subtle);
  border-radius: var(--valora-radius-xl);
  padding: 1.5rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .valora-stitch-calc-featured { grid-column: span 8; }
}

.valora-stitch-calc-featured-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--valora-trabalhista-blue);
}

.valora-stitch-calc-featured-body {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.valora-stitch-calc-featured-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.valora-stitch-calc-featured-head .material-symbols-outlined { font-size: 1.75rem; }

.valora-stitch-calc-badge-popular {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.125rem 0.5rem;
  border-radius: 0.25rem;
  background: rgb(245 158 11 / 20%);
  color: var(--valora-warning-border);
}

.valora-stitch-calc-featured-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 1rem;
}

.valora-stitch-calc-featured-summary {
  margin: 0 0 1.5rem;
  color: var(--valora-text-muted);
  line-height: 1.5;
}

.valora-stitch-calc-checks {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .valora-stitch-calc-checks { grid-template-columns: repeat(4, 1fr); }
}

.valora-stitch-calc-checks li {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: var(--valora-on-surface-variant);
}

.valora-stitch-calc-checks .material-symbols-outlined { font-size: 1rem; color: var(--valora-primary-container); }

.valora-stitch-btn--inline {
  display: inline-flex;
  width: auto;
  min-height: 3rem;
  padding: 0 1.5rem;
  font-size: 0.9375rem;
}

.valora-stitch-calc-featured-watermark {
  display: none;
  font-size: 10rem;
  opacity: 0.08;
  color: var(--valora-primary);
  align-self: center;
}

@media (min-width: 768px) {
  .valora-stitch-calc-featured-watermark { display: block; }
}

.valora-stitch-calc-ad {
  background: var(--valora-surface-container-low);
  border: 1px dashed var(--valora-outline-variant);
  border-radius: var(--valora-radius-xl);
  padding: 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  .valora-stitch-calc-ad { grid-column: span 4; min-height: 250px; }
}

.valora-stitch-calc-ad-body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 8rem;
  background: var(--valora-surface-variant);
  border-radius: var(--valora-radius-md);
  margin: 0.5rem 0;
  color: var(--valora-outline);
}

.valora-stitch-calc-ad-body .material-symbols-outlined { font-size: 2.5rem; }

.valora-stitch-calc-ad-note {
  margin: 0;
  font-size: 0.75rem;
  color: var(--valora-text-muted);
}

.valora-stitch-hub-card {
  display: flex;
  flex-direction: column;
  background: var(--valora-surface);
  border: 1px solid var(--valora-border-subtle);
  border-radius: var(--valora-radius-xl);
  padding: 1.25rem;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s;
}

.valora-stitch-hub-card:hover { border-color: var(--valora-primary-container); }

@media (min-width: 768px) {
  .valora-stitch-calc-bento > .valora-stitch-hub-card { grid-column: span 4; }
}

.valora-stitch-hub-card-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.valora-stitch-hub-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--valora-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.valora-hub-icon-bg--trabalhista { background: rgb(19 81 180 / 10%); color: var(--valora-trabalhista-blue); }
.valora-hub-icon-bg--fiscal { background: rgb(107 33 168 / 10%); color: var(--valora-fiscal-purple); }
.valora-hub-icon-bg--financeiro { background: rgb(0 104 95 / 10%); color: var(--valora-financeiro-teal); }
.valora-hub-icon-bg--warning { background: rgb(245 158 11 / 10%); color: var(--valora-warning-border); }

.valora-stitch-hub-card-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

.valora-stitch-hub-card-summary {
  flex: 1;
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  color: var(--valora-text-muted);
  line-height: 1.45;
}

.valora-stitch-hub-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.75rem;
  border-top: 1px solid var(--valora-border-subtle);
}

.valora-stitch-hub-card-tag {
  font-size: 0.75rem;
  font-weight: 600;
}

.valora-stitch-hub-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.125rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--valora-primary);
}

.valora-stitch-hub-card-link .material-symbols-outlined { font-size: 1.125rem; }

.valora-stitch-calc-suggest {
  background: var(--valora-primary);
  color: var(--valora-on-primary);
  border-radius: var(--valora-radius-xl);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .valora-stitch-calc-suggest {
    grid-column: span 8;
    flex-direction: row;
    align-items: center;
  }
}

.valora-stitch-calc-suggest-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.valora-stitch-calc-suggest-text {
  margin: 0;
  opacity: 0.9;
  line-height: 1.5;
}

.valora-stitch-calc-suggest-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--valora-surface);
  color: var(--valora-primary);
  border-radius: var(--valora-radius-md);
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  white-space: nowrap;
}

.valora-stitch-calc-disclaimer {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  margin-top: 2rem;
  padding: 1rem;
  background: var(--valora-surface);
  border: 1px dashed var(--valora-border-subtle);
  border-radius: var(--valora-radius-lg);
}

.valora-stitch-calc-disclaimer p {
  margin: 0;
  font-size: 0.75rem;
  color: var(--valora-text-muted);
  line-height: 1.55;
}

.valora-stitch-calc-disclaimer .material-symbols-outlined {
  font-size: 1.125rem;
  color: var(--valora-on-surface-variant);
  flex-shrink: 0;
}

.valora-stitch-calc-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .valora-stitch-calc-list { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 992px) {
  .valora-stitch-calc-list { grid-template-columns: repeat(3, 1fr); }
}

/* Calculadora detail (Stitch calculadora_sal_rio_l_quido — Sprint 23) */
.valora-stitch-calc-detail {
  max-width: var(--valora-container-max);
  margin: 0 auto;
}

.valora-stitch-calc-detail-hero {
  margin: 0 -1rem 1.25rem;
  padding: 1rem 1rem 0;
  background: linear-gradient(180deg, var(--valora-primary) 0%, var(--valora-primary-container) 100%);
  color: var(--valora-on-primary);
  border-radius: 0 0 1.25rem 1.25rem;
}

@media (min-width: 768px) {
  .valora-stitch-calc-detail-hero { margin: 0 0 1.5rem; border-radius: var(--valora-radius-xl); }
}

.valora-stitch-calc-detail-hero-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.valora-stitch-calc-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: rgb(255 255 255 / 12%);
  color: var(--valora-on-primary);
  text-decoration: none;
  flex-shrink: 0;
}

.valora-stitch-calc-back .material-symbols-outlined { font-size: 1.25rem; }

.valora-stitch-calc-detail-head { min-width: 0; }

.valora-stitch-calc-detail-title {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.valora-stitch-calc-detail-badge {
  display: inline-block;
  padding: 0.2rem 0.625rem;
  border-radius: 9999px;
  background: rgb(147 228 216 / 18%);
  color: var(--valora-on-primary-container);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.valora-stitch-calc-progress {
  height: 0.25rem;
  background: rgb(255 255 255 / 15%);
  border-radius: 9999px;
  overflow: hidden;
}

.valora-stitch-calc-progress-bar {
  display: block;
  height: 100%;
  width: 66%;
  background: var(--valora-on-primary-container);
  border-radius: inherit;
}

.valora-stitch-calc-detail-breadcrumb {
  display: none;
  margin-bottom: 1rem;
}

@media (min-width: 992px) {
  .valora-stitch-calc-detail-breadcrumb { display: block; }
}

.valora-stitch-calc-detail-lead {
  display: none;
  margin: 0 0 1.5rem;
  font-size: 1.0625rem;
  color: var(--valora-text-muted);
  line-height: 1.5;
}

@media (min-width: 992px) {
  .valora-stitch-calc-detail-lead { display: block; }
}

.valora-stitch-calc-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: start;
}

@media (min-width: 992px) {
  .valora-stitch-calc-detail-grid {
    grid-template-columns: 7fr 5fr;
    gap: 1.5rem;
  }

  .valora-stitch-calc-estimate {
    position: sticky;
    top: 5.5rem;
  }
}

.valora-stitch-calc-form {
  border: 1px solid var(--valora-border-subtle);
  border-radius: var(--valora-radius-xl);
  box-shadow: var(--valora-shadow);
}

.valora-stitch-calc-form-title {
  margin: 0 0 1rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--valora-on-surface);
}

.valora-stitch-calc-form .valora-input-prefix .valora-prefix {
  left: 0.75rem;
  padding: 0.25rem 0.5rem;
  background: var(--valora-surface-container-low);
  border-radius: var(--valora-radius-sm);
  transform: translateY(-50%);
  font-size: 0.8125rem;
}

.valora-stitch-calc-form .valora-input-prefix .valora-input {
  padding-left: 3.5rem;
}

.valora-stitch-calc-submit {
  width: 100%;
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.9375rem;
}

.valora-stitch-calc-footer-hint {
  margin: 0;
  padding: 0 0.25rem;
  text-align: center;
  font-size: 0.6875rem;
  line-height: 1.45;
  color: var(--valora-text-muted);
}

.valora-stitch-calc-edu { margin-top: 0.5rem; }

.valora-stitch-calc-estimate-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--valora-on-primary-container);
}

.valora-stitch-calc-estimate .valora-result-panel,
.valora-stitch-calc-estimate-placeholder {
  background: linear-gradient(160deg, var(--valora-primary-container) 0%, var(--valora-primary) 100%);
  color: var(--valora-on-primary);
  border: none;
  border-radius: var(--valora-radius-xl);
  padding: 1.25rem;
  box-shadow: var(--valora-shadow-result);
}

.valora-stitch-calc-estimate--empty .valora-stitch-calc-estimate-placeholder {
  opacity: 0.92;
}

.valora-stitch-calc-estimate .valora-result-view-toggle {
  background: rgb(0 0 0 / 12%);
  border-radius: var(--valora-radius-md);
  padding: 0.25rem;
  margin-bottom: 0.75rem;
}

.valora-stitch-calc-estimate .valora-result-view-btn {
  color: rgb(255 255 255 / 80%);
}

.valora-stitch-calc-estimate .valora-result-view-btn[aria-selected="true"] {
  background: rgb(255 255 255 / 18%);
  color: var(--valora-on-primary);
}

.valora-stitch-calc-estimate .valora-result-view-panel h2.valora-h3 {
  display: none;
}

.valora-stitch-calc-estimate .valora-result-line {
  border-bottom-color: rgb(255 255 255 / 12%);
  color: rgb(255 255 255 / 88%);
  font-size: 0.875rem;
}

.valora-stitch-calc-estimate .valora-result-line strong {
  color: var(--valora-on-primary);
}

.valora-stitch-calc-estimate .valora-result-line.discount {
  color: rgb(255 255 255 / 70%);
}

.valora-stitch-calc-estimate .valora-result-total {
  margin-top: 0.75rem;
  padding: 1rem;
  background: rgb(0 0 0 / 18%);
  border: none;
  border-radius: var(--valora-radius-md);
}

.valora-stitch-calc-estimate .valora-result-total-label {
  color: var(--valora-on-primary-container);
  letter-spacing: 0.08em;
}

.valora-stitch-calc-estimate .valora-result-total-value {
  color: var(--valora-on-primary);
  font-size: clamp(1.75rem, 8vw, 2.25rem);
}

.valora-stitch-calc-estimate .valora-text-sm {
  color: rgb(255 255 255 / 78%);
}

.valora-stitch-calc-estimate-disclaimer {
  margin: 0.75rem 0 0;
  font-size: 0.6875rem;
  line-height: 1.45;
  color: rgb(255 255 255 / 65%);
}

.valora-stitch-calc-estimate .valora-related-tools {
  background: var(--valora-surface);
  border: 1px solid var(--valora-border-subtle);
  border-radius: var(--valora-radius-lg);
  padding: 1rem;
  color: var(--valora-on-surface);
}

.valora-stitch-calc-faq {
  margin-top: 2rem;
  padding-top: 1rem;
}

/* Comparador CLT x PJ (Stitch comparador_clt_x_pj — Sprint 24) */
.valora-stitch-cltpj {
  max-width: var(--valora-container-max);
  margin: 0 auto;
}

.valora-pj-wizard-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.valora-pj-wizard-step {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--valora-text-muted);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--valora-border-subtle);
  background: var(--valora-surface-container-low);
}

.valora-pj-wizard-step--active {
  color: var(--valora-primary);
  border-color: var(--valora-primary);
  background: color-mix(in srgb, var(--valora-primary) 8%, transparent);
}

.valora-pj-wizard-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--valora-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.valora-stitch-cltpj-input-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.valora-pj-wizard-submit {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.valora-stitch-cltpj-breadcrumb {
  display: none;
  margin-bottom: 1rem;
}

@media (min-width: 992px) {
  .valora-stitch-cltpj-breadcrumb { display: block; }
}

.valora-stitch-cltpj-title {
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 5vw, 1.75rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--valora-on-surface);
}

.valora-stitch-cltpj-disclaimer {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1rem;
  margin-bottom: 1.25rem;
  background: var(--valora-warning-bg);
  border: 1px dashed var(--valora-warning-border);
  border-radius: var(--valora-radius-lg);
}

.valora-stitch-cltpj-disclaimer .material-symbols-outlined {
  color: var(--valora-warning-border);
  flex-shrink: 0;
}

.valora-stitch-cltpj-disclaimer p {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--valora-on-surface);
}

.valora-stitch-cltpj-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: start;
}

@media (min-width: 992px) {
  .valora-stitch-cltpj-layout {
    grid-template-columns: 7fr 5fr;
    gap: 1.5rem;
  }

  .valora-stitch-cltpj-aside {
    position: sticky;
    top: 5.5rem;
  }
}

.valora-stitch-cltpj-input-card {
  padding: 1rem;
  background: var(--valora-surface);
  border: 1px solid var(--valora-border-subtle);
  border-radius: var(--valora-radius-lg);
  box-shadow: var(--valora-shadow);
}

.valora-stitch-cltpj-input-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.valora-stitch-cltpj-input-head h2 {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 700;
}

.valora-stitch-cltpj-input-card--clt .valora-stitch-cltpj-input-head {
  color: var(--valora-trabalhista-blue);
}

.valora-stitch-cltpj-input-card--clt .valora-stitch-cltpj-input-head .material-symbols-outlined {
  color: var(--valora-trabalhista-blue);
}

.valora-stitch-cltpj-input-card--pj .valora-stitch-cltpj-input-head {
  color: var(--valora-fiscal-purple);
}

.valora-stitch-cltpj-input-card--pj .valora-stitch-cltpj-input-head .material-symbols-outlined {
  color: var(--valora-fiscal-purple);
}

.valora-stitch-cltpj-submit {
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.9375rem;
}

.valora-stitch-cltpj-verdict {
  position: relative;
  overflow: hidden;
  padding: 1.25rem;
  border-radius: var(--valora-radius-lg);
  border: 1px solid var(--valora-border-subtle);
  background: var(--valora-surface-container-low);
  box-shadow: var(--valora-shadow-result);
}

.valora-stitch-cltpj-verdict::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0.25rem;
  background: var(--valora-fiscal-purple);
}

.valora-stitch-cltpj-verdict--clt::before { background: var(--valora-trabalhista-blue); }
.valora-stitch-cltpj-verdict--tie::before { background: var(--valora-primary-container); }

.valora-stitch-cltpj-verdict-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
}

.valora-stitch-cltpj-verdict-badge {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0.2rem 0.5rem;
  border-radius: var(--valora-radius-sm);
  background: var(--valora-fiscal-purple);
  color: var(--valora-on-primary);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.valora-stitch-cltpj-verdict--clt .valora-stitch-cltpj-verdict-badge {
  background: var(--valora-trabalhista-blue);
}

.valora-stitch-cltpj-verdict-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--valora-on-surface);
}

.valora-stitch-cltpj-verdict-icon {
  font-size: 2.25rem;
  color: var(--valora-fiscal-purple);
}

.valora-stitch-cltpj-verdict--clt .valora-stitch-cltpj-verdict-icon {
  color: var(--valora-trabalhista-blue);
}

.valora-stitch-cltpj-verdict-diff {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--valora-outline-variant);
}

.valora-stitch-cltpj-verdict-diff-label {
  margin: 0 0 0.25rem;
  font-size: 0.75rem;
  color: var(--valora-text-muted);
}

.valora-stitch-cltpj-verdict-diff-value {
  margin: 0;
  font-size: clamp(1.5rem, 6vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--valora-primary-container);
}

.valora-stitch-cltpj-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.valora-stitch-cltpj-compare-card {
  padding: 1rem;
  background: var(--valora-surface);
  border: 1px solid var(--valora-border-subtle);
  border-radius: var(--valora-radius-lg);
  box-shadow: var(--valora-shadow);
}

.valora-stitch-cltpj-compare-card--clt {
  border-left: 4px solid var(--valora-trabalhista-blue);
}

.valora-stitch-cltpj-compare-card--pj {
  border-left: 4px solid var(--valora-fiscal-purple);
}

.valora-stitch-cltpj-compare-label {
  margin: 0 0 0.25rem;
  font-size: 0.75rem;
  color: var(--valora-text-muted);
}

.valora-stitch-cltpj-compare-value {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}

.valora-stitch-cltpj-compare-card--clt .valora-stitch-cltpj-compare-value {
  color: var(--valora-trabalhista-blue);
}

.valora-stitch-cltpj-compare-card--pj .valora-stitch-cltpj-compare-value {
  color: var(--valora-fiscal-purple);
}

.valora-stitch-cltpj-actions {
  display: flex;
  gap: 0.75rem;
}

.valora-stitch-cltpj-action-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  min-height: 2.75rem;
  padding: 0 0.75rem;
  border: 1px solid var(--valora-primary);
  border-radius: var(--valora-radius-lg);
  background: transparent;
  color: var(--valora-primary);
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.valora-stitch-cltpj-action-btn .material-symbols-outlined { font-size: 1.125rem; }

.valora-stitch-cltpj-accordion {
  background: var(--valora-surface);
  border: 1px solid var(--valora-border-subtle);
  border-radius: var(--valora-radius-lg);
  overflow: hidden;
}

.valora-stitch-cltpj-accordion summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.875rem;
  list-style: none;
}

.valora-stitch-cltpj-accordion summary::-webkit-details-marker { display: none; }

.valora-stitch-cltpj-accordion[open] summary .material-symbols-outlined {
  transform: rotate(180deg);
}

.valora-stitch-cltpj-accordion-body {
  padding: 0 1rem 1rem;
  border-top: 1px solid var(--valora-border-subtle);
}

.valora-stitch-cltpj-accordion-body--prose p {
  margin: 0 0 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--valora-on-surface-variant);
}

.valora-stitch-cltpj-tax-line {
  display: flex;
  justify-content: space-between;
  padding: 0.375rem 0;
  font-size: 0.8125rem;
}

.valora-stitch-cltpj-tax-line--total {
  margin-top: 0.25rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--valora-border-subtle);
  font-weight: 700;
}

.valora-stitch-cltpj-results-placeholder,
.valora-stitch-cltpj-legal {
  font-size: 0.6875rem;
  line-height: 1.45;
  color: var(--valora-text-muted);
}

.valora-stitch-cltpj-results-placeholder {
  padding: 1.25rem;
  background: var(--valora-surface-container-low);
  border: 1px dashed var(--valora-border-subtle);
  border-radius: var(--valora-radius-lg);
}

.valora-stitch-cltpj-faq { margin-top: 2rem; }

/* FAQ hub (Stitch faq_hub — Sprint 24) */
.valora-stitch-faq-hub {
  max-width: var(--valora-container-max);
  margin: 0 auto;
}

.valora-stitch-faq-hero {
  margin: 0 -1rem 0;
  padding: 2rem 1rem 3rem;
  background: var(--valora-primary);
  color: var(--valora-on-primary);
  text-align: center;
}

@media (min-width: 768px) {
  .valora-stitch-faq-hero {
    margin: 0 0 0;
    border-radius: var(--valora-radius-xl);
  }
}

.valora-stitch-faq-hero-title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.35rem, 5vw, 1.75rem);
  font-weight: 800;
  line-height: 1.2;
}

.valora-stitch-faq-search {
  position: relative;
  max-width: 32rem;
  margin: 0 auto;
}

.valora-stitch-faq-search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--valora-outline);
  pointer-events: none;
}

.valora-stitch-faq-search-input {
  width: 100%;
  height: 3rem;
  padding: 0 1rem 0 3rem;
  border: none;
  border-radius: var(--valora-radius-xl);
  background: var(--valora-surface);
  font-size: 1rem;
  box-shadow: var(--valora-shadow);
}

.valora-stitch-faq-search-input:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--valora-primary-container);
}

.valora-stitch-faq-categories {
  margin-top: -1.5rem;
  padding: 0 0 1.5rem;
}

.valora-stitch-faq-cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .valora-stitch-faq-cat-grid { grid-template-columns: repeat(4, 1fr); }
}

.valora-stitch-faq-cat {
  display: block;
  padding: 1rem;
  background: var(--valora-surface);
  border: 1px solid var(--valora-border-subtle);
  border-radius: var(--valora-radius-xl);
  box-shadow: var(--valora-shadow);
  text-decoration: none;
  color: inherit;
  border-left-width: 4px;
  transition: transform 0.15s, border-color 0.15s;
}

.valora-stitch-faq-cat:active { transform: scale(0.98); }

.valora-stitch-faq-cat--active {
  border-color: var(--valora-primary-container);
  background: var(--valora-surface-container-low);
}

.valora-stitch-faq-cat--trabalhista { border-left-color: var(--valora-trabalhista-blue); }
.valora-stitch-faq-cat--trabalhista .material-symbols-outlined { color: var(--valora-trabalhista-blue); }

.valora-stitch-faq-cat--pj { border-left-color: var(--valora-primary-container); }
.valora-stitch-faq-cat--pj .material-symbols-outlined { color: var(--valora-primary-container); }

.valora-stitch-faq-cat--fiscal { border-left-color: var(--valora-fiscal-purple); }
.valora-stitch-faq-cat--fiscal .material-symbols-outlined { color: var(--valora-fiscal-purple); }

.valora-stitch-faq-cat--about { border-left-color: var(--valora-financeiro-teal); }
.valora-stitch-faq-cat--about .material-symbols-outlined { color: var(--valora-financeiro-teal); }

.valora-stitch-faq-cat-title {
  margin: 0.5rem 0 0.25rem;
  font-size: 0.875rem;
  font-weight: 700;
}

.valora-stitch-faq-cat-summary {
  margin: 0;
  font-size: 0.75rem;
  color: var(--valora-text-muted);
  line-height: 1.4;
}

.valora-stitch-faq-popular {
  margin-bottom: 1.5rem;
}

.valora-stitch-faq-popular-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.valora-stitch-faq-section-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
}

.valora-stitch-faq-clear {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--valora-primary-container);
  text-decoration: none;
}

.valora-stitch-faq-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.valora-stitch-faq-accordion-item {
  background: var(--valora-surface);
  border: 1px solid var(--valora-border-subtle);
  border-radius: var(--valora-radius-xl);
  overflow: hidden;
}

.valora-stitch-faq-accordion-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.875rem;
  list-style: none;
}

.valora-stitch-faq-accordion-item summary::-webkit-details-marker { display: none; }

.valora-stitch-faq-accordion-item[open] summary .material-symbols-outlined {
  transform: rotate(180deg);
}

.valora-stitch-faq-accordion-body {
  padding: 0 1rem 1rem;
  border-top: 1px solid var(--valora-border-subtle);
}

.valora-stitch-faq-read-more {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--valora-primary-container);
  text-decoration: none;
}

.valora-stitch-faq-more-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.valora-stitch-faq-more-list li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--valora-border-subtle);
}

.valora-stitch-faq-more-list a {
  color: var(--valora-on-surface);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
}

.valora-stitch-faq-more-cat {
  font-size: 0.6875rem;
  color: var(--valora-text-muted);
  white-space: nowrap;
}

.valora-stitch-faq-ad {
  margin-bottom: 1.5rem;
}

.valora-stitch-faq-ad-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  min-height: 5.625rem;
  border: 1px dashed var(--valora-border-subtle);
  border-radius: var(--valora-radius-xl);
  background: var(--valora-surface);
  color: var(--valora-text-muted);
  font-size: 0.75rem;
  position: relative;
}

.valora-stitch-faq-ad-label {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  font-size: 0.6875rem;
  opacity: 0.6;
}

.valora-stitch-faq-cta {
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 1rem;
  background: var(--valora-secondary-fixed);
  color: var(--valora-on-secondary-fixed);
  text-align: center;
}

.valora-stitch-faq-cta-icon {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.valora-stitch-faq-cta-title {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.valora-stitch-faq-cta-text {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  opacity: 0.9;
  line-height: 1.5;
}

.valora-stitch-faq-cta-btn {
  width: 100%;
  max-width: 20rem;
  margin: 0 auto;
}

/* Sprint 25 — Blog hub, artigo, metodologia, painel */

.valora-stitch-blog-hub {
  max-width: 42rem;
  margin: 0 auto;
  padding-bottom: 1rem;
}

.valora-stitch-blog-hub-header {
  margin-bottom: 1.5rem;
}

.valora-stitch-blog-hub-title {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--valora-on-surface);
}

.valora-stitch-blog-hub-lead {
  margin: 0;
  color: var(--valora-on-surface-variant);
  line-height: 1.5;
}

.valora-stitch-blog-hub-count {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--valora-text-muted);
}

.valora-stitch-blog-featured {
  display: block;
  margin-bottom: 2rem;
  border-radius: var(--valora-radius-xl);
  overflow: hidden;
  border: 1px solid var(--valora-border-subtle);
  background: var(--valora-surface-white);
  box-shadow: 0 1px 2px rgb(0 0 0 / 5%);
  text-decoration: none;
  color: inherit;
}

.valora-stitch-blog-featured:hover {
  box-shadow: 0 4px 12px rgb(0 0 0 / 8%);
}

.valora-stitch-blog-featured-visual {
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--valora-surface-container) 0%, var(--valora-surface-container-low) 100%);
}

.valora-stitch-blog-featured-visual .material-symbols-outlined {
  font-size: 3rem;
  opacity: 0.55;
}

.valora-stitch-blog-hero--has-image {
  position: relative;
  overflow: hidden;
  background: var(--valora-surface-container);
}

.valora-stitch-blog-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.valora-stitch-blog-hero-brand {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.75rem 0.75rem 0.5rem;
  background: linear-gradient(180deg, transparent 0%, rgb(0 78 71 / 80%) 100%);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: right;
  pointer-events: none;
}

.valora-stitch-blog-hero--has-image .material-symbols-outlined {
  display: none;
}

.valora-stitch-blog-feed-thumb.valora-stitch-blog-hero--has-image .valora-stitch-blog-hero-brand {
  font-size: 0.5625rem;
  padding-top: 1rem;
}

.valora-stitch-blog-related-visual.valora-stitch-blog-hero--has-image .valora-stitch-blog-related-badge {
  z-index: 1;
}

.valora-stitch-blog-visual--trabalhista { color: var(--valora-trabalhista-blue); }
.valora-stitch-blog-visual--fiscal { color: var(--valora-fiscal-purple); }
.valora-stitch-blog-visual--financeiro { color: var(--valora-financeiro-teal); }

.valora-stitch-blog-featured-body {
  padding: 1rem;
  border-left: 4px solid var(--valora-trabalhista-blue);
}

.valora-stitch-blog-featured--fiscal .valora-stitch-blog-featured-body { border-left-color: var(--valora-fiscal-purple); }
.valora-stitch-blog-featured--financeiro .valora-stitch-blog-featured-body { border-left-color: var(--valora-financeiro-teal); }

.valora-stitch-blog-featured-meta,
.valora-stitch-blog-feed-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
}

.valora-stitch-blog-cat-text { font-weight: 600; }
.valora-stitch-blog-cat-text--trabalhista { color: var(--valora-trabalhista-blue); }
.valora-stitch-blog-cat-text--fiscal { color: var(--valora-fiscal-purple); }
.valora-stitch-blog-cat-text--financeiro { color: var(--valora-financeiro-teal); }

.valora-stitch-blog-meta-dot {
  color: var(--valora-outline-variant);
}

.valora-stitch-blog-featured-title {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--valora-on-surface);
}

.valora-stitch-blog-featured-summary {
  margin: 0 0 1rem;
  color: var(--valora-on-surface-variant);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.valora-stitch-blog-featured-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--valora-primary);
  font-weight: 600;
  font-size: 0.875rem;
}

.valora-stitch-blog-chips {
  margin: 0 -1rem 1.5rem;
  overflow: hidden;
}

.valora-stitch-blog-chips-track {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0 1rem 0.25rem;
  scrollbar-width: none;
}

.valora-stitch-blog-chips-track::-webkit-scrollbar { display: none; }

.valora-stitch-blog-chip {
  flex-shrink: 0;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--valora-border-subtle);
  background: var(--valora-surface-white);
  color: var(--valora-on-surface-variant);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
}

.valora-stitch-blog-chip--active {
  background: var(--valora-primary-container);
  border-color: var(--valora-primary-container);
  color: var(--valora-on-primary);
}

.valora-stitch-blog-feed {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.valora-stitch-blog-feed-card {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--valora-radius-xl);
  border: 1px solid var(--valora-border-subtle);
  background: var(--valora-surface-white);
  text-decoration: none;
  color: inherit;
}

.valora-stitch-blog-feed-card:hover {
  background: var(--valora-surface-container-low);
}

.valora-stitch-blog-feed-main { flex: 1; min-width: 0; }

.valora-stitch-blog-feed-title {
  margin: 0 0 0.25rem;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--valora-on-surface);
}

.valora-stitch-blog-feed-summary {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--valora-on-surface-variant);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.valora-stitch-blog-feed-thumb {
  width: 5rem;
  height: 5rem;
  flex-shrink: 0;
  border-radius: var(--valora-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--valora-surface-container);
}

.valora-stitch-blog-feed-thumb .material-symbols-outlined {
  font-size: 1.75rem;
  opacity: 0.6;
}

/* Blog article */

.valora-stitch-blog-article {
  max-width: 42rem;
  margin: 0 auto;
  position: relative;
}

.valora-stitch-blog-article-progress {
  position: fixed;
  top: var(--valora-header-height, 4rem);
  left: 0;
  right: 0;
  height: 3px;
  background: var(--valora-surface-container);
  z-index: 40;
}

.valora-stitch-blog-article-progress-bar {
  height: 100%;
  width: 0;
  background: var(--valora-primary-container);
  transition: width 0.1s linear;
}

.valora-stitch-blog-article-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
  font-size: 0.75rem;
  color: var(--valora-on-surface-variant);
  overflow-x: auto;
  white-space: nowrap;
}

.valora-stitch-blog-article-breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: 0.125rem;
  color: inherit;
  text-decoration: none;
}

.valora-stitch-blog-article-breadcrumb .material-symbols-outlined {
  font-size: 1rem;
}

.valora-stitch-blog-article-header {
  margin-bottom: 1rem;
}

.valora-stitch-blog-article-badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  margin-bottom: 0.75rem;
  border-radius: var(--valora-radius-lg);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.valora-stitch-blog-article-badge.valora-stitch-blog-cat-text--trabalhista {
  background: rgb(19 81 180 / 10%);
}

.valora-stitch-blog-article-badge.valora-stitch-blog-cat-text--fiscal {
  background: rgb(107 33 168 / 10%);
}

.valora-stitch-blog-article-badge.valora-stitch-blog-cat-text--financeiro {
  background: rgb(0 104 95 / 10%);
}

.valora-stitch-blog-article-title {
  margin: 0 0 0.75rem;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--valora-on-surface);
}

.valora-stitch-blog-article-meta {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--valora-text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.valora-stitch-blog-article-hero {
  aspect-ratio: 16 / 9;
  margin-bottom: 1.25rem;
  border-radius: var(--valora-radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--valora-surface-container) 0%, var(--valora-surface-container-low) 100%);
}

.valora-stitch-blog-article-hero .material-symbols-outlined {
  font-size: 3.5rem;
  opacity: 0.5;
}

.valora-stitch-blog-article-lead {
  margin: 0 0 1.25rem;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--valora-on-surface-variant);
}

.valora-stitch-blog-article-body {
  margin-bottom: 1.5rem;
}

.valora-stitch-blog-article-cta {
  margin-bottom: 1.5rem;
  padding: 1rem;
  border-radius: var(--valora-radius-xl);
  border: 1px solid var(--valora-border-subtle);
  border-left: 4px solid var(--valora-primary-container);
  background: var(--valora-surface-white);
  box-shadow: 0 1px 2px rgb(0 0 0 / 5%);
}

.valora-stitch-blog-article-cta-head {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.valora-stitch-blog-article-cta-head .material-symbols-outlined {
  padding: 0.75rem;
  border-radius: 999px;
  background: rgb(0 104 95 / 10%);
  color: var(--valora-primary-container);
}

.valora-stitch-blog-article-cta-title {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  font-weight: 700;
}

.valora-stitch-blog-article-cta-text {
  margin: 0;
  font-size: 0.875rem;
  color: var(--valora-on-surface-variant);
  line-height: 1.45;
}

.valora-stitch-blog-article-cta-btn {
  width: 100%;
  justify-content: center;
}

.valora-stitch-blog-article-disclaimer {
  margin-bottom: 2rem;
}

.valora-stitch-blog-section-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
}

.valora-stitch-blog-article-related {
  margin-bottom: 2rem;
}

.valora-stitch-blog-article-related-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.valora-stitch-blog-article-related-all {
  display: inline-flex;
  align-items: center;
  gap: 0.125rem;
  color: var(--valora-primary);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
}

.valora-stitch-blog-article-related-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.valora-stitch-blog-related-card {
  display: block;
  border-radius: var(--valora-radius-xl);
  overflow: hidden;
  border: 1px solid var(--valora-border-subtle);
  background: var(--valora-surface-white);
  text-decoration: none;
  color: inherit;
}

.valora-stitch-blog-related-visual {
  position: relative;
  height: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--valora-surface-container);
}

.valora-stitch-blog-related-visual .material-symbols-outlined {
  font-size: 2.5rem;
  opacity: 0.45;
}

.valora-stitch-blog-related-badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.125rem 0.5rem;
  border-radius: var(--valora-radius-lg);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}

.valora-stitch-blog-related-badge.valora-stitch-blog-cat-text--trabalhista { background: rgb(19 81 180 / 90%); }
.valora-stitch-blog-related-badge.valora-stitch-blog-cat-text--fiscal { background: rgb(107 33 168 / 90%); }
.valora-stitch-blog-related-badge.valora-stitch-blog-cat-text--financeiro { background: rgb(0 104 95 / 90%); }

.valora-stitch-blog-related-body {
  padding: 1rem;
}

.valora-stitch-blog-related-title {
  margin: 0 0 0.5rem;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.35;
}

.valora-stitch-blog-related-summary {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--valora-text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.valora-stitch-blog-article-newsletter {
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 1rem;
  background: var(--valora-primary-container);
  color: var(--valora-on-primary);
  text-align: center;
}

.valora-stitch-blog-article-newsletter-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.valora-stitch-blog-article-newsletter-title {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.valora-stitch-blog-article-newsletter-text {
  margin: 0 0 1rem;
  opacity: 0.9;
  line-height: 1.5;
}

.valora-stitch-blog-article-newsletter-btn {
  background: #fff;
  color: var(--valora-primary-container);
  border: none;
}

/* Metodologia */

.valora-stitch-metodologia {
  max-width: 42rem;
  margin: 0 auto;
  padding-bottom: 1rem;
}

.valora-stitch-metodologia-hero {
  margin: -0.5rem -1rem 1.5rem;
  padding: 1.5rem 1rem;
  background: var(--valora-surface-white);
}

.valora-stitch-metodologia-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  margin-bottom: 0.75rem;
  border-radius: var(--valora-radius-lg);
  background: rgb(0 104 95 / 10%);
  color: var(--valora-financeiro-teal);
  font-size: 0.75rem;
  font-weight: 600;
}

.valora-stitch-metodologia-hero-title {
  margin: 0 0 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--valora-primary);
}

.valora-stitch-metodologia-hero-lead {
  margin: 0;
  color: var(--valora-on-surface-variant);
  line-height: 1.55;
}

.valora-stitch-metodologia-section {
  margin-bottom: 2rem;
}

.valora-stitch-metodologia-section-title {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.valora-stitch-metodologia-regimes {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.valora-stitch-metodologia-regime {
  padding: 1rem;
  border-radius: var(--valora-radius-xl);
  border: 1px solid var(--valora-border-subtle);
  background: var(--valora-surface-white);
  border-left-width: 4px;
}

.valora-stitch-metodologia-regime--clt { border-left-color: var(--valora-trabalhista-blue); }
.valora-stitch-metodologia-regime--pj { border-left-color: var(--valora-fiscal-purple); }

.valora-stitch-metodologia-regime-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.valora-stitch-metodologia-regime--clt .valora-stitch-metodologia-regime-head {
  color: var(--valora-trabalhista-blue);
}

.valora-stitch-metodologia-regime--pj .valora-stitch-metodologia-regime-head {
  color: var(--valora-fiscal-purple);
}

.valora-stitch-metodologia-regime-head h3 {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 700;
}

.valora-stitch-metodologia-regime ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.valora-stitch-metodologia-regime li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.8125rem;
  color: var(--valora-on-surface-variant);
  line-height: 1.45;
}

.valora-stitch-metodologia-regime li .material-symbols-outlined {
  font-size: 1.125rem;
  flex-shrink: 0;
  color: var(--valora-outline);
}

.valora-stitch-metodologia-table-hint {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  color: var(--valora-text-muted);
}

.valora-stitch-metodologia-table-card {
  margin-bottom: 1rem;
  border-radius: var(--valora-radius-xl);
  overflow: hidden;
  border: 1px solid var(--valora-border-subtle);
  background: var(--valora-surface-white);
}

.valora-stitch-metodologia-table-head {
  padding: 0.75rem 1rem;
  background: var(--valora-surface-container-low);
  border-bottom: 1px solid var(--valora-border-subtle);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--valora-primary);
}

.valora-stitch-metodologia-table-scroll {
  overflow-x: auto;
  scrollbar-width: none;
}

.valora-stitch-metodologia-table-scroll::-webkit-scrollbar { display: none; }

.valora-stitch-metodologia-table-scroll table {
  width: 100%;
  min-width: 24rem;
  border-collapse: collapse;
  font-size: 0.8125rem;
}

.valora-stitch-metodologia-table-scroll th,
.valora-stitch-metodologia-table-scroll td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--valora-border-subtle);
}

.valora-stitch-metodologia-table-scroll th {
  color: var(--valora-on-surface-variant);
  font-weight: 600;
  background: var(--valora-surface-white);
}

.valora-stitch-metodologia-sources {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--valora-on-surface-variant);
  line-height: 1.5;
}

.valora-stitch-metodologia-list {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  color: var(--valora-on-surface-variant);
  line-height: 1.55;
}

.valora-stitch-metodologia-update {
  margin: 0;
  font-size: 0.875rem;
  color: var(--valora-on-surface-variant);
}

.valora-stitch-metodologia-disclaimer {
  margin-bottom: 1rem;
}

.valora-stitch-metodologia-actions {
  margin: 0;
}

/* Meu painel */

.valora-stitch-panel {
  max-width: 42rem;
  margin: 0 auto;
  padding-bottom: 1rem;
}

.valora-stitch-panel-hero {
  text-align: center;
  margin-bottom: 1.5rem;
}

.valora-stitch-panel-hero-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 0.75rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(0 104 95 / 10%);
  color: var(--valora-primary-container);
}

.valora-stitch-panel-hero-icon .material-symbols-outlined {
  font-size: 2rem;
}

.valora-stitch-panel-title {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.valora-stitch-panel-lead {
  margin: 0;
  color: var(--valora-on-surface-variant);
  line-height: 1.5;
  font-size: 0.9375rem;
}

.valora-stitch-panel-card {
  margin-bottom: 1.5rem;
  padding: 1rem;
  border-radius: var(--valora-radius-xl);
  border: 1px solid var(--valora-border-subtle);
  background: var(--valora-surface-white);
}

.valora-stitch-panel-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.valora-stitch-panel-count {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--valora-text-muted);
}

.valora-stitch-panel-empty {
  text-align: center;
  padding: 1.5rem 0.5rem;
}

.valora-stitch-panel-empty-icon {
  font-size: 2.5rem;
  color: var(--valora-outline);
  margin-bottom: 0.5rem;
}

.valora-stitch-panel-empty-title {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
}

.valora-stitch-panel-empty-text {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  color: var(--valora-text-muted);
}

.valora-stitch-panel-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.valora-stitch-panel .valora-local-panel-item {
  border-radius: var(--valora-radius-lg);
  border: 1px solid var(--valora-border-subtle);
  background: var(--valora-surface-container-low);
}

.valora-stitch-panel-privacy {
  margin-bottom: 1rem;
  padding: 1rem;
  border-radius: var(--valora-radius-xl);
  border: 1px solid var(--valora-border-subtle);
  background: var(--valora-surface-white);
}

.valora-stitch-panel-privacy-title {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
}

.valora-stitch-panel-privacy p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--valora-text-muted);
  line-height: 1.5;
}

.valora-stitch-panel-disclaimer {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .valora-stitch-metodologia-hero {
    margin-left: 0;
    margin-right: 0;
    border-radius: var(--valora-radius-xl);
  }

  .valora-stitch-metodologia-regimes {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

/* Sprint 26 — Desktop polish (Stitch desktop PNGs, ≥992px) */

.valora-stitch-blog-article-aside {
  display: none;
}

@media (min-width: 992px) {
  .valora-stitch-blog-hub {
    max-width: var(--valora-container-max);
  }

  .valora-stitch-blog-hub-title {
    font-size: 2rem;
  }

  .valora-stitch-blog-featured {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
  }

  .valora-stitch-blog-featured-visual {
    aspect-ratio: auto;
    min-height: 100%;
  }

  .valora-stitch-blog-chips {
    margin-left: 0;
    margin-right: 0;
  }

  .valora-stitch-blog-chips-track {
    flex-wrap: wrap;
    overflow: visible;
    padding: 0;
  }

  .valora-stitch-blog-feed {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .valora-stitch-blog-article {
    max-width: var(--valora-container-max);
  }

  .valora-stitch-blog-article-progress {
    top: 4rem;
  }

  .valora-stitch-blog-article-title {
    font-size: 2.25rem;
  }

  .valora-stitch-blog-article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 17.5rem;
    gap: 2rem;
    align-items: start;
    margin-bottom: 2rem;
  }

  .valora-stitch-blog-article-aside {
    display: block;
    position: sticky;
    top: 5.5rem;
  }

  .valora-stitch-blog-article-aside-card {
    padding: 1rem;
    border: 1px solid var(--valora-border-subtle);
    border-radius: var(--valora-radius-xl);
    background: var(--valora-surface-white);
  }

  .valora-stitch-blog-article-aside-title {
    margin: 0 0 0.75rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--valora-on-surface);
  }

  .valora-stitch-blog-article-aside-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    color: var(--valora-primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
  }

  .valora-stitch-blog-article-aside-link .material-symbols-outlined {
    font-size: 1.125rem;
  }

  .valora-stitch-blog-article-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }

  .valora-stitch-blog-article-newsletter {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-align: left;
  }

  .valora-stitch-blog-article-newsletter-icon {
    margin: 0;
    flex-shrink: 0;
  }

  .valora-stitch-blog-article-newsletter-text {
    margin-bottom: 0;
    flex: 1;
  }

  .valora-stitch-blog-article-newsletter-btn {
    width: auto;
    flex-shrink: 0;
  }

  .valora-stitch-metodologia {
    max-width: var(--valora-container-max);
  }

  .valora-stitch-metodologia-hero {
    margin: 0 0 2rem;
    padding: 2rem;
  }

  .valora-stitch-metodologia-hero-title {
    font-size: 2rem;
  }

  .valora-stitch-metodologia-table-hint {
    display: none;
  }

  .valora-stitch-metodologia-tables {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .valora-stitch-metodologia-table-card {
    margin-bottom: 0;
  }

  .valora-stitch-panel {
    max-width: var(--valora-container-max);
  }

  .valora-stitch-panel-hero {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
    margin-bottom: 2rem;
  }

  .valora-stitch-panel-hero-icon {
    margin: 0;
    flex-shrink: 0;
  }

  .valora-stitch-panel-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 18rem;
    gap: 1.5rem;
    align-items: start;
  }

  .valora-stitch-panel-privacy {
    margin-bottom: 0;
    position: sticky;
    top: 5.5rem;
  }

  .valora-stitch-faq-hero {
    padding: 2.5rem 2rem 3.5rem;
  }

  .valora-stitch-faq-hub {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 20rem;
    gap: 1.5rem;
    align-items: start;
  }

  .valora-stitch-faq-hero,
  .valora-stitch-faq-categories {
    grid-column: 1 / -1;
  }

  .valora-stitch-faq-popular {
    grid-column: 1;
    margin-bottom: 0;
  }

  .valora-stitch-faq-ad {
    grid-column: 2;
    grid-row: 3;
    margin-bottom: 0;
  }

  .valora-stitch-faq-cta {
    grid-column: 2;
    grid-row: 4;
    position: sticky;
    top: 5.5rem;
  }

  .valora-stitch-faq-ad-inner {
    min-height: 12rem;
  }
}
