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

body {
  font-family: Arial, sans-serif;
  background-color: #F8E9E1;
  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: #F8E9E1;
}

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

/* .icone-carrinho {
  position: relative;
  display: inline-block;
} */

.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 */
.açai {
  background-color: #9c007e;
  border: 2px solid #470040;
  color: #fff;
}

.pronto {
  background-color: #F069AE;
  border: 2px solid #470040;
  color: #fff;
}

.milkshake {
  background-color: #D99793;
  border: 2px solid rgb(170, 139, 0);
  color: #fff;
}

/* 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;
  }
}
