/* Valora Design System — Premium Liquid (stitch_redesing/premium_liquid/DESIGN.md) */

:root {
  --valora-primary: #59dbc7;
  --valora-primary-container: #00a896;
  --valora-on-primary: #003731;
  --valora-on-primary-container: #00352e;
  --valora-tertiary: #45dfa4;
  --valora-on-tertiary: #003825;
  --valora-background: #0a0a0b;
  --valora-surface: #121214;
  --valora-surface-container-lowest: #0e0e0f;
  --valora-surface-container-low: #1c1b1c;
  --valora-surface-container: #201f20;
  --valora-surface-container-high: #2a2a2b;
  --valora-surface-white: #1c1c1f;
  --valora-card-low: #1c1c1f;
  --valora-card-med: #222226;
  --valora-card-high: #2a2a2e;
  --valora-on-surface: #e5e2e3;
  --valora-on-surface-variant: #bbcac5;
  --valora-text-main: #f4f4f5;
  --valora-text-muted: #a1a1aa;
  --valora-text-heading: #f4f4f5;
  --valora-outline: #869490;
  --valora-outline-variant: #3c4946;
  --valora-border-subtle: rgb(255 255 255 / 8%);
  --valora-border: rgb(255 255 255 / 8%);
  --valora-secondary: #aec6ff;
  --valora-secondary-container: #0260d3;
  --valora-secondary-fixed: #d8e2ff;
  --valora-on-secondary-fixed: #001a43;
  --valora-trabalhista-blue: #3b82f6;
  --valora-financeiro-teal: #14b8a6;
  --valora-fiscal-purple: #a855f7;
  --valora-warning-bg: #2a2210;
  --valora-warning-border: #f59e0b;
  --valora-warning-text: #f59e0b;
  --valora-badge-trabalhista-bg: rgb(59 130 246 / 10%);
  --valora-badge-trabalhista-text: #3b82f6;
  --valora-badge-fiscal-bg: rgb(168 85 247 / 10%);
  --valora-badge-fiscal-text: #a855f7;
  --valora-badge-financeiro-bg: rgb(20 184 166 / 10%);
  --valora-badge-financeiro-text: #14b8a6;
  --valora-net-result: #45dfa4;
  --valora-glow-primary: 0 4px 20px -2px rgb(0 168 150 / 40%);
  --valora-glow-net: 0 0 15px rgb(89 219 199 / 30%);
  --valora-glass: rgb(18 18 20 / 80%);
  --valora-container-max: 1280px;
  --valora-shadow: 0 4px 20px -2px rgb(0 0 0 / 35%);
  --valora-shadow-result: 0 4px 24px rgb(0 0 0 / 25%);
  --valora-radius-sm: 0.25rem;
  --valora-radius-md: 0.5rem;
  --valora-radius-lg: 0.75rem;
  --valora-radius-xl: 1rem;
  --valora-font-display: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
}

*, *::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);
  -webkit-tap-highlight-color: transparent;
}

h1, h2, h3, h4,
.valora-stitch-hero-title,
.valora-stitch-section-title,
.valora-stitch-teaser-title,
.valora-page-title {
  font-family: var(--valora-font-display);
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 300, "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: var(--valora-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--valora-border-subtle);
}

.valora-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5rem;
  height: auto;
  padding: 0.5rem 0;
  gap: 0.75rem;
}

.valora-header-inner .valora-brand-mark {
  flex-shrink: 0;
  max-width: min(52vw, 22rem);
}

@media (min-width: 992px) {
  .valora-header-inner {
    min-height: 5.75rem;
    padding: 0.625rem 0;
  }

  .valora-header-inner .valora-brand-mark {
    max-width: none;
  }
}

.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: 3.5rem;
  width: auto;
  max-width: min(20rem, 70vw);
}

.valora-brand-logo--stacked {
  height: 5.5rem;
  width: auto;
  max-width: min(12rem, 45vw);
}

.valora-brand-logo--icon {
  height: 2.5rem;
  width: 2.5rem;
  border-radius: var(--valora-radius-lg);
}

.valora-brand-logo--footer {
  height: 4.5rem;
  width: auto;
  max-width: min(14rem, 55vw);
}

@media (min-width: 768px) {
  .valora-brand-logo--horizontal {
    height: 4.5rem;
    max-width: 24rem;
  }

  .valora-brand-logo--footer {
    height: 5.5rem;
    max-width: 16rem;
  }
}

@media (min-width: 1200px) {
  .valora-brand-logo--horizontal {
    height: 5rem;
    max-width: 28rem;
  }

  .valora-brand-logo--footer {
    height: 6.5rem;
    max-width: 18rem;
  }
}

.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, border-color 0.15s;
}

.valora-nav a:hover {
  color: var(--valora-on-surface);
}

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

.valora-header-desktop {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.valora-nav-search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--valora-border-subtle);
  background: var(--valora-card-low);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.valora-nav-search:focus-within {
  border-color: var(--valora-primary);
  box-shadow: 0 0 0 2px rgb(89 219 199 / 12%);
}

.valora-nav-search .material-symbols-outlined {
  font-size: 1.25rem;
  color: var(--valora-on-surface-variant);
  flex-shrink: 0;
}

.valora-nav-search-input {
  width: 12rem;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 0.875rem;
  color: var(--valora-on-surface);
  outline: none;
}

.valora-nav-search-input::placeholder {
  color: var(--valora-on-surface-variant);
}

@media (min-width: 992px) {
  .valora-header-desktop { display: flex; }
}

.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);
  color: var(--valora-on-primary);
  box-shadow: var(--valora-glow-primary);
}

.valora-btn-primary:hover {
  filter: brightness(1.05);
}

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

.valora-btn-outline:hover { background: rgb(89 219 199 / 8%); }

.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(89 219 199 / 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: var(--valora-surface-container-lowest);
  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: var(--valora-on-primary);
  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: var(--valora-card-low);
  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);
  color: var(--valora-primary);
  background: rgb(89 219 199 / 10%);
}

.valora-result-card {
  border: 1px solid var(--valora-border-subtle);
  border-radius: var(--valora-radius-lg);
  background: var(--valora-card-low);
  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: var(--valora-surface-container-lowest);
}

.valora-input-currency:focus-within {
  border-color: var(--valora-primary);
  box-shadow: 0 0 0 2px rgb(89 219 199 / 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-card-low);
  border: 1px solid var(--valora-border-subtle);
  border-radius: var(--valora-radius-xl);
  padding: 1.5rem;
  box-shadow: none;
}

.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-container-lowest);
  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(89 219 199 / 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-label--with-tip {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.valora-label-text {
  line-height: 1.4;
}

.valora-field-tip {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}

.valora-field-tip-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgb(89 219 199 / 12%);
  color: var(--valora-primary);
  cursor: help;
  flex-shrink: 0;
}

.valora-field-tip-btn .material-symbols-outlined {
  font-size: 0.95rem;
}

.valora-field-tip-btn:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgb(89 219 199 / 35%);
}

.valora-field-tip-bubble {
  display: none;
  position: absolute;
  z-index: 30;
  left: 50%;
  bottom: calc(100% + 0.45rem);
  transform: translateX(-50%);
  width: min(17.5rem, calc(100vw - 2rem));
  padding: 0.6rem 0.75rem;
  border-radius: var(--valora-radius-md);
  border: 1px solid var(--valora-border-subtle);
  background: var(--valora-surface-container-high);
  color: var(--valora-on-surface);
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.45;
  box-shadow: 0 8px 24px rgb(0 0 0 / 35%);
  pointer-events: none;
}

.valora-field-tip:focus-within .valora-field-tip-bubble,
.valora-field-tip:hover .valora-field-tip-bubble {
  display: block;
}

.valora-result-warnings {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.valora-result-warning {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.75rem 0.85rem;
  border-radius: var(--valora-radius-md);
  border: 1px solid var(--valora-border-subtle);
  background: var(--valora-surface-container-low);
}

.valora-result-warning p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--valora-on-surface);
}

.valora-result-warning .material-symbols-outlined {
  font-size: 1.125rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.valora-result-warning--info {
  border-color: rgb(89 219 199 / 25%);
  background: rgb(89 219 199 / 8%);
}

.valora-result-warning--info .material-symbols-outlined {
  color: var(--valora-primary);
}

.valora-result-warning--warning {
  border-color: rgb(251 191 36 / 30%);
  background: rgb(251 191 36 / 10%);
}

.valora-result-warning--warning .material-symbols-outlined {
  color: #fbbf24;
}

.valora-metrics-insight {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.15rem 0.5rem;
  border-radius: 0.35rem;
}

.valora-metrics-insight--alert {
  color: #fecaca;
  background: rgb(239 68 68 / 15%);
}

.valora-metrics-insight--warning {
  color: #fde68a;
  background: rgb(251 191 36 / 12%);
}

.valora-metrics-insight--info {
  color: var(--valora-primary);
  background: rgb(89 219 199 / 10%);
}

.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: 1px solid var(--valora-border-subtle);
  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-card-med);
  box-shadow: 0 0 0 2px rgb(89 219 199 / 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;
}

a.valora-choice {
  text-decoration: none;
  justify-content: center;
  color: var(--valora-on-surface);
}

a.valora-choice.valora-choice--active {
  border-color: var(--valora-primary);
  background: var(--valora-card-med);
  box-shadow: 0 0 0 2px rgb(89 219 199 / 12%);
  font-weight: 600;
}

.valora-widget-embed-cta-head {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.valora-widget-embed-cta-head .material-symbols-outlined {
  font-size: 1.75rem;
  color: var(--valora-primary);
  flex-shrink: 0;
}

.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: var(--valora-card-low);
  color: var(--valora-text-main);
  border: 1px solid var(--valora-border-subtle);
  border-left: 4px solid var(--valora-primary);
  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-proposal-highlight {
  margin: 0.75rem 0 0.25rem;
  padding: 1rem 1.1rem;
  border-radius: var(--valora-radius-md);
  border: 1px solid color-mix(in srgb, var(--valora-primary) 35%, var(--valora-border-subtle));
  background: color-mix(in srgb, var(--valora-primary) 8%, var(--valora-surface-container-low));
}

.valora-proposal-highlight-main {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
}

.valora-proposal-highlight-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--valora-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.valora-proposal-highlight-value {
  font-size: 1.35rem;
  color: var(--valora-primary);
}

.valora-proposal-highlight-sub {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  color: var(--valora-text-muted);
}

.valora-journey-next {
  margin: 1rem 0 0;
  padding: 1rem 1.1rem;
  border-radius: var(--valora-radius-md);
  border: 1px solid var(--valora-border-subtle);
  background: var(--valora-surface-container-low);
}

.valora-journey-next-header {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.valora-journey-next-header .material-symbols-outlined {
  font-size: 1.35rem;
  color: var(--valora-primary);
  margin-top: 0.1rem;
}

.valora-journey-next-kicker {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--valora-text-muted);
}

.valora-journey-next-title {
  margin: 0.15rem 0 0;
  font-size: 1rem;
  color: var(--valora-text-main);
}

.valora-journey-next-intro {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  color: var(--valora-text-muted);
  line-height: 1.45;
}

.valora-journey-next-list {
  list-style: none;
  margin: 0.85rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.valora-journey-next-link {
  display: block;
  padding: 0.75rem 0.85rem;
  border-radius: var(--valora-radius-sm);
  border: 1px solid var(--valora-border-subtle);
  background: var(--valora-surface);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.valora-journey-next-link:hover {
  border-color: color-mix(in srgb, var(--valora-primary) 35%, var(--valora-border-subtle));
  background: color-mix(in srgb, var(--valora-primary) 5%, var(--valora-surface));
}

.valora-journey-next-link-label {
  display: block;
  font-weight: 600;
  color: var(--valora-primary);
}

.valora-journey-next-link-teaser {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.8125rem;
  color: var(--valora-text-muted);
}

.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-net-result);
  text-shadow: var(--valora-glow-net);
}

.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: var(--valora-on-primary);
  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;
  padding: 1rem;
  background: var(--valora-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--valora-border-subtle);
  box-shadow: 0 -8px 32px rgb(0 0 0 / 35%);
}

.valora-app.valora-has-bottom-nav .valora-cookie-consent {
  bottom: 4rem;
}

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

