.titulo-balance {
  display: inline-block;
  padding: 20px 40px;
  background: #000;
  color: rgb(81, 71, 95);
  border-radius: 55px;
  font-size: 35px;
  text-align: center;
  margin-left: 300px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  animation: flutuar 4s ease-in-out infinite;
}

@keyframes flutuar {
  0% {
    transform: translateY(0px) scale(1);
  }
  25% {
    transform: translateY(-10px) scale(1.03);
  }
  50% {
    transform: translateY(0px) scale(1);
  }
  75% {
    transform: translateY(10px) scale(0.97);
  }
  100% {
    transform: translateY(0px) scale(1);
  }
}

body {
  margin: 0;
  background-image: url('Fundo.png');
  background-repeat: repeat;
  background-size: 400px;
  font-family: sans-serif;
}

.botoes {
  display: flex;
  gap: 13px;              /* espaço entre eles */
  justify-content: center; /* centraliza */
  margin-bottom: 20px;
}

.botao {
  text-decoration: none;
  padding: 10px 20px;
  background: linear-gradient(145deg, #ff9ff3, #c56cf0);
  color: #1a001f;
  font-weight: bold;
  border-radius: 999px; /* deixa bem redondo (pílula) */
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  transition: all 0.3s ease;
}

/* efeito ao passar o mouse */
.botao:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(255, 105, 180, 0.6);
  background: linear-gradient(145deg, #f368e0, #ff9ff3);
}

.container {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;

  text-shadow: #722781 4px 6px 6px; /* sombra de texto para melhor legibilidade */
  background-color: rgba(0, 0, 0, 0.4); /* mais transparente */
  backdrop-filter: blur(8px); /* efeito vidro fosco (opcional, mas lindo) */

  border-radius: 12px;
}

/* Caixas menores */
.box {
  background-color: rgba(204, 0, 255, 0.1);
  margin-bottom: 20px;
  padding: 15px;
  border-radius: 10px;
  color: white;
}

.Box_img {
  width: 300px;
  scrollbar-shadow-color: #f368e0 0px 4px 15px;
  box-shadow: #f368e0 0px 4px 15px;
  border-radius: 15px;
}

.Box_img2 {
  margin-left: 45px;
  width: 300px;
  scrollbar-shadow-color: #f368e0 0px 4px 15px;
  box-shadow: #f368e0 0px 4px 15px;
  border-radius: 15px;
}

.Titulo-foda {
  text-align: left;
  margin-left: 65px;
  font-size: 38px;
  color: #ff6b81;
  text-shadow: 2px 3px 4px rgba(255, 107, 129, 0.7);
}