.barra{
	min-height: 40px;
	background-color: var(--gris);
	position: relative;
	z-index: 3;
}

.barra .centrado{
	display: flex;
	justify-content: space-between;
}

.barra .centrado div{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding: 10px;
}

.barra .centrado a{
	font-size: 13px;
	display: flex;
	align-items: center;
	margin: 0px 10px;
	color: var(--azul);
	font-family: 'Prompt', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
}

.barra .centrado a[href^="mailto:"]{
	text-transform: lowercase;
}

.barra .centrado a img{
	height: 25px;
	margin-right: 5px;
}

.barra .centrado div:last-child{
	position: relative;
}

.barra .centrado div:last-child ul{
	display: none;
	position: absolute;
	top: 44px;
	left: 10px;
	padding: 0px;
	margin: 0px;
	background-color: var(--azul);
	z-index: 2;
	overflow: hidden;
}

.barra .centrado div:last-child ul.visible{
	display: block;
}

.barra .centrado div:last-child ul li{
	border-top: 1px solid white;
}

.wpml-ls-current-language{
	background-color: var(--naranja);
}

.barra .centrado div:last-child ul li a{
	color: white;
	padding: 10px;
	height: 100%;
}


header{
	display: flex;
	min-height: 80px;
	position: relative;
	z-index: 2;
}

header .centrado{
	width: 100%;
	max-width: 1200px;
	margin: auto;
	display: flex;
	align-items: center;
}

header .bars {
    position: relative;
    z-index: 3;
    width: 40px;
    height: 40px;
    /* border: 2px solid var(--white-color); */
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all .3s ease-in-out;
    margin-right: 20px;
}

.header .bars img{
	width: 25px;
}

header .centrado .logo{} 

header .centrado .logo h1{
	margin: 0px;
}

header .centrado .logo h1 a{
	display: flex;
}

header .centrado .logo img{
	height: 45px;
}

header .centrado .logo span{
	display: none;
}

header .centrado nav{
	display: flex;
	align-items: center;
	flex-grow: 2;
	
}

header .centrado nav ul{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	flex-direction: row;
	flex-grow: 2;
	list-style-type: none;
}

header .centrado nav ul li{
	padding-left: 30px;
}

header .centrado nav ul li a{
	color: var(--azul);
	font-size: 16px;
	font-family: 'Prompt', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
}




@media (max-width: 1440px) { 

	
 }

 @media (max-width: 1280px) { 

	
 }

 @media (max-width: 1024px) { 

	
 }

 @media (max-width: 768px) { 

	
 }

 @media (max-width: 428px) { 

 	.barra{
 		position: fixed;
 		top: 0px;
 		z-index: 3;
 		width: 100%;
 	}

 	.barra .centrado div{
 		padding-left: 0px;
 		padding-right: 0px;
 		width: 100%;
 	}

 	.barra .centrado div:first-child{
 		display: none;
 	}

 	header{
 		position: fixed;
 		top: 45px;
 		z-index: 2;
 		background-color: white;
 		width: 100%;
 	}

 	header .centrado{
 		flex-direction: row-reverse;
 		justify-content: space-between;
 	}

 	header .centrado nav{
		display: none;
	}
	
 }
