html {

  scroll-behavior: smooth;

}

:root {

  --primary: #4f46e5;

  --primary-dark: #4338ca;

  --secondary: #ec4899;

  --dark: #1f2937;

}

.gradient-primary { background: linear-gradient(135deg, var(--primary), var(--secondary)); }

.gradient-text {

  background: linear-gradient(135deg, var(--primary), var(--secondary));

  -webkit-background-clip: text;

  background-clip: text;

  color: transparent;

}

/* Logotipo (partials/site_logo.php); max-height evita tamanho excessivo sem Tailwind */
.site-logo-img {

  width: auto;

  max-width: 200px;

  max-height: 2.5rem;

  object-fit: contain;

  vertical-align: middle;

}

.shadow-custom { box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.1), 0 8px 10px -6px rgba(59, 130, 246, 0.1); }

.card-hover { transition: transform 0.3s ease, box-shadow 0.3s ease; }

.card-hover:hover {

  transform: translateY(-5px);

  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

}

.sticky-nav { position: fixed; top: 0; width: 100%; z-index: 1000; transition: all 0.3s ease; }

.shine-effect { position: relative; overflow: hidden; }

body { padding-top: 72px; }

.faq-item { border-bottom: 1px solid #e5e7eb; }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }

.faq-item.active .faq-answer { max-height: 500px; }

.whatsapp-button {

  position: fixed; bottom: 20px; right: 20px; width: 56px; height: 56px;

  background: #25d366; color: #fff; border-radius: 50%; display: flex;

  align-items: center; justify-content: center; font-size: 26px; z-index: 1000;

  box-shadow: 0 4px 12px rgba(0,0,0,.15);

}



/* Onboarding — espelha sistema_legado/cadastro.php (sidebar + content + step-content) */

body.ob-onboarding {

  padding-top: 0;

  margin: 0;

  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

  display: flex;

  min-height: 100vh;

}

.ob-onboarding .ob-layout {

  display: flex;

  width: 100%;

  min-height: 100vh;

}

.ob-sidebar {

  background-color: #20252b;

  color: #fff;

  width: 300px;

  padding: 30px;

  position: fixed;

  height: 100%;

  left: 0;

  top: 0;

  z-index: 50;

  box-sizing: border-box;

}

.ob-sidebar-title {

  font-weight: bold;

  font-size: 24px;

  margin-bottom: 50px;

  line-height: 1.25;

}

.ob-step {

  display: flex;

  align-items: center;

  margin-bottom: 30px;

  color: #a0a0a0;

  transition: color 0.3s ease;

}

.ob-step.active {

  color: #fff;

}

.ob-step-num {

  width: 40px;

  height: 40px;

  border-radius: 50%;

  background-color: #333842;

  display: flex;

  align-items: center;

  justify-content: center;

  margin-right: 15px;

  font-weight: bold;

  flex-shrink: 0;

  transition: background-color 0.3s ease;

}

.ob-step.active .ob-step-num {

  background-color: #1d84e7;

}

.ob-step-info {

  display: flex;

  flex-direction: column;

  min-width: 0;

}

.ob-step-info .ob-step-t {

  font-weight: bold;

  margin-bottom: 5px;

  font-size: 15px;

}

.ob-step-info .ob-step-d {

  font-size: 14px;

  opacity: 0.8;

  line-height: 1.35;

}

.ob-main {

  flex: 1;

  margin-left: 300px;

  padding: 50px;

  min-height: 100vh;

  background-color: #f8f9fa;

  box-sizing: border-box;

  width: 100%;

}

.ob-panel {

  background-color: #fff;

  border-radius: 10px;

  padding: 40px;

  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);

  max-width: 900px;

  margin: 0 auto;

}

.ob-step-header {

  text-align: center;

  margin-bottom: 30px;

}

.ob-step-header h1,

.ob-step-header h2 {

  font-size: 28px;

  font-weight: bold;

  margin: 0 0 15px;

  color: #111827;

}

