@charset "utf-8";
/* CSS Document */

	/* CONTENEDOR MENU TARJETAS NO UTILIZADO */
			.img {
			  display: flex;
			  justify-content: center;
			  align-items: center;
			  background-color:#CCC;
			  margin: 15px;
			  max-width: 100%; /* La imagen nunca será más ancha que su contenedor */
			  height: 300px; /* ajusta la altura */
			  border-radius: 10px;
			  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2); /* Sombra */
			  overflow: hidden;
			 }
			
			/* Media query para pantallas pequeñas (por ejemplo, móviles) */
			@media (max-width: 768px) {
			.img {
				width: 100%; /* Ajusta el ancho según tus necesidades */
				
			  }
			}
			
			/* Estilo para cuando el cursor está sobre el div */
		  .img:hover {
			opacity: 0.9;
			transform: scale(0.95); /* Aumento de tamaño sutil */
			box-shadow: 0px 0px 0px rgba(0, 0, 0, 0); /* Sombra */
		   }
			
			/* CONTENEDOR TARJETA INDIVIDUAL */
			.img-big {
			  display: flex;
			  justify-content: center;
			  align-items: center;
			  margin: 0px;
			  width: 100%;
			  max-width: 100%; /* La imagen nunca será más ancha que su contenedor */
			  height: auto; /* ajusta la altura */
			  border-radius: 10px;
			  overflow: hidden;
			}
			
			/* Media query para pantallas pequeñas (por ejemplo, móviles) */
			@media (max-width: 768px) {
			  .img-big {
				  width:100%; /* Ajusta el ancho según tus necesidades */
			  }
			}
			
	.iframe-container {
	  display: flex;
	  flex-direction: column;
	  width:100%;
	  height: 100vh;
	}
	
	#inlineFrameExample {
	  flex: 1;
	  border-radius: 10px;
	}
	
	@media (max-width: 768px) {
	  .iframe-container {
		height: 250px; /* Altura del contenido para dispositivos moviles */
		border-radius: 10px;
	  }
	}

	#canvas-wrapper_01, canvas-wrapper_02, canvas-wrapper_03  {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%; /* Ajusta el ancho según tus necesidades */
		max-width: 100%; /* Establece un ancho máximo para pantallas grandes */
		border: 10px;
		overflow: hidden;
		border-radius: 10px;
	}
	
	
	