/* Carrossel Automático - Seção Sobre */

.about-carousel {
	position: relative;
	width: 100%;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.about-carousel-track {
	position: relative;
	width: 100%;
	height: 100%;
}

.about-carousel-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 1s ease-in-out;
}

.about-carousel-img.active {
	opacity: 1;
}

.about-carousel-img:first-child {
	position: relative;
}

/* Responsive */
@media (max-width: 991px) {
	.about-carousel {
		margin-top: 30px;
		max-height: 400px;
	}
}

@media (max-width: 768px) {
	.about-carousel {
		max-height: 300px;
	}
}
