@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600&family=Lora:wght@400;500&display=swap');

:root {
  --bg: #F5F5F5;
  --verde: #DCE9D6;
  --pessego: #F7E8D7;
  --lilas: #E6D7F4;
  --azul: #D5E7F4;
  --texto: #333333;
  --texto-escuro: #222222;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  -webkit-text-size-adjust: 100%;
}

html, body {
  overflow-x: hidden;
}

body {
  background: var(--bg);
  font-family: 'Quicksand', sans-serif;
  color: var(--texto-escuro);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  padding-left: max(24px, env(safe-area-inset-left));
  padding-right: max(24px, env(safe-area-inset-right));
}

button, a {
  touch-action: manipulation;
}

.welcome {
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.brand {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.brand-symbol {
  font-family: 'Lora', serif;
  font-size: 40px;
  color: var(--texto-escuro);
  background: var(--verde);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}

.brand-logo {
  width: 140px;
  height: 140px;
  object-fit: contain;
  margin-bottom: 8px;
}

.brand h1 {
  font-family: 'Lora', serif;
  font-weight: 500;
  font-size: 28px;
  color: var(--texto-escuro);
}

.tagline {
  font-size: 14px;
  color: var(--texto);
}

.login-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #FFFFFF;
  padding: 28px;
  border-radius: 28px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.login-form label {
  font-size: 13px;
  font-weight: 600;
  color: var(--texto-escuro);
  margin-top: 8px;
}

.login-form label:first-child {
  margin-top: 0;
}

.login-form input {
  font-family: 'Quicksand', sans-serif;
  font-size: 16px;
  color: var(--texto-escuro);
  background: var(--bg);
  border: none;
  border-radius: 16px;
  padding: 12px 16px;
}

.login-form input:focus {
  outline: 2px solid var(--lilas);
}

.btn-login {
  margin-top: 16px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--texto-escuro);
  background: var(--lilas);
  border: none;
  border-radius: 999px;
  padding: 14px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.btn-login-admin {
  background: var(--verde);
}

.footer-note {
  font-size: 14px;
  color: var(--texto);
}

.footer-note a {
  color: var(--texto-escuro);
  font-weight: 600;
  text-decoration: none;
}

.form-message {
  font-size: 13px;
  text-align: center;
  min-height: 18px;
}

.form-message-error {
  color: #B5564E;
}

.form-message-success {
  color: #5C8A5C;
}

.btn-login[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

.splash-actions {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.splash-actions .btn-login {
  width: 100%;
  text-align: center;
  text-decoration: none;
  background: var(--verde);
}

.footer-note-link {
  text-decoration: none;
  color: var(--texto-escuro);
  font-weight: 600;
}

.role-choice {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.role-choice-label {
  font-size: 14px;
  color: var(--texto);
  font-weight: 600;
}

.role-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--texto-escuro);
  text-decoration: none;
  border-radius: 999px;
  padding: 14px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.role-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.role-btn-icon {
  display: inline-flex;
  align-items: center;
}

.role-btn-icon svg {
  width: 16px;
  height: 16px;
}

.role-btn-psicologo {
  background: var(--verde);
}

.role-btn-paciente {
  background: var(--lilas);
}

.highlights-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  background: #FFFFFF;
  padding: 14px 6px;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.highlight-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--texto-escuro);
}

.highlight-icon svg {
  width: 16px;
  height: 16px;
}

.highlight-icon-verde { background: var(--verde); }
.highlight-icon-azul { background: var(--azul); }
.highlight-icon-lilas { background: var(--lilas); }
.highlight-icon-pessego { background: var(--pessego); }

.highlight-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--texto-escuro);
}

.highlight-desc {
  font-size: 9px;
  color: var(--texto);
}

.form-title {
  font-family: 'Lora', serif;
  font-weight: 500;
  font-size: 20px;
  color: var(--texto-escuro);
}

.form-subtitle {
  font-size: 14px;
  color: var(--texto);
  margin-top: -4px;
}

.input-wrapper {
  position: relative;
  display: flex;
}

.input-wrapper input {
  flex: 1;
  padding-right: 44px;
}

