/* Start custom CSS for html, class: .elementor-element-aa2f4bf */.popup-overlay {
display: none;
position: fixed;
top: 0; left: 0;
width: 100%; height: 100%;
background: rgba(0, 0, 0, 0.8);
z-index: 9999;
justify-content: center;
align-items: center;
}

.popup-content {
background: transparent;
padding: 0;
border-radius: 0;
max-width: 90vh;
width: 100%;
height: 112%;
position: relative;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}

.popup-video {
width: 100%;
height: auto;
max-height: 90vh;
object-fit: contain;
border-radius: 8px;
}

/* Solo para pantallas mayores a 768px (escritorio) */
@media (min-width: 768px) {
.popup-video {
max-width: 400px;
margin-top: 40px;
}

.popup-close {
  position: fixed;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  z-index: 10001;
  background: transparent;
  border: none;
}

.popup-button-container {
position: absolute;
bottom: 40px;
z-index: 10001;
}

.popup-button {
background-color: #ff0055;
color: white;
padding: 1rem 2rem;
font-size: 1.2rem;
text-decoration: none;
border-radius: 5px;
transition: background 0.3s ease;
}

.popup-button:hover {
background-color: #cc0044;
}/* End custom CSS */