.valora-cookie-consent-content {
  max-width: var(--valora-container-max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.valora-cookie-consent-text {
  margin: 0;
  flex: 1 1 16rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--valora-text-muted);
}

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

.valora-cookie-consent-text a:hover {
  text-decoration: underline;
}

.valora-cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  flex-shrink: 0;
}

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

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

/* 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(89 219 199 / 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: var(--valora-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

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

@media (min-width: 992px) {
  .valora-page-shell {
    padding-top: 6.25rem;
  }
}

.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;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
  line-height: 1;
}

.valora-brand-mark--footer {
  display: inline-flex;
  margin-bottom: 1rem;
}

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

.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;
  padding-bottom: max(0.5rem, env(safe-area-inset-bottom));
  background: var(--valora-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--valora-border-subtle);
  height: 4rem;
}

.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: transparent;
  color: var(--valora-primary);
  font-weight: 700;
}

.valora-bottom-nav-item--active .material-symbols-outlined {
  font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
}

.valora-icon-filled {
  font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
}

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

.valora-footer--stitch {
  background: var(--valora-background);
  border-top: 1px solid var(--valora-border-subtle);
  padding: 3rem 0 1.5rem;
  margin-top: 2rem;
  text-align: left;
}

.valora-app.valora-has-bottom-nav .valora-footer--stitch {
  padding-bottom: 5.5rem;
}

.valora-footer-stitch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem 2rem;
}

.valora-footer-stitch-brand {
  grid-column: 1 / -1;
}

.valora-footer-stitch-col--newsletter,
.valora-footer--stitch .valora-footer-copy,
.valora-footer-stitch-ribbon {
  grid-column: 1 / -1;
}

.valora-footer-stitch-title {
  margin: 0;
  font-family: var(--valora-font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--valora-primary);
}

.valora-footer-stitch-tagline {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--valora-on-surface-variant);
  max-width: 22rem;
}

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

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

.valora-footer-stitch-newsletter-form {
  display: flex;
  gap: 0.5rem;
  align-items: stretch;
}

.valora-footer-stitch-newsletter-input {
  flex: 1;
  min-width: 0;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: var(--valora-on-surface);
  background: var(--valora-card-low);
  border: 1px solid var(--valora-border-subtle);
  border-radius: var(--valora-radius-lg);
}

.valora-footer-stitch-newsletter-input:focus {
  outline: none;
  border-color: var(--valora-primary);
  box-shadow: 0 0 0 1px rgb(89 219 199 / 25%);
}

.valora-footer-stitch-newsletter-btn {
  flex-shrink: 0;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--valora-on-primary);
  background: var(--valora-primary);
  border: none;
  border-radius: var(--valora-radius-lg);
  cursor: pointer;
  transition: opacity 0.15s;
}

.valora-footer-stitch-newsletter-btn:hover {
  opacity: 0.9;
}

.valora-footer-stitch-ribbon {
  margin: 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--valora-border-subtle);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  color: rgb(161 161 170 / 50%);
}

.valora-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.valora-footer-stitch-col-title {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--valora-text-heading);
}

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

.valora-footer-stitch-links a {
  color: var(--valora-on-surface-variant);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.15s;
}

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

.valora-footer-stitch-social {
  display: flex;
  gap: 1rem;
}

.valora-footer-stitch-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid var(--valora-border-subtle);
  color: var(--valora-on-surface-variant);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.valora-footer-stitch-social-btn:hover {
  background: rgb(255 255 255 / 5%);
  color: var(--valora-primary);
}

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

@media (min-width: 992px) {
  .valora-footer-stitch {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) repeat(3, minmax(0, 1fr));
    gap: 2rem 2.5rem;
    align-items: start;
  }

  .valora-footer-stitch-brand { grid-column: 1; }
  .valora-footer-stitch-col:nth-of-type(2) { grid-column: 2; }
  .valora-footer-stitch-col:nth-of-type(3) { grid-column: 3; }
  .valora-footer-stitch-col--newsletter { grid-column: 4; }

  .valora-footer-stitch-social {
    margin-top: 1rem;
  }

  .valora-footer--stitch .valora-footer-copy {
    grid-column: 1 / -1;
    border-top: 1px solid var(--valora-border-subtle);
    padding-top: 1.5rem;
    margin-top: 0.5rem;
  }

  .valora-footer-stitch-ribbon {
    grid-column: 1 / -1;
    text-align: left;
    border-top: none;
    padding-top: 0;
    margin-top: -0.5rem;
  }

  .valora-app.valora-has-bottom-nav .valora-footer--stitch {
    padding-bottom: 1.5rem;
  }
}

/* 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: left; margin-bottom: 2rem; }

.valora-stitch-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  background: rgb(89 219 199 / 10%);
  border: 1px solid rgb(89 219 199 / 20%);
  color: var(--valora-primary);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.valora-stitch-pill-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--valora-primary);
  animation: valora-pulse 2s ease-in-out infinite;
}

@keyframes valora-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.valora-text-glow {
  color: var(--valora-primary);
  text-shadow: var(--valora-glow-net);
}

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

.valora-stitch-hero-lead {
  font-size: 1rem;
  color: var(--valora-on-surface-variant);
  max-width: 20rem;
  margin: 0 0 1.5rem;
  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-glow-primary);
}

.valora-stitch-btn--outline {
  border: 1px solid var(--valora-border-subtle);
  color: var(--valora-on-surface);
  background: rgb(255 255 255 / 5%);
}

.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-card-low);
  font-size: 1rem;
  font-family: inherit;
  color: var(--valora-on-surface);
  box-shadow: none;
  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);
  box-shadow: 0 0 0 2px rgb(89 219 199 / 15%);
}

.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: 600;
  margin: 0;
  color: var(--valora-text-heading);
}

.valora-stitch-link {
  color: var(--valora-primary);
  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: 1.25rem;
  background: var(--valora-card-low);
  border: 1px solid var(--valora-border-subtle);
  border-radius: var(--valora-radius-xl);
  text-decoration: none;
  color: inherit;
  transition: background 0.15s;
}

.valora-stitch-bento-card:active,
.valora-stitch-bento-card:hover {
  background: var(--valora-card-med);
}

.valora-stitch-bento-card--trabalhista,
.valora-stitch-bento-card--fiscal,
.valora-stitch-bento-card--financeiro,
.valora-stitch-bento-card--warning {
  border-left: 1px solid var(--valora-border-subtle);
}

.valora-bento-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--valora-radius-lg);
  margin-bottom: 0.75rem;
}

.valora-bento-icon-box--trabalhista {
  background: var(--valora-badge-trabalhista-bg);
  color: var(--valora-trabalhista-blue);
}

.valora-bento-icon-box--fiscal {
  background: var(--valora-badge-fiscal-bg);
  color: var(--valora-fiscal-purple);
}

.valora-bento-icon-box--financeiro {
  background: var(--valora-badge-financeiro-bg);
  color: var(--valora-financeiro-teal);
}

.valora-bento-icon-box--primary {
  background: rgb(89 219 199 / 10%);
  color: var(--valora-primary);
}

.valora-bento-icon-box--warning {
  background: rgb(245 158 11 / 10%);
  color: var(--valora-warning-text);
}

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

.valora-stitch-bento-title {
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
  color: var(--valora-text-heading);
}

.valora-stitch-bento-category {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  color: var(--valora-on-surface-variant);
}

.valora-stitch-ad-slot {
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 6rem;
  margin-bottom: 2rem;
  background: var(--valora-card-low);
  border: 1px solid var(--valora-border-subtle);
  border-radius: var(--valora-radius-xl);
  overflow: hidden;
  transition: background 0.15s;
}

.valora-stitch-ad-slot::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(89 219 199 / 5%);
  opacity: 0;
  transition: opacity 0.15s;
  pointer-events: none;
}

.valora-stitch-ad-slot:hover::before { opacity: 1; }

.valora-stitch-ad-label {
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--valora-on-surface-variant);
  z-index: 1;
}

.valora-stitch-ad-text {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--valora-on-surface-variant);
  z-index: 1;
}

.valora-stitch-teaser {
  display: none;
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-radius: var(--valora-radius-xl);
  background: var(--valora-card-low);
  border: 1px solid var(--valora-border-subtle);
  color: var(--valora-on-surface);
}

.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-primary);
  color: var(--valora-on-primary);
  border-radius: var(--valora-radius-md);
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  box-shadow: var(--valora-glow-primary);
}

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

.valora-stitch-disclaimer {
  padding: 1rem;
  background: var(--valora-card-low);
  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%;
    border-radius: var(--valora-radius-xl);
    overflow: hidden;
    background: transparent;
  }

  .valora-stitch-hero-visual {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
  }

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

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

  .valora-stitch-ad-slot { display: flex; }

  .valora-stitch-teaser { display: block; }
}

.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 — Sprint 41) */
.valora-stitch-calc-hub { max-width: var(--valora-container-max); margin: 0 auto; }

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

@media (min-width: 992px) {
  .valora-stitch-calc-search {
    display: none;
  }
}

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

.valora-stitch-calc-search-input {
  width: 100%;
  min-height: 3rem;
  padding: 0.75rem 1rem 0.75rem 3rem;
  border: 1px solid var(--valora-border-subtle);
  border-radius: var(--valora-radius-xl);
  background: var(--valora-card-low);
  color: var(--valora-on-surface);
  font-family: inherit;
  font-size: 0.875rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.valora-stitch-calc-search-input::placeholder {
  color: var(--valora-on-surface-variant);
}

.valora-stitch-calc-search-input:focus {
  outline: none;
  border-color: var(--valora-primary);
  box-shadow: 0 0 0 2px rgb(89 219 199 / 15%);
}

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

.valora-stitch-calc-filters--scroll {
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 0.25rem;
}

.valora-stitch-calc-filters--scroll::-webkit-scrollbar { display: none; }

.valora-stitch-filter-chip {
  display: inline-flex;
  flex-shrink: 0;
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--valora-border-subtle);
  border-radius: 9999px;
  background: rgb(255 255 255 / 5%);
  color: var(--valora-on-surface-variant);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}

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

.valora-stitch-filter-chip:hover:not(.active) {
  border-color: rgb(89 219 199 / 50%);
  color: var(--valora-on-surface);
}

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

.valora-stitch-calc-mobile { display: block; }
.valora-stitch-calc-desktop { display: none; }

.valora-stitch-calc-mobile-section + .valora-stitch-calc-mobile-section {
  margin-top: 1.5rem;
}

.valora-stitch-calc-section-label {
  margin: 0 0 1rem;
  padding: 0 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--valora-on-surface-variant);
}

.valora-stitch-calc-row-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.valora-stitch-hub-row-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--valora-border-subtle);
  border-radius: var(--valora-radius-xl);
  background: var(--valora-surface);
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s, background 0.15s, border-color 0.15s;
}

.valora-stitch-hub-row-card:active {
  transform: scale(0.98);
  background: var(--valora-card-med);
}

.valora-stitch-hub-row-main {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.valora-stitch-hub-row-card .valora-stitch-hub-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--valora-radius-lg);
  flex-shrink: 0;
}

.valora-stitch-hub-row-title {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--valora-on-surface);
}

.valora-stitch-hub-row-summary {
  margin: 0.25rem 0 0;
  font-size: 0.75rem;
  line-height: 1.35;
  color: var(--valora-on-surface-variant);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.valora-stitch-hub-row-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
  flex-shrink: 0;
}

.valora-stitch-hub-row-badge {
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.valora-stitch-hub-row-badge--trabalhista {
  background: var(--valora-badge-trabalhista-bg);
  color: var(--valora-trabalhista-blue);
}

.valora-stitch-hub-row-badge--fiscal {
  background: var(--valora-badge-fiscal-bg);
  color: var(--valora-fiscal-purple);
}

.valora-stitch-hub-row-badge--financeiro {
  background: var(--valora-badge-financeiro-bg);
  color: var(--valora-financeiro-teal);
}

.valora-stitch-hub-row-chevron {
  font-size: 1.25rem;
  color: var(--valora-on-surface-variant);
}

.valora-stitch-hub-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.valora-hub-icon-bg--trabalhista { background: var(--valora-badge-trabalhista-bg); color: var(--valora-trabalhista-blue); }
.valora-hub-icon-bg--fiscal { background: var(--valora-badge-fiscal-bg); color: var(--valora-fiscal-purple); }
.valora-hub-icon-bg--financeiro { background: var(--valora-badge-financeiro-bg); color: var(--valora-financeiro-teal); }
.valora-hub-icon-bg--warning { background: rgb(245 158 11 / 10%); color: var(--valora-warning-border); }

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

.valora-stitch-calc-mobile-cta {
  position: relative;
  overflow: hidden;
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgb(89 219 199 / 20%);
  background: linear-gradient(135deg, rgb(89 219 199 / 20%), transparent);
}

.valora-stitch-calc-mobile-cta-title {
  margin: 0 0 0.5rem;
  font-family: var(--valora-font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--valora-primary);
}

.valora-stitch-calc-mobile-cta-text {
  margin: 0 0 1.25rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--valora-on-surface-variant);
}