.btn-toggle-senha {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  opacity: 0.6;
  display: flex;
  align-items: center;
}

.btn-toggle-senha svg {
  width: 16px;
  height: 16px;
}

.link-esqueci {
  align-self: flex-end;
  font-size: 13px;
  color: var(--texto);
  text-decoration: none;
  margin-top: 4px;
}

.cadastro-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-voltar {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #FFFFFF;
  color: var(--texto-escuro);
  text-decoration: none;
  font-size: 18px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.dashboard {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 28px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* App com abas */

.app {
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.app-header .brand {
  flex-direction: row;
  gap: 12px;
}

.app-header .brand-symbol {
  width: 44px;
  height: 44px;
  font-size: 22px;
  margin-bottom: 0;
}

.app-header .brand h1 {
  font-size: 18px;
}

.btn-sair-icon {
  font-family: 'Quicksand', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--texto);
  background: none;
  border: none;
  cursor: pointer;
}

.tabs {
  display: flex;
  gap: 8px;
  background: #FFFFFF;
  padding: 6px;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.tab-btn {
  flex: 1;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--texto);
  background: none;
  border: none;
  border-radius: 999px;
  padding: 10px 8px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.tab-btn.active {
  background: var(--lilas);
  color: var(--texto-escuro);
}

.tab-panel {
  display: none;
  background: #FFFFFF;
  padding: 28px;
  border-radius: 28px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  display: none;
  flex-direction: column;
  gap: 16px;
}

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

.tab-panel h2 {
  font-family: 'Lora', serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--texto-escuro);
  text-align: left;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.field-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--texto-escuro);
}

.field-group input,
.field-group select {
  font-family: 'Quicksand', sans-serif;
  font-size: 16px;
  color: var(--texto-escuro);
  background: var(--bg);
  border: none;
  border-radius: 16px;
  padding: 12px 16px;
}

.field-group input:focus,
.field-group select:focus {
  outline: 2px solid var(--lilas);
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.slot-btn {
  font-family: 'Quicksand', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--texto-escuro);
  background: var(--bg);
  border: none;
  border-radius: 14px;
  padding: 10px;
  cursor: pointer;
}

.slot-btn.selected {
  background: var(--azul);
}

.slot-btn.bloqueado {
  background: #EFE0DD;
  color: #B5564E;
}

.slot-btn.liberado {
  background: var(--verde);
  color: #5C8A5C;
}

.slot-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.slot-empty {
  font-size: 13px;
  color: var(--texto);
  grid-column: 1 / -1;
}

.lista {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lista-item {
  background: var(--bg);
  border-radius: 16px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
}

.lista-item-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lista-item-selecionavel {
  cursor: pointer;
  border: 2px solid transparent;
}

.lista-item-selecionavel.selected {
  border-color: var(--lilas);
}

.lista-item-titulo {
  font-size: 14px;
  font-weight: 600;
  color: var(--texto-escuro);
}

.lista-item-sub {
  font-size: 12px;
  color: var(--texto);
}

.status-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
}

.status-confirmada {
  background: var(--verde);
  color: var(--texto-escuro);
}

.status-cancelada {
  background: #EFE0DD;
  color: var(--texto);
}

.status-inativo {
  background: #EFE0DD;
  color: #B5564E;
}

.btn-cancelar {
  font-family: 'Quicksand', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #B5564E;
  background: none;
  border: none;
  cursor: pointer;
}

.btn-baixar {
  font-family: 'Quicksand', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--texto-escuro);
  background: var(--azul);
  border: none;
  border-radius: 999px;
  padding: 6px 14px;
  cursor: pointer;
}

.btn-inativar {
  font-family: 'Quicksand', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--texto-escuro);
  background: var(--pessego);
  border: none;
  border-radius: 999px;
  padding: 6px 14px;
  cursor: pointer;
  margin-right: 8px;
}

.lista-item-inativo {
  opacity: 0.55;
}

.mood-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.mood-btn {
  color: var(--texto-escuro);
  background: var(--bg);
  border: none;
  border-radius: 16px;
  padding: 12px 0;
  cursor: pointer;
}

