@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

.irm-container-7ad35269 {
	position: relative;
	width: 100%;
	min-height: 100vh;
	overflow: hidden;
	display: flex;
	align-items: center;
	background-color: #000;
	font-family: 'Roboto', sans-serif;
}

.irm-bg-layers-7ad35269 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.irm-bg-layer-7ad35269 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transition: opacity 0.6s ease-in-out;
}

.irm-bg-layer-7ad35269.active {
	opacity: 1;
}

.irm-bg-overlay-7ad35269 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		rgba(0, 0, 0, 0.8) 0%,
		rgba(0, 0, 0, 0.4) 50%,
		rgba(0, 0, 0, 0) 100%
	);
	z-index: 2;
}

.irm-content-wrapper-7ad35269 {
	position: relative;
	z-index: 10;
	width: 50%;
	padding-left: 5vw;
}

.irm-menu-list-7ad35269 {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.irm-menu-item-7ad35269 {
	font-family: 'Roboto', sans-serif;
	font-size: 3rem;
	font-weight: 700;
	color: #ffffff;
	cursor: pointer;
	position: relative;
	display: inline-block;
	width: fit-content;
	line-height: 1.2;
	transition: color 0.3s ease;
}

/* Linha inferior */
.irm-menu-item-7ad35269::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 3px;
	background-color: #DF453E;
	transition: width 0.3s ease;
}

/* Item ativo */
.irm-menu-item-7ad35269.active {
	color: #DF453E;
}

.irm-menu-item-7ad35269.active::after {
	width: 100%;
}

/* Hover */
.irm-menu-item-7ad35269:hover {
	color: #DF453E;
}

.irm-menu-item-7ad35269:hover::after {
	width: 100%;
}

@media (max-width: 768px) {
	.irm-content-wrapper-7ad35269 {
		width: 100%;
		padding: 20px;
	}

	.irm-menu-item-7ad35269 {
		font-size: 2rem;
	}
}