.valora-stitch-calc-mobile-cta-icon {
  position: absolute;
  right: -1rem;
  bottom: -1rem;
  font-size: 7.5rem;
  opacity: 0.1;
  color: var(--valora-primary);
  pointer-events: none;
}

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

.valora-stitch-calc-title {
  font-family: var(--valora-font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  color: var(--valora-text-heading);
}

.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-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.valora-stitch-calc-sidebar-card,
.valora-stitch-calc-sidebar-promo {
  border: 1px solid var(--valora-border-subtle);
  border-radius: var(--valora-radius-xl);
  background: var(--valora-surface);
  padding: 1.5rem;
}

.valora-stitch-calc-sidebar-title {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--valora-text-heading);
}

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

.valora-stitch-calc-sidebar-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  border-radius: var(--valora-radius-lg);
  color: var(--valora-on-surface-variant);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
}

.valora-stitch-calc-sidebar-link:hover {
  background: rgb(255 255 255 / 5%);
  color: var(--valora-on-surface);
}

.valora-stitch-calc-sidebar-link.active {
  background: rgb(89 219 199 / 10%);
  color: var(--valora-primary);
  font-weight: 700;
}

.valora-stitch-calc-sidebar-count {
  font-size: 0.75rem;
  opacity: 0.8;
}

.valora-stitch-calc-sidebar-promo {
  position: relative;
  overflow: hidden;
  margin-top: 1rem;
}

.valora-stitch-calc-sidebar-promo-title {
  margin: 0 0 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--valora-text-heading);
}

.valora-stitch-calc-sidebar-promo-text {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--valora-text-muted);
}

.valora-stitch-calc-sidebar-promo .valora-stitch-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.valora-stitch-calc-sidebar-promo-icon {
  position: absolute;
  right: -1rem;
  bottom: -1rem;
  font-size: 6rem;
  opacity: 0.1;
  color: var(--valora-primary);
  pointer-events: none;
}

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

.valora-stitch-calc-featured {
  border: 1px solid var(--valora-border-subtle);
  border-radius: var(--valora-radius-xl);
  background: var(--valora-surface);
  padding: 1.5rem;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.valora-stitch-calc-featured:hover {
  border-color: var(--valora-primary);
  background: var(--valora-card-low);
  box-shadow: 0 0 20px rgb(89 219 199 / 5%);
}

.valora-stitch-calc-featured-accent { display: none; }

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

.valora-stitch-calc-badge-popular {
  font-size: 0.625rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--valora-badge-financeiro-bg);
  color: var(--valora-financeiro-teal);
}

.valora-stitch-calc-featured-title {
  font-family: var(--valora-font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: var(--valora-text-heading);
}

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

.valora-stitch-calc-checks { display: none; }

.valora-stitch-hub-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid var(--valora-border-subtle);
  border-radius: var(--valora-radius-xl);
  background: var(--valora-surface);
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.valora-stitch-hub-card:hover {
  border-color: var(--valora-primary);
  background: var(--valora-card-low);
  box-shadow: 0 0 20px rgb(89 219 199 / 5%);
}

.valora-stitch-hub-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.valora-stitch-hub-card-category {
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.valora-stitch-hub-card-glyph {
  font-size: 1.5rem;
  color: var(--valora-on-surface-variant);
  transition: color 0.2s;
}

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

.valora-stitch-hub-card-title {
  margin: 0 0 0.5rem;
  font-family: var(--valora-font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--valora-text-heading);
}

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

.valora-stitch-hub-card-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: auto;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--valora-primary);
}

.valora-stitch-hub-card-cta .material-symbols-outlined {
  font-size: 1.25rem;
  opacity: 0;
  transform: translateX(-0.5rem);
  transition: opacity 0.2s, transform 0.2s;
}

.valora-stitch-hub-card:hover .valora-stitch-hub-card-cta .material-symbols-outlined,
.valora-stitch-calc-featured:hover .valora-stitch-hub-card-cta .material-symbols-outlined {
  opacity: 1;
  transform: translateX(0);
}

.valora-stitch-hub-card-cta--featured {
  display: inline-flex;
  width: fit-content;
  text-decoration: none;
}

.valora-stitch-calc-cta-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.75rem;
  padding: 1.5rem;
  border: 1px solid rgb(89 219 199 / 20%);
  border-radius: var(--valora-radius-xl);
  background: linear-gradient(135deg, var(--valora-card-low), rgb(89 219 199 / 5%));
}

.valora-stitch-calc-cta-card-icon {
  font-size: 2.25rem;
  color: var(--valora-primary);
}

.valora-stitch-calc-cta-card-title {
  margin: 0;
  font-family: var(--valora-font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--valora-text-heading);
}

.valora-stitch-calc-cta-card-text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--valora-text-muted);
}

.valora-stitch-calc-disclaimer {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  margin-top: 2rem;
  padding: 1rem;
  background: var(--valora-card-low);
  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: 992px) {
  .valora-stitch-calc-mobile { display: none; }
  .valora-stitch-calc-desktop { display: block; }
  .valora-stitch-calc-filters--scroll { display: none; }

  .valora-stitch-calc-layout {
    grid-template-columns: minmax(0, 16rem) minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
  }

  .valora-stitch-calc-bento {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .valora-stitch-calc-featured {
    grid-column: span 2;
  }

  .valora-stitch-calc-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Calculadora detail — Premium Liquid dark (Sprint 42) */
.valora-stitch-calc-detail {
  max-width: var(--valora-container-max);
  margin: 0 auto;
}

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

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

.valora-stitch-calc-detail-hero {
  margin: 0 0 0.5rem;
  padding: 0;
  background: none;
  color: inherit;
  border-radius: 0;
}

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

.valora-stitch-calc-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: var(--valora-surface-container-low);
  border: 1px solid var(--valora-border-subtle);
  color: var(--valora-on-surface);
  text-decoration: none;
  flex-shrink: 0;
  transition: border-color 0.15s, background 0.15s;
}

.valora-stitch-calc-back:hover {
  border-color: var(--valora-primary);
  color: var(--valora-primary);
}

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

@media (min-width: 992px) {
  .valora-stitch-calc-back { display: none; }
}

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

.valora-stitch-calc-detail-badge {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0.2rem 0.625rem;
  border-radius: 9999px;
  background: var(--valora-badge-financeiro-bg);
  color: var(--valora-badge-financeiro-text);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.valora-stitch-calc-detail-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--valora-text-heading);
}

@media (min-width: 992px) {
  .valora-stitch-calc-detail-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 0;
  }

  .valora-stitch-calc-detail-badge { margin-bottom: 0.75rem; }
}

.valora-stitch-calc-progress { display: none; }

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

@media (min-width: 992px) {
  .valora-stitch-calc-detail-lead {
    font-size: 1.125rem;
    max-width: 42rem;
    margin-bottom: 2rem;
  }
}

.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 {
  background: var(--valora-surface);
  border: 1px solid var(--valora-border-subtle);
  border-radius: var(--valora-radius-xl);
  box-shadow: none;
  backdrop-filter: blur(20px);
}

@media (min-width: 992px) {
  .valora-stitch-calc-form { padding: 2rem; }
}

.valora-stitch-calc-form-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--valora-text-heading);
}

.valora-stitch-calc-form-title .material-symbols-outlined {
  color: var(--valora-primary);
  font-size: 1.5rem;
}

.valora-stitch-calc-form .valora-input,
.valora-stitch-calc-form .valora-textarea,
.valora-stitch-calc-form .form-control,
.valora-stitch-calc-form select {
  background: var(--valora-surface-container-lowest);
  border-color: var(--valora-border-subtle);
}

.valora-stitch-calc-form .valora-input:focus,
.valora-stitch-calc-form .valora-textarea:focus,
.valora-stitch-calc-form .form-control:focus,
.valora-stitch-calc-form select:focus {
  border-color: var(--valora-primary);
  box-shadow: 0 0 0 1px rgb(89 219 199 / 20%);
}

.valora-stitch-calc-form input[type="date"].valora-input,
.valora-stitch-rescisao-form input[type="date"].valora-input {
  color-scheme: dark;
}

.valora-stitch-calc-form input[type="date"].valora-input::-webkit-calendar-picker-indicator,
.valora-stitch-rescisao-form input[type="date"].valora-input::-webkit-calendar-picker-indicator {
  cursor: pointer;
  filter: invert(1);
  opacity: 0.85;
}

.valora-stitch-calc-form .valora-form-advanced {
  border: 1px solid var(--valora-border-subtle);
  border-radius: var(--valora-radius-lg);
  background: var(--valora-surface-container-lowest);
  padding: 0.75rem 1rem;
}

.valora-stitch-calc-form .valora-form-advanced summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--valora-on-surface-variant);
  list-style: none;
}

.valora-stitch-calc-form .valora-form-advanced[open] summary {
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--valora-border-subtle);
}

.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;
  min-height: 3.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.9375rem;
  background: var(--valora-primary-container);
  color: var(--valora-on-primary-container);
  box-shadow: var(--valora-glow-primary);
  border: none;
}

.valora-stitch-calc-submit:hover {
  filter: brightness(1.05);
}

.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-text-muted);
  text-transform: uppercase;
}

.valora-stitch-calc-estimate .valora-result-panel,
.valora-stitch-calc-estimate-placeholder {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--valora-surface) 0%, var(--valora-surface-container-low) 100%);
  color: var(--valora-on-surface);
  border: 1px solid rgb(89 219 199 / 20%);
  border-radius: var(--valora-radius-xl);
  padding: 1.5rem;
  box-shadow: var(--valora-shadow);
}

.valora-stitch-calc-estimate .valora-result-panel::after,
.valora-stitch-calc-estimate-placeholder::after {
  content: "";
  position: absolute;
  top: -3rem;
  right: -3rem;
  width: 8rem;
  height: 8rem;
  background: rgb(89 219 199 / 10%);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

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

.valora-stitch-calc-estimate .valora-result-view-toggle {
  background: var(--valora-surface-container-low);
  border-radius: var(--valora-radius-md);
  padding: 0.25rem;
  margin-bottom: 0.75rem;
}

.valora-stitch-calc-estimate .valora-result-view-btn {
  color: var(--valora-text-muted);
}

.valora-stitch-calc-estimate .valora-result-view-btn[aria-selected="true"] {
  background: var(--valora-surface-container-high);
  color: var(--valora-on-surface);
}

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

.valora-stitch-calc-estimate .valora-result-line {
  border-bottom-color: var(--valora-border-subtle);
  color: var(--valora-on-surface-variant);
  font-size: 0.875rem;
}

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

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

.valora-stitch-calc-estimate .valora-result-total {
  margin-top: 0.75rem;
  padding: 1rem;
  background: var(--valora-surface-container-lowest);
  border: 1px solid var(--valora-border-subtle);
  border-radius: var(--valora-radius-md);
}

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

.valora-stitch-calc-estimate .valora-result-total-value {
  color: var(--valora-net-result);
  text-shadow: var(--valora-glow-net);
  font-size: clamp(1.75rem, 8vw, 2.75rem);
  font-weight: 800;
}

.valora-stitch-calc-estimate .valora-text-sm {
  color: var(--valora-text-muted);
}

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

.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;
}

/* Calculadoras fiscais / camadas — Sprint 43 */
.valora-stitch-calc-detail--fiscal .valora-stitch-calc-detail-badge {
  background: var(--valora-badge-fiscal-bg);
  color: var(--valora-badge-fiscal-text);
}