.mood-btn svg {
  width: 22px;
  height: 22px;
  display: block;
  margin: 0 auto;
}

.mood-btn.selected {
  background: var(--pessego);
}

.mood-btn-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  color: var(--texto);
  margin-top: 4px;
}

textarea {
  font-family: 'Quicksand', sans-serif;
  font-size: 16px;
  color: var(--texto-escuro);
  background: var(--bg);
  border: none;
  border-radius: 16px;
  padding: 12px 16px;
  resize: vertical;
  min-height: 70px;
}

textarea:focus {
  outline: 2px solid var(--lilas);
}

.paciente-item {
  cursor: pointer;
  transition: background 0.15s ease;
}

.paciente-item:hover {
  background: var(--azul);
}

.paciente-item.selected {
  background: var(--verde);
}

.detalhe-paciente {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid var(--bg);
  padding-top: 16px;
  margin-top: 8px;
}

.detalhe-paciente h3 {
  font-family: 'Lora', serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--texto-escuro);
  text-align: left;
}

/* Início (home) */

.home-greeting h2 {
  font-family: 'Lora', serif;
  font-weight: 500;
  font-size: 20px;
  text-align: left;
}

.home-greeting p {
  font-size: 13px;
  color: var(--texto);
  text-align: left;
}

.card-proxima-sessao {
  background: var(--pessego);
  border-radius: 18px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}

.card-proxima-sessao .card-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--texto-escuro);
  opacity: 0.7;
}

.card-proxima-sessao .card-valor {
  font-family: 'Lora', serif;
  font-size: 18px;
  color: var(--texto-escuro);
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.quick-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 0;
}

.quick-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--texto-escuro);
  background: var(--bg);
}

.quick-item-icon svg {
  width: 20px;
  height: 20px;
}

.quick-item-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--texto-escuro);
}

/* Sub-abas (dentro de uma aba principal) */

.subtabs {
  display: flex;
  gap: 6px;
  overflow-x: auto;
}

.subtab-btn {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: var(--texto);
  background: var(--bg);
  border: none;
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
  white-space: nowrap;
}

.subtab-btn.active {
  background: var(--lilas);
  color: var(--texto-escuro);
}

/* Financeiro */

.resumo-financeiro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.resumo-item {
  background: var(--bg);
  border-radius: 16px;
  padding: 12px 16px;
  text-align: left;
}

.resumo-item-label {
  display: block;
  font-size: 12px;
  color: var(--texto);
}

.resumo-item-valor {
  font-family: 'Lora', serif;
  font-size: 18px;
  color: var(--texto-escuro);
}

.status-pago {
  background: var(--verde);
  color: var(--texto-escuro);
}

.status-pendente {
  background: var(--pessego);
  color: var(--texto-escuro);
}

.btn-status-toggle {
  font-family: 'Quicksand', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--texto-escuro);
  background: var(--azul);
  border: none;
  border-radius: 999px;
  padding: 6px 14px;
  cursor: pointer;
}

/* Mensagens */

.chat-lista {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 360px;
  overflow-y: auto;
}

.chat-bolha {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 13px;
  text-align: left;
}

.chat-bolha-outro {
  align-self: flex-start;
  background: var(--bg);
  color: var(--texto-escuro);
}

.chat-bolha-mine {
  align-self: flex-end;
  background: var(--lilas);
  color: var(--texto-escuro);
}

.chat-bolha-hora {
  display: block;
  font-size: 10px;
  color: var(--texto);
  margin-top: 4px;
}

/* Painel administrativo (estilo app) */

body.admin-page {
  align-items: flex-start;
  padding-top: 24px;
  padding-bottom: 110px;
}

.app-header {
  justify-content: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.stat-card {
  border-radius: 18px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}

.stat-card-clicavel {
  cursor: pointer;
  border: none;
  font-family: inherit;
  width: 100%;
}

.stat-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--texto-escuro);
  opacity: 0.75;
}

.stat-value {
  font-family: 'Lora', serif;
  font-size: 19px;
  color: var(--texto-escuro);
}

