   /* 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;
  padding: 30px;
  margin-top: 100px;
  width: 100%;
  height: 100%;
  background-color: #F8E9E1;
}

/* Título */
.title {
  font-size: 24px;
  font-weight: bold;
  color: #000;
  margin: 5px 0;
}

#sorvetertiaTitle {
  width: 240px;
}

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

.button .icon {
  width: 20px;
  height: 20px;
  margin-left: 8px;
  margin-right: 10px;
}

/* Botões específicos */
.pedir {
  background-color: #f16aad;
  border: 2px solid #000;
}

.whatsapp {
  background-color: #25D366;
  border: 2px solid #0a5;
  color: #fff;
}

.instagram {
  background-color: #9c007e;
  border: 2px solid #470040;
  color: #fff;
}

.instagram .icon,
.whatsapp .icon {
  filter: brightness(0) invert(1);
}

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

  #sorvetertiaTitle {
    width: 260px;
  }

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

  .button .icon {
    width: 24px;
    height: 24px;
  }
}    
