body{
    background-color: #f7f0e0;
}

.cabecalho {
  background-color: #6c0e16;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  margin-left: 250px;
  width: 100px;
}

.cabecalho .navecacao .menu {
  display: flex;
}

.cabecalho .navecacao .menu .item {
  display: flex;
  padding: 10px;
  margin: 15px;
  font-size: 14px;
  color: #f7f0e0;
  border: solid #f7f0e0;
  border-radius: 35px;
  font-family: "Quicksand", sans-serif;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.cabecalho .navecacao .menu .item:hover {
  transform: scale(1.1);
}

.cabecalho .redes-sociais {
  display: flex;
  margin-right: 250px;
}

.cabecalho .redes-sociais .imagem {
  height: 28px;
}
.cabecalho .redes-sociais .imagem-relogio {
 height: 29px;
}

.header-cart-btn svg {
    height: 28px;
    width: 28px;
    fill: #f7f0e0;
}

.feed {
  display: flex;
  align-items: center;
  flex-direction: column;
} 

.feed .titulo5 {
  font-family: "Linden Hill", serif;
  font-size: 75px;
  color: #6c0e16;
  margin-top: 75px;
  padding: 0 70px;
}

 .feed .garfo-meio {
  margin-top: 60px;
  margin-bottom: 25px;
  justify-content: center;
  display: flex;
  align-items: center;
  margin: 65px 675px 105px 675px;
} 

.container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
    padding: 30px 40px;
    border-radius: 10px;
    max-width: 600px; /* Define a largura máxima do card */
    margin: 0 auto; /* Centraliza o card */
    
    display: block; 
}

.caixa {
  position: relative; /* Isso é essencial para posicionar o ícone dentro */
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

#senha-cadastro, #senha-login {
    padding-right: 45px !important; 
}

.toggle-password {
    position: absolute;
    bottom: 7px; /* Alinha com o meio do input (que tem 40px de altura) */
    right: 15px;  /* Alinha com o padding do input */
    cursor: pointer;
    z-index: 20;
}

.toggle-password svg {
    width: 20px;
    height: 20px;
    fill: #aaa; /* Cor cinza padrão */
    transition: fill 0.2s;
}

.toggle-password:hover svg {
    fill: #6c0e16; /* Cor do tema ao passar o mouse */
}

.eye-icon{
  width: 20px;
}

.eye-slash-icon{
width: 20px;
}

.nomel {
  font-size: 20px;
  font-family: "Linden Hill", serif;
  color: #6c0e16;
  margin-bottom: 10px;
}
.textol {
  border: 1px solid #6c0e16;
  border-radius: 10px;
  height: 40px;
  padding: 0 15px;
  font-family: "Quicksand", sans-serif;
  font-size: 16px;
}
.botao {
  background-color: #6c0e16;
  border: none;
  border-radius: 10px;
  height: 50px;
  color: #f7f0e0;
  font-size: 20px;
  font-family: "Quicksand", sans-serif;
  font-weight: bold;
  cursor: pointer;
  margin-top: 10px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.botao:hover {
  background-color: #8a1a26;
  transform: scale(1.02);
}

/* --- ESTILOS PAINEL DO CLIENTE --- */
.hidden { display: none !important; }
#painel-cliente {
    width: 100%;
    max-width: 900px;
    margin: 50px auto;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    font-family: "Quicksand", sans-serif;
}
.painel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background-color: #6c0e16;
    color: #f7f0e0;
}
.painel-header h1 {
    font-family: "Linden Hill", serif;
    font-size: 2.5em;
    margin: 0;
    color: #f7f0e0;
}
.botao-sair {
    background: #f7f0e0;
    color: #6c0e16;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}
.botao-sair:hover { background: #e0d8c7; }

.painel-nav { display: flex; border-bottom: 1px solid #eee; }
.painel-nav .tab-button {
    flex: 1;
    padding: 18px;
    font-size: 1.1em;
    font-weight: 600;
    background: #f9f9f9;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #888;
}

.painel-nav  .tab-button:hover { 
  background: #f0f0f0;
}

.painel-nav .tab-button.active {
    
    color: #6c0e16;
    border-bottom: 3px solid #6c0e16;
  
    border-bottom-color: #6c0e16; /* Borda vermelha no botão ativo */
}


.tab-form {
    display: none; /* Oculta os formulários por padrão */
    flex-direction: column;
    width: 100%;
}

.tab-form.active {
    display: flex; /* Exibe apenas o formulário ativo */
}

.painel-body { padding: 30px; }

.tab-content { display: none; }

.tab-content.active { display: block; }

.tab-content h2 {
    font-family: "Linden Hill", serif;
    font-size: 2em;
    color: #6c0e16;
    margin-bottom: 20px;
}
#info-cliente p {
    font-size: 1.1em;
    margin-bottom: 12px;
    color: #333;
}
#info-cliente strong { color: #6c0e16; }

#historico-compras-lista .pedido {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer; /* ADICIONADO */
}
#historico-compras-lista .pedido:hover {
    background-color: #f9f9f9;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

#historico-compras-lista .pedido-header {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
#historico-compras-lista .pedido-header .data { color: #777; }
#historico-compras-lista .pedido-lista { list-style: none; padding: 0; }
#historico-compras-lista .pedido-lista li {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
}