.valora-stitch-calc-detail--financial .valora-stitch-calc-detail-badge {
  background: var(--valora-badge-financeiro-bg);
  color: var(--valora-financeiro-teal);
}

.valora-stitch-calc-detail--trabalhista .valora-stitch-calc-detail-badge {
  background: var(--valora-badge-trabalhista-bg);
  color: var(--valora-trabalhista-blue);
}

.valora-stitch-calc-detail--layered .valora-stitch-calc-form .valora-form-advanced summary .material-symbols-outlined {
  color: var(--valora-primary);
}

.valora-stitch-calc-fiscal-hint {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin: -0.75rem 0 1.25rem;
  padding: 0.875rem 1rem;
  background: var(--valora-badge-fiscal-bg);
  border: 1px solid rgb(168 85 247 / 20%);
  border-radius: var(--valora-radius-lg);
}

.valora-stitch-calc-fiscal-hint .material-symbols-outlined {
  color: var(--valora-fiscal-purple);
  flex-shrink: 0;
}

.valora-stitch-calc-fiscal-hint p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--valora-on-surface-variant);
}

@media (max-width: 991px) {
  .valora-stitch-calc-detail--layered .valora-stitch-calc-form {
    margin-bottom: 0.25rem;
  }

  .valora-stitch-calc-detail--fiscal .valora-stitch-calc-estimate .valora-result-total-value,
  .valora-stitch-calc-detail--layered .valora-stitch-calc-estimate .valora-result-total-value,
  .valora-stitch-calc-detail--financial .valora-stitch-calc-estimate .valora-result-total-value {
    font-size: clamp(2rem, 10vw, 2.5rem);
  }
}

/* Rescisão CLT dark — Sprint 43 */
.valora-stitch-rescisao {
  max-width: var(--valora-container-max);
  margin: 0 auto;
}

.valora-stitch-rescisao-breadcrumb {
  display: none;
  margin-bottom: 1.5rem;
}

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

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

.valora-stitch-rescisao-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.valora-stitch-rescisao-category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: var(--valora-badge-trabalhista-bg);
  color: var(--valora-trabalhista-blue);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.valora-stitch-rescisao-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--valora-text-heading);
}

.valora-stitch-rescisao-lead {
  margin: 0;
  max-width: 42rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--valora-text-muted);
}

@media (min-width: 992px) {
  .valora-stitch-rescisao-lead { font-size: 1.125rem; }
}

.valora-stitch-rescisao-form-note {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  padding: 0.875rem 1rem;
  background: var(--valora-surface-container-low);
  border: 1px solid var(--valora-border-subtle);
  border-radius: var(--valora-radius-lg);
}

.valora-stitch-rescisao-form-note .material-symbols-outlined {
  color: var(--valora-trabalhista-blue);
  flex-shrink: 0;
}

.valora-stitch-rescisao-form-note p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--valora-on-surface-variant);
}

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

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

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

.valora-stitch-rescisao-estimate .valora-stitch-calc-estimate-kicker {
  color: var(--valora-primary);
}

.valora-stitch-rescisao-fgts-callout {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-top: 1rem;
  padding: 0.875rem 1rem;
  background: var(--valora-badge-fiscal-bg);
  border: 1px solid rgb(168 85 247 / 20%);
  border-radius: var(--valora-radius-md);
}

.valora-stitch-rescisao-fgts-callout .material-symbols-outlined {
  color: var(--valora-fiscal-purple);
  flex-shrink: 0;
}

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

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

.valora-pj-wizard-stepper {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.valora-pj-wizard-stepper-bar {
  width: 3rem;
  height: 0.25rem;
  border-radius: 9999px;
  background: var(--valora-surface-container-high);
  transition: background 0.25s, box-shadow 0.25s;
}

.valora-pj-wizard-stepper-bar--active {
  background: var(--valora-primary);
  box-shadow: 0 0 12px rgb(89 219 199 / 35%);
}

.valora-pj-wizard-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.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: var(--valora-on-primary);
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

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

@media (min-width: 992px) {
  .valora-pj-wizard-layout {
    grid-template-columns: minmax(0, 1fr) minmax(14rem, 18rem);
    gap: 1.5rem;
  }
}

.valora-pj-wizard-main { min-width: 0; }

.valora-pj-wizard-panel[hidden] { display: none !important; }

.valora-pj-wizard-nav {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.5rem;
}

.valora-pj-wizard-nav--split {
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.valora-pj-wizard-next,
.valora-pj-wizard-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.25rem;
  padding: 0 1.25rem;
  border-radius: var(--valora-radius-xl);
  font-weight: 700;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.valora-pj-wizard-next {
  width: 100%;
  border: none;
}

.valora-pj-wizard-back {
  background: transparent;
  border: 1px solid var(--valora-border-subtle);
  color: var(--valora-on-surface);
}

.valora-pj-wizard-back:hover {
  background: rgb(255 255 255 / 4%);
}

.valora-pj-wizard-icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--valora-radius-lg);
  flex-shrink: 0;
}

.valora-pj-wizard-icon-box--clt {
  background: var(--valora-badge-trabalhista-bg);
  color: var(--valora-trabalhista-blue);
}

.valora-pj-wizard-icon-box--pj {
  background: var(--valora-badge-fiscal-bg);
  color: var(--valora-fiscal-purple);
}

.valora-pj-wizard-aside {
  display: none;
}

@media (min-width: 992px) {
  .valora-pj-wizard-aside { display: block; }
}

.valora-pj-wizard-tip {
  padding: 1.25rem;
  background: var(--valora-surface-container-low);
  border: 1px dashed var(--valora-border-subtle);
  border-radius: var(--valora-radius-xl);
}

.valora-pj-wizard-tip[hidden] { display: none !important; }

.valora-pj-wizard-tip-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.5rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--valora-primary);
}

.valora-pj-wizard-tip p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--valora-text-muted);
}

.valora-stitch-cltpj-review-card {
  padding: 1.5rem;
  background: linear-gradient(160deg, var(--valora-surface) 0%, var(--valora-surface-container-low) 100%);
  border: 1px solid rgb(89 219 199 / 20%);
  border-radius: var(--valora-radius-xl);
}

.valora-stitch-cltpj-review-title {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--valora-text-heading);
}

.valora-stitch-cltpj-review-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.valora-stitch-cltpj-review-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--valora-border-subtle);
  font-size: 0.875rem;
  color: var(--valora-text-muted);
}

.valora-stitch-cltpj-review-list strong {
  color: var(--valora-on-surface);
  font-weight: 700;
}

.valora-stitch-cltpj-helper {
  margin: 0 0 1rem !important;
}

.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.5rem, 5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--valora-text-heading);
  text-align: center;
}

.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: 1.25rem;
  background: var(--valora-surface);
  border: 1px solid var(--valora-border-subtle);
  border-radius: var(--valora-radius-xl);
  backdrop-filter: blur(20px);
}

@media (min-width: 992px) {
  .valora-stitch-cltpj-input-card { padding: 2rem; }
}

.valora-stitch-cltpj-input-card .valora-input,
.valora-stitch-cltpj-input-card .form-control {
  background: var(--valora-surface-container-lowest);
  border-color: var(--valora-border-subtle);
}

.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: 1.125rem;
  font-weight: 700;
  color: var(--valora-text-heading);
}

.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 {
  flex: 1 1 auto;
  min-width: 12rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.9375rem;
  box-shadow: var(--valora-glow-primary);
}

.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 — Premium Liquid dark (Sprint 44) */
.valora-stitch-faq-hub {
  max-width: var(--valora-container-max);
  margin: 0 auto;
}

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

.valora-stitch-faq-hero-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--valora-primary);
}

.valora-stitch-faq-hero-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--valora-text-heading);
}

.valora-stitch-faq-hero-lead {
  margin: 0 0 1.5rem;
  font-size: 0.9375rem;
  color: var(--valora-text-muted);
  line-height: 1.5;
}

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

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

.valora-stitch-faq-search-input {
  width: 100%;
  height: 3.25rem;
  padding: 0 1rem 0 3rem;
  border: 1px solid var(--valora-border-subtle);
  border-radius: 9999px;
  background: var(--valora-card-low);
  font-size: 1rem;
  color: var(--valora-on-surface);
  box-shadow: var(--valora-shadow);
}

.valora-stitch-faq-search-input:focus {
  outline: none;
  border-color: var(--valora-primary);
  box-shadow: 0 0 0 2px rgb(89 219 199 / 15%);
}

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

.valora-stitch-faq-sidebar {
  display: none;
}

.valora-stitch-faq-main {
  min-width: 0;
}

.valora-stitch-faq-categories--chips {
  display: block;
  margin-bottom: 1.25rem;
}

.valora-stitch-faq-categories--grid {
  display: none;
  margin-bottom: 1.5rem;
}

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

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

.valora-stitch-faq-chip {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0 1rem;
  border-radius: 9999px;
  border: 1px solid var(--valora-border-subtle);
  background: var(--valora-card-low);
  color: var(--valora-on-surface-variant);
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
}

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

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

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

.valora-stitch-faq-cat {
  display: block;
  padding: 1rem;
  background: var(--valora-card-low);
  border: 1px solid var(--valora-border-subtle);
  border-radius: var(--valora-radius-xl);
  text-decoration: none;
  color: inherit;
  border-left-width: 4px;
  transition: transform 0.15s, border-color 0.15s, background 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); }
.valora-stitch-faq-cat--pj .material-symbols-outlined { color: var(--valora-primary); }

.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;
  color: var(--valora-text-heading);
}

.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;
  color: var(--valora-text-heading);
}

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

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

.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;
  min-height: 3.5rem;
  padding: 1rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--valora-on-surface);
  list-style: none;
}

.valora-stitch-faq-accordion-item summary .material-symbols-outlined {
  color: var(--valora-primary);
  transition: transform 0.2s;
}

.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.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--valora-primary);
  text-decoration: none;
}

.valora-stitch-faq-q-badge {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.2rem 0.5rem;
  border-radius: var(--valora-radius-sm);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.valora-stitch-faq-q-badge--trabalhista {
  background: var(--valora-badge-trabalhista-bg);
  color: var(--valora-trabalhista-blue);
}

.valora-stitch-faq-q-badge--fiscal {
  background: var(--valora-badge-fiscal-bg);
  color: var(--valora-fiscal-purple);
}

.valora-stitch-faq-q-badge--financeiro {
  background: var(--valora-badge-financeiro-bg);
  color: var(--valora-financeiro-teal);
}

.valora-stitch-faq-q-badge--neutral {
  background: var(--valora-surface-container-high);
  color: var(--valora-text-muted);
}

.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-card-low);
  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 {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: var(--valora-radius-xl);
  border: 1px solid rgb(89 219 199 / 20%);
  background: linear-gradient(160deg, rgb(0 168 150 / 12%) 0%, transparent 100%);
  text-align: center;
}

.valora-stitch-faq-cta::after {
  content: "";
  position: absolute;
  right: -2.5rem;
  bottom: -2.5rem;
  width: 10rem;
  height: 10rem;
  background: rgb(89 219 199 / 12%);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

.valora-stitch-faq-cta-icon {
  position: relative;
  z-index: 1;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--valora-primary);
}

.valora-stitch-faq-cta-title {
  position: relative;
  z-index: 1;
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--valora-primary);
}

.valora-stitch-faq-cta-text {
  position: relative;
  z-index: 1;
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  color: var(--valora-text-muted);
  line-height: 1.5;
}

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

@media (min-width: 992px) {
  .valora-stitch-faq-layout {
    grid-template-columns: minmax(14rem, 16rem) minmax(0, 1fr);
    gap: 2rem;
  }

  .valora-stitch-faq-sidebar {
    display: block;
    position: sticky;
    top: 5.5rem;
  }

  .valora-stitch-faq-sidebar-title {
    margin: 0 0 0.75rem;
    padding: 0 0.75rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--valora-text-muted);
  }

  .valora-stitch-faq-sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }

  .valora-stitch-faq-sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: var(--valora-radius-xl);
    border: 1px solid transparent;
    color: var(--valora-on-surface-variant);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
  }

  .valora-stitch-faq-sidebar-link:hover {
    background: rgb(255 255 255 / 4%);
  }

  .valora-stitch-faq-sidebar-link--active {
    background: rgb(89 219 199 / 10%);
    border-color: rgb(89 219 199 / 20%);
    color: var(--valora-primary);
  }

  .valora-stitch-faq-categories--chips { display: none; }

  .valora-stitch-faq-categories--grid { display: block; }

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

