/* Reset e fonte base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background-color: #96001D;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* Container */
.container {
  text-align: center;
  margin-top: 100px;
  padding: 30px;
  width: 100%;
  height: 100%;
  background-color: #96001D;
}

/* home */
#home{
  float: left;
  width: 30px;
  filter: brightness(0) saturate(100%)
        invert(86%)
        sepia(18%)
        saturate(530%)
        hue-rotate(355deg)
        brightness(97%)
        contrast(88%);
  margin-bottom: 10px;
}

.icone-carrinho {
  /* position: relative;
  display: inline-block; */
  filter: brightness(0) saturate(100%)
        invert(86%)
        sepia(18%)
        saturate(530%)
        hue-rotate(355deg)
        brightness(97%)
        contrast(88%);
}

.carrinho-img {
  width: 30px;
  cursor: pointer;
}

.badge {
  margin-right: -1vh;
  z-index: 4;
  float: right;
  background: red;
  color: white;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 50%;
  display: none; /* escondido até ter algo */
}

/* Carrinho */
#carrinho {
  float: right;
  width: 30px;
  filter: brightness(0) saturate(100%) invert(0);
  margin-bottom: 10px;
}

/* Título */
.title {
  font-size: 24px;
  font-weight: bold;
  color: #000;
  margin: 5px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

#sorvetertiaTitle {
  width: 240px;
  margin-top: 40px;
}

/* Botões */
.button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px auto;
  padding: 12px 16px;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  color: #000;
  width: 90%;
  max-width: 250px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Botões específicos */

.bebidas {
  background-color: #EC9C4D;
  border: 2px solid rgb(170, 139, 0);
  color: black;
}

.pizzas {
  background-color: #EC9C4D;
  border: 2px solid rgb(170, 139, 0);
  color: black;
}

/* Responsividade: aplicar zoom em celulares */
@media (max-width: 480px) {
  .container {
    transform: scale(1.2);
    transform-origin: center;
  }

  #sorvetertiaTitle {
    width: 260px;
  }

  .button {
    font-size: 1.1rem;
    padding: 14px 20px;
  }

  #carrinho {
    width: 34px;
  }
}