/* --- ESTILOS PARA O MODAL DE EDIÇÃO (EXISTENTE) --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    transition: opacity 0.3s ease;
}
.modal-content {
    background: #f7f0e0;
    padding: 30px 40px;
    border-radius: 15px;
    max-width: 600px;
    width: 90%;
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}
.fechar-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #6c0e16;
}
.modal-content h2 {
    font-family: "Linden Hill", serif;
    font-size: 32px;
    color: #6c0e16;
    margin-bottom: 25px;
    text-align: center;
}
#edit-form .textol[disabled] {
    background-color: #e9ecef;
    cursor: not-allowed;
}

/* RODAPÉ */
.cabecalho2 {
  background-color: #6c0e16;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
}
.logo2 { margin-left: 180px; width: 100px; }
.cabecalho2 .redes-sociais2 {
  display: flex;
  margin-right: 180px;
  padding: 43px 0 0 0;
}
.cabecalho2 .redes-sociais2 .imagem2 { 
  height: 32px; 
}

/* --- ESTILO PARA OBSERVAÇÃO NO HISTÓRICO (EXISTENTE) --- */
.pedido-observacao {
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px dashed #ddd;
    font-size: 15px;
    color: #555;
}
.pedido-observacao strong {
    color: #6c0e16;
}

/* --- ESTILOS DAS ABAS (EXISTENTE) --- */
.tab-buttons {
    display: flex;
    margin-bottom: 25px;
    border-bottom: 2px solid #eee;
}

.tab-buttons .tab-button {
    flex: 1; /* Faz os botões ocuparem espaço igual */
    padding: 15px;
    font-size: 1.2em;
    font-family: "Linden Hill", serif;
    color: #888;
    background-color: transparent;
    border: none;
    border-bottom: 3px solid transparent; /* Borda "invisível" para manter o alinhamento */
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: -2px; /* Puxa a borda do botão para cobrir a borda do container */
}

.tab-buttons .tab-button.active {
    background:#f7f0e0;
    color: #6c0e16;
    border-bottom: 3px solid #6c0e16;
  
    border-bottom-color: #6c0e16; /* Borda vermelha no botão ativo */
}


.tab-buttons .tab-button:hover {
    color: #f7f0e0;
    background-color: #6c0e16 ;
}

/* === ESTILOS ADICIONADOS PARA O CONTEÚDO DO MODAL HISTÓRICO === */
#detalhes-pedido-conteudo {
    font-family: "Quicksand", sans-serif;
    color: #333;
    max-height: 60vh; /* Altura máxima para permitir rolagem */
    overflow-y: auto; /* Adiciona rolagem se o conteúdo for muito grande */
}

#detalhes-pedido-conteudo h3 {
    font-family: "Linden Hill", serif;
    font-size: 1.5em;
    color: #6c0e16;
    margin-top: 20px;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

#detalhes-pedido-conteudo p {
    font-size: 1.1em;
    margin-bottom: 12px;
}

#detalhes-pedido-conteudo p strong {
    color: #6c0e16;
}

#detalhes-pedido-conteudo ul {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

#detalhes-pedido-conteudo li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dotted #ccc;
}