/* 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: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--valora-text-heading);
}

.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-card-low);
  text-decoration: none;
  color: inherit;
}

.valora-stitch-blog-featured:hover {
  border-color: rgb(89 219 199 / 25%);
}

.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 0 0 / 75%) 100%);
  color: var(--valora-text-heading);
  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-card-low);
  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-card-low);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s;
}

.valora-stitch-blog-feed-card:hover {
  border-color: rgb(89 219 199 / 25%);
  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(89 219 199 / 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);
  background: var(--valora-card-low);
}

.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(89 219 199 / 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-card-low);
  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: var(--valora-on-primary);
}

.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(89 219 199 / 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: var(--valora-radius-xl);
  border: 1px solid rgb(89 219 199 / 20%);
  background: linear-gradient(160deg, var(--valora-surface) 0%, var(--valora-surface-container-low) 100%);
  color: var(--valora-on-surface);
  text-align: center;
}

.valora-stitch-blog-article-newsletter-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--valora-primary);
}

.valora-stitch-blog-article-newsletter-title {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--valora-text-heading);
}

.valora-stitch-blog-article-newsletter-text {
  margin: 0 0 1rem;
  color: var(--valora-text-muted);
  line-height: 1.5;
}

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

/* Metodologia */

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

.valora-stitch-metodologia-hero {
  margin-bottom: 2rem;
  padding: 0;
  background: none;
  text-align: left;
}

.valora-stitch-metodologia-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.75rem;
  margin-bottom: 0.75rem;
  border-radius: 9999px;
  background: var(--valora-badge-financeiro-bg);
  color: var(--valora-financeiro-teal);
  font-size: 0.75rem;
  font-weight: 600;
}

.valora-stitch-metodologia-hero-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--valora-text-heading);
}

.valora-stitch-metodologia-hero-lead {
  margin: 0;
  max-width: 42rem;
  color: var(--valora-text-muted);
  line-height: 1.55;
  font-size: 1.0625rem;
}

.valora-benchmark-badge {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.5rem 0.75rem;
  margin-top: 1rem;
  padding: 0.75rem 0.85rem;
  border-radius: var(--valora-radius-md);
  border: 1px solid rgb(89 219 199 / 28%);
  background: rgb(89 219 199 / 8%);
  max-width: 36rem;
}

.valora-stitch-calc-detail-head .valora-benchmark-badge,
.valora-stitch-rescisao-meta .valora-benchmark-badge {
  margin-top: 0.5rem;
  width: 100%;
}

.valora-benchmark-badge .material-symbols-outlined {
  color: var(--valora-primary);
  font-size: 1.125rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.valora-benchmark-badge-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
  min-width: 12rem;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: var(--valora-on-surface);
}

.valora-benchmark-badge-text strong {
  font-weight: 700;
}

.valora-benchmark-badge-meta {
  color: var(--valora-outline);
  font-size: 0.75rem;
}

.valora-benchmark-badge-link {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--valora-primary);
  text-decoration: none;
  white-space: nowrap;
}

.valora-benchmark-badge-link:hover {
  text-decoration: underline;
}

.valora-stitch-metodologia-categories {
  display: grid;
  gap: 1rem;
}

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

.valora-stitch-metodologia-category {
  padding: 1.25rem;
  border-radius: var(--valora-radius-xl);
  border: 1px solid var(--valora-border-subtle);
  background: var(--valora-card-low);
}

.valora-stitch-metodologia-category--trabalhista { border-top: 3px solid var(--valora-trabalhista-blue); }
.valora-stitch-metodologia-category--fiscal { border-top: 3px solid var(--valora-fiscal-purple); }
.valora-stitch-metodologia-category--financeiro { border-top: 3px solid var(--valora-primary); }

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

.valora-stitch-metodologia-category-head h3 {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--valora-text-heading);
}

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

.valora-stitch-metodologia-category-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.65rem;
  margin-top: 0.85rem;
}

.valora-stitch-metodologia-category-links a {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--valora-primary);
  text-decoration: none;
}

.valora-stitch-metodologia-category-links a:hover {
  text-decoration: underline;
}

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

.valora-stitch-metodologia-section-title {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--valora-text-heading);
}

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

.valora-stitch-metodologia-regime {
  padding: 1.25rem;
  border-radius: var(--valora-radius-xl);
  border: 1px solid var(--valora-border-subtle);
  background: var(--valora-card-low);
  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-card-low);
}

.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-container-lowest);
}

.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;
}

/* Página de erro (404 / 500) */

.valora-stitch-error {
  max-width: 56rem;
  margin: 0 auto;
  padding: 1rem 0 2rem;
  text-align: center;
}

.valora-stitch-error-inner {
  position: relative;
}

.valora-stitch-error-badge {
  display: inline-block;
  margin-bottom: 2rem;
  padding: 0.375rem 1rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--valora-primary);
  background: rgb(89 219 199 / 10%);
  border: 1px solid rgb(89 219 199 / 20%);
}

.valora-stitch-error-title {
  margin: 0 0 1rem;
  font-family: var(--valora-font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--valora-text-heading);
}

.valora-stitch-error-title-accent {
  color: var(--valora-primary);
}

.valora-stitch-error-lead {
  margin: 0 auto 2.5rem;
  max-width: 36rem;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--valora-on-surface-variant);
}

.valora-stitch-error-request-id {
  margin: -1.5rem auto 2rem;
  max-width: 36rem;
  font-size: 0.875rem;
  color: var(--valora-text-muted);
}

.valora-stitch-error-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  text-align: left;
}

.valora-stitch-error-card {
  display: block;
  padding: 1.5rem;
  border-radius: var(--valora-radius-xl);
  border: 1px solid var(--valora-border-subtle);
  background: var(--valora-card-low);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s;
}

.valora-stitch-error-card:hover {
  border-color: rgb(89 219 199 / 35%);
  transform: translateY(-2px);
}

.valora-stitch-error-card h2 {
  margin: 0 0 0.35rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--valora-text-heading);
}

.valora-stitch-error-card p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--valora-on-surface-variant);
}

.valora-stitch-error-card-icon {
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: var(--valora-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.valora-stitch-error-card:hover .valora-stitch-error-card-icon {
  transform: scale(1.08);
}

.valora-stitch-error-card-icon--primary {
  background: rgb(89 219 199 / 10%);
  color: var(--valora-primary);
}

.valora-stitch-error-card-icon--tertiary {
  background: rgb(69 223 164 / 10%);
  color: var(--valora-net-result);
}

.valora-stitch-error-card-icon--secondary {
  background: rgb(174 198 255 / 10%);
  color: var(--valora-secondary);
}

.valora-stitch-error-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.valora-stitch-error-card-link--primary { color: var(--valora-primary); }
.valora-stitch-error-card-link--tertiary { color: var(--valora-net-result); }
.valora-stitch-error-card-link--secondary { color: var(--valora-secondary); }

.valora-stitch-error-footer-art {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--valora-border-subtle);
  color: var(--valora-on-surface-variant);
  opacity: 0.45;
}

.valora-stitch-error-footer-icons {
  position: relative;
  width: 8rem;
  height: 8rem;
  margin: 0 auto 1rem;
}

.valora-stitch-error-footer-bg {
  position: absolute;
  inset: 0;
  font-size: 5rem;
  opacity: 0.35;
}

.valora-stitch-error-footer-accent {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 2rem;
  color: var(--valora-primary);
}

.valora-stitch-error-footer-art p {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Institucional (contato, newsletter, sobre, legal) */

.valora-stitch-contact,
.valora-stitch-newsletter,
.valora-stitch-about,
.valora-stitch-legal {
  max-width: var(--valora-container-max);
  margin: 0 auto;
  padding-bottom: 1.5rem;
}

.valora-stitch-contact-header,
.valora-stitch-newsletter-header,
.valora-stitch-about-header,
.valora-stitch-legal-header {
  margin-bottom: 1.5rem;
}

.valora-stitch-contact-title,
.valora-stitch-newsletter-title,
.valora-stitch-about-title,
.valora-stitch-legal-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  color: var(--valora-text-heading);
  letter-spacing: -0.02em;
}

.valora-stitch-contact-lead,
.valora-stitch-newsletter-lead,
.valora-stitch-about-lead,
.valora-stitch-legal-lead {
  margin: 0;
  max-width: 42rem;
  color: var(--valora-on-surface-variant);
  line-height: 1.6;
  font-size: 1rem;
}

.valora-stitch-contact-layout {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.valora-stitch-contact-form {
  position: relative;
  overflow: hidden;
}

.valora-stitch-contact-form::before {
  content: "";
  position: absolute;
  top: -6rem;
  right: -6rem;
  width: 16rem;
  height: 16rem;
  border-radius: 999px;
  background: rgb(89 219 199 / 5%);
  filter: blur(60px);
  pointer-events: none;
}

.valora-stitch-contact-form > * {
  position: relative;
  z-index: 1;
}

.valora-stitch-contact-submit,
.valora-stitch-newsletter-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}

.valora-stitch-contact-success {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: var(--valora-radius-lg);
  border: 1px solid rgb(89 219 199 / 25%);
  background: rgb(89 219 199 / 8%);
  color: var(--valora-on-surface);
}

.valora-stitch-contact-success .material-symbols-outlined {
  color: var(--valora-primary);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.valora-stitch-contact-success p {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  color: var(--valora-on-surface-variant);
}

.valora-stitch-contact-aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.valora-stitch-contact-aside-card {
  display: block;
  padding: 1.25rem;
  border-radius: var(--valora-radius-xl);
  border: 1px solid var(--valora-border-subtle);
  background: var(--valora-card-low);
  text-decoration: none;
  color: inherit;
  transition: background 0.15s, border-color 0.15s;
}

a.valora-stitch-contact-aside-card:hover {
  background: var(--valora-surface-container-low);
  border-color: rgb(89 219 199 / 20%);
}

.valora-stitch-contact-aside-card h2 {
  margin: 0 0 0.35rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--valora-text-heading);
}

.valora-stitch-contact-aside-card p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--valora-on-surface-variant);
  line-height: 1.5;
}

.valora-stitch-contact-aside-icon {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.75rem;
  border-radius: var(--valora-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(59 130 246 / 12%);
  color: var(--valora-badge-labour);
}

.valora-stitch-contact-aside-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--valora-primary);
}

.valora-stitch-contact-aside-card--muted {
  cursor: default;
}

.valora-stitch-newsletter {
  max-width: 36rem;
}

.valora-stitch-newsletter-header {
  text-align: center;
}

.valora-stitch-newsletter-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(89 219 199 / 10%);
  color: var(--valora-primary);
}

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

.valora-stitch-about-badge,
.valora-stitch-legal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--valora-primary);
  background: rgb(89 219 199 / 10%);
  border: 1px solid rgb(89 219 199 / 20%);
}

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

.valora-stitch-about-card {
  padding: 1.5rem;
  border-radius: var(--valora-radius-xl);
  border: 1px solid var(--valora-border-subtle);
  background: var(--valora-card-low);
}

.valora-stitch-about-aside {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.valora-stitch-about-aside-card {
  padding: 1rem 1.25rem;
  border-radius: var(--valora-radius-xl);
  border: 1px solid var(--valora-border-subtle);
  background: var(--valora-card-low);
}

.valora-stitch-about-aside-card .material-symbols-outlined {
  color: var(--valora-primary);
  margin-bottom: 0.5rem;
}

.valora-stitch-about-aside-card h2 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 700;
}

.valora-stitch-about-aside-card p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--valora-on-surface-variant);
  line-height: 1.5;
}

.valora-stitch-legal-layout {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.valora-stitch-legal-sidebar {
  display: none;
}

.valora-stitch-legal-body section {
  scroll-margin-top: 6rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--valora-border-subtle);
}

.valora-stitch-legal-body section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.valora-stitch-legal-body {
  padding: 1.5rem;
  border-radius: var(--valora-radius-xl);
  border: 1px solid var(--valora-border-subtle);
  background: var(--valora-card-low);
}

