/* =========================================================
   ESTILOS GERAIS DA APLICAÇÃO
   ========================================================= */
:root {
  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --secondary: #64748b;
  --secondary-hover: #475569;
  --success: #16a34a;
  --success-hover: #15803d;
  --danger: #dc2626;
  --danger-hover: #b91c1c;
  --bg-app: #f8fafc;
  --bg-card: #ffffff;
  --border-color: #e2e8f0;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --school-red: #c00000;
  --school-yellow: #ffff00;
  --font-ui: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-school: 'Comic Neue', 'Comic Sans MS', cursive, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-ui);
  background-color: var(--bg-app);
  color: var(--text-main);
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* =========================================================
   BARRA SUPERIOR (HEADER)
   ========================================================= */
.app-header {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-color);
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.brand-text h1 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
}

.brand-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #f1f5f9;
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.control-group {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.control-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.control-group input,
.control-group select {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  padding: 0.3rem 0.5rem;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background: #fff;
  color: var(--text-main);
  outline: none;
}

.control-group input:focus,
.control-group select:focus {
  border-color: var(--primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* =========================================================
   BOTÕES E COMPONENTES
   ========================================================= */
.btn {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.45rem 0.85rem;
  border-radius: 6px;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: all 0.15s ease;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--primary-hover);
}

.btn-secondary {
  background: var(--secondary);
  color: #fff;
}
.btn-secondary:hover {
  background: var(--secondary-hover);
}

.btn-success {
  background: var(--success);
  color: #fff;
}
.btn-success:hover {
  background: var(--success-hover);
}

.btn-danger {
  background: var(--danger);
  color: #fff;
}
.btn-danger:hover {
  background: var(--danger-hover);
}

.btn-outline {
  background: #fff;
  border-color: var(--border-color);
  color: var(--text-main);
}
.btn-outline:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
}

.btn-sm {
  font-size: 0.75rem;
  padding: 0.3rem 0.6rem;
}

.btn-icon {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}
.btn-icon:hover {
  background: #eff6ff;
}

.view-toggles {
  display: flex;
  background: #f1f5f9;
  padding: 2px;
  border-radius: 6px;
  border: 1px solid var(--border-color);
}

.btn-toggle {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  background: transparent;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  color: var(--text-muted);
  transition: all 0.15s ease;
}

.btn-toggle.active {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}

/* Dropdown Menu */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  margin-top: 4px;
  background: #fff;
  min-width: 220px;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.5rem 0;
  z-index: 200;
}

.dropdown.open .dropdown-content {
  display: block;
}

.dropdown-content button,
.dropdown-file-label {
  width: 100%;
  text-align: left;
  padding: 0.5rem 1rem;
  background: transparent;
  border: none;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: var(--text-main);
  cursor: pointer;
  display: block;
}

.dropdown-content button:hover,
.dropdown-file-label:hover {
  background: #f8fafc;
}

.dropdown-content hr {
  border: none;
  border-top: 1px solid var(--border-color);
  margin: 0.35rem 0;
}

.btn-danger-text {
  color: var(--danger) !important;
}

/* =========================================================
   CONTAINER PRINCIPAL
   ========================================================= */
.app-main {
  flex: 1;
  display: flex;
  overflow: hidden;
}

.view-panel {
  display: none;
  width: 100%;
  height: calc(100vh - 65px);
}

.view-panel.active-view {
  display: flex;
}

/* =========================================================
   PAINEL DE EDIÇÃO (EDITOR VIEW)
   ========================================================= */
#view-editor {
  display: none;
  flex-direction: row;
}

#view-editor.active-view {
  display: flex;
}

/* Sidebar de Dias */
.days-sidebar {
  width: 280px;
  background: #fff;
  border-right: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.sidebar-header {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fcfcfd;
}

.sidebar-header h3 {
  font-size: 0.9rem;
  font-weight: 700;
}

.days-list {
  flex: 1;
  overflow-y: auto;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.day-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 0.75rem;
  border-radius: 6px;
  border: 1px solid transparent;
  cursor: pointer;
  background: #f8fafc;
  transition: all 0.15s ease;
}

.day-item:hover {
  background: #f1f5f9;
}

.day-item.active {
  background: #eff6ff;
  border-color: #bfdbfe;
  box-shadow: 0 1px 2px rgba(37,99,235,0.08);
}

.day-item-left {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.day-badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  background: #e2e8f0;
  color: #334155;
}

.day-item.active .day-badge {
  background: var(--school-yellow);
  color: var(--school-red);
  border: 1px solid #eab308;
}

.day-date-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
}

.day-count-badge {
  font-size: 0.7rem;
  background: #e2e8f0;
  color: var(--text-muted);
  padding: 0.1rem 0.4rem;
  border-radius: 10px;
}

/* Área de Edição do Dia */
.day-editor-container {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem 2rem;
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Card do Topo do Dia */
.day-header-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
  flex-wrap: wrap;
}

