.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none; /* Ocultar inicialmente */
  z-index: 1000; /* Asegurar que esté por encima de otros elementos */
}

.popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /*background-color: white;
  padding: 5px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);*/
}

.close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
    font-size: 50px;
}

img.campania-ren{
    width: 700px;
}


@media (max-width:600px){
    img.campania-ren{
        width: 500px;
    }  
}


@media (max-width:500px){
    img.campania-ren{
        width: 350px;
    }  
}