.ob-step-header p {

  color: #666;

  font-size: 16px;

  margin: 0;

  line-height: 1.5;

}

.ob-alert-error {

  margin-bottom: 20px;

  padding: 14px 18px;

  background: #fef2f2;

  color: #991b1b;

  border-radius: 8px;

  font-size: 14px;

}

.ob-benefits {

  display: flex;

  justify-content: space-around;

  gap: 20px;

  margin-bottom: 40px;

  flex-wrap: wrap;

}

.ob-benefit {

  text-align: center;

  flex: 1;

  min-width: 160px;

  margin-bottom: 10px;

}

.ob-feature-icon {

  width: 50px;

  height: 50px;

  border-radius: 50%;

  background-color: rgba(29, 132, 231, 0.1);

  display: flex;

  align-items: center;

  justify-content: center;

  margin: 0 auto 15px;

}

.ob-feature-icon i {

  color: #1d84e7;

  font-size: 20px;

}

.ob-benefit-title {

  font-weight: 600;

  margin-bottom: 10px;

  font-size: 15px;

}

.ob-benefit-desc {

  font-size: 14px;

  color: #666;

  line-height: 1.45;

}

.ob-form-group {

  margin-bottom: 25px;

}

.ob-label {

  font-weight: 600;

  margin-bottom: 10px;

  display: block;

  font-size: 15px;

  color: #374151;

}

.ob-input,

.ob-select,

.ob-panel select,

.ob-panel input[type="text"],

.ob-panel input[type="email"],

.ob-panel input[type="password"],

.ob-panel input[type="tel"] {

  width: 100%;

  max-width: 100%;

  padding: 12px;

  border-radius: 5px;

  border: 1px solid #ddd;

  font-size: 15px;

  font-family: inherit;

  box-sizing: border-box;

}

.ob-input:focus,

.ob-select:focus,

.ob-panel select:focus,

.ob-panel input:focus {

  outline: none;

  border-color: #1d84e7;

  box-shadow: 0 0 0 3px rgba(29, 132, 231, 0.15);

}

.ob-btn-primary {

  background-color: #1d84e7;

  border: none;

  padding: 12px 20px;

  font-weight: 600;

  border-radius: 5px;

  cursor: pointer;

  color: #fff;

  font-size: 15px;

  font-family: inherit;

  transition: background-color 0.3s ease;

  display: inline-flex;

  align-items: center;

  gap: 8px;

  text-decoration: none;

}

.ob-btn-primary:hover {

  background-color: #1666bb;

  color: #fff;

}

.ob-btn-primary:disabled {

  opacity: 0.5;

  cursor: not-allowed;

}

.ob-btn-primary:disabled:hover {

  background-color: #1d84e7;

}

.ob-btn-outline {

  background-color: transparent;

  border: 1px solid #ddd;

  color: #333;

  padding: 12px 20px;

  font-weight: 600;

  border-radius: 5px;

  cursor: pointer;

  font-size: 15px;

  font-family: inherit;

  transition: background-color 0.3s ease;

  display: inline-flex;

  align-items: center;

  gap: 8px;

  text-decoration: none;

}

.ob-btn-outline:hover {

  background-color: #f5f5f5;

  color: #333;

}

.ob-nav {

  display: flex;

  justify-content: space-between;

  align-items: center;

  margin-top: 40px;

  flex-wrap: wrap;

  gap: 15px;

}

.ob-nav-buttons {

  display: flex;

  gap: 15px;

  flex-wrap: wrap;

}

.ob-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;

}

.ob-plan-cards {

  display: flex;

  gap: 20px;

  margin-top: 10px;

  margin-bottom: 10px;

  flex-wrap: wrap;

}

.ob-plan-label {

  flex: 1;

  min-width: 260px;

  cursor: pointer;

  display: block;

  position: relative;

}

