
		body {
            background-color: rgb(255, 255, 255);
            font-family: 'Open Sans', sans-serif;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

		/* ====== Seção 1 ====== */

		.section1 {
			width: 100%;
			display: flex;
			flex-direction: column;
			align-items: center;
		}

		.logo {
			margin-top: 0;
			margin-bottom: 30px;
			display: flex;
			justify-content: center;
		}

		.bandai-logo {
			height: 200px;
			max-width: 90%;
		}

		.info1 {
			width: 80%;
			max-width: 1000px;
			background-color: #f2f2f2;
			border-radius: 10px;
			padding: 20px 40px;
		}

		.info1 .name {
			font-weight: bold;
			font-size: 22px;
			color: #1d8a5e;
			text-align: center;
			margin-bottom: 40px;
		}

		/* ====== Seção 2 ====== */

		.section2 {
			width: 100%;
			margin-top: 80px;
		}

		.info2 {
			width: 80%;
			max-width: 1500px;
			margin: auto;
			padding: 10px 20px;
		}

		.img-fl {
			float: right;
			width: 100%;
			max-width: 700px;
			margin: 0 0 15px 20px;
			border-radius: 6px;
		}

		.text-info2 {
			font-size: 18px;
			color: #000;
			text-align: justify;
		}

		.info2 h3 {
			color: #1d8a5e;
			font-size: 28px;
			font-weight: bold;
			margin-bottom: 30px;
		}

		/* ====== Seção 3 ====== */

		.section3 {
			margin: 50px 0 20px 0;
			display: flex;
			justify-content: center;
		}

		.info3 {
			display: grid;
			grid-template-columns: repeat(3, 1fr);
			gap: 60px;
			max-width: 1100px;
			padding: 20px;
		}

		.info3 a {
			text-decoration: none;
			color: black;
			text-align: center;
			font-weight: bold;
		}

		.info3 img {
			width: 200px;
			max-width: 100%;
			border-radius: 6px;
		}

		/* ====== RESPONSIVIDADE ====== */

		@media (max-width: 900px) {
			.info2 {
				grid-template-columns: 1fr 1fr;
			}

			.info3 {
				grid-template-columns: repeat(2, 1fr);
			}
		}

		@media (max-width: 600px) {

			.logo {
				margin-top: 200px;
				margin-bottom: 20px;
			}

			.bandai-logo {
				height: 120px;
			}

			.info1 {
				width: 95%;
				padding: 20px;
				box-shadow: 0 0 10px rgba(0,0,0,0.15);
			}
			
			.section2 {
				margin-top: 30px;
			}	

			.info2 {
				display: block;
				width: 100%;				
			}

			.img-fl {
				float: none;
				max-width: 300px;
				display: block;
				width: 100%;
				margin: 0 auto 15px auto;
				padding-bottom: 10px;
			}
			
			.info2 h3 {
				text-align: center;
				font-size: 25px;
			}

			.text-info2 {
				font-size: 14px;
				text-align: justify;
			}

			.info3 {
				grid-template-columns: repeat(2, 1fr);
				gap: 15px;
			}
		}	
