* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}


body {
	font-family: "Inter", sans-serif;
	color: #333;
	justify-content: center;
	align-items: center;
	height: 100vh;
	background-color: #11171a;
	overflow-x: hidden;
}

.navbar {
	background-color: #161616;
	padding: 15px 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 40px;
}

.container-menu {
	display: flex;
	gap: 40px;
}

.navbar-socialMedia {
	border-right: 3px solid white;
	padding-right: 10px;
	display: flex;

} 

.navbar ul {
	list-style-type: none;
	display: flex;
	justify-content: center;
	gap: 100px;
	margin: 0;
	padding: 0px;
}

.navbar ul li {
	margin: 0 15px;
}

.navbar ul:nth-child(4) li:last-child {
	background-color: #f0c040;
	padding: 10px 15px;
	border-radius: 40px;
	transition: all 0.5s;
	border: none;
}



.navbar ul li a {
	text-decoration: none;
	color: white;
	font-size: 1.1rem;
	font-weight: bold;
	transition: color 0.3s;
}

.navbar ul li a:hover {
	color: #f0c040;
	/* Cambia a un color destacado al pasar el cursor */
}

.platform-component{
	position: fixed;
	right: 0;
	top: 50%;
	z-index: 3000;
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding: 20px;
	background-color:#161616;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
	transform: translateY(calc(-50% + 40px));
}



.platform-component img{
	width: 22px;
	height: 22px;
}

/* Resto de estilos */
.hero {
	background: url('../assets/images/backgrounds/bg.webp') no-repeat center center/cover;
	height: 100vh;
	top:80px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	overflow: hidden;
	margin-bottom:80px ;
}

.hero .overlay {
	background-color: rgba(0, 0, 0, 0.5);
	color: white;
	text-align: center;
	padding: 20px;
	position: relative;
	width: 100vw;
	height:100vh;
	z-index: 2;
}

.hero h1 {
	font-size: 3rem;
	margin: 0;
}

.navbar-menu {
	display: flex;
	gap: 20px;
	align-items: center;
}

.navbar-logo-responsive {
	display: none;
}

.hamburger {
	display: none;
}

@media (max-width:600px) {
	.navbar {
			flex-direction: column;
			gap: 20px;
			align-items: center;
			width: 100vw;
			justify-content: space-between;
			padding-bottom: 0;
	}

	.container-menu-responsive {
		display: flex;
		justify-content: space-around;
		width: 100%;
		align-items: center;
	}

	.navbar ul {
		flex-direction: column;
		gap: 20px;
	}

	.container-menu {
		height: 0px;
		overflow: hidden;
		transition: height 1s;
		display: flex;
		flex-direction: column;
		gap: 20px;
		box-sizing: border-box;
		transition: all ease-in-out 0.3s;
	}
	
	.navbar-active .container-menu{
		height: max-content;
		overflow: unset;
		padding-bottom: 40px;
	}

	.navbar-logo {
		display: none;
	}

	.navbar-socialMedia {
		display: none;
	}

	.navbar-logo-responsive {
		display: block;
	}

	.hamburger {
		display: flex;
		flex-direction: column;
		cursor: pointer;
	}
	
	.line {
		width: 25px;
		height: 3px;
		background-color: white;
		margin: 3px;
		transition: all ease-in-out 0.3s;
	}



	.hamburger-active .line2 {
		opacity: 0;
	}

	.hamburger-active .line1 {
		transform: rotate(45deg) translate(6px, 7px);
	}

	.hamburger-active .line3 {
		transform: rotate(-45deg) translate(6px, -6px);
	}

	.platform-component{
		position: static;
		flex-direction: row;
		transform: translateY(0);
		width: 100%;
		border-radius: 0;
		justify-content: space-around;
	}
}

.footer {
	height: 400px;
	background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../assets/images/footer.png');	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: white;
	text-align: center;
	padding: 20px 0;
	align-items: center;
}

.footer-container{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	height: 90%;
}

.footer-container img{
	width: 80px;
	height: 80px;
	background-color: #242424;
	padding: 20px;
	border-radius: 50%;
}

.footer p {
	margin: 0;
}


@media (max-width:500px) {
	.footer{
		height: max-content;
		max-height: max-content;
	}
	.footer-container{
		display: flex;
		padding: 20px;
		flex-wrap: wrap;
		justify-content: center;
	}
}