.valora-stitch-legal-table-wrap {
  overflow-x: auto;
  margin: 1rem 0;
}

.valora-stitch-legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.valora-stitch-legal-table th,
.valora-stitch-legal-table td {
  padding: 0.75rem 0.875rem;
  border: 1px solid var(--valora-border-subtle);
  text-align: left;
  vertical-align: top;
}

.valora-stitch-legal-table th {
  background: var(--valora-card-med);
  color: var(--valora-text-heading);
  font-weight: 600;
}

.valora-stitch-legal-table code {
  font-size: 0.8125rem;
  word-break: break-word;
}

/* Meu painel */

.valora-stitch-panel--bento {
  max-width: var(--valora-container-max);
  margin: 0 auto;
  padding-bottom: 1.5rem;
}

.valora-stitch-panel-greeting {
  margin-bottom: 1.5rem;
}

.valora-stitch-panel-greeting-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--valora-text-heading);
}

.valora-stitch-panel-greeting-lead {
  margin: 0;
  max-width: 42rem;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--valora-text-muted);
}

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

.valora-stitch-panel-profile {
  padding: 1.5rem;
  border-radius: var(--valora-radius-xl);
  border: 1px solid var(--valora-border-subtle);
  background: var(--valora-card-low);
  text-align: center;
}

.valora-stitch-panel-profile-avatar {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgb(89 219 199 / 20%);
  background: rgb(89 219 199 / 8%);
  color: var(--valora-primary);
}

.valora-stitch-panel-profile-avatar .material-symbols-outlined {
  font-size: 2.25rem;
}

.valora-stitch-panel-profile-name {
  margin: 0 0 0.35rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--valora-text-heading);
}

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

.valora-stitch-panel-profile-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.valora-stitch-panel-profile-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--valora-radius-lg);
  border: 1px solid var(--valora-border-subtle);
  background: var(--valora-surface-container-low);
  color: var(--valora-on-surface);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: border-color 0.15s, background 0.15s;
}

.valora-stitch-panel-profile-btn:hover {
  border-color: rgb(89 219 199 / 30%);
  background: var(--valora-surface-container);
}

.valora-stitch-panel-card {
  position: relative;
  overflow: hidden;
  padding: 1.25rem;
  border-radius: var(--valora-radius-xl);
  border: 1px solid var(--valora-border-subtle);
  background: var(--valora-card-low);
}

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

.valora-stitch-panel-card-title-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.valora-stitch-panel-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--valora-radius-lg);
}

.valora-stitch-panel-card-icon--primary {
  background: rgb(89 219 199 / 10%);
  color: var(--valora-primary);
}

.valora-stitch-panel-card-icon--tertiary {
  background: rgb(69 223 164 / 10%);
  color: var(--valora-net-result);
}

.valora-stitch-panel-card-title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--valora-text-heading);
}

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

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

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

.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 1.25rem;
  font-size: 0.875rem;
  color: var(--valora-text-muted);
  max-width: 24rem;
  margin-left: auto;
  margin-right: auto;
}

.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-readings-link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--valora-net-result);
  text-decoration: none;
}

.valora-stitch-panel-readings-link:hover { text-decoration: underline; }

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

.valora-stitch-panel-reading-card {
  display: block;
  border-radius: var(--valora-radius-xl);
  border: 1px solid var(--valora-border-subtle);
  background: var(--valora-surface-container-low);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s;
}

.valora-stitch-panel-reading-card:hover {
  border-color: rgb(69 223 164 / 35%);
}

.valora-stitch-panel-reading-thumb {
  height: 7rem;
  overflow: hidden;
  background: var(--valora-surface-container);
}

.valora-stitch-panel-reading-body {
  padding: 1rem;
}

.valora-stitch-panel-reading-title {
  margin: 0.35rem 0 0.25rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--valora-text-heading);
}

.valora-stitch-panel-reading-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-panel-newsletter {
  background: linear-gradient(160deg, var(--valora-primary-container) 0%, rgb(0 104 95 / 90%) 100%);
  border-color: rgb(89 219 199 / 25%);
}

.valora-stitch-panel-newsletter-glow {
  position: absolute;
  right: -3rem;
  bottom: -3rem;
  width: 10rem;
  height: 10rem;
  background: rgb(255 255 255 / 10%);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

.valora-stitch-panel-newsletter-inner {
  position: relative;
  z-index: 1;
}

.valora-stitch-panel-newsletter-icon {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

.valora-stitch-panel-newsletter-title {
  margin: 0 0 0.35rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
}

.valora-stitch-panel-newsletter-lead {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgb(255 255 255 / 82%);
}

.valora-stitch-panel-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.valora-stitch-panel-newsletter-input {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border-radius: var(--valora-radius-lg);
  border: 1px solid rgb(255 255 255 / 20%);
  background: rgb(255 255 255 / 10%);
  color: #fff;
}

.valora-stitch-panel-newsletter-input::placeholder {
  color: rgb(255 255 255 / 45%);
}

.valora-stitch-panel-newsletter-btn {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: var(--valora-radius-lg);
  background: #fff;
  color: var(--valora-primary-container);
  font-weight: 700;
  cursor: pointer;
}

.valora-stitch-panel-disclaimer {
  margin-top: 1.25rem;
  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-card-low);
    margin-bottom: 1rem;
  }

  .valora-stitch-blog-article-aside-newsletter .material-symbols-outlined {
    color: var(--valora-primary);
    margin-bottom: 0.5rem;
  }

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

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

  .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: 0;
    background: none;
  }

  .valora-stitch-metodologia-hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
  }

  .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-contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: 1.5rem;
    align-items: start;
  }

  .valora-stitch-error-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .valora-stitch-contact-submit {
    width: auto;
  }

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

  .valora-stitch-legal-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 3fr);
    gap: 2rem;
    align-items: start;
  }

  .valora-stitch-legal-sidebar {
    display: block;
    position: sticky;
    top: 5.5rem;
  }

  .valora-stitch-legal-sidebar-kicker {
    margin: 0 0 0.5rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--valora-primary);
    opacity: 0.8;
  }

  .valora-stitch-legal-sidebar-title {
    margin: 0 0 1rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--valora-text-heading);
  }

  .valora-stitch-legal-toc {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    border-left: 1px solid var(--valora-border-subtle);
  }

  .valora-stitch-legal-toc a {
    padding: 0.5rem 0 0.5rem 1rem;
    border-left: 2px solid transparent;
    margin-left: -1px;
    font-size: 0.875rem;
    color: var(--valora-on-surface-variant);
    text-decoration: none;
    transition: color 0.15s, border-color 0.15s;
  }

  .valora-stitch-legal-toc a:hover {
    color: var(--valora-primary);
    border-left-color: var(--valora-primary);
  }

  .valora-stitch-legal-sidebar-meta {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: var(--valora-radius-xl);
    border: 1px solid var(--valora-border-subtle);
    background: var(--valora-card-low);
  }

  .valora-stitch-legal-sidebar-meta p {
    margin: 0 0 0.25rem;
    font-size: 0.75rem;
    color: var(--valora-on-surface-variant);
  }

  .valora-stitch-legal-sidebar-meta strong {
    color: var(--valora-primary);
  }

  .valora-stitch-panel-bento {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .valora-stitch-panel-profile {
    grid-column: span 3;
  }

  .valora-stitch-panel-saved {
    grid-column: span 9;
    padding: 2rem;
  }

  .valora-stitch-panel-readings {
    grid-column: span 8;
    padding: 2rem;
  }

  .valora-stitch-panel-readings-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .valora-stitch-panel-newsletter {
    grid-column: span 4;
    padding: 2rem;
    align-self: stretch;
  }

  .valora-stitch-panel-greeting-lead {
    font-size: 1.125rem;
  }

  .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;
  }
}

/* —— Premium Liquid dark fidelity (stitch_redesing) —— */

.valora-stitch-hero-desktop { display: none; }
.valora-stitch-section-title-desktop { display: none; }
.valora-stitch-pill--desktop .valora-stitch-pill-dot { display: none; }

.valora-stitch-section-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  color: var(--valora-text-heading);
}

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

.valora-stitch-search { display: none; }

.valora-form-card .form-control:focus,
.valora-input:focus,
.valora-textarea:focus {
  box-shadow: 0 0 0 2px rgb(89 219 199 / 15%);
}

.valora-choice:has(input:checked) {
  box-shadow: 0 0 0 2px rgb(89 219 199 / 12%);
}

@media (min-width: 992px) {
  .valora-stitch-hero-mobile { display: none; }
  .valora-stitch-hero-desktop { display: block; }
  .valora-stitch-section-title-mobile { display: none; }
  .valora-stitch-section-title-desktop { display: inline; }
  .valora-stitch-ad-slot { display: flex; }
  .valora-stitch-teaser { display: block; }

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

/* —— Sprint 40: home blog cards + shell polish —— */

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

.valora-stitch-home-blog-card {
  display: block;
  border-radius: 1rem;
  border: 1px solid var(--valora-border-subtle);
  background: var(--valora-card-low);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s, background 0.15s;
}

.valora-stitch-home-blog-card:active {
  transform: scale(0.98);
}

.valora-stitch-home-blog-card:hover {
  background: var(--valora-card-med);
}

.valora-stitch-home-blog-media-wrap {
  position: relative;
  height: 10rem;
  overflow: hidden;
}

.valora-stitch-home-blog-media {
  width: 100%;
  height: 100%;
  border-radius: 0;
}

.valora-stitch-home-blog-media .valora-stitch-blog-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.valora-stitch-home-blog-card:hover .valora-stitch-blog-hero-img {
  transform: scale(1.05);
}

.valora-stitch-home-blog-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.25;
}

.valora-stitch-home-blog-badge--trabalhista {
  background: var(--valora-primary);
  color: var(--valora-on-primary);
}

.valora-stitch-home-blog-badge--fiscal {
  background: var(--valora-secondary-container);
  color: var(--valora-on-secondary-fixed);
}

.valora-stitch-home-blog-badge--financeiro {
  background: rgb(20 184 166 / 20%);
  color: var(--valora-financeiro-teal);
}

.valora-stitch-home-blog-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.valora-stitch-home-blog-title {
  margin: 0;
  font-family: var(--valora-font-display);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--valora-text-heading);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.valora-stitch-home-blog-reading {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding-top: 0.25rem;
  font-size: 0.75rem;
  color: var(--valora-on-surface-variant);
}

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

.valora-result-panel {
  background: var(--valora-card-low);
  border: 1px solid var(--valora-border-subtle);
  border-left: 4px solid var(--valora-primary);
  box-shadow: none;
}

.valora-card {
  background: var(--valora-card-low);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--valora-primary);
  outline-offset: 2px;
}

/* Sprint 60–61 — Fidelidade Stitch v2 (salário líquido + home desktop) */

.valora-stitch-salario-estimate .valora-stitch-salario-result {
  background: linear-gradient(160deg, var(--valora-surface) 0%, var(--valora-surface-container-low) 100%);
  border: 1px solid rgb(89 219 199 / 20%);
  border-radius: var(--valora-radius-xl);
  padding: 1.5rem;
  box-shadow: var(--valora-shadow);
}

.valora-stitch-salario-result-hero-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.valora-stitch-salario-result-kicker {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--valora-text-muted);
}

.valora-stitch-salario-result-badge {
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: var(--valora-radius-full);
  background: rgb(20 184 166 / 12%);
  color: var(--valora-financeiro-teal);
}

.valora-stitch-salario-result-value {
  margin: 0;
  font-family: var(--valora-font-display);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--valora-net-result);
  text-shadow: var(--valora-glow-net);
}

.valora-stitch-salario-result-percent {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  color: var(--valora-text-muted);
}

.valora-stitch-salario-result-percent .material-symbols-outlined {
  font-size: 1rem;
  color: var(--valora-net-result);
}

.valora-stitch-salario-result-chart-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  margin: 1.5rem 0;
}

@media (min-width: 768px) {
  .valora-stitch-salario-result-chart-row {
    flex-direction: row;
    align-items: center;
  }
}

.valora-stitch-salario-chart {
  position: relative;
  width: 11.25rem;
  height: 11.25rem;
  flex-shrink: 0;
}

.valora-stitch-salario-chart-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.valora-stitch-salario-chart-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  width: 2rem;
  height: 2rem;
  font-size: 2rem;
  color: var(--valora-primary);
}

