/*-----------------COLORES
							#f5f2e9		crema
									#70d26b		discordia
											#8a98a7		gris claro
*/
* {
	margin: 0;
	padding: 0;
	text-decoration: none;
	box-sizing: border-box;
	list-style: none;
	font-family: poppins;
}


body {
	width: 100%;
	background: #ffffff;
}

/* """""""""""""""""""""""""""""""""""BARRITA*/
#barrita {
	color: white;
	background-color: rgb(143, 188, 37);
	display: flex;
	width: 100%;
	font-size: 13px;
	text-align: center;
}

#barrita :first-child {
	flex: 1;
	max-width: 50%;

}

#barrita :nth-child(1) {
	flex: 1;
	max-width: 50%;
}


#barrita p {
	display: inline;
}

i {
	margin: 10px;
}

/* """""""""""""""""""""""""""""""""""ENCABEZADO*/
#imgBox {
	height: 12vh;
	text-align: center;
}

.logo {
	padding: 10px;
	height: 5em;
}

#menu {
	background: rgb(255, 255, 255);
	width: 100vw;
	display: grid;
	grid-template-columns: 1fr;
	border-bottom: 1px solid rgba(214, 212, 212, 0.478);
	margin-bottom: 10px;
}

#menu_icon {
	display: none;
}

#nav {
	display: flex;
	justify-content: center
}

#nav li {
	padding: 10px 25px;
	display: block;
}

#menu a {
	color: rgb(0, 0, 0);
	padding: 10px;
	font-weight: 500;

}

#menu span {
	font-size: 1.4em;
}

#menu #numerito {
	font-size: 10px;
	border-radius: 50%;
	background: yellow;
	box-shadow: 1px 1px 5px rgb(189, 180, 180);
	padding: 4px;
	bottom: -5px;
	left: -10px;
	position: relative;
}


/* """""""""""""""""""""""""""""""""""ENCABEZADO hover*/
#menu a:hover {
	color: #b0aeae;
}


/* Media Queries */

@media (max-width: 768px) {
	#barrita {
		display: none;
	}

	#imgBox {
		display: inline;
		position: absolute;
		padding: 10px 15px;
	}

	#menu {
		height: max-content;
		margin: 0;
	}

	#menu a {
		padding: 20px;
	}

	#menu_icon {
		display: flex;
		width: 100vw;
		text-decoration: none;
		align-items: center;
		justify-content: end;
		height: 15vh;
	}

	#menu_icon span {
		font-size: 2.5em;
	}

	#nav {
		display: none;
		flex-direction: column;
		width: 100vw;
		height: 80vh;
		align-items: center;
		justify-content: space-around;
		z-index: 10;
		font-size: 2em;
		text-shadow: 2px 2px 5px rgb(29, 107, 6);
		background-color: #8db914a2;
	}

	#nav li {
		flex: 1;
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		padding: 0;
	}

	.nav li:nth-child(3) {
		background-color: #8db914a2;
		/* Color medio */
	}

	.nav li:nth-child(2) {
		background-color: #a6d342a2;
		/* Un poco más claro */
	}

	.nav li:nth-child(1) {
		background-color: #c0ed71a2;
		/* Mucho más claro */
	}

	.nav li:nth-child(4) {
		background-color: #769f12a2;
		/* Un poco más oscuro */
	}

	.nav li:nth-child(5) {
		background-color: #5e7d0ea2;
		/* Mucho más oscuro */
	}

	#menu a:hover {
		color: inherit;
	}

}