.day-header-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.form-field {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.form-field input {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  padding: 0.35rem 0.6rem;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  outline: none;
}

.form-field input:focus {
  border-color: var(--primary);
}

/* Seletor de Dia da Semana */
.weekday-selector-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.weekday-selector-wrapper label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.weekday-badges {
  display: flex;
  gap: 0.3rem;
}

.weekday-btn {
  font-family: var(--font-school);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--school-red);
  background: #fff;
  border: 1.5px solid #000;
  padding: 0.25rem 0.55rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.weekday-btn:hover {
  background: #fef9c3;
}

.weekday-btn.selected {
  background: var(--school-yellow);
  box-shadow: 0 0 0 2px var(--school-red);
}

.day-header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Wrapper da Lista de Atividades */
.schedule-items-wrapper {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.25rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}

.items-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-color);
}

.items-header h3 {
  font-size: 1rem;
  font-weight: 700;
}

.items-header-buttons {
  display: flex;
  gap: 0.5rem;
}

.items-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Card de Cada Atividade */
.item-card {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  transition: border-color 0.15s ease;
  overflow: hidden;
}

.item-card:hover {
  border-color: #cbd5e1;
}

.item-card.extra-class {
  border-left: 4px solid #8b5cf6;
}

.item-card-header {
  background: #f8fafc;
  padding: 0.5rem 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
}

.item-card-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.item-card-actions {
  display: flex;
  gap: 0.25rem;
}

.item-card-actions button {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-size: 0.8rem;
}

.item-card-actions button:hover {
  background: #e2e8f0;
  color: var(--text-main);
}

.item-card-actions button.btn-delete:hover {
  background: #fee2e2;
  color: var(--danger);
}

.item-card-body {
  padding: 0.75rem 1rem;
  display: grid;
  grid-template-columns: 140px 1.2fr 1.5fr 1fr;
  gap: 0.75rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  padding: 0.4rem 0.6rem;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  color: var(--text-main);
  outline: none;
  background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
}

.form-group-full {
  grid-column: 1 / -1;
}

.form-group textarea {
  resize: vertical;
  min-height: 48px;
}

/* =========================================================
   FOLHA A4 - VISUALIZAÇÃO E IMPRESSÃO (PREVIEW & PRINT)
   ========================================================= */
#view-preview {
  display: none;
  flex-direction: column;
  align-items: center;
  overflow-y: auto;
  background: #475569;
  padding: 1.5rem;
}

#view-preview.active-view {
  display: flex;
}

.preview-toolbar {
  width: 210mm;
  background: #1e293b;
  color: #f8fafc;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.print-sheets-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Folha A4 autêntica */
.a4-sheet {
  width: 210mm;
  min-height: 297mm;
  background: #fff;
  padding: 10mm;
  box-shadow: 0 10px 25px -5px rgba(0,0,0,0.3);
  font-family: var(--font-school);
  color: #000;
  display: flex;
  flex-direction: column;
  position: relative;
  page-break-after: always;
  break-after: page;
}

/* Cabeçalho da Folha A4 */
.sheet-header-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 0.4rem;
}

.sheet-header-table td {
  vertical-align: middle;
}

.sheet-logo {
  height: 65px;
  width: auto;
}

.sheet-title-img {
  height: 45px;
  width: auto;
  float: right;
}

/* Barra de Identificação do Dia na Folha */
.sheet-day-bar-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 0.4rem;
  font-size: 10.5pt;
  font-weight: bold;
}

.sheet-day-bar-table td.day-text-cell {
  border: none;
  padding: 4px 0;
  white-space: pre;
}

.sheet-day-bar-table td.weekday-cell {
  width: 28px;
  text-align: center;
  border: 1px solid #000;
  padding: 3px 0;
  color: var(--school-red);
}

.sheet-day-bar-table td.weekday-cell.active-wd {
  background-color: var(--school-yellow) !important;
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
}

/* Grade de Rotina na Folha */
.sheet-schedule-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 9.5pt;
  line-height: 1.25;
}

.sheet-schedule-table td,
.sheet-schedule-table th {
  border: 1px solid #000;
  padding: 4px 6px;
  vertical-align: top;
}

.sheet-schedule-table .col-horario {
  width: 14%;
  font-weight: bold;
}

.sheet-schedule-table .col-eixo {
  width: 25%;
  font-weight: bold;
}

.sheet-schedule-table .col-conteudo {
  width: 36%;
}

.sheet-schedule-table .col-atividade {
  width: 25%;
  font-weight: bold;
}

.sheet-schedule-table .procedimento-row td {
  padding: 4px 6px;
  background-color: #fafafa;
}

.sheet-schedule-table .extra-class-row td {
  background-color: #f5f3ff;
  font-weight: bold;
}