.valora-stitch-salario-legend {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: grid;
  gap: 0.75rem;
}

.valora-stitch-salario-legend li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--valora-text-muted);
}

.valora-stitch-salario-legend li strong {
  margin-left: auto;
  color: var(--valora-text-heading);
}

.valora-stitch-salario-legend-dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.valora-stitch-salario-tax-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.valora-stitch-salario-tax-card {
  padding: 1rem;
  background: var(--valora-card-low);
  border: 1px solid var(--valora-border-subtle);
  border-radius: var(--valora-radius-xl);
}

.valora-stitch-salario-tax-label {
  display: block;
  font-size: 0.75rem;
  color: var(--valora-text-muted);
  margin-bottom: 0.25rem;
}

.valora-stitch-salario-tax-value {
  font-size: 1.125rem;
  color: var(--valora-error);
}

.valora-stitch-salario-effective-rate {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1rem;
  margin-bottom: 1rem;
  background: var(--valora-card-low);
  border: 1px solid var(--valora-border-subtle);
  border-left: 4px solid var(--valora-trabalhista-blue);
  border-radius: var(--valora-radius-xl);
}

.valora-stitch-salario-effective-rate .material-symbols-outlined {
  color: var(--valora-trabalhista-blue);
}

.valora-stitch-salario-effective-rate-title {
  margin: 0 0 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--valora-text-heading);
}

.valora-stitch-salario-effective-rate p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--valora-text-muted);
}

.valora-stitch-salario-future-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  text-decoration: none;
  color: inherit;
  background: var(--valora-card-low);
  border: 1px solid var(--valora-border-subtle);
  border-radius: var(--valora-radius-xl);
}

.valora-stitch-salario-future-title {
  margin: 0 0 0.25rem;
  font-weight: 700;
  color: var(--valora-text-heading);
}

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

.valora-stitch-salario-simple {
  margin-top: 1rem;
  padding: 1rem;
  background: var(--valora-card-low);
  border: 1px solid var(--valora-border-subtle);
  border-radius: var(--valora-radius-xl);
}

.valora-stitch-salario-simple-summary {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--valora-text-heading);
  list-style: none;
}

.valora-stitch-salario-simple-summary::-webkit-details-marker { display: none; }

.valora-stitch-salario-simple .valora-simple-steps {
  margin: 1rem 0 0;
  padding: 0;
}

.valora-stitch-salario-edu-grid {
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

@media (min-width: 1024px) {
  .valora-stitch-salario-edu-grid {
    display: grid;
  }
}

.valora-stitch-salario-edu-card {
  padding: 1.25rem;
  background: var(--valora-card-low);
  border: 1px solid var(--valora-border-subtle);
  border-radius: var(--valora-radius-xl);
}

.valora-stitch-salario-edu-card--fiscal { border-left: 4px solid var(--valora-fiscal-purple); }
.valora-stitch-salario-edu-card--labour { border-left: 4px solid var(--valora-trabalhista-blue); }

.valora-stitch-salario-edu-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
}

.valora-stitch-salario-edu-card--fiscal .valora-stitch-salario-edu-title { color: var(--valora-fiscal-purple); }
.valora-stitch-salario-edu-card--labour .valora-stitch-salario-edu-title { color: var(--valora-trabalhista-blue); }

.valora-stitch-salario-edu-card p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--valora-text-muted);
}

.valora-stitch-home-breadcrumb--desktop {
  display: none;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1.5rem;
  font-size: 0.75rem;
  color: var(--valora-text-muted);
}

.valora-stitch-home-breadcrumb--desktop a {
  color: inherit;
  text-decoration: none;
}

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

.valora-stitch-social-proof {
  display: none;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2rem;
}

.valora-stitch-social-proof p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--valora-text-muted);
}

.valora-stitch-social-proof-avatars-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
}

.valora-stitch-social-proof-rating {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  padding-left: 0.125rem;
}

.valora-stitch-star-icon {
  font-size: 1rem;
  line-height: 1;
  color: #fbbf24;
  font-variation-settings: "FILL" 1, "wght" 500, "GRAD" 0, "opsz" 24;
}

.valora-stitch-social-proof-avatars {
  display: flex;
}

.valora-stitch-social-proof-avatar {
  display: block;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 2px solid var(--valora-background);
  margin-left: -0.65rem;
  overflow: hidden;
  background: var(--valora-card-med);
}

.valora-stitch-social-proof-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.valora-stitch-social-proof-avatar:first-child { margin-left: 0; }

/* Home hero backdrop — ilustração grande atrás do bento desktop (lado direito) */
.valora-stitch-home-stage {
  position: relative;
  isolation: isolate;
}

.valora-stitch-home-hero-backdrop {
  display: none;
}

@media (min-width: 992px) {
  .valora-stitch-home-stage {
    margin-bottom: 0.5rem;
  }

  .valora-stitch-home-hero-backdrop {
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    right: -6%;
    z-index: 0;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to bottom, #000 42%, rgb(0 0 0 / 88%) 72%, transparent 98%);
    mask-image: linear-gradient(to bottom, #000 42%, rgb(0 0 0 / 88%) 72%, transparent 98%);
  }

  .valora-stitch-home-hero-backdrop .valora-stitch-hero-visual {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
    object-position: top right;
  }

  .valora-stitch-home-stage .valora-stitch-hero--split {
    position: relative;
    z-index: 1;
    grid-template-columns: minmax(0, 48%);
    gap: 0;
    margin-bottom: 2.5rem;
    padding-bottom: 0;
  }

  .valora-stitch-home-stage .valora-stitch-hero-content {
    position: relative;
    z-index: 1;
    max-width: 36rem;
  }

  .valora-stitch-home-stage .valora-stitch-section--desktop-bento {
    position: relative;
    z-index: 2;
    margin-top: 0;
    padding-top: 0;
  }

  .valora-stitch-home-stage .valora-stitch-section-head--desktop-hub {
    position: relative;
    z-index: 3;
    margin-bottom: 1.25rem;
  }

  .valora-stitch-home-stage .valora-stitch-home-desktop-bento {
    position: relative;
    z-index: 2;
    margin-top: 0;
  }
}

@media (min-width: 1024px) {
  .valora-stitch-home-hero-backdrop {
    left: 50%;
    right: -8%;
    top: -0.5rem;
    height: clamp(26rem, 46vw, 34rem);
  }

  .valora-stitch-home-hero-backdrop .valora-stitch-hero-visual {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top right;
  }
}

@media (min-width: 1280px) {
  .valora-stitch-home-hero-backdrop {
    left: 50%;
    right: -10%;
    top: -1rem;
    height: clamp(28rem, 44vw, 36rem);
  }
}

.valora-stitch-section--mobile-bento { display: block; }
.valora-stitch-section--desktop-bento { display: none; }

.valora-stitch-section-kicker {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--valora-primary);
}

.valora-stitch-section-head--desktop-hub {
  align-items: flex-end;
}

.valora-stitch-link--desktop-hub {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.valora-stitch-home-desktop-bento {
  display: grid;
  gap: 1rem;
}

.valora-stitch-home-featured-card,
.valora-stitch-home-hub-card,
.valora-stitch-home-prime-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--valora-card-low);
  border: 1px solid var(--valora-border-subtle);
  border-radius: var(--valora-radius-xl);
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
}

.valora-stitch-home-featured-card:hover,
.valora-stitch-home-hub-card:hover {
  border-color: rgb(89 219 199 / 35%);
  background: var(--valora-card-med);
  transform: translateY(-2px);
}

.valora-stitch-home-featured-card {
  padding: 1.5rem;
}

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

.valora-stitch-home-featured-icon {
  width: 3.5rem;
  height: 3.5rem;
}

.valora-stitch-home-featured-badge {
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: var(--valora-radius-full);
  background: rgb(20 184 166 / 12%);
  color: var(--valora-financeiro-teal);
}

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

.valora-stitch-home-featured-summary {
  margin: 0 0 1.25rem;
  font-size: 0.9375rem;
  color: var(--valora-text-muted);
}

.valora-stitch-home-featured-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--valora-primary);
  font-weight: 700;
}

.valora-stitch-home-featured-line {
  flex: 1;
  height: 1px;
  background: var(--valora-border-subtle);
}

.valora-stitch-home-hub-card {
  position: relative;
  padding: 1.25rem;
}

.valora-stitch-home-hub-card-title {
  margin: 0.75rem 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.valora-stitch-home-hub-card-summary {
  margin: 0;
  font-size: 0.875rem;
  color: var(--valora-text-muted);
  padding-right: 1.5rem;
}

.valora-stitch-home-hub-card-arrow {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  color: var(--valora-text-muted);
}

.valora-stitch-home-prime-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  background: rgb(89 219 199 / 8%);
  border-color: rgb(89 219 199 / 25%);
}

.valora-stitch-home-prime-icon {
  font-size: 2rem;
  color: var(--valora-primary);
  margin-bottom: 0.35rem;
}

.valora-stitch-home-prime-title {
  margin: 0 0 0.35rem;
  font-size: 1.125rem;
  font-weight: 800;
}

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

.valora-stitch-home-methodology {
  display: none;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 3rem 0 2rem;
}

.valora-stitch-home-methodology-card {
  position: relative;
  padding: 2rem;
  background: var(--valora-card-low);
  border: 1px solid var(--valora-border-subtle);
  border-radius: 1.5rem;
  overflow: hidden;
}

.valora-stitch-home-methodology-accent {
  width: 4rem;
  height: 2px;
  background: var(--valora-primary);
  margin-bottom: 1.5rem;
}

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

.valora-stitch-home-methodology-card p {
  margin: 0 0 1rem;
  color: var(--valora-text-muted);
  line-height: 1.6;
}

.valora-stitch-home-methodology-features {
  display: grid;
  gap: 1.5rem;
}

.valora-stitch-home-methodology-features article {
  display: flex;
  gap: 1rem;
}

.valora-stitch-home-methodology-features .material-symbols-outlined {
  font-size: 2rem;
  color: var(--valora-primary);
  flex-shrink: 0;
}

.valora-stitch-home-methodology-features h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.valora-stitch-home-methodology-features p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--valora-text-muted);
}

.valora-stitch-link--desktop-only { display: none; }

@media (min-width: 1024px) {
  .valora-stitch-home-breadcrumb--desktop {
    display: flex;
  }

  .valora-stitch-social-proof {
    display: flex;
  }

  .valora-stitch-section--desktop-bento,
  .valora-stitch-home-methodology {
    display: grid;
  }

  .valora-stitch-section--mobile-bento,
  .valora-stitch-trust-row {
    display: none;
  }

  .valora-stitch-link--desktop-only {
    display: inline-flex;
  }

  .valora-stitch-section-kicker--center-desktop {
    text-align: center;
  }

  .valora-stitch-section-head--blog {
    text-align: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
  }

  .valora-stitch-home-desktop-bento {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .valora-stitch-home-featured-card { grid-column: span 6; }
  .valora-stitch-home-hub-card:nth-of-type(2),
  .valora-stitch-home-hub-card:nth-of-type(3) { grid-column: span 3; }
  .valora-stitch-home-hub-card:nth-of-type(4),
  .valora-stitch-home-hub-card:nth-of-type(5) { grid-column: span 4; }
  .valora-stitch-home-prime-card { grid-column: span 4; }

  .valora-stitch-home-methodology {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }
}

/* —— Sprint 62: hubs (calculadoras, blog, FAQ) —— */

.valora-stitch-calc-premium-banner {
  position: relative;
  overflow: hidden;
  margin-top: 2rem;
  padding: 1.75rem 1.5rem;
  border-radius: var(--valora-radius-xl);
  border: 1px solid rgb(89 219 199 / 18%);
  background: linear-gradient(135deg, rgb(0 168 150 / 10%) 0%, var(--valora-card-low) 55%);
}

.valora-stitch-calc-premium-banner-glow {
  position: absolute;
  top: -3rem;
  right: -2rem;
  width: 14rem;
  height: 14rem;
  background: rgb(89 219 199 / 14%);
  border-radius: 50%;
  filter: blur(48px);
  pointer-events: none;
}

.valora-stitch-calc-premium-banner-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.valora-stitch-calc-premium-badge {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0.25rem 0.625rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--valora-primary);
  border: 1px solid rgb(89 219 199 / 30%);
  border-radius: var(--valora-radius-full);
  background: rgb(0 168 150 / 8%);
}

