@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

.bonus-slider {
  position: relative;
  max-width: 100%;
  margin-bottom: 30px;
  overflow: hidden;
  background-color: #fdfdfd;
  border-radius: 15px; /* Bordas arredondadas */
}

.slides {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 100%;
  box-sizing: border-box;
  text-align: center;
  padding: 20px;
  background-color: none;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.bonus-offer{
    font-family: "Inter", sans-serif;
    font-weight: bold;
    font-size: 30px;
    color: #0eee43;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
    padding-top: 10px;
    padding-bottom: 25px;
}

.slide h3{
    font-family: "Inter", sans-serif;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
    font-weight: medium;
    font-size: 13px;
}

.slide p{
    font-family: "Inter", sans-serif;
    font-weight: medium;
    font-size: 17px;

    color: black;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}

.slide span{
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}

.slide img{
  width: 326px;
  height: 183px;
}

.bonus-icon {
  width: 80px; /* Tamanho da imagem */
  height: 80px;
  margin-bottom: 10px;
  border-radius: 50%;
  transition: transform 0.3s ease; /* Efeito de zoom */
}


.bonus-title {
font-family: "Inter", sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.bonus-description {
  font-size: 12px;
  color: #666;
}

/* Setas de Navegação */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.2);
  color: white;
  border: none;
  padding: 0px;
  cursor: pointer;
  font-size: 24px;
  border-radius: 10%;

  width: 50px;
  height: 50px;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}