.ob-plan-label.has-ribbon {

  padding-top: 8px;

}

.ob-ribbon {

  position: absolute;

  top: 0;

  right: 12px;

  background: #1d84e7;

  color: #fff;

  font-size: 11px;

  font-weight: 700;

  padding: 5px 12px;

  border-radius: 4px;

  text-transform: uppercase;

  letter-spacing: 0.03em;

  z-index: 2;

}

.ob-plan-card {

  height: 100%;

  border: 2px solid #ddd;

  border-radius: 12px;

  padding: 25px;

  transition: border-color 0.3s ease, box-shadow 0.3s ease;

  box-sizing: border-box;

}

.ob-plan-label input:focus-visible + .ob-plan-card {

  outline: 2px solid #1d84e7;

  outline-offset: 2px;

}

.ob-plan-label input:checked + .ob-plan-card {

  border-color: #1d84e7;

  box-shadow: 0 10px 20px rgba(29, 132, 231, 0.1);

}

.ob-plan-header {

  text-align: center;

  padding-bottom: 20px;

  border-bottom: 1px solid #eee;

  margin-bottom: 20px;

}

.ob-plan-name {

  font-size: 22px;

  font-weight: bold;

  margin-bottom: 5px;

}

.ob-plan-meta-min {

  font-size: 12px;

  color: #64748b;

  margin-bottom: 2px;

}

.ob-account-stepper {

  margin: 14px 0 12px;

  text-align: center;

}

.ob-account-stepper-label {

  display: block;

  font-size: 12px;

  font-weight: 600;

  color: #334155;

  margin-bottom: 8px;

}

.ob-account-stepper-controls {

  display: inline-flex;

  align-items: center;

  gap: 0;

  border: 1px solid #e2e8f0;

  border-radius: 10px;

  overflow: hidden;

  background: #f8fafc;

}

.ob-stepper-btn {

  width: 40px;

  height: 40px;

  border: none;

  background: #fff;

  color: #1d84e7;

  font-size: 20px;

  font-weight: 600;

  line-height: 1;

  cursor: pointer;

  font-family: inherit;

  transition: background-color 0.2s ease, color 0.2s ease;

}

.ob-stepper-btn:hover:not(:disabled) {

  background: #eff6ff;

  color: #1666bb;

}

.ob-stepper-btn:disabled {

  opacity: 0.35;

  cursor: not-allowed;

}

.ob-stepper-input {

  width: 52px;

  height: 40px;

  border: none;

  border-left: 1px solid #e2e8f0;

  border-right: 1px solid #e2e8f0;

  text-align: center;

  font-size: 16px;

  font-weight: 600;

  font-family: inherit;

  color: #0f172a;

  background: #fff;

  -moz-appearance: textfield;

}

.ob-stepper-input::-webkit-outer-spin-button,
.ob-stepper-input::-webkit-inner-spin-button {

  -webkit-appearance: none;

  margin: 0;

}

.ob-plan-seat-alt {

  font-size: 13px;

  color: #475569;

  margin: 6px 0 10px;

}

.ob-plan-year-note {

  font-weight: 500;

  font-size: 12px;

  color: #64748b;

}

.ob-plan-year-total--sub {

  font-size: 13px;

  font-weight: 600;

  margin-top: 8px;

  color: #334155;

}

.ob-plan-price {

  font-size: 32px;

  font-weight: bold;

  color: #1d84e7;

  margin-bottom: 5px;

}

.ob-plan-billing {

  color: #666;

  font-size: 14px;

}

.ob-plan-pricing {

  margin-top: 8px;

}

.ob-annual-stack,
.ob-monthly-stack {

  display: flex;

  flex-direction: column;

  align-items: center;

  text-align: center;

  gap: 4px;

}

.ob-plan-summary-line {

  font-size: 14px;

  color: #475569;

  line-height: 1.45;

  margin: 10px 0 0;

  max-width: 280px;

}

