* {
  text-decoration: none;
}

html,
body {
  background-color: #333;
  font-family: "Montserrat", sans-serif;
}

.logo {
  width: 150px;
  height: 150px;
}

.logo img {
  width: 100%;
  height: 100%;
}

.container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 30px;
}

.areaLista {
  width: 95%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.areaLista a {
  display: flex;
  flex-direction: row;
  padding: 15px;
  font-size: 16px;
  font-weight: bold;
  justify-content: space-between;
}

.box {
  padding: 10px;
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

a {
  color: #333;
  font-size: 18px;
  font-weight: bold;
}

.novo-selo {
  position: absolute;
  top: -5px;
  left: -5px;
  background-color: #ff0000;
  color: #fff;
  padding: 2px 8px;
  font-size: 12px;
  font-weight: bold;
  border-radius: 5px;
  transform: rotate(0deg);
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 99;
  animation: growShrink 1.2s ease-in-out infinite;
}

.box {
  padding: 10px;
  background-color: #fff;
  border-radius: 10px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  position: relative; /* Necessário para o selo absoluto */
}

@keyframes growShrink {
  0% {
    transform: scale(0.9);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.9);
  }
}

.banner {
  margin-top: 0px;
  margin-bottom: 25px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;

  animation: growShrink 1.5s ease-in-out infinite;

  && a {
    position: relative !important;
    display: inline-block;
  }
}

.banner a {
  padding: 0px;
}

.banner img {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  object-fit: cover;
  position: relative;
}

.overlay {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  color: white;
  font-size: 28px;
  font-weight: bold;
  text-align: left;
  padding: 30px;
  box-sizing: border-box;
}

@media screen and (min-width: 1024px) {
  .areaLista {
    width: 600px;
  }
}
