* {
  margin: 0;padding: 0;border: none;box-sizing: border-box;font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji,
    Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}
body {
  background-image: url(/assets/bg.png);background-position: center;background-size: cover;background-attachment: fixed;
}
img {
  user-drag: none;user-select: none;pointer-events: none;-webkit-user-drag: none;-moz-user-select: none;-ms-user-select: none;
}
.verde {
  position: absolute;top: 61px;width: 180px;z-index: 50;
}
.azul {
  position: absolute;top: 40px;right: 0;height: 200px;z-index: 50;
}
.roxa {
  position: absolute;top: 50%;height: 150px;z-index: 50;
}
.amarela {
  position: absolute;top: 60%;right: 0;height: 300px;z-index: 50;
}
.rosa {
  display: none;position: fixed;top: 20%;height: 120px;z-index: 50;
}
@media screen and (max-width: 1024px) {
  .verde {
    width: 150px;
  }
}
@media screen and (max-width: 768px) {
  .verde {
    display: none;
  }
  .azul {
    display: none;
  }
  .roxa {
    position: fixed;top: 80%;height: 100px;
  }
  .amarela {
    position: fixed;top: 30%;height: 200px;
  }
  .rosa {
    display: block;
  }
}
.folha {
  pointer-events: none;
}

/* Recommendations */

.recommendation-container {
  width: 90%;
  max-width: 1000px;
  margin: auto;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .recommendation-container {
      margin-top: 40px;
      margin-bottom: 40px;
  }
}
.title {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .title {
      font-size: 40px;
  }
}
.box {
  background-color: #810005;
  backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 24px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  justify-items: center;
  align-items: center;
}
@media (min-width: 640px) {
  .grid {
      grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 768px) {
  .grid {
      grid-template-columns: repeat(5, 1fr);
      gap: 24px;
  }
}
.platform {
  position: relative;
}
.platform a {
  display: block;
  width: 70px;
  transition: transform 0.3s;
}
@media (min-width: 768px) {
  .platform a {
      width: 80px;
  }
}
.platform a:hover {
  transform: scale(1.1);
}
.image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 13px;
}
.image-wrapper img {
  width: 100%;
  display: block;
}
.badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: #FACC15;
  color: rgb(19, 19, 19);
  font-size: 12px;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 20px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% {
      transform: scale(1);
  }
  50% {
      transform: scale(1.1);
  }
}