/* =====================================================================
   SisAguia — Tema de marca sobre Bootstrap 5.3
   Águia Perícias · Identidade: autoridade técnica automotiva
   ---------------------------------------------------------------------
   Cores primárias da marca (preservadas do tema original):
     --brand-red    #ad1313   vermelho da marca
     --brand-dark   #232323   quase-preto (navbar / superfícies escuras)
     --brand-sand   #d3d0cb   bege de fundo
   Estrutura:
     1. Tokens de marca + override das variáveis do Bootstrap
     2. Tipografia
     3. Estrutura / fundo da página
     4. Navbar (pública e interna)
     5. Cards e superfícies
     6. Botões
     7. Formulários e tabelas
     8. Camada de COMPATIBILIDADE BS4 → BS5 (não mexer nas 68 views)
     9. Utilitários e helpers legados
   ===================================================================== */

/* 1. ---------------------------------------------------------- TOKENS */
:root {
  --brand-red: #ad1313;
  --brand-red-600: #951010;
  --brand-red-700: #7d0d0d;
  --brand-red-050: #fbecec;
  --brand-dark: #232323;
  --brand-dark-soft: #2e2e2e;
  --brand-sand: #d3d0cb;
  --brand-sand-050: #f4f2ef;

  --surface: #ffffff;
  --surface-muted: #f7f5f2;
  --ink: #1b1b1b;
  --ink-muted: #6b6864;
  --line: #e7e3dd;

  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm:
    0 1px 2px rgba(35, 35, 35, 0.06), 0 1px 3px rgba(35, 35, 35, 0.08);
  --shadow-md: 0 6px 24px -8px rgba(35, 35, 35, 0.18);
  --shadow-lg: 0 24px 60px -20px rgba(35, 35, 35, 0.35);

  /* Override das variáveis nativas do Bootstrap 5.3 — retematiza
     automaticamente .bg-primary, .text-primary, .border-primary, links… */
  --bs-primary: #ad1313;
  --bs-primary-rgb: 173, 19, 19;
  --bs-link-color: #ad1313;
  --bs-link-color-rgb: 173, 19, 19;
  --bs-link-hover-color: #7d0d0d;
  --bs-body-color: #1b1b1b;
  --bs-body-bg: #d3d0cb;
  --bs-border-color: #e7e3dd;
  --bs-emphasis-color: #232323;
  --bs-font-sans-serif:
    "IBM Plex Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* 2. ----------------------------------------------------- TIPOGRAFIA */
body {
  font-family: var(--bs-font-sans-serif);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.005em;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.navbar-brand,
.card-header {
  font-family: "Saira", var(--bs-font-sans-serif);
  letter-spacing: -0.01em;
  font-weight: 600;
}

.lead {
  color: var(--ink-muted);
  font-weight: 400;
}

/* 3. ----------------------------------------------------- ESTRUTURA */
/* Fundo da marca: foto fundo.jpg com leve véu de marca por cima para
   manter legibilidade do conteúdo sobre a imagem. */
@media (min-width: 1px) {
  body {
    background:
      linear-gradient(rgba(211, 208, 203, 0.82), rgba(211, 208, 203, 0.88)),
      url("../img/fundo.jpg") no-repeat center center fixed,
      var(--brand-sand);
    background-size: auto, cover, auto;
    min-height: 100vh;
  }
}

/* Respiro vertical consistente para o conteúdo de todas as telas */
.content,
body > .container,
body > .container-fluid {
  background-size: cover;
  padding-top: 1.5rem;
  padding-bottom: 2.5rem;
}

/* 4. -------------------------------------------------------- NAVBAR */
.navbar.bg-dark,
.navbar.static-top {
  background: linear-gradient(
    180deg,
    var(--brand-dark-soft),
    var(--brand-dark)
  ) !important;
  box-shadow: var(--shadow-md);
  border-bottom: 2px solid var(--brand-red);
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
  min-height: 60px;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.navbar-brand img {
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
  border-radius: 8px;
  padding-left: 0.9rem;
  padding-right: 0.9rem;
  transition:
    background-color 0.15s ease,
    color 0.15s ease;
}
.navbar-dark .navbar-nav .nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.navbar-dark .navbar-nav .nav-item.active > .nav-link,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
  background: rgba(173, 19, 19, 0.35);
}

/* Menu interno (vermelho da marca) */
.navbar.bg-dark-red,
.navbar.bg-primary {
  background: linear-gradient(
    180deg,
    var(--brand-red),
    var(--brand-red-600)
  ) !important;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border-bottom: 0;
  margin-bottom: 1.25rem;
}

.dropdown-menu {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: 0.35rem;
  margin-top: 0.4rem;
}
.dropdown-item {
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  font-size: 0.94rem;
}
.dropdown-item:hover {
  background: var(--brand-red-050);
  color: var(--brand-red-700);
}
.dropdown-item.active,
.dropdown-item:active {
  background: var(--brand-red);
  color: #fff;
}

/* Saudação "Bem vindo" dentro da navbar — mesma altura dos botões/busca (40px) */
.navbar-welcome {
  display: inline-flex;
  align-items: center;
  align-self: center;
  height: 40px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 0.92rem;
  white-space: nowrap;
  padding: 0 0.8rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-left: 3px solid var(--brand-red);
}
/* Itens da navbar interna alinhados na mesma linha de base vertical */
.navbar .navbar-collapse .navbar-text {
  padding-top: 0;
  padding-bottom: 0;
}
.navbar .navbar-collapse > form {
  align-items: center;
}
.navbar-welcome i {
  color: var(--brand-red);
  margin-right: 0.35rem;
}
.navbar-welcome strong {
  color: #fff;
}

/* Avatar do usuário + dropdown (canto direito da navbar) */
.navbar-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.55);
  transition: border-color 0.15s ease;
}
.navbar-avatar-fallback {
  background: var(--brand-red);
  color: #fff;
  font-size: 1rem;
}
.navbar-user:hover .navbar-avatar,
.navbar-user[aria-expanded="true"] .navbar-avatar {
  border-color: #fff;
}
.navbar-user.dropdown-toggle::after {
  display: none; /* esconde a setinha — o próprio avatar indica o menu */
}

