.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.2); /* Aumenta 20% */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.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;
}

/* NOVO ESTILO PARA O ÍCONE DE RELÓGIO */
.header-clock-btn svg {
    height: 28px;
    width: 28px;
    fill: #f7f0e0;
    /* Adiciona um leve efeito de hover, opcional */
    transition: transform 0.3s ease;
}
.header-clock-btn:hover svg {
    transform: scale(1.1);
}

/* ================================================= */
/* === CORREÇÃO DO FUNDO DA PÁGINA DE CARNES === */
/* ================================================= */
/* O main.conteudo-principal engloba tanto as carnes quanto as bebidas */
main.conteudo-principal {
  background-color: #f7f0e0;
}

/* CARNES */

.card-principal {
  /* background-color: #f7f0e0; <-- A COR FOI MOVIDA DAQUI */
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 30px;
}
/* ================================================= */
/* ================================================= */


.card-principal .cartas {
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.card-principal .secao4 {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.card-principal .secao4 .titulo3 {
  font-family: "Linden Hill", serif;
  font-size: 75px;
  color: #6c0e16;
  margin-top: 75px;
  padding: 0 70px;
}



.card-principal .secao4 .sobre3 {
   display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 310px 100px 310px;
  font-size: 30px;
  font-family: "Linden Hill", serif;
  text-align: center;
  color: #6c0e16;
}

.card-principal .secao4 .garfo-meio {
  margin-top: 60px;
  margin-bottom: 25px;
  justify-content: center;
  display: flex;
  align-items: center;
  margin: 65px 675px 105px 675px;
}

.carneS,
.bebidaS, .sobremesaS {
  display: flex;
  justify-content: center;
  padding: 20px;
  max-width: 1440px;
  flex-wrap: wrap;
  gap: 60px;
}

.carne, .bebida, .sobremesa{
  display: flex;
  flex-direction: column;
  width: 300px;
  height: auto;
  padding-bottom: 15px;
  background-color: #6c0e16;
  border-radius: 15px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.carne:hover, .bebida:hover, .sobremesa:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 1);
}

.img-cardapio {
  height: 150px;
  width: 100%;
  object-fit: cover;
  border-radius: 15px 15px 0 0;
}

.detalhes {
  font-size: 18px;
  font-family: "Linden Hill", serif;
  margin: 4px 25px;
  color: #f7f0e0;
  margin-top: 15px;
}
.explicacao {
  font-size: 16px;
  font-family: "Quicksand", sans-serif;
  margin: 7px 25px;
  color: #f7f0e0;
  flex-grow: 1;
}

/* CARNES */

/* BEBIDAS */


.conteiner-bebidas, .conteiner-sobremesas{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 75px;
  background-color: #f7f0e0;
}

.conteiner-bebidas .cabecalho3, .conteiner-sobremesas .cabecalho3 {
  display: flex;
  align-items: center;
  flex-direction: column;

}

.conteiner-bebidas .cabecalho3 .titulo4, .conteiner-sobremesas .cabecalho3 .titulo4 {
  font-family: "Linden Hill", serif;
  font-size: 75px;
  color: #6c0e16;
  margin-top: 95px;
  display: flex;
  justify-content: center;
}

.cabecalho3{
  gap: 65px;
}

/* NOVA ÁREA DO PREÇO E BOTÃO */
.preco-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 25px;
    margin-top: auto;
}

.preco-area .detalhes {
    margin: 0;
}

.add-carrinho {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.add-carrinho svg {
    width: 24px;
    height: 24px;
    fill: #f7f0e0;
    transition: fill 0.3s ease;
}

.add-carrinho:hover svg {
    fill: #f5b969; /* Uma cor de destaque ao passar o mouse */
}


/* --- ABA LATERAL DO CARRINHO (COM ANIMAÇÕES) --- */
#carrinho-lateral {
    position: fixed;
    top: 0;
    right: -400px; /* Começa fora da tela */
    width: 380px;
    height: 100%;
    background-color: #f7f0e0;
    box-shadow: -5px 0 20px rgba(0,0,0,0.15);
    /* TRANSIÇÃO SUAVE APLICADA AQUI */
    transition: right 0.4s ease-in-out;
    z-index: 1001;
    display: flex;
    flex-direction: column;
}

