/* Overlay que cubre toda la pantalla */
.construction-overlay{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1000;
  }
  .construction-overlay2 {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1001;
  }
  
  /* Contenido del popup */
  .construction-popup {
	background: #ffffff;
	border-radius: 10px;
	padding: 20px;
	width: 90%;
	max-width: 500px;
	max-height: 90vh;          /* Limita altura máxima al 90% del viewport */
	overflow-y: auto;          /* Habilita scroll vertical cuando sea necesario */
	box-sizing: border-box;    /* Incluye padding en el cálculo de dimensiones */  
	text-align: center;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }
  
  /* Título del popup */
  .construction-title {
	font-size: 24px;
	font-weight: bold;
	color: #333333;
	margin-bottom: 15px;
  }
  
  /* Mensaje del popup */
  .construction-message {
	font-size: 16px;
	color: #555555;
	margin-bottom: 20px;
  }
  
  /* Botón para cerrar el popup */
  .construction-close-btn{
	padding: 10px 20px;
	font-size: 16px;
	background-color: #3498db;
	color: #ffffff;
	border: none;
	border-radius: 5px;
	cursor: pointer;
  }
  .construction-close-btn2{
	padding: 10px 20px;
	font-size: 16px;
	background-color: #3498db;
	color: #ffffff;
	border: none;
	border-radius: 5px;
	cursor: pointer;
  }
  
  .construction-close-btn:hover{
	background-color: #2980b9;
  }
  .construction-close-btn2:hover{
	background-color: #2980b9;
  }
  .construction-image {
    width: 125px;
    height: 125px;
}

/* Contenedor del video vertical */
.video-container-portrait {
	width: 60%;
	max-width: 300px;
	height: auto;
	margin: 15px auto;
	border-radius: 8px;
	overflow: hidden;
	aspect-ratio: 9/16; /* Mantiene relación vertical */
  }
  
  /* Estilos del video */
  .portrait-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
  }