
.nav-responsive {
	display: none !important;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.9);
	/* Fondo semitransparente */
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	
}

.nav-responsive  ul {
	list-style-type: none;
    padding: 0;
}

.nav-responsive  ul li {
	margin: 20px 15px;
}


.nav-responsive.show {
	display: flex !important;
	transition: right 0.5s ease;
}
.nav-responsive ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.5em;
    transition: color 0.3s ease;
	padding-left: 50px;
}

.nav-responsive ul li a:hover {
    color: navy;
}

.toggle-btn {
	display: none;
	color: #fff;
	font-size: 1.5rem;
	cursor: pointer;
}

@media (max-width: 992px) {
	.toggle-btn {
		display: block !important;
	}
}