/* Rodapé global "by mathz.dev" */
.rodape-mathz {
  text-align: center;
  padding: 1.25rem 0 1.75rem;
  font-size: 0.82rem;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
}
.rodape-mathz a {
  color: var(--brand-red);
  font-weight: 600;
  text-decoration: none;
}
.rodape-mathz a:hover {
  text-decoration: underline;
}

/* 5. ----------------------------------------------------- SUPERFÍCIES */
.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.card-header {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding: 1rem 1.25rem;
  font-size: 1.05rem;
  color: var(--brand-dark);
  position: relative;
}
/* acento vermelho técnico à esquerda do header */
.card-header::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 1.4rem;
  border-radius: 0 3px 3px 0;
  background: var(--brand-red);
}
.card-header.bg-dark,
.card-header.bg-primary,
.card-header.bg-dark-red {
  color: #fff;
}
.card-header.bg-dark::before,
.card-header.bg-primary::before,
.card-header.bg-dark-red::before {
  background: #fff;
}

.card-body {
  padding: 1.4rem 1.25rem;
}

.alert {
  border: 0;
  border-left: 4px solid;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}
.alert-warning {
  border-left-color: #c98a00;
  background: #fff8e8;
  color: #6b4d00;
}
.alert-danger {
  border-left-color: var(--brand-red);
  background: var(--brand-red-050);
  color: var(--brand-red-700);
}
.alert-success {
  border-left-color: #1f7a3d;
  background: #e9f6ee;
  color: #155e30;
}

/* 6. -------------------------------------------------------- BOTÕES */
.btn {
  border-radius: 10px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.5rem 1.05rem;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.08s ease,
    filter 0.15s ease,
    box-shadow 0.15s ease;
}
.btn:hover {
  filter: brightness(1.05);
  box-shadow: var(--shadow-md);
}
.btn:active {
  transform: translateY(1px);
}
.btn i {
  /* margin-right: 0.35rem; */
}

