body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #fff;
  color: #73313B;
  padding-bottom: 100px;
}

header {
  background-color: #F65DBA;
  padding-top: 20px;
  text-align: center;
  width: 100%;
}

.logo-nome {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  width: 100px;
  height: auto;
  border-radius: 50%;
}

h1 {
  margin: 10px 0;
  color: #fff;
  font-size: 15pt;
  margin-inline: 5px;
}

.menu {
  width: 100%;
  display: flex;
  justify-content: center;
  position: sticky;
  top: 0px;
  z-index: 1000;
}
.btn-categoria{ 
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0px;
  flex: 1;
  background-color: #E40DB0;
  color: white;
  padding-block: 10px;
  border: none;
  border-inline: 0.5px solid white;
  cursor: pointer;
  transition: 0.3s;
  font-weight: bold;
  text-align: center;
}
.btn-categoria.ativo {
  background: #73313B;
  color: #fff;
  border: none;
}
.cardapio {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}
.categoria{
  width: 85%;
  display: flex;
  flex-direction: column;
  gap: 10px;

}

.lista-produtos{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
h2{
  background-color: #ffebf7;
  padding-left: 5px;
  margin-bottom: 0px;
  font-size: 14pt;
}
#pedido-min{
  color: #F65DBA;
  font-weight: bold;
  font-size: 10pt;
  margin-block: -5px;
  margin-left: 5px;
}
.area-aviso {
  text-align: center;
  width: 100%;
}

.aviso-pedido {
  font-weight: bold;
  color: #E40DB0;
  font-size: 16px;
}

.card {
  display: flex;
  width: 400px;
  background-color: #FCE4EC;
  border: 1px solid #F65DBA;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.card:hover{
    transform: scale(1.02);
    border: 1px solid #E40DB0;
    box-shadow: 0px 0px 15px #F65DBA;
}

.card img {
  width: 150px;
  height: auto;
  object-fit: cover;
}

.card-info {
  padding-inline: 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.descricao {
  font-size: 16px;
  font-weight: bold;
  color: #73313B;
}
.card-info hr{
  width: 100%;
  border: 1px solid #73313B;
}
.preco, .massa {
  font-size: 11pt;
  font-weight: bold;
  color: #E40DB0;
}

.card-checkbox {
  position: absolute;
  top: 10px;
  right: 10px;
  transform: scale(1.3);
  cursor: pointer;
}
#area-qtd{
  display: flex;
  flex-wrap: wrap;
  font-weight: bold;
  color: #73313B;
  padding-bottom: 5px;
}

#area-qtd input{
  width: 70px;
  color: #E40DB0;
  font-size: 12pt;
  border: 1px solid #E40DB0;
  text-align: center;
  border-radius: 5px;
  padding-block: px;
}
.quantidade-input:focus{
  outline: 1.5px solid #E40DB0;

}

#area-total-item{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  font-weight: bold;
  color: #73313B;
  margin-block: 5px;
}
.valor-total-item{
  margin: 0px;
}

.rodape {
  background-color: #73313B;
  padding-block: 8px;
  color: white;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

.contato-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-weight: bold;
}

.contato-item img {
  width: 24px;
  height: 24px;
}
a{
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
}

#btn-carrinho{
  position: fixed;
  bottom: 40px;
  right: 30px;
  z-index: 1000;
  height: 75px;
  width: 75px;
  border-radius: 50%;
  border: none;
  background-color: #E40DB0;
  filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.5));;
  cursor: pointer;
}

#btn-carrinho:hover{
  transform: scale(1.04);
}
#btn-carrinho:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

#notificacao-carrinho {
  position: absolute;
  top: -5px;
  right: 0px;
  background-color: rgb(255, 255, 255);
  color: #E40DB0;
  font-size: 14px;
  font-weight: bold;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}


@media (max-width: 800px) {

header {
  padding-top: 10px;
}

.logo {
  width: 70px;
}

.menu {
  margin-top: 0px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.menu button {
  width: 50%;
  font-size: 12pt;
  padding-block: 2px;
}
#btn-carrinho{
  right: 10px;
}
#area-qtd input{
  width: 50px;
}

.rodape {
  padding-top: 10px;
  display: flex;
  justify-content: center;
  position: relative;
  gap: 10px;
  bottom: 0;
  width: 100%;
  z-index: 10;
}

body {
  padding-bottom: 0px; /* espaço suficiente para não ocultar o conteúdo atrás do rodapé */
}

}