.ob-plan-summary-line strong {

  color: #334155;

  font-weight: 600;

}

.ob-plan-subtle {

  font-size: 12px;

  color: #64748b;

  margin: 6px 0 0;

  line-height: 1.4;

  max-width: 280px;

}

.ob-plan-save-chip {

  display: inline-flex;

  align-items: center;

  gap: 6px;

  background: linear-gradient(135deg, #059669, #10b981);

  color: #fff;

  font-size: 12px;

  font-weight: 700;

  padding: 6px 12px;

  border-radius: 999px;

  margin-bottom: 12px;

  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.35);

}

.ob-plan-star-price {

  margin-bottom: 6px;

}

.ob-plan-star-label {

  display: block;

  font-size: 13px;

  font-weight: 600;

  color: #64748b;

  text-transform: uppercase;

  letter-spacing: 0.04em;

  margin-bottom: 4px;

}

.ob-plan-star-line {

  line-height: 1.1;

}

.ob-plan-star-num {

  font-size: 2.25rem;

  font-weight: 800;

  color: #047857;

  letter-spacing: -0.02em;

}

.ob-plan-star-num--blue {

  color: #1d84e7;

}

.ob-plan-star-suf {

  font-size: 1.25rem;

  font-weight: 700;

  color: #0f766e;

  margin-left: 2px;

}

.ob-plan-star-num--blue + .ob-plan-star-suf {

  color: #1d84e7;

}

.ob-plan-year-total {

  font-size: 14px;

  color: #64748b;

  margin-top: 10px;

  line-height: 1.45;

  max-width: 280px;

}

.ob-plan-year-total strong {

  color: #334155;

  font-weight: 700;

}

.ob-plan-pitch {

  font-size: 13px;

  color: #475569;

  margin: 14px 0 0;

  line-height: 1.5;

  max-width: 300px;

}

.ob-plan-pitch-soft {

  color: #64748b;

  font-style: italic;

}

.ob-plan-billing-tight {

  margin: 8px 0 0;

  font-size: 14px;

}

.ob-plan-nudge {

  font-size: 12px;

  color: #64748b;

  margin: 14px 0 0;

  line-height: 1.45;

  max-width: 280px;

  padding: 10px 12px;

  background: #f1f5f9;

  border-radius: 8px;

  border: 1px dashed #cbd5e1;

}

.ob-plan-nudge .fa-lightbulb {

  color: #ca8a04;

  margin-right: 6px;

}

.ob-billing-promo {

  display: flex;

  flex-wrap: wrap;

  align-items: center;

  justify-content: center;

  gap: 8px;

  margin-bottom: 14px;

}

.ob-billing-promo .ob-promo-chip {

  font-size: 11px;

  font-weight: 800;

  letter-spacing: 0.02em;

  text-transform: uppercase;

  padding: 6px 12px;

  border-radius: 999px;

}

