/* ====== ESTILO GERAL ====== */
body {
  font-family: "Poppins", sans-serif;
  background-color: #0e0e0e;
  color: #fff;
  margin: 10;
  padding: 10;
}

/* ====== CABEÇALHO ====== */
header.cabecalho {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
  border-bottom: 3px solid #ff7b00;
  padding: 10px 20px;
  gap: 15px;
  flex-wrap: wrap;
}

/* CSS para posicionar a logo "encaixada" no topo lateral com glow RGB */
.cabecalho {
  position: relative;
  height: 90px;                /* ajuste a altura do cabeçalho conforme necessário */
  padding: 0 20px;
  display: flex;
  align-items: flex-start;     /* mantém conteúdo no topo */
  background: transparent;
  overflow: visible;
}

/* Classe da imagem conforme seu HTML: <img class="logo-grande"> */
.logo-grande {
  position: absolute;
  top: -8px;                   /* "encaixa" a logo na parte de cima (puxe para cima com valores negativos) */
  left: 18px;                  /* posicionamento lateral: mude para `right: 18px;` se quiser à direita */
  width: 180px;                /* ajuste o tamanho conforme necessário */
  height: auto;
  z-index: 10;
  display: block;
  padding: 6px;                /* pequeno halo/offset para destacar o glow */
  border-radius: 8px;          /* cantos arredondados (opcional) */
  background: rgba(0,0,0,0.18);/* leve fundo para destacar o brilho sobre fundos claros/escuros */
  transition: transform .25s ease, box-shadow .25s ease;
  cursor: default;

}

/* interação opcional: aumenta sutilmente o glow ao passar o mouse */
.logo-grande:hover {
  transform: translateY(-2px) scale(1.02);
}

/* Responsividade: reduz a logo em telas pequenas */
@media (max-width: 520px) {
  .logo-grande {
    width: 100px;
    left: 12px;   /* ajusta o encaixe em telas pequenas */
    top: -6px;
  }
}

.titulo-site {
  text-align: center;
}

.titulo-principal {
  font-size: 36px;
  color: #ff7b00;
  margin: 0;
  letter-spacing: 2px;
}

.subtitulo {
  font-size: 16px;
  color: #ffae42;
  margin: -10px 0 0 0;
  letter-spacing: 3px;
}

@media (max-width: 768px) {
  header.cabecalho {
    flex-direction: column;
    padding: 10px;
  }

  .logo {
    width: 70px;
  }

  .titulo-principal {
    font-size: 28px;
  }

  .subtitulo {
    font-size: 14px;
  }
}

/* ====== STATUS LOJA ====== */
.status-funcionamento {
  text-align: center;
  font-size: 14px;
  color: #ffae42;
}

/* ====== MENU ====== */
.menu {
  width: 100%;
  background-color: #ff7b00;
  display: flex;
  justify-content: center;
  border-bottom: 3px solid #000;
}

.menu ul {
  list-style: none;
  display: flex;
  gap: 40px;
  padding: 10px 0;
  margin: 0;
}

.menu a {
  color: #000;
  font-weight: bold;
  font-size: 1.1em;
  text-decoration: none;
  border-radius: 5px;
  padding: 5px 10px;
  transition: 0.3s;
}

.menu a:hover {
  color: #fff;
  background-color: #000;
}

/* ====== GRID DE ITENS ====== */
main {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  max-width: 800px;
}

.item {
  background: #1a1a1a;
  border: 2px solid #2a2a2a;
  border-radius: 12px;
  width: 190px;
  padding: 12px;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.item:hover {
  transform: scale(1.10);
  border-color: #ff7b00;
}

.item img {
  width: 100%;
  height: 150px;
  border-radius: 8px;
  object-fit: cover;
}

.item p {
  margin: 8px 0 4px;
  color: #ff7b00;
  font-weight: bold;
}

.descricao {
  color: #ccc;
  font-size: 12px;
  min-height: 35px;
}

.item button {
  background-color: #ff7b00;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.item button:hover {
  background-color: #ff5500;
}
.btn-carrinho:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(255, 123, 0, 0.8);
}

.carrinho-item {
  display: flex;
  justify-content: space-between;
  background: #ff7b00;
  border-left: 4px solid #ff7b00;
  padding: 8px;
  border-radius: 10px;
  margin-bottom: 8px;
  font-size: 15px;
}

.total {
  color: #ff7b00;
  font-weight: bold;
  text-align: right;
}

.botoes-carrinho {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.botoes-carrinho button {
  flex: 1;
  margin: 5px;
  border-radius: 10px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  padding: 8px;
}

.finalizar {
  background-color: #ff7b00;
  color: white;
}

.cancelar {
  background-color: #333;
  color: white;
}

/* ====== RESPONSIVO ====== */
@media (max-width: 768px) {
  header.cabecalho {
    flex-direction: column;
  }

  .logo {
    width: 90px;
  }

  main {
    flex-direction: column;
    align-items: center;
  }

  .carrinho {
    position: relative;
    width: 90%;
  }

/* ====== BOTÕES CARRINHO ====== */
.botoes-carrinho {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.botoes-carrinho button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  font-size: 15px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: bold;
  letter-spacing: 0.5px;
}

.botoes-carrinho .finalizar {
  background: linear-gradient(90deg, #ff7b00, #ffae42);
  color: #fff;
  box-shadow: 0 0 10px rgba(255, 123, 0, 0.5);
}

.botoes-carrinho .finalizar:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 123, 0, 0.8);
}

.botoes-carrinho .cancelar {
  background: linear-gradient(90deg, #ff3b3b, #b30000);
  color: #fff;
  box-shadow: 0 0 10px rgba(255, 26, 26, 0.5);
}

.botoes-carrinho .cancelar:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 26, 26, 0.8);
}

/* ===== BOTÃO VOLTAR AO TOPO ===== */
#btnTopo {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: linear-gradient(90deg, #ff7b00, #ffae42);
  color: #000;
  border: none;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  font-size: 25px;
  cursor: pointer;
  display: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(255, 123, 0, 0.4);
}

#btnTopo:hover {
  transform: scale(1.15);
  background: linear-gradient(90deg, #ff5500, #ff9e3d);
  color: #fff;
  box-shadow: 0 0 25px rgba(255, 123, 0, 0.8);
}

}
