@import url("https://fonts.googleapis.com/css2?family=Bitcount+Prop+Single:wght@100..900&display=swap");
* {
  font-family: "Bitcount Prop Single", system-ui;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --dark-color: #000;
}
body {
  margin: 100px 0;
  background-color: var(--dark-color);
  color: white;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
span {
  font-size: 18px !important;
}
/* Canvas de fundo */
#canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  opacity: 0;
  transition: opacity 1s ease;
}

#canvas.active {
  opacity: 1;
}
.container-image {
  margin-bottom: 20px;
}
.container-image img {
  height: 50vh;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.container-love {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 30px;
  border-radius: 10px;
  margin: 0 15px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Barra de Progresso */
.progress-container {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  margin: 20px 0;
  padding: 3px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.progress-bar {
  width: 0%;
  height: 30px;
  background: linear-gradient(45deg, #ff4081, #ff6ec7);
  border-radius: 25px;
  transition: width 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 2px 8px rgba(255, 64, 129, 0.3);
}

.progress-text {
  color: white;
  font-weight: bold;
  font-size: 14px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.wrap-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
.wrap-btn button {
  margin: 10px;
}

.button-56 {
  align-items: center;
  background-color: #ffffff;
  border: none;
  border-radius: 8px;
  box-sizing: border-box;
  color: #111;
  cursor: pointer;
  display: flex;
  height: 48px;
  justify-content: center;
  line-height: 24px;
  max-width: 100%;
  padding: 0 25px;
  position: relative;
  text-align: center;
}
.button-56:hover {
  background: #cc0000;
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(158, 0, 0, 0.4);
  cursor: pointer;
}
@media (min-width: 768px) {
  .button-56 {
    padding: 0 40px;
  }
}