.ob-promo-chip--fire {

  background: linear-gradient(135deg, #fff7ed, #ffedd5);

  color: #9a3412;

  border: 1px solid #fdba74;

}

.ob-promo-chip--eco {

  background: #ecfdf5;

  color: #047857;

  border: 1px solid #6ee7b7;

}

.ob-billing-toggle-wrap {

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 14px;

  flex-wrap: wrap;

  margin-bottom: 28px;

  margin-top: 8px;

}

.ob-billing-toggle-wrap .ob-toggle-label {

  font-weight: 600;

  font-size: 15px;

  color: #666;

  transition: color 0.25s ease;

}

.ob-billing-toggle-wrap.is-yearly .ob-toggle-annual {

  color: #1d84e7;

}

.ob-billing-toggle-wrap:not(.is-yearly) .ob-toggle-monthly {

  color: #1d84e7;

}

.ob-toggle-switch {

  position: relative;

  display: inline-block;

  width: 56px;

  height: 30px;

  flex-shrink: 0;

}

.ob-toggle-switch input {

  opacity: 0;

  width: 0;

  height: 0;

  position: absolute;

}

.ob-toggle-slider {

  position: absolute;

  cursor: pointer;

  inset: 0;

  background-color: #ccc;

  transition: 0.3s;

  border-radius: 34px;

}

.ob-toggle-slider::before {

  position: absolute;

  content: "";

  height: 22px;

  width: 22px;

  left: 4px;

  bottom: 4px;

  background-color: #fff;

  transition: 0.3s;

  border-radius: 50%;

}

.ob-toggle-switch input:checked + .ob-toggle-slider {

  background-color: #1d84e7;

}

.ob-toggle-switch input:checked + .ob-toggle-slider::before {

  transform: translateX(26px);

}

.ob-toggle-badge {

  display: inline-block;

  margin-left: 6px;

  padding: 2px 8px;

  font-size: 11px;

  font-weight: 700;

  border-radius: 4px;

  background: #16a34a;

  color: #fff;

  vertical-align: middle;

}

.ob-plan-features {

  margin-bottom: 10px;

}

.ob-plan-feature {

  display: flex;

  align-items: flex-start;

  margin-bottom: 12px;

  font-size: 14px;

  color: #444;

}

.ob-plan-feature i {

  color: #1d84e7;

  margin-right: 10px;

  margin-top: 3px;

  flex-shrink: 0;

}

.ob-radio-row {

  display: flex;

  gap: 15px;

  margin-bottom: 30px;

  flex-wrap: wrap;

}

.ob-radio-opt-label {

  flex: 1;

  min-width: 200px;

  cursor: pointer;

  display: block;

}

.ob-radio-opt {

  border: 2px solid #ddd;

  border-radius: 8px;

  padding: 20px;

  text-align: center;

  transition: border-color 0.3s ease, background-color 0.3s ease;

  height: 100%;

  box-sizing: border-box;

}

.ob-radio-opt-label input:checked + .ob-radio-opt {

  border-color: #1d84e7;

  background-color: rgba(29, 132, 231, 0.05);

}

.ob-radio-opt i {

  font-size: 24px;

  margin-bottom: 12px;

  color: #555;

  display: block;

}

.ob-radio-opt-label input:checked + .ob-radio-opt i {

  color: #1d84e7;

}

.ob-radio-opt h3 {

  margin: 0 0 10px;

  font-size: 17px;

  font-weight: 600;

}

.ob-radio-opt p {

  margin: 0;

  color: #666;

  font-size: 14px;

  line-height: 1.4;

}

.ob-radio-price {

  font-size: 18px;

  font-weight: bold;

  color: #1d84e7;

  margin-top: 10px;

}

.ob-order-summary {

  background-color: #f9f9f9;

  border-radius: 8px;

  padding: 20px;

  margin-bottom: 30px;

}

.ob-order-summary h3 {

  margin: 0 0 16px;

  font-size: 18px;

}

.ob-summary-row {

  display: flex;

  justify-content: space-between;

  margin-bottom: 10px;

  padding-bottom: 10px;

  border-bottom: 1px solid #eee;

  font-size: 15px;

}

.ob-summary-row:last-of-type {

  border-bottom: none;

  margin-bottom: 0;

  padding-bottom: 0;

}

.ob-summary-total {

  display: flex;

  justify-content: space-between;

  font-weight: bold;

  font-size: 18px;

  margin-top: 15px;

  padding-top: 12px;

  border-top: 1px solid #e5e5e5;

}

.ob-check-row {

  display: flex;

  align-items: flex-start;

  gap: 10px;

  margin-bottom: 20px;

  font-size: 14px;

  line-height: 1.5;

  color: #444;

}

.ob-check-row input[type="checkbox"] {

  margin-top: 4px;

  flex-shrink: 0;

}

.ob-muted {

  font-size: 13px;

  color: #6b7280;

  margin-top: 6px;

  display: block;

}

.ob-row-2 {

  display: flex;

  gap: 12px;

  align-items: flex-end;

}

.ob-row-2 .ob-form-group:first-child {

  flex: 0 0 100px;

}

.ob-row-2 .ob-form-group:last-child {

  flex: 1;

}

.ob-hidden {

  display: none !important;

}



@media (max-width: 992px) {

  body.ob-onboarding {

    flex-direction: column;

  }

  .ob-layout {

    flex-direction: column;

  }

  .ob-sidebar {

    width: 100%;

    height: auto;

    position: relative;

    padding: 20px;

  }

  .ob-sidebar-title {

    margin-bottom: 20px;

    text-align: center;

  }

  .ob-main {

    margin-left: 0;

    padding: 20px;

  }

  .ob-panel {

    padding: 20px;

  }

  .ob-plan-cards {

    flex-direction: column;

  }

  .ob-plan-label {

    min-width: 100%;

  }

}



@media (max-width: 768px) {

  .ob-sidebar {

    display: flex;

    flex-wrap: wrap;

    justify-content: space-between;

    gap: 8px;

  }

  .ob-sidebar-title {

    width: 100%;

  }

  .ob-step {

    width: 22%;

    flex-direction: column;

    text-align: center;

    margin-bottom: 15px;

  }

  .ob-step-num {

    margin: 0 auto 10px;

  }

  .ob-step-info .ob-step-d {

    display: none;

  }

  .ob-benefits {

    flex-direction: column;

  }

  .ob-radio-row {

    flex-direction: column;

  }

  .ob-nav {

    flex-direction: column;

    align-items: stretch;

  }

  .ob-nav-buttons,

  .ob-nav > a {

    width: 100%;

  }

  .ob-nav .ob-btn-primary,

  .ob-nav .ob-btn-outline {

    justify-content: center;

    width: 100%;

  }

}



@media (max-width: 576px) {

  .ob-panel {

    padding: 15px;

  }

  .ob-step-header h1,

  .ob-step-header h2 {

    font-size: 24px;

  }

  .ob-step-header p {

    font-size: 14px;

  }

  .ob-step-num {

    width: 32px;

    height: 32px;

    font-size: 14px;

  }

  .ob-step-info .ob-step-t {

    font-size: 13px;

  }

}



@media (max-width: 400px) {

  .ob-step {

    width: 48%;

  }

  .ob-plan-price {

    font-size: 26px;

  }

  .ob-plan-star-num {

    font-size: 1.85rem;

  }

  .ob-plan-star-suf {

    font-size: 1.05rem;

  }

}



/* Home — passos “Veja como é fácil” (cards alinhados, moldura uniforme nas capturas) */

.home-howto-list {

  display: grid;

  list-style: none;

  padding: 0;

  margin-left: auto;

  margin-right: auto;

  row-gap: 2.5rem;

  justify-items: center;

}

.home-howto-item {

  position: relative;

  display: flex;

  flex-direction: column;

  height: 100%;

  width: 100%;

  max-width: 26rem;

  background: #fff;

  border-radius: 1.25rem;

  padding: 1.5rem 1.25rem 1.25rem;

  border: 1px solid rgba(226, 232, 240, 0.95);

  box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.04), 0 12px 32px -8px rgba(79, 70, 229, 0.08);

  transition: box-shadow 0.3s ease, border-color 0.3s ease;

}