#detalhes-pedido-conteudo .detalhe-observacao {
    font-style: italic;
    color: #555;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    white-space: pre-wrap; /* Preserva quebras de linha da observação */
}

/* === NOVO ESTILO PARA ESTIMATIVA DE TEMPO === */
#detalhes-pedido-conteudo .detalhe-tempo-estimado {
    font-size: 0.9em;
    color: #555;
    font-style: italic;
    font-weight: normal; /* Garante que não pegue o bold do <strong> */
}
/* === FIM DO NOVO ESTILO === */

/* === FIM DOS ESTILOS ADICIONADOS === */


/* === NOVOS ESTILOS PARA O MODAL DE HORÁRIOS === */
#detalhes-horarios-conteudo {
    font-family: "Quicksand", sans-serif;
    color: #333;
    max-height: 60vh;
    overflow-y: auto;
}

#detalhes-horarios-conteudo h3 {
    font-family: "Linden Hill", serif;
    font-size: 1.5em;
    color: #6c0e16;
    margin-top: 20px;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}
#detalhes-horarios-conteudo h3:first-of-type {
    margin-top: 0;
}

#detalhes-horarios-conteudo p {
    font-size: 1.1em;
    margin-bottom: 12px;
    line-height: 1.5;
}

#detalhes-horarios-conteudo p strong {
    color: #6c0e16;
    min-width: 140px; /* Alinha os valores */
    display: inline-block;
}

#detalhes-horarios-conteudo p em {
    font-style: italic;
    color: #555;
    font-size: 0.9em;
}
#detalhes-horarios-conteudo .icone-loc{
  height: 19px;
  margin-left: 15px;
  margin-top: 2px;
}

/* =========================================== */
/* === BOTÃO DE RESERVA NO MODAL HORÁRIOS === */
/* =========================================== */

#detalhes-horarios-conteudo #btn-ir-para-reserva {
    width: 100%;
    background-color: #2a9d8f;
    border: none;
    border-radius: 10px;
    height: 50px;
    color: #fff;
    font-size: 18px;
    font-family: "Quicksand", sans-serif;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 25px; /* Espaçamento */
    text-align: center;
    padding-top: 12px; /* Ajuste vertical do texto do link */
    box-sizing: border-box; /* Garante que o padding não estoure a altura */
    text-decoration: none; /* Remove sublinhado do link */
    display: block; /* Faz o <a> ocupar a largura total */
}


#detalhes-horarios-conteudo #btn-ir-para-reserva:hover {
    background-color: #268a7e;
    transform: none;
}

/* === ESTILOS PARA RESERVA NO HISTÓRICO === */
#historico-compras-lista .pedido-header.reserva-header {
    background-color: #f7f0e0;
    padding: 10px;
    border-radius: 5px 5px 0 0;
    border-bottom: 2px solid #6c0e16;
}
#historico-compras-lista .pedido-header.reserva-header .data-reserva {
    color: #6c0e16;
    font-size: 1.2em;
}
#historico-compras-lista .pedido-header.pedido-sub-header {
    font-size: 0.9em;
    padding-top: 10px;
    margin-bottom: 0;
}
#historico-compras-lista .pedido-lista .nenhum-item {
    justify-content: center;
    font-style: italic;
    color: #888;
    padding: 10px 0;
}

/* === ESTILOS PARA RESERVA NO MODAL HISTÓRICO === */

#detalhes-pedido-conteudo .detalhes-finais-pedido {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}
/* === NOVOS ESTILOS (HISTÓRICO DE RESERVA) === */

#historico-compras-lista .pedido-status {
    font-size: 1em;
    font-weight: bold;
    margin-left: 15px;
}

.status-concluido {
    color: #2a9d8f; /* Verde */
}

.status-cancelado {
    color: #c92a2a; /* Vermelho */
}

