.carrousel {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	position: relative;
	min-width: 100%;
	height: 44dvh;
	height: 500px;
	width: 100%;
	overflow: hidden;
	z-index: 0;
}

.carrousel .slide {
	min-width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	/* Ajustável */
	transition: transform 0.5s ease-in-out;
	overflow: hidden;
}

.carrousel img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 45%;
	transition: opacity 0.5s ease-in-out;
}

.carrousel .arrow {
	position: absolute;
	font-size: large;
	top: 50%;
	/* transform: translateY(-50%); */
	background-color: transparent;
	border-radius: 10000000;
	color: white;
	border: none;
	padding: 10px;
	cursor: pointer;
	z-index: 1;
	border-radius: 50%;

	padding: 20px;
	width: 0;
	height: 0;
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;

	transition: all 0.25s;

	&:hover {
		color: black;
		background-color: white;
	}
}

.carrousel .arrow.left {
	left: 10px;
}

.carrousel .arrow.right {
	right: 10px;
}

.carrousel .dots {
	height: 10px;
	width: auto;
	cursor: pointer;
	position: absolute;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	justify-content: center;
	gap: 5px;
	z-index: 12;
}

.carrousel .dots .dot {
	width: 10px;
	height: 10px;
	background-color: rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	cursor: pointer;
	transition: background-color 0.3s ease;
	z-index: 10;
}

.carrousel .dots .dot.active {
	background-color: var(--stone-50);
	z-index: 10;
}

.divider {
	width: 100%;
	height: 50px;
	background-color: var(--brand);
	margin: 0 auto;
}

.dark-theme .divider {
	background-color: var(--brand-dark);
}

@media screen and (max-width: 850px) {
	.carrousel {
		height: 80dvh;
	}
}