.stat-verde { background: var(--verde); }
.stat-lilas { background: var(--lilas); }
.stat-pessego { background: var(--pessego); }
.stat-azul { background: var(--azul); }

.campo-nota {
  font-size: 11px;
  color: var(--texto);
}

#mensagens-lista-wrap,
#mensagens-chat-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.search-wrap {
  display: flex;
}

.search-wrap input {
  width: 100%;
  font-family: 'Quicksand', sans-serif;
  font-size: 16px;
  color: var(--texto-escuro);
  background: var(--bg);
  border: none;
  border-radius: 999px;
  padding: 12px 16px;
}

.search-wrap input:focus {
  outline: 2px solid var(--lilas);
}

.avatar-circle {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--texto-escuro);
}

.avatar-grande {
  width: 56px;
  height: 56px;
  font-size: 18px;
}

.avatar-verde { background: var(--verde); }
.avatar-lilas { background: var(--lilas); }
.avatar-pessego { background: var(--pessego); }
.avatar-azul { background: var(--azul); }

.lista-item-com-avatar {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lista-item-com-avatar .lista-item-info {
  flex: 1;
  min-width: 0;
}

.badge-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: #B5564E;
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 700;
  margin-left: 4px;
}

.unread-dot {
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lilas);
}

.btn-arquivar-conversa {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: none;
  background: transparent;
  color: var(--texto);
  cursor: pointer;
  border-radius: 50%;
}

.btn-arquivar-conversa:hover {
  background: var(--bg);
}

.btn-arquivar-conversa svg {
  width: 16px;
  height: 16px;
}

.btn-voltar-texto {
  align-self: flex-start;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--texto);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.detalhe-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.detalhe-header h3 {
  font-family: 'Lora', serif;
  font-weight: 500;
  font-size: 17px;
  color: var(--texto-escuro);
  text-align: left;
}

.detalhe-contato {
  font-size: 13px;
  color: var(--texto);
  text-align: left;
  margin: 0 0 4px;
}

.bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FFFFFF;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.06);
  z-index: 10;
  padding-bottom: env(safe-area-inset-bottom);
}

.bottom-nav-inner {
  display: flex;
  justify-content: space-around;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 6px 4px;
}

.bottom-nav-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 0;
  font-family: 'Quicksand', sans-serif;
  color: var(--texto);
}

.bn-icon {
  line-height: 1;
  border-radius: 50%;
  padding: 3px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bn-icon svg {
  width: 19px;
  height: 19px;
}

.bn-label {
  font-size: 10px;
  font-weight: 600;
}

.bottom-nav-btn.active {
  color: var(--texto-escuro);
}

.bottom-nav-btn.active .bn-icon {
  background: var(--lilas);
}

/* Mobile */

@media (max-width: 480px) {
  body {
    padding: 16px 12px;
  }

  .login-form,
  .dashboard,
  .tab-panel {
    padding: 20px;
    border-radius: 22px;
  }

  .app {
    gap: 16px;
  }

  .app-header .brand h1 {
    font-size: 16px;
  }

  .tabs {
    gap: 0;
    padding: 4px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    justify-content: flex-start;
  }

  .tabs::-webkit-scrollbar {
    display: none;
  }

  .tab-btn {
    flex: 0 0 auto;
    font-size: 12px;
    padding: 10px 12px;
    white-space: nowrap;
  }

  .mood-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .quick-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .resumo-financeiro {
    grid-template-columns: 1fr;
  }

  .chat-lista {
    max-height: 50vh;
  }

  .chat-bolha {
    max-width: 88%;
  }

  .lista-item {
    flex-wrap: wrap;
  }
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(34, 34, 34, 0.45);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 100;
}

.modal-card {
  background: #FFFFFF;
  width: 100%;
  max-width: 480px;
  max-height: 75vh;
  overflow-y: auto;
  border-radius: 28px 28px 0 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-header h3 {
  font-family: 'Lora', serif;
  font-weight: 500;
  font-size: 17px;
  color: var(--texto-escuro);
}

.modal-close {
  background: var(--bg);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 18px;
  line-height: 1;
  color: var(--texto-escuro);
  cursor: pointer;
}
