
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  min-height: 100vh;
  background: linear-gradient(
    180deg,
    #000 0%,
    #1a0000 35%,
    #c62828 100%
  );
  color: #fff;
  padding: 25px;
}

/* TOPO */
.topo {
  text-align: center;
  margin-bottom: 25px;
}

.topo h1 {
  font-size: 2.2rem;
}

/* LISTA */
.lista {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ITENS */
.item {
  background: rgba(0,0,0,0.55);
  padding: 18px;
  border-radius: 18px;
  font-size: 1.1rem;
  cursor: pointer;
  border: 2px solid #fff;
  transition: 0.3s;
}

.item:hover {
  background: rgba(0,0,0,0.8);
}



/* TAMANHOS */
.tamanhos {
  margin: 20px 0;
}

.opcoes {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.tam {
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: 2px solid #fff;
  padding: 14px 18px;
  border-radius: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.tam span {
  display: block;
  font-size: 0.9rem;
  margin-top: 4px;
  opacity: 0.9;
}



/* BEBIDAS */
.bebidas {
  margin-top: 30px;
}

.bebidas h2 {
  text-align: center;
  margin-bottom: 10px;
}

.bebida-item {
  background: rgba(0,0,0,0.6);
  border: 2px solid #fff;
  padding: 14px;
  border-radius: 12px;
  margin-bottom: 10px;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
}

.bebida-item span {
  display: block;
  margin-top: 5px;
  font-weight: bold;
}



/* BOTÃO VOLTAR */
.voltar {
  display: block;
  margin: 35px 0 100px;
  text-align: center;
  text-decoration: none;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 16px;
  border-radius: 18px;
  font-weight: 600;
  border: 2px solid #fff;
}




.item.selecionado {
  background: linear-gradient(135deg, #00c853, #009624);
  color: #fff;
  border-color: #00ff88;
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.6);
  font-weight: 600;
}

.tam.selecionado {
  background: linear-gradient(135deg, #00c853, #009624);
  color: #fff;
  border-color: #00ff88;
  box-shadow: 0 0 12px rgba(0, 255, 136, 0.6);
}

.bebida-item.selecionado {
  background: linear-gradient(135deg, #00c853, #009624);
  color: #fff;
  border-color: #00ff88;
  box-shadow: 0 0 12px rgba(0, 255, 136, 0.6);
  font-weight: 600;
}

.quantidade {
  margin: 25px 0;
  text-align: center;
}

.quantidade h2 {
  margin-bottom: 10px;
}

.qtd-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

.qtd-box button {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 1.5rem;
  border: none;
  background: #000;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.qtd-box button:hover {
  background: #00ff88;
  color: #000;
}

#qtd {
  font-size: 1.4rem;
  font-weight: bold;
  min-width: 30px;
  text-align: center;
}

.selecine1{
  font-size: small;
}

.cart-top {
  position: fixed;
  bottom: 15px;
  right: 15px;

  background: #111;
  color: #fff;
  text-decoration: none;

  padding: 12px 16px;
  border-radius: 50px;

  font-size: 18px;
  font-weight: bold;

  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 999;
}

.cart-top:hover {
  background: #333;
}

@media (max-width: 600px) {
  .cart-top {
    font-size: 16px;       /* menor que no desktop */
    padding: 10px 14px;    /* deixa proporcional ao botão "Ver Carrinho" */
  }

  .ver-carrinho {
    font-size: 16px;
    padding: 10px 14px;
  }
}


.ver-carrinho {
  position: fixed;
  bottom: 15px;
  left: 15px;
  background: #ff2222; /* cor diferente para diferenciar do WhatsApp */
  color: #fff;
  padding: 12px 16px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 999;
  transition: 0.3s;
}

.ver-carrinho:hover {
  background: #ff4343;
  transform: scale(1.05);
}

/* BOTÃO VER CARRINHO RESPONSIVO */
@media (max-width: 600px) {
  .ver-carrinho {
    font-size: 16px;       /* menor que no desktop */
    padding: 10px 14px;    /* deixa proporcional ao WhatsApp */
  }
}
