main {
	margin: 0 auto;
	width: 100%;
	max-width: 1280px;
}

main p {
	font-size: 2.4rem;
	line-height: 1.5;
	margin: 10px;
	text-align: justify;
}

.about {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
}

.about .img {
	flex: 2;
}

.about .img {
	flex: 2;
}

.about .info {
	display: flex;
	flex-direction: column;
	flex: 3;
}

.about .info p {
	text-align: justify;
}

.about .info img {
	width: 128px;
}

.about .info .logo {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.about .info .logo div.title {
	display: flex;
	justify-content: center;
	align-items: center;
}

.about .info .logo div.subtitle {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px 20px;
	border-radius: 30px;
	border: 4px solid white;
	font-size: 1.2rem;
}

div.stats {
	background-color: red;
	padding: 10px;
	border-radius: 15px;
	background: linear-gradient(90deg, #024AAD, rgba(0, 0, 0, 0));
	flex: 2;
	z-index: -2;
}

div.stats > div {
	position: relative;
}

div.stats > div p {
	top: 15px;
	left: 25px;
	position: absolute;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.7);
}

div.stats h3 {
	color: #39D5FF;
	font-size: 8.0rem;
	text-shadow: 2px 2px 0px #9340FF;
}

div.content {
	flex: 2;
}

.pilares h3 {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 3.4rem;
	height: 100px;
	margin: 10px 0;
}

.pilares {
	height: 400px;
	overflow: hidden;
	text-align: center;
	justify-content: space-evenly;
}

.pilares div {
	width: 100%;
	max-width: 300px;
	padding: 20px 10px;
}

.pilares div img {
	width: 100%;
}

div.carousel {
	width: 100%;
	display: flex;
	align-items: center;
}

div.carousel .carousel-btn {
	margin: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	cursor: pointer;
	text-align: center;
	flex: 0 0 auto;
	font-size: 1.6rem;
	border: 3px solid white;
	border-radius: 100%;
	user-select: none;
}

div.carousel ul{
	display: flex;
	list-style: none;
	width: 100%;
	padding: 20px;
	gap: 100px;
	overflow-x: scroll;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
}

div.carousel ul li {
	display: block;
	scroll-snap-align: center;
	font-size: 0;
	list-style-type: none;
	padding: 20px;
	box-sizing: content-box;
	flex: 0 0 auto;
}

div.carousel ul li:nth-child(even) {
	background-color: teal;
}


div.carousel ul img {
	width: 100px;
	height: 100px;
	border-radius: 100%;
	object-fit: cover;
	object-position: center;
}