/* primary = vermelho da marca */
.btn-primary {
  --bs-btn-bg: var(--brand-red);
  --bs-btn-border-color: var(--brand-red);
  --bs-btn-hover-bg: var(--brand-red-600);
  --bs-btn-hover-border-color: var(--brand-red-600);
  --bs-btn-active-bg: var(--brand-red-700);
  --bs-btn-active-border-color: var(--brand-red-700);
  --bs-btn-disabled-bg: var(--brand-red);
  --bs-btn-disabled-border-color: var(--brand-red);
}
/* danger = vermelho vivo distinto do crimson da marca (que virou o primary),
   pra "Excluir" não se confundir com "Alterar" */
.btn-danger {
  --bs-btn-bg: #d92d20;
  --bs-btn-border-color: #d92d20;
  --bs-btn-hover-bg: #b42318;
  --bs-btn-hover-border-color: #b42318;
  --bs-btn-active-bg: #912018;
  --bs-btn-active-border-color: #912018;
  --bs-btn-disabled-bg: #d92d20;
  --bs-btn-disabled-border-color: #d92d20;
}
.btn-success {
  --bs-btn-bg: #1f7a3d;
  --bs-btn-border-color: #1f7a3d;
  --bs-btn-hover-bg: #1a6834;
  --bs-btn-hover-border-color: #1a6834;
}
.btn-secondary {
  --bs-btn-bg: var(--brand-dark);
  --bs-btn-border-color: var(--brand-dark);
  --bs-btn-hover-bg: #000;
}
.btn-outline-primary {
  --bs-btn-color: var(--brand-red);
  --bs-btn-border-color: var(--brand-red);
  --bs-btn-hover-bg: var(--brand-red);
  --bs-btn-hover-border-color: var(--brand-red);
}

/* 7. ------------------------------------------------- FORM / TABELAS */
.form-control,
.form-select {
  border-radius: 10px;
  border: 1px solid var(--line);
  padding: 0.55rem 0.8rem;
  background: var(--surface-muted);
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
}
.form-control:focus,
.form-select:focus {
  border-color: var(--brand-red);
  background: var(--surface);
  box-shadow: 0 0 0 0.2rem rgba(173, 19, 19, 0.15);
}
label,
.form-label {
  font-weight: 600;
  color: var(--brand-dark);
  margin-bottom: 0.35rem;
  font-size: 0.92rem;
}

.table {
  --bs-table-hover-bg: var(--brand-red-050);
}
.table > thead {
  background: var(--brand-dark);
  color: #fff;
}
.table > thead th {
  font-family: "Saira", sans-serif;
  font-weight: 600;
  border: 0;
  letter-spacing: 0.01em;
}
.table {
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--surface);
}
.table td,
.table th {
  padding: 0.7rem 0.85rem;
  vertical-align: middle;
}

/* Botões de ação (somente ícone) dentro das tabelas */
.table td .btn {
  padding: 0.4rem 0.6rem;
  line-height: 1;
}
.table td .btn i {
  margin-right: 0;
}
.table td .acoes {
  display: inline-flex;
  gap: 0.35rem;
  flex-wrap: wrap;
}

/* Cartões de KPI (relatórios) */
.kpi {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid var(--brand-red);
  border-radius: var(--radius-sm);
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
}
.kpi-valor {
  font-family: "Saira", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--brand-dark);
  line-height: 1.1;
}
.kpi-rotulo {
  font-size: 0.8rem;
  color: var(--ink-muted);
  margin-top: 0.25rem;
}
.kpi-ok {
  border-left-color: #1f7a3d;
}
.kpi-alerta {
  border-left-color: #d92d20;
  background: #fff5f4;
}