#carrinho-lateral.aberto {
    right: 0; /* Entra na tela */
}

.carrinho-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #6c0e16;
    color: #f7f0e0;
}

.carrinho-header h3 {
    /* margin: 0; */
    font-family: "Linden Hill", serif;
    font-size: 24px;
    color: #f7f0e0;
}

#fechar-carrinho {
    background: none;
    border: none;
    color: #f7f0e0;
    font-size: 28px;
    cursor: pointer;
}

#carrinho-corpo {
    flex-grow: 1;
    overflow-y: auto;
    padding: 10px 20px;
}

#lista-carrinho {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

#lista-carrinho li {
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
    color: #6c0e16;
    font-family: "Quicksand", sans-serif;
}

/* Estilo para o texto do item no carrinho */
#lista-carrinho .item-info {
    flex-grow: 1;
    margin-right: 15px;
    max-width: 170px;
}

#lista-carrinho .item-info .nome {
    font-weight: bold;
    color: #6c0e16;
    font-family: "Quicksand", sans-serif;
}

#lista-carrinho .item-info .preco-unitario {
    font-size: 14px;
    color: #777;
    font-family: "Quicksand", sans-serif;
}

.quantidade-controls {
    display: flex; /* Garante que os botões e o número fiquem em linha */
    align-items: center; /* Alinha verticalmente os controles */
    margin-right: 15px;
}

.quantidade-btn {
    width: 28px;
    height: 28px;
    border: 1px solid #6c0e16;
    background: none;
    border-radius: 50%;
    font-size: 18px;
    font-weight: bold;
    color: #6c0e16;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, color 0.3s;
}

.quantidade-btn:hover {
    background-color: #6c0e16;
    color: #f7f0e0;
}

.item-quantidade {
    margin: 0 10px;
    font-weight: bold;
    font-size: 18px;
    min-width: 20px;
    text-align: center;
}



/* Estilo do botão de remover */
.remover-item {
    background-color: #e63946;
    color: white;
    border: none;
    border-radius: 50%;
    width: 17px;
    height: 17px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    margin-left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;

}

.remover-item:hover {
    background-color: #a31621;
}


.carrinho-footer {
    padding: 20px;
    border-top: 2px solid #6c0e16;
    text-align: right;
    background-color: #f0e6d2;
}

.footer-totais {
    display: flex;
    justify-content: space-between; /* <-- Isso coloca um de cada lado */
    align-items: center;
}
.carrinho-footer p {
    margin: 0 0 15px 0;
    font-size: 20px;
    font-weight: bold;
    color: #6c0e16;
    font-family: "Linden Hill", serif;
}

/* Estilo do botão de concluir compra */
#concluir-compra {
    width: 100%;
    padding: 15px;
    background-color: #2a9d8f;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-family: "Quicksand", sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#concluir-compra:hover {
    background-color: #268a7e;
}

#concluir-compra:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}


#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1000;
    /* TRANSIÇÃO SUAVE PARA O OVERLAY */
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

#overlay.visivel {
    display: block;
    opacity: 1;
}