@media (min-width: 768px) {

  .home-howto-item {

    padding: 1.75rem 1.5rem 1.5rem;

  }

}

.home-howto-item:hover {

  border-color: rgba(129, 140, 248, 0.35);

  box-shadow: 0 8px 16px -4px rgba(15, 23, 42, 0.06), 0 20px 40px -12px rgba(79, 70, 229, 0.14);

}

@media (min-width: 1024px) {

  .home-howto-list {

    grid-template-columns: repeat(3, minmax(0, 25rem));

    justify-content: center;

    justify-items: stretch;

    column-gap: 2rem;

    row-gap: 2rem;

  }

  .home-howto-item {

    max-width: none;

    width: 100%;

  }

}

@media (min-width: 1280px) {

  .home-howto-list {

    column-gap: 2.5rem;

  }

}

.home-howto-copy {

  text-align: center;

  flex-shrink: 0;

  margin-bottom: 1.25rem;

}

@media (min-width: 1024px) {

  .home-howto-copy {

    min-height: 10.75rem;

    margin-bottom: 1.5rem;

    display: flex;

    flex-direction: column;

    align-items: center;

  }

}

.home-howto-num {

  display: flex;

  align-items: center;

  justify-content: center;

  width: 2.75rem;

  height: 2.75rem;

  margin: 0 auto 1rem;

  border-radius: 9999px;

  font-weight: 700;

  font-size: 1.125rem;

  color: #fff;

  background: linear-gradient(135deg, var(--primary), var(--secondary));

  box-shadow: 0 4px 14px -2px rgba(79, 70, 229, 0.45);

}

