            .containerTitulo {
			  display: grid;
			  grid-template-columns: repeat(4, 1fr);
			  grid-template-rows: repeat(1, 1fr);
			  gap: 10px;
			  width: 500px;
			  height: 100px;
			  background-color: #0076BD;
			  border-radius: 12px;
			  padding: 10px;
			  box-sizing: border-box;

			}
			.container1 {
			  display: grid;
			  grid-template-columns: repeat(4, 1fr);
			  grid-template-rows: repeat(3, 1fr);
			  width: 500px;
			  height: 100px;
			  background-color: #f0f0f0;
			  border-radius: 12px;
			  padding: 0px;
			  box-sizing: border-box;
			}

			
			.celulaTitulo {
				background-color: #0076BD;
				border-radius: 8px;
				display: flex;
				align-items: center;
				justify-content: center;
                text-align: center;
				font-weight: bold;
				font-size: 16px;
				color: white;
				font-weight: bold;
			}
			.celula {
			  background-color: #f0f0f0;
			  border-radius: 8px;
			  display: flex;
			  align-items: center;
			  justify-content: center;
			  font-weight: bold;
			  font-size: 16px;
			  color: #333;
			}