/* Botões do menu de Relatórios — cor distinta por tipo de relatório */
.btn-rel-prod   { --bs-btn-bg:#2563eb; --bs-btn-border-color:#2563eb; --bs-btn-color:#fff; --bs-btn-hover-bg:#1d4ed8; --bs-btn-hover-border-color:#1d4ed8; --bs-btn-hover-color:#fff; }
.btn-rel-parc   { --bs-btn-bg:#0d9488; --bs-btn-border-color:#0d9488; --bs-btn-color:#fff; --bs-btn-hover-bg:#0b7d73; --bs-btn-hover-border-color:#0b7d73; --bs-btn-hover-color:#fff; }
.btn-rel-fat    { --bs-btn-bg:#1f7a3d; --bs-btn-border-color:#1f7a3d; --bs-btn-color:#fff; --bs-btn-hover-bg:#1a6834; --bs-btn-hover-border-color:#1a6834; --bs-btn-hover-color:#fff; }
.btn-rel-placas { --bs-btn-bg:#ea580c; --bs-btn-border-color:#ea580c; --bs-btn-color:#fff; --bs-btn-hover-bg:#c2480a; --bs-btn-hover-border-color:#c2480a; --bs-btn-hover-color:#fff; }
.btn-rel-ufs    { --bs-btn-bg:#7c3aed; --bs-btn-border-color:#7c3aed; --bs-btn-color:#fff; --bs-btn-hover-bg:#6a2bd1; --bs-btn-hover-border-color:#6a2bd1; --bs-btn-hover-color:#fff; }
.btn-rel-logs   { --bs-btn-bg:#475569; --bs-btn-border-color:#475569; --bs-btn-color:#fff; --bs-btn-hover-bg:#3a4656; --bs-btn-hover-border-color:#3a4656; --bs-btn-hover-color:#fff; }

/* Legenda de status (listagens com linhas coloridas) */
.legenda-status {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 1rem;
  font-size: 0.82rem;
}
.legenda-status .leg-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--ink-muted);
}
.legenda-status .leg-cor {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  display: inline-block;
  border: 1px solid rgba(0, 0, 0, 0.15);
}

/* Linhas de serviços coloridas por status (cor vem de --bs-table-bg na <tr>);
   botões de ação viram "chips" brancos com ícone colorido p/ legibilidade. */
.table-servicos td .btn {
  background: #fff;
  border-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}
.table-servicos td .btn:hover {
  background: #f1f1f1;
  filter: none;
}
.table-servicos td .btn-success { color: #1f7a3d; }
.table-servicos td .btn-primary { color: var(--brand-red); }
.table-servicos td .btn-danger  { color: #d92d20; }
.table-servicos td .btn-warning { color: #b8860b; }
.table-servicos td .btn-info    { color: #0d6efd; }

.badge {
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 7px;
  padding: 0.4em 0.6em;
}

/* Paginação server-side (partial layout/paginacao.phtml) */
.pagination {
  --bs-pagination-color: var(--brand-dark);
  --bs-pagination-hover-color: var(--brand-red-700);
  --bs-pagination-hover-bg: var(--brand-red-050);
  --bs-pagination-hover-border-color: var(--line);
  --bs-pagination-focus-box-shadow: 0 0 0 0.2rem rgba(173, 19, 19, 0.15);
  --bs-pagination-active-bg: var(--brand-red);
  --bs-pagination-active-border-color: var(--brand-red);
  --bs-pagination-border-color: var(--line);
  gap: 0.25rem;
}
.page-link {
  border-radius: 8px !important;
  min-width: 2.1rem;
  text-align: center;
}
/* Barra superior (busca + contagem): separada da tabela com folga */
.paginacao-barra {
  border-bottom: 1px solid var(--line);
  padding-bottom: 1rem;
  margin-bottom: 2.25rem !important;
}
/* Navegação de páginas (rodapé): afastada da tabela */
.pagination {
  margin-top: 1.5rem;
}
/* Folga ao redor da própria tabela dentro do card */
.card-body > .table-responsive {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
/* A tabela logo após a barra de paginação ganha respiro extra no topo */
.paginacao-barra + .table-responsive,
.paginacao-barra + .table {
  margin-top: 1.25rem;
}

/* DataTables: alinhar controles ao tema */
.dataTables_wrapper .dataTables_filter input,
.dataTables_wrapper .dataTables_length select {
  border-radius: 8px;
  border: 1px solid var(--line);
  padding: 0.35rem 0.6rem;
  background: var(--surface-muted);
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current {
  background: var(--brand-red) !important;
  border-color: var(--brand-red) !important;
  color: #fff !important;
  border-radius: 8px;
}

/* =====================================================================
   8. CAMADA DE COMPATIBILIDADE  BS4 → BS5
   O Bootstrap 5 removeu estas classes, porém elas aparecem nas 68 views.
   Reprovê-las aqui evita reescrever arquivo por arquivo e mantém o
   espaçamento/comportamento original sob o BS5.
   ===================================================================== */
.form-group {
  margin-bottom: 1rem;
}
.form-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}
.form-row > [class*="col-"] {
  padding-right: 5px;
  padding-left: 5px;
}

.ml-auto {
  margin-left: auto !important;
}
.mr-auto {
  margin-right: auto !important;
}
.ml-1 {
  margin-left: 0.25rem !important;
}
.ml-2 {
  margin-left: 0.5rem !important;
}
.ml-3 {
  margin-left: 1rem !important;
}
.mr-1 {
  margin-right: 0.25rem !important;
}
.mr-2 {
  margin-right: 0.5rem !important;
}
.mr-3 {
  margin-right: 1rem !important;
}
.pl-2 {
  padding-left: 0.5rem !important;
}
.pl-3 {
  padding-left: 1rem !important;
}
.pr-2 {
  padding-right: 0.5rem !important;
}
.pr-3 {
  padding-right: 1rem !important;
}

.float-left {
  float: left !important;
}
.float-right {
  float: right !important;
}
.text-left {
  text-align: left !important;
}
.text-right {
  text-align: right !important;
}

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

.font-weight-bold {
  font-weight: 700 !important;
}
.font-weight-bolder {
  font-weight: 800 !important;
}
.font-weight-normal {
  font-weight: 400 !important;
}
.font-weight-light {
  font-weight: 300 !important;
}
.font-italic {
  font-style: italic !important;
}

.btn-block {
  display: block;
  width: 100%;
}
.close {
  background: transparent;
  border: 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  opacity: 0.5;
  cursor: pointer;
}
.close:hover {
  opacity: 0.85;
}

/* 9. --------------------------------------------------- HELPERS LEGADOS */
.bg-dark {
  background: var(--brand-dark) !important;
}
.bg-dark-red {
  background: var(--brand-red) !important;
}
.text-bold {
  font-weight: 700;
}

@media (min-width: 992px) {
  .hide-btn-solicitar {
    display: none;
  }
}

/* 10. ----------------------------------------------- HOME / VITRINE */
.hero {
  position: relative;
  color: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background:
    radial-gradient(
      800px 400px at 110% -20%,
      rgba(173, 19, 19, 0.55),
      transparent 60%
    ),
    linear-gradient(135deg, #1a1a1a 0%, var(--brand-dark) 55%, #111 100%);
  padding: clamp(2rem, 4vw, 3.5rem);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    115deg,
    rgba(255, 255, 255, 0.025) 0 2px,
    transparent 2px 26px
  );
  pointer-events: none;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Saira", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: #fff;
  background: rgba(173, 19, 19, 0.9);
  padding: 0.35rem 0.7rem;
  border-radius: 100px;
}
.hero__title {
  font-family: "Saira", sans-serif;
  font-weight: 700;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  line-height: 1.05;
  margin: 1rem 0 0.6rem;
  letter-spacing: -0.02em;
}
.hero__title span {
  color: var(--brand-red);
}
.hero__lead {
  color: rgba(255, 255, 255, 0.78);
  max-width: 46ch;
  font-size: 1.05rem;
}
.hero__actions {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Cards de acesso rápido */
.feature-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.feature-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.3rem;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: var(--ink);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}
.feature-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--brand-red);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-red);
  color: var(--ink);
}
.feature-card:hover::before {
  transform: scaleY(1);
}
.feature-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  background: var(--brand-red-050);
  color: var(--brand-red);
  margin-bottom: 0.5rem;
}
.feature-card__title {
  font-family: "Saira", sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--brand-dark);
}
.feature-card__desc {
  color: var(--ink-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* Tela de autenticação */
.auth-wrap {
  min-height: calc(100vh - 160px);
  display: grid;
  place-items: center;
}
.auth-card {
  width: 100%;
  max-width: 420px;
}
.auth-card .card-body {
  padding: 1.75rem;
}