.home-howto-figure {

  margin: 0;

  margin-top: auto;

  width: 100%;

  flex-shrink: 0;

  border-radius: 0.875rem;

  overflow: hidden;

  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);

  border: 1px solid rgba(148, 163, 184, 0.28);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);

  aspect-ratio: 986 / 807;

  max-height: min(70vw, 380px);

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 0.5rem 0.5rem 0.625rem;

  transition: box-shadow 0.3s ease;

}

@media (min-width: 1024px) {

  .home-howto-figure {

    max-height: none;

    padding: 0.625rem 0.75rem 0.75rem;

  }

}

.home-howto-item:hover .home-howto-figure {

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75), 0 6px 20px -6px rgba(79, 70, 229, 0.18);

}

.home-howto-img {

  display: block;

  max-width: 100%;

  max-height: 100%;

  width: auto;

  height: auto;

  object-fit: contain;

  vertical-align: middle;

}

/* Painéis admin/cliente — evita padding do site marketing */
body.app-panel {
  padding-top: 0;
  min-height: 100vh;
}

.panel-shell {
  min-height: 100vh;
}

.panel-sidebar {
  width: 16rem;
  flex-shrink: 0;
  background: linear-gradient(180deg, #1e1b4b 0%, #312e81 100%);
  color: #e0e7ff;
}

.panel-sidebar--client {
  background: linear-gradient(180deg, #1f2937 0%, #374151 100%);
  color: #f3f4f6;
}

.panel-nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(224, 231, 255, 0.85);
  transition: background 0.15s ease, color 0.15s ease;
}

.panel-sidebar--client .panel-nav-link {
  color: rgba(243, 244, 246, 0.88);
}

.panel-nav-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.panel-nav-link--active {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.panel-nav-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(224, 231, 255, 0.45);
  margin: 1rem 0 0.35rem 0.75rem;
}

.panel-sidebar--client .panel-nav-label {
  color: rgba(243, 244, 246, 0.45);
}

.panel-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 30;
  background: rgba(0, 0, 0, 0.45);
}

@media (max-width: 1023px) {
  .panel-sidebar-fixed {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 40;
    transform: translateX(-100%);
    transition: transform 0.2s ease;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.2);
  }

  body.panel-sidebar-open .panel-sidebar-fixed {
    transform: translateX(0);
  }

  body.panel-sidebar-open .panel-overlay {
    display: block;
  }
}

.badge-status {
  display: inline-flex;
  align-items: center;
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-status--success {
  background: #d1fae5;
  color: #065f46;
}

.badge-status--warning {
  background: #fef3c7;
  color: #92400e;
}

.badge-status--danger {
  background: #fee2e2;
  color: #991b1b;
}

.badge-status--neutral {
  background: #e5e7eb;
  color: #374151;
}

.badge-status--info {
  background: #dbeafe;
  color: #1e40af;
}