/* --- ANIMAÇÃO PARA ITEM ADICIONADO AO CARRINHO --- */
@keyframes highlight-item {
    0% { background-color: transparent; }
    50% { background-color: #f5b969; color: #6c0e16; }
    100% { background-color: transparent; }
}

.item-adicionado {
    animation: highlight-item 0.8s ease-out;
}


.cabecalho2 {
  background-color: #6c0e16;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* margin-top: 50px; */
}

.logo2 {
  margin-left: 180px;
  width: 100px;
}

.cabecalho2 .navecacao2 .menu2 {
  display: flex;
}

.cabecalho2 .navecacao2 .menu2 .item2 {
  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;
}

.cabecalho2 .navecacao2 .menu2 .item2:hover {
  transform: scale(1.2);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cabecalho2 .redes-sociais2 {
  display: flex;
  margin-right: 180px;
  padding: 43px 0 0 0;
}

.cabecalho2 .redes-sociais2 .imagem2 {
  height: 32px;
}
/* Estilo para o ícone SVG do carrinho no cabeçalho */
.header-cart-btn svg {
    height: 28px;
    width: 28px;
    fill: #f7f0e0;
}


/* ESTILO DO RELÓGIO ADICIONADO */
.header-clock-btn svg {
    height: 28px;
    width: 28px;
    fill: #f7f0e0;
    transition: transform 0.3s ease;
}
.header-clock-btn:hover svg {
    transform: scale(1.1);
}

/* ESTILOS DE MODAL GENÉRICOS ADICIONADOS */
.hidden { display: none !important; }

.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;
}

/* ESTILOS DO MODAL DE HORÁRIOS ADICIONADOS */
#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;
}

/* No arquivo carnes.css */

/* ... (demais estilos) ... */


/* === ESTILOS ADICIONADOS PARA O MODAL DE OPÇÕES === */

/* Estilos para a lista de opções (reaproveitados do checkout.css) */
#modal-opcoes-lista.opcoes-pagamento {
    margin-bottom: 25px; /* Espaço antes do botão */
    max-height: 40vh; /* Limita a altura para listas longas */
    overflow-y: auto; /* Adiciona scroll se necessário */
}

/*
 * ============================================================
 * ===== MODIFICADO AQUI =====
 * Adicionada a classe .opcao-checkbox
 * ============================================================
 */
#modal-opcoes-lista .opcao-radio,
#modal-opcoes-lista .opcao-checkbox { 
    display: flex; 
    align-items: flex-start;
    border: 1px solid #ddd; 
    padding: 15px; 
    border-radius: 8px; 
    margin-bottom: 10px; 
    background: #fff; /* Fundo branco para destacar do fundo do modal */
}

/*
 * ============================================================
 * ===== MODIFICADO AQUI =====
 * Adicionada a classe .opcao-checkbox e seu input
 * ============================================================
 */
#modal-opcoes-lista .opcao-radio input[type="radio"],
#modal-opcoes-lista .opcao-checkbox input[type="checkbox"] { 
    margin-right: 15px; 
    margin-top: 3px; 
}

/*
 * ============================================================
 * ===== MODIFICADO AQUI =====
 * Adicionada a classe .opcao-checkbox
 * ============================================================
 */
#modal-opcoes-lista .opcao-radio label,
#modal-opcoes-lista .opcao-checkbox label { 
    font-size: 16px; 
    width: 100%;
    cursor: pointer;
    color: #6c0e16; /* Cor do tema */
    font-family: "Quicksand", sans-serif;
    font-weight: bold;
}

/* Estilo para o botão 'Confirmar' dentro do modal */
#form-modal-opcoes .botao {
    width: 100%;
    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;
}

/* ... (resto do arquivo css) ... */

#form-modal-opcoes .botao:hover {
    background-color: #8a1a26;
    transform: scale(1.02);
}

/* === NOVO ESTILO PARA TÍTULOS DE GRUPO NO MODAL === */
#modal-opcoes-lista .modal-grupo-titulo {
    font-family: "Linden Hill", serif;
    font-size: 1.3em;
    color: #6c0e16;
    margin-top: 20px;
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

#modal-opcoes-lista .modal-grupo-titulo:first-of-type {
    margin-top: 0;
}

/* =========================================== */
/* === 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; 
}

/* === NOVO ESTILO PARA INFO 'SIMPLES' NO MODAL === */
.info-simples {
    font-family: "Quicksand", sans-serif;
    font-size: 15px;
    color: #555;
    font-style: italic;
    text-align: center;
    background-color: #fff;
    border: 1px dashed #6c0e16;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 15px;
}