/* Estilo dos botões de ação na reserva */
.pedido-acoes {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed #ddd;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.btn-cancelar-reserva,
.btn-modificar-reserva {
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-family: "Quicksand", sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none; /* Para o link <a> */
    display: inline-block; /* Para o link <a> */
}

/* Botão Modificar (Link Verde) */
.btn-modificar-reserva {
    background-color: #2a9d8f;
    color: white;
}
.btn-modificar-reserva:hover {
    background-color: #268a7e;
}

/* Botão Cancelar (Botão Vermelho) */
.btn-cancelar-reserva {
    background-color: #e63946;
    color: white;
}
.btn-cancelar-reserva:hover {
    background-color: #c92a2a;
}

/*
 * ======================================================
 * === CÓDIGO CORRIGIDO (REMOVIDO BLOCO DUPLICADO) ===
 * ======================================================
*/

/* === NOVOS ESTILOS (PAINEL DE DÍVIDA) === */
.divida-pendente {
    background-color: #fffbe6;
    border: 1px solid #ffe58f;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 20px;
}
.divida-pendente h3 {
    color: #d46b08;
    font-family: "Linden Hill", serif;
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 10px;
}
.divida-pendente p {
    font-family: "Quicksand", sans-serif;
    font-size: 1.1em;
    color: #595959;
    margin: 0 0 10px 0;
}
.divida-pendente p strong {
    color: #d46b08;
    font-size: 1.4em;
}
.btn-pagar-divida {
    background-color: #d46b08;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: bold;
    font-family: "Quicksand", sans-serif;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px; 
}
.btn-pagar-divida:hover {
    background-color: #ad5807;
}

/* === NOVOS ESTILOS (MODAL DE TAXA - FLUXO PIX/DÍVIDA) === */
.taxa-valor {
    font-size: 1.2em;
    text-align: center;
    margin: 15px 0;
}
.taxa-valor strong {
    font-size: 1.5em;
    color: #c92a2a;
}
.opcoes-pagamento-taxa {
    display: flex;
    justify-content: space-around;
    gap: 15px;
    margin: 25px 0;
}
.btn-taxa {
    flex: 1;
    padding: 15px;
    font-size: 1em;
    font-weight: bold;
    border-radius: 8px;
    border: 2px solid #6c0e16;
    background-color: #f7f0e0;
    color: #6c0e16;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-taxa:hover {
    background-color: #6c0e16;
    color: #f7f0e0;
}
/* Botão de Dívida (vermelho) */
.btn-taxa.btn-taxa-divida {
    border-color: #c92a2a;
    background-color: #c92a2a;
    color: white;
}
.btn-taxa.btn-taxa-divida:hover {
    background-color: #e63946;
    border-color: #e63946;
}

/* Seção de Detalhes do Pix */
.taxa-detalhes {
    border-top: 1px solid #eee;
    padding-top: 20px;
    text-align: center;
}
.fake-qr-code {
    width: 150px;
    height: 150px;
    background-color: #eee;
    border: 1px solid #ccc;
    margin: 10px auto;
    display: block;
}
.botao-whatsapp {
    display: inline-block;
    background-color: #25D366;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    margin: 15px 0;
    transition: background-color 0.3s;
}
.botao-whatsapp:hover {
    background-color: #1EAE56;
}
#form-pagar-com-codigo {
    margin-top: 20px;
}
#form-pagar-com-codigo .botao {
    width: 100%;
}

/* Estilos de texto do PIX (que você adicionou) */
.titulo-pix{
  font-family: "Linden Hill", serif;
  font-size: 24px; /* Aumentei um pouco para se parecer com h3 */
  color: #6c0e16;
  margin-bottom: 15px; /* Adicionado espaçamento */
}
.texto-pix{
  font-family: "Quicksand", sans-serif;
  font-size: 1.1em; /* Tamanho de parágrafo padrão */
  color: #333;
  margin-bottom: 10px; /* Adicionado espaçamento */
}
.chave-pix{
  color: #000;
  font-weight: bold; /* Deixa a chave em negrito */
  background-color: #eee; /* Fundo leve para destacar */
  padding: 2px 6px;
  border-radius: 4px;
}

/* Estilo do modal de pagar dívida (Estava comentado) */
#form-pagar-divida p {
    font-family: "Quicksand", sans-serif;
    margin-bottom: 20px;
    font-size: 1.1em;
    line-height: 1.5;
    text-align: center;
    color: #333;
}
#form-pagar-divida .caixa {
    text-align: left; /* Alinha o label do código */
}
#form-pagar-divida .botao {
    width: 100%;
}
