.patrocinador {
  width: 100%;
  height: 50px;
  background-color: #cddc3994;
  position: fixed;
  bottom: 0;
  text-align: center;
  left: 0;
  line-height: 50px;
  box-shadow: inset #000000b5 0px 0px 12px, 0px 0px 8px #000000b5;

  background-image: repeating-linear-gradient(-45deg, transparent, transparent 5px, #00000007 5px, #00000007 10px) !important;
  z-index: 20000;
  backdrop-filter: blur(3px);

}

.native-ad {
  position: fixed;
  bottom: 0;
  /* ou top: 0; */
  width: 100%;
  height: 50px;
  background: transparent;
  border-top: 0px solid #f1c40f;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.native-ad .content {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #444;
  font-size: 14px;

}

.native-ad .icon {
  font-size: 20px;
  width: 50px;
  height: 40px;
  border-radius: 10px;
  background-color: #dc3545;
  display: block;


}

 .cta {
  background: linear-gradient(145deg, #dc3545 0%, #ffc400 100%) !important;
  color: #ffffff;
  border: none;
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 9.5px;
  font-weight: bold;
  text-transform: uppercase;
  box-shadow: inset #00000080 0px 0px 8px, 0px 0px 8px #0000004f;
  text-shadow: #000 0px 0px 5px;
  cursor: pointer;
  outline: 3px solid #00000020;
  transition: transform 0.1s ease-in-out;
  animation: pularSutil 4s ease-in-out infinite;
}

 .cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg,
      #ffffff00 0%,
      #ffffff56 50%,
      #ffffff00 100%);
  transform: skewX(-20deg);
  animation: brilhoReluzente 5s ease-in-out infinite;
  mix-blend-mode: screen;
  filter: blur(5px) brightness(2.2);
  pointer-events: none;


}

.patrocinador::before{
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 70%;
  height: 100%;
  background: linear-gradient(120deg,
      #ffffff00 0%,
      #ffffff 50%,
      #ffffff00 100%);
  transform: skewX(-20deg);
  animation: brilhoReluzente 8s ease-in-out infinite;
  mix-blend-mode: screen;
  filter: blur(5px) brightness(2.2);
  pointer-events: none;


}


.native-ad .text {
  height: 50px;
  line-height: 12px;
  text-align: left;
  color: #0a3651;
  border: none;
  border-radius: 4px;
  padding: 10px;
  font-size: var(--fonte-padrao);
  cursor: pointer;
}

.ad {
  position: absolute;
  height: 15px;
  width: 15px;
  bottom: 0px;
  right: 0px;
  background: linear-gradient(145deg, #ffffffee, #ddddddcc);
  color: #000000b8;
  font-size: 9px;
  line-height: 12px !important;
  padding: 1px;
  border-radius: 5px 0 0 0;
  font-weight: bold;
  box-shadow: 0 1px 3px #00000040;
  text-transform: uppercase;
  z-index: 1;
  backdrop-filter: blur(3px);
}

@keyframes brilhar {

  0%,
  100% {
    box-shadow: 0 0 0px rgba(255, 255, 255, 0);
  }

  50% {
    box-shadow: 0 0 10px 3px rgba(255, 255, 255, 0.5);
  }
}




.anuncioConteudo {
  width: 98%;
  margin: 1%;
  height: 110px;
  background-color: #f6e2a4c9;
  position: static !important;
  bottom: 0;
  text-align: center;
  left: 0;
  border-radius: 10px;
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 5px, #00000007 5px, #00000007 10px) !important;
  z-index: 2000;
  backdrop-filter: blur(3px);
  float: left;
  margin-top: 5px;
  border: 1px solid #ffffff90 !important;

}



.anuncioConteudo .native-ad {
  height: 110px;

}

.anuncioConteudo .ad {
  width: 30px;
  border-radius: 0px 8px 0px 8px;
  left: 0px;

}


.anuncioConteudo .titulo ,
.anuncioConteudo .text{
  width:calc(100% - 120px);
 float: left !important;
 text-align: left !important;
   padding-top: 10px;
   color: #fff;
   font-size: 11px;

}
.anuncioConteudo .titulo {
 
   font-weight: bold;
   color: #333;

}

.anuncioConteudo .text{
height: 75px;
}

.anuncioConteudo .cta{
  margin-right: 3px;
  float: right;
    background: linear-gradient(145deg, #f0f0f0 0%, #d1d1d1 100%) !important;
    color: #4a4543 !important;
    border-radius: 8px;
     animation: none !important;
     margin-top: 4px;

}



.anuncioConteudo .icon {
  width: 110px;
  height: 108px;
  margin: 10px;
  margin-top: 0px;
  margin-left: 0px;
  border-radius: 10px 0px 0px 10px;
  background-color: #ffffff71;
  display: block;
  float: left;
  box-shadow: 0px 15px 20px 0px #00000073;
}


/* Animação de pulo */
@keyframes pular {

  0%,
  100% {
    transform: translateY(0);
  }

  30% {
    transform: translateY(-6px);
  }

  60% {
    transform: translateY(0);
  }
}

@keyframes pularSutil {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

@keyframes brilhoReluzente {
  0% {
    left: -40%;
    opacity: 0;
  }

  20% {
    left: 100%;
    opacity: 1;
  }

  25% {
    left: 100%;
    opacity: 1;
  }

  100% {
    left: 100%;
    opacity: 0;
  }
}