.valora-stitch-calc-premium-title {
  margin: 0 0 0.5rem;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--valora-text-heading);
}

.valora-stitch-calc-premium-text {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--valora-text-muted);
  max-width: 36rem;
}

.valora-stitch-calc-premium-btn {
  align-self: flex-start;
}

.valora-stitch-calc-premium-visual {
  display: none;
}

.valora-stitch-blog-tip-card {
  padding: 1.25rem;
  border-radius: var(--valora-radius-xl);
  border: 1px solid rgb(89 219 199 / 22%);
  background: linear-gradient(160deg, rgb(0 168 150 / 8%) 0%, var(--valora-card-low) 100%);
}

.valora-stitch-blog-tip-icon {
  font-size: 1.75rem;
  color: var(--valora-primary);
  margin-bottom: 0.5rem;
}

.valora-stitch-blog-tip-title {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--valora-text-heading);
}

.valora-stitch-blog-tip-text {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--valora-text-muted);
}

.valora-stitch-blog-tip-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--valora-primary);
  text-decoration: none;
  border: 1px solid rgb(89 219 199 / 30%);
  border-radius: var(--valora-radius-lg);
  background: rgb(0 168 150 / 6%);
  transition: background 0.15s, border-color 0.15s;
}

.valora-stitch-blog-tip-btn:hover {
  background: rgb(0 168 150 / 12%);
  border-color: rgb(89 219 199 / 45%);
}

.valora-stitch-blog-newsletter {
  margin-top: 2rem;
  padding: 2rem 1.25rem;
  border-radius: var(--valora-radius-xl);
  border: 1px solid var(--valora-border-subtle);
  background: var(--valora-card-low);
  text-align: center;
}

.valora-stitch-blog-newsletter-inner {
  max-width: 32rem;
  margin: 0 auto;
}

.valora-stitch-blog-newsletter-title {
  margin: 0 0 0.5rem;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--valora-text-heading);
}

.valora-stitch-blog-newsletter-lead {
  margin: 0 0 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--valora-text-muted);
}

.valora-stitch-blog-newsletter .valora-footer-stitch-newsletter-form {
  max-width: 24rem;
  margin: 0 auto;
}

.valora-stitch-blog-newsletter-note {
  margin: 0.75rem 0 0;
  font-size: 0.75rem;
  color: var(--valora-text-muted);
  opacity: 0.85;
}

@media (min-width: 768px) {
  .valora-stitch-calc-premium-banner {
    padding: 2rem 2.25rem;
  }

  .valora-stitch-calc-premium-banner-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .valora-stitch-calc-premium-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5.5rem;
    height: 5.5rem;
    flex-shrink: 0;
    border-radius: var(--valora-radius-xl);
    background: rgb(0 168 150 / 12%);
    border: 1px solid rgb(89 219 199 / 20%);
  }

  .valora-stitch-calc-premium-visual .material-symbols-outlined {
    font-size: 2.5rem;
    color: var(--valora-primary);
  }

  .valora-stitch-blog-tip-card {
    grid-column: 1 / -1;
  }

  .valora-stitch-blog-newsletter {
    padding: 2.5rem 2rem;
  }
}

/* —— Sprint 63: rescisão multi-card + PJ×CLT visual —— */

.valora-stitch-cltpj-hero-lead {
  margin: 0 0 1rem;
  max-width: 42rem;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--valora-text-muted);
}

@media (min-width: 992px) {
  .valora-stitch-cltpj-hero-lead {
    font-size: 1.125rem;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .valora-stitch-cltpj-title {
    text-align: center;
  }
}

.valora-stitch-cltpj-factor-r {
  padding: 1rem 1.25rem;
  border-radius: var(--valora-radius-xl);
  border: 1px solid var(--valora-border-subtle);
  background: var(--valora-surface-container-low);
}

.valora-stitch-cltpj-factor-r-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--valora-on-surface);
}

.valora-stitch-cltpj-factor-r-badge {
  padding: 0.15rem 0.5rem;
  border-radius: var(--valora-radius-full);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--valora-net-result);
  background: rgb(69 223 164 / 12%);
}

.valora-stitch-cltpj-verdict--hero {
  padding: 1.5rem;
  border-radius: var(--valora-radius-xl);
  border: 1px solid rgb(89 219 199 / 20%);
  background: linear-gradient(160deg, var(--valora-card-low) 0%, var(--valora-surface-container-low) 100%);
}

.valora-stitch-cltpj-verdict-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1rem;
  padding: 0.35rem 0.75rem;
  border-radius: var(--valora-radius-full);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--valora-primary);
  background: rgb(89 219 199 / 12%);
}

.valora-stitch-cltpj-verdict-lead {
  margin: 0.35rem 0 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--valora-text-muted);
}

.valora-stitch-cltpj-annual-compare {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin: 1.25rem 0;
}

@media (min-width: 768px) {
  .valora-stitch-cltpj-annual-compare {
    grid-template-columns: 1fr 1fr;
  }
}

.valora-stitch-cltpj-annual-label {
  margin: 0 0 0.35rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--valora-text-muted);
}

.valora-stitch-cltpj-annual-value {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--valora-on-surface);
}

.valora-stitch-cltpj-annual-value--pj {
  color: var(--valora-primary);
}

.valora-stitch-cltpj-annual-bar {
  height: 0.5rem;
  border-radius: var(--valora-radius-full);
  background: var(--valora-surface-container-high);
  overflow: hidden;
}

.valora-stitch-cltpj-annual-bar-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: rgb(161 161 170 / 40%);
}

.valora-stitch-cltpj-annual-bar-fill--pj {
  background: var(--valora-primary);
  box-shadow: 0 0 10px rgb(89 219 199 / 45%);
}

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

@media (min-width: 768px) {
  .valora-stitch-cltpj-detail-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.valora-stitch-cltpj-detail-card {
  padding: 1.25rem;
  border-radius: var(--valora-radius-xl);
  border: 1px solid var(--valora-border-subtle);
  background: var(--valora-card-low);
}

.valora-stitch-cltpj-detail-title {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--valora-text-heading);
}

.valora-stitch-cltpj-detail-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.valora-stitch-cltpj-detail-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--valora-border-subtle);
  font-size: 0.875rem;
  color: var(--valora-text-muted);
}

.valora-stitch-cltpj-detail-list li strong {
  color: var(--valora-on-surface);
  font-weight: 600;
}

.valora-stitch-cltpj-detail-list--debit strong { color: var(--valora-error); }
.valora-stitch-cltpj-detail-list--credit strong { color: var(--valora-net-result); }

.valora-stitch-cltpj-detail-list--total {
  border-bottom: none;
  padding-top: 0.5rem;
  font-weight: 700;
}

.valora-stitch-cltpj-detail-list--pj strong { color: var(--valora-primary); }

.valora-stitch-rescisao-breakdown { margin-top: 0.5rem; }

.valora-stitch-rescisao-card {
  padding: 1.25rem;
  border-radius: var(--valora-radius-xl);
  border: 1px solid var(--valora-border-subtle);
  background: var(--valora-card-low);
}

@media (min-width: 992px) {
  .valora-stitch-rescisao-card { padding: 1.5rem 2rem; }
}

.valora-stitch-rescisao-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.valora-stitch-rescisao-card-title-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.valora-stitch-rescisao-card-title-row--solo {
  margin-bottom: 1rem;
}

.valora-stitch-rescisao-card-title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--valora-text-heading);
}

.valora-stitch-rescisao-card-title-row .material-symbols-outlined {
  color: var(--valora-net-result);
}

.valora-stitch-rescisao-icon-error { color: var(--valora-error) !important; }
.valora-stitch-rescisao-icon-fiscal { color: var(--valora-fiscal-purple) !important; }

.valora-stitch-rescisao-card-total {
  font-size: 1.125rem;
  font-weight: 700;
  white-space: nowrap;
}

.valora-stitch-rescisao-card-total--credit { color: var(--valora-net-result); }
.valora-stitch-rescisao-card-total--debit { color: var(--valora-error); }

.valora-stitch-rescisao-line-cards {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.valora-stitch-rescisao-line-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.875rem 1rem;
  border-radius: var(--valora-radius-lg);
  border-left: 4px solid var(--valora-net-result);
  background: var(--valora-surface);
}

.valora-stitch-rescisao-line-label {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--valora-on-surface);
}

.valora-stitch-rescisao-line-hint {
  margin: 0.15rem 0 0;
  font-size: 0.75rem;
  color: var(--valora-text-muted);
}

.valora-stitch-rescisao-line-value {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--valora-on-surface);
  white-space: nowrap;
}

.valora-stitch-rescisao-discount-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.valora-stitch-rescisao-discount-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--valora-border-subtle);
  font-size: 0.875rem;
  color: var(--valora-text-muted);
}

.valora-stitch-rescisao-fgts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .valora-stitch-rescisao-fgts-grid { grid-template-columns: 1fr 1fr; }
}

.valora-stitch-rescisao-fgts-stat {
  padding: 1rem 1.25rem;
  border-radius: var(--valora-radius-xl);
  border: 1px solid var(--valora-border-subtle);
  background: var(--valora-surface-container-low);
}

.valora-stitch-rescisao-fgts-stat--highlight .valora-stitch-rescisao-fgts-stat-value {
  color: var(--valora-fiscal-purple);
}

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

.valora-stitch-rescisao-fgts-stat-value {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--valora-on-surface);
}

.valora-stitch-rescisao-summary {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  border-radius: var(--valora-radius-xl);
  border: 1px solid rgb(89 219 199 / 20%);
  background: var(--valora-card-low);
}

.valora-stitch-rescisao-summary-glow {
  position: absolute;
  top: -3rem;
  right: -2rem;
  width: 8rem;
  height: 8rem;
  background: rgb(89 219 199 / 12%);
  border-radius: 50%;
  filter: blur(48px);
  pointer-events: none;
}

.valora-stitch-rescisao-summary-inner {
  position: relative;
  z-index: 1;
}

.valora-stitch-rescisao-summary-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--valora-primary);
}

.valora-stitch-rescisao-summary-title {
  margin: 0 0 1rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--valora-text-heading);
}

.valora-stitch-rescisao-summary-lead {
  margin: 0 0 0.25rem;
  font-size: 0.8125rem;
  color: var(--valora-text-muted);
}

.valora-stitch-rescisao-summary-net {
  margin: 0 0 1.25rem;
  font-size: clamp(2rem, 8vw, 2.5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--valora-primary);
}

.valora-stitch-rescisao-summary-rows {
  margin: 0 0 1.25rem;
}

.valora-stitch-rescisao-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0;
  font-size: 0.875rem;
}

.valora-stitch-rescisao-summary-row dt {
  margin: 0;
  color: var(--valora-text-muted);
}

.valora-stitch-rescisao-summary-row dd {
  margin: 0;
  color: var(--valora-on-surface);
  font-weight: 500;
}

.valora-stitch-rescisao-summary-row--debit { color: var(--valora-error); }
.valora-stitch-rescisao-summary-row--strong dd { font-weight: 700; }

.valora-stitch-rescisao-summary-row--fgts {
  font-style: italic;
  color: var(--valora-fiscal-purple);
}

.valora-stitch-rescisao-summary-row--fgts dd { color: var(--valora-fiscal-purple); }

.valora-stitch-rescisao-summary-divider {
  height: 1px;
  margin: 0.5rem 0;
  background: var(--valora-border-subtle);
}

.valora-stitch-rescisao-summary-pdf {
  width: 100%;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.valora-stitch-rescisao-tip {
  margin-top: 1rem;
  padding: 1.25rem;
  border-radius: var(--valora-radius-xl);
  border: 1px solid var(--valora-border-subtle);
  background: var(--valora-card-low);
}

.valora-stitch-rescisao-tip-title {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--valora-on-surface);
}

.valora-stitch-rescisao-tip-title .material-symbols-outlined {
  color: var(--valora-warning-text, #f59e0b);
}

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

.valora-stitch-rescisao-tip-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--valora-primary);
  text-decoration: none;
}

.valora-stitch-rescisao-tip-link:hover { text-decoration: underline; }

