@media (min-width: 1000px) {
			
	section{
		display: flex;
		flex-direction: column;
		justify-content: center; 
		box-sizing: border-box;
		scroll-margin-top: 90px;
		width: calc(100% - 350px);
	}

	.main-content {
		padding-right: 0px; 
		box-sizing: border-box;
		position: relative;
		margin-top: 0; 
	}

	.menu-fixed-content {
		position: -webkit-sticky;
		position: sticky;
		top: 68px;
		align-self: flex-start;
		float: right;
		width: 350px;
		background-color: #ffffff;
		box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
		z-index: 999;
		margin-top: 0;
		height: calc(100vh - 68px);
	}
	
	.footer-strip {
		width: calc(100% - 350px);
	}
	
	.btn-aside{
		display:none;
	}
}

@media (max-width: 1000px) {

	.main-content {
		padding-right: 0;
	}
	
	section{
		min-height: auto;
		padding: 40px 20px;
	}
	
	.btn-aside{
		display: inline;
		position: fixed;
		width: 40px;
		height: 40px;
		z-index: 1000;
		bottom: 20px;
		right: 30px;
		background: rgb(93 221 181);
		border-radius: 50%;
		display: flex;
		justify-content: center;
		align-items: center;
		color: white;
		box-shadow: 0 4px 16px rgba(0, 122, 85, 0.4);
		background: var(--green);
		border: none;
	}
	
	.btn-aside> i{
		
	}
	
	.menu-fixed-content {
		position: fixed;
		top: 0;
		right: 0;
		width: 300px;
		height: 100vh;
		background-color: #fff;
		box-shadow: -2px 0 15px rgba(0,0,0,0.15);
		transform: translateX(100%); 
		transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1); 
		z-index: 1001;
	}

	.menu-fixed-content.active {
		transform: translateX(0);
	}
	
	section.opacity-5{
		opacity: 0.5;
	}
}