.banner_slo_gratis_0 {background-color: var(--color_1_050); position: fixed; top: 0; bottom: 0; left: 0; right: 0; color: var(--white_100); cursor: pointer; display: none;}
.banner_slo_gratis_1 {margin: 150px auto; max-width: 500px; text-align: center; font-weight: 2; font-size: 38px; background-color: var(--color_1_100); padding: 50px; border: 10px dashed var(--yellow_100); cursor: pointer;}
  .banner_slo_gratis_1 span {font-size: 72px;}

.banner_wa_0 {position: fixed; bottom: 20px; right: 20px; height: 65px; width: 65px; background: transparent url('/img/whatsapp.png') 50% 50% no-repeat; background-size: cover; cursor: pointer;}

.popup-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 20px;
  box-sizing: border-box;
}

.popup-content {
  position: relative;
  width: auto;
  height: auto;
  max-width: 90vw;
  max-height: 90vh;
  aspect-ratio: 5 / 7;
}

.popup-content img {
  aspect-ratio: 5 / 7;
  width: 100%;
  height: 100%;
  /*object-fit: contain;*/
  object-fit: cover;
  max-width: 90vw;
  max-height: 90vh;
  border: 5px solid white;
  border-radius: 10px;
  background: #000;
}

.close-btn {
  position: absolute;
  top: -15px;
  right: -15px;
  background: red;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 18px;
  text-align: center;
  line-height: 30px;
  cursor: pointer;
  font-weight: bold;
  z-index: 1;
}

button {
  float: right;
  font-weight: bold;
  font-size: 16px;
  padding: 6px 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 10px;
}

button:hover {
  background-color: #FFC107;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

button:active {
  transform: translateY(1px);
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}