/* =========================================================
   CONFIGURAÇÃO DE IMPRESSÃO (@media print)
   ========================================================= */
/* =========================================================
   CONFIGURAÇÃO DE IMPRESSÃO (@media print)
   ========================================================= */
@media print {
  @page {
    size: A4 portrait;
    margin: 6mm 8mm;
  }

  *, *::before, *::after {
    box-shadow: none !important;
    text-shadow: none !important;
  }

  html, body {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    background: #fff !important;
    color: #000 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
  }

  .no-print,
  .app-header,
  #view-editor,
  .preview-toolbar,
  #toast {
    display: none !important;
  }

  .app-main {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .view-panel,
  #view-preview {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
  }

  .print-sheets-container {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    gap: 0 !important;
  }

  .a4-sheet {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    box-sizing: border-box !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    page-break-before: auto !important;
    page-break-after: always !important;
    break-after: page !important;
    page-break-inside: avoid !important;
    break-inside: avoid !important;
  }

  .a4-sheet:last-child {
    page-break-after: auto !important;
    break-after: auto !important;
  }

  /* Impedir que tabelas e linhas quebrem sozinhas criando páginas em branco */
  table {
    page-break-inside: auto !important;
    break-inside: auto !important;
    border-collapse: collapse !important;
  }

  tr {
    page-break-inside: avoid !important;
    break-inside: avoid !important;
    page-break-after: auto !important;
    break-after: auto !important;
  }

  td, th {
    page-break-inside: avoid !important;
    break-inside: avoid !important;
    padding: 2.5px 5px !important;
  }

  .sheet-schedule-table {
    font-size: 9pt !important;
    line-height: 1.2 !important;
  }

  /* Garante que o amarelo da caixinha do dia da semana saia no PDF */
  .sheet-day-bar-table td.weekday-cell.active-wd {
    background-color: #ffff00 !important;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }
}

/* Toast */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #1e293b;
  color: #fff;
  padding: 0.65rem 1.25rem;
  border-radius: 8px;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.2);
  font-size: 0.85rem;
  font-weight: 500;
  display: none;
  z-index: 999;
  animation: slideUp 0.2s ease-out;
}

.toast.show {
  display: block;
}

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


/* =========================================================
   MODAL VERSÍCULO DO DIA
   ========================================================= */
.btn-highlight-menu {
  color: #2563eb !important;
  font-weight: 600 !important;
  background: #f0fdf4 !important;
}
.btn-highlight-menu:hover {
  background: #dcfce7 !important;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #ffffff;
  width: 90%;
  max-width: 540px;
  border-radius: 12px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transform: scale(0.92) translateY(10px);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.modal-backdrop.open .modal-card {
  transform: scale(1) translateY(0);
}

.modal-header {
  padding: 1.25rem 1.5rem;
  background: #f8fafc;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-title-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.modal-icon {
  font-size: 1.6rem;
}

.modal-header h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
}

.modal-subtitle {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.modal-close-btn {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  transition: all 0.15s ease;
}

.modal-close-btn:hover {
  background: #e2e8f0;
  color: var(--text-main);
}

.modal-body {
  padding: 1.5rem;
  background: #ffffff;
}

.versiculo-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-left: 4px solid var(--primary);
  border-radius: 8px;
  padding: 1.5rem;
  position: relative;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.02);
}

.versiculo-quote-mark {
  font-family: Georgia, serif;
  font-size: 2.2rem;
  color: #94a3b8;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.versiculo-quote-mark.quote-right {
  text-align: right;
  margin-top: 0.25rem;
  margin-bottom: 0.5rem;
}

.versiculo-texto {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.15rem;
  line-height: 1.6;
  color: #1e293b;
  font-style: italic;
  margin: 0;
  min-height: 60px;
}

.versiculo-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.75rem;
  border-top: 1px dashed #cbd5e1;
  margin-top: 0.5rem;
}

.versiculo-referencia {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
}

.versiculo-badge {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  background: #e2e8f0;
  color: #475569;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.modal-footer {
  padding: 1rem 1.5rem;
  background: #f8fafc;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}


/* =========================================================
   MODAL SOBRE
   ========================================================= */
.modal-card-sobre {
  max-width: 480px;
  text-align: center;
}

.sobre-card {
  background: linear-gradient(135deg, #fef2f2 0%, #f0fdf4 50%, #eff6ff 100%);
  border: 1px solid #fed7aa;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.sobre-heart-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  animation: pulseHeart 2s infinite ease-in-out;
}

@keyframes pulseHeart {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}

.sobre-mensagem {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.25rem;
  line-height: 1.6;
  color: #1e293b;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 1.25rem;
}

.sobre-divider {
  width: 50px;
  height: 2px;
  background: #cbd5e1;
  margin: 0 auto 1rem auto;
}

.sobre-app-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.sobre-app-title {
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
}

.sobre-app-sub {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--text-muted);
}
