/* =====================================================
   BELLICH LENTES — PAINEL LATERAL
===================================================== */

#bellich-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 99998;
}

#bellich-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 460px;
  max-width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  transform: translateX(110%);
  transition: transform 0.35s ease;
  box-shadow: -4px 0 30px rgba(0,0,0,0.12);
}

#bellich-panel.aberto {
  transform: translateX(0);
}

body.bellich-aberto #bellich-overlay {
  display: block;
}

/* HEADER */
.bellich-panel-header {
  background: #111;
  color: #fff;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}

.bellich-panel-header span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

#bellich-fechar {
  background: none;
  border: none;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  text-transform: uppercase;
  opacity: 0.8;
  transition: opacity .2s;
}

#bellich-fechar:hover {
  opacity: 1;
}

/* BODY */
.bellich-panel-body {
  flex: 1;
  overflow-y: auto;
  padding: 28px 24px;
}

/* PROGRESSO */
.bellich-progress {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 24px;
}

.bellich-step {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e0e0e0;
  color: #999;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  transition: all .2s;
}

.bellich-step.active {
  background: #111;
  color: #fff;
}

.bellich-step.done {
  background: #111;
  color: #fff;
}

/* VOLTAR */
.bellich-voltar {
  background: none;
  border: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #666;
  cursor: pointer;
  padding: 0;
  margin-bottom: 20px;
  text-transform: uppercase;
  display: block;
}

.bellich-voltar:hover {
  color: #111;
}

/* TÍTULO */
.bellich-etapa h2 {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
  text-align: center;
}

.bellich-subtitulo {
  font-size: 13px;
  color: #888;
  text-align: center;
  margin-top: -14px;
  margin-bottom: 20px;
}

/* OPÇÕES */
.bellich-opcoes {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bellich-opcao {
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  padding: 16px 18px;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all .2s;
  background: #fff;
}

.bellich-opcao:hover {
  border-color: #111;
  background: #fafafa;
}

.bellich-opcao.selecionado {
  border-color: #111;
  background: #111;
}

.bellich-opcao.selecionado .bellich-opcao-texto strong,
.bellich-opcao.selecionado .bellich-opcao-texto span,
.bellich-opcao.selecionado .bellich-opcao-texto em,
.bellich-opcao.selecionado .bellich-opcao-icon {
  color: #fff !important;
}

.bellich-opcao-icon {
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.bellich-opcao-texto {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.bellich-opcao-texto strong {
  font-size: 14px;
  font-weight: 700;
  color: #111;
}

.bellich-opcao-texto span {
  font-size: 12px;
  color: #888;
  line-height: 1.5;
}

.bellich-opcao-texto em {
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
  color: #C9A84C;
  margin-top: 4px;
}

.bellich-opcao-linha {
  flex-direction: row !important;
  justify-content: space-between;
  align-items: center;
}

.bellich-opcao-linha em {
  margin-top: 0 !important;
  font-size: 15px !important;
  white-space: nowrap;
}

/* RESUMO */
.bellich-resumo-box {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  font-size: 13px;
  color: #444;
  line-height: 2;
}

.bellich-resumo-box p {
  margin: 0;
  font-size: 13px !important;
  color: #444 !important;
  line-height: 2 !important;
}

.bellich-total {
  font-weight: 700 !important;
  color: #111 !important;
  margin-top: 8px !important;
  padding-top: 8px;
  border-top: 1px solid #eee;
}

/* ATENÇÃO */
.bellich-atencao {
  border-left: 3px solid #C9A84C;
  padding: 12px 16px;
  margin-bottom: 16px;
  background: #fafafa;
  border-radius: 0 8px 8px 0;
}

.bellich-atencao strong {
  font-size: 14px;
  color: #111;
  display: block;
  margin-bottom: 6px;
}

.bellich-atencao p {
  font-size: 12px !important;
  color: #666 !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}

.bellich-nao-esqueca {
  border: 1px solid #e0e0e0;
  padding: 12px 16px;
  margin-bottom: 20px;
  border-radius: 8px;
}

.bellich-nao-esqueca strong {
  font-size: 14px;
  color: #111;
  display: block;
  margin-bottom: 6px;
}

.bellich-nao-esqueca p {
  font-size: 12px !important;
  color: #666 !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}

/* RESUMO FINAL */
.bellich-resumo-final {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 16px;
  font-size: 13px;
  color: #444;
  line-height: 2;
}

/* BOTÕES */
.bellich-btn-preto {
  display: block;
  width: 100%;
  padding: 14px;
  background: #111;
  color: #fff !important;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
  text-decoration: none !important;
  margin-bottom: 10px;
  transition: background .2s;
}

.bellich-btn-preto:hover {
  background: #333;
  color: #fff !important;
}

.bellich-btn-outline {
  background: transparent !important;
  color: #111 !important;
  border: 1.5px solid #111 !important;
}

.bellich-btn-outline:hover {
  background: #f5f5f5 !important;
}

/* MOBILE */
@media (max-width: 500px) {
  #bellich-panel {
    width: 100vw;
  }
}
