/*CABECERA SUPERIOR*/
#cabecera-superior {
	width: 100%;
	margin: auto;
	background: #8BDA71;
			position: relative;
			z-index: 1000;
		padding-top: 10px;
}
.grupo-cabecerasuperior {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.logoprincipal {
	width: 200px;

}

/*BOTON DE IDIOMA*/
/* estilos con prefijos para evitar conflictos */
.pv-dropdown { 
	position: relative;
	display:inline-block;
	z-index: 99999;
}
button {
	font-family: "Poppins", sans-serif;
}
.pv-dropbtn {
	background: rgba(255,255,255,0.3);
  color: #0B2019;
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid rgba(0,0,0,0.06);
  cursor: pointer;
}
    .pv-menu {
      position: absolute;
			z-index: 10000;
      right: 0;
      top: calc(100% + 8px);
	background: #0B2019;
	opacity: 0.95;
      min-width: 150px;
      border-radius: 6px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.08);
      opacity: 0;
      transform: translateY(-8px);
      pointer-events: none;
      transition: opacity .22s ease, transform .22s cubic-bezier(.2,.9,.3,1);
    }
    .pv-menu a {
      padding: 5px 35px;
      color: #8BDA71;
			font-size: 0.81em;
			text-align: left;
			border-bottom: 1px dashed rgba(255,255,255,0.3);
			transition: all 0.4s;
    }
    .pv-menu a:last-child {
			border-bottom: none;
		}
    .pv-menu a:hover {
			transform: translateX(10px);
			color: #eee;
		}
    /* clase que muestra el menú */
    .pv-menu.pv-show {
      opacity:1;
      transform: translateY(0);
      pointer-events: auto;
    }
    /* ajustes responsive */
    @media (min-width: 1024px) {
      .pv-menu {
				top: calc(100% + 10px);
				min-width: 170px;
			}
    }



/*estilos menu celulares*/
.header {
	width: 100%;
	margin: auto;
	background: #8BDA71;
	height: 35px;
	transition: all 0.4s;

}

/*CEBECERA FIJA*/
.fixed {
  position: fixed;
	background: #8BDA71;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  width: 100%;
	z-index: 10000;
	margin: auto;
  top: 0;
  left: 0;
}
.nav-bar {
	position: relative;
	top: 5px;
	text-align: center;
	cursor: pointer;
	font-size: 1.5em;
	width: 100%;
}
.icon-menu {
	color: #0B2019;
}
.menu, .submenu {
	list-style: none;
	padding: 0;
	margin: 0;
}
.menu {
  position: absolute;
  z-index: 2000;
	width: 95%;
	margin-left: -100%;
	transition: all 0.5s ease-out;
}
.menu__item {
	background: #0B2019;
	border-bottom: 1px dashed rgba(255,255,255,0.3);
	opacity: 0.95;
}
.menu__item:last-child {
	border-bottom: none;
}
.menu__link {
  font-size: 0.9em;
	padding: 7px 30px;
	color: #8BDA71;
	transition: all 0.4s;
}
.menu .icon-angle-right {
	opacity: 0;
}
.menu__link:hover {
	transform: translateX(10px);
	color: #eee;
}
.menu__link:hover span {
	opacity: 1;
}
.submenu {
	height: 0;
	overflow: hidden;
	transition: all 0.4s;
}
.submenu .menu__item {
	background: rgba(0,0,0,0.1);
}
.submenu .menu__link {
	padding: 5px 60px;
}
.submenu .menu__link:hover {
	transform: translateX(10px);
	color: #eee;
}
.mostrar {
	margin-left: 0;
}
.select {
	color: #eee;
	font-weight: 700;
}

@media(min-width:1024px) {
.fixed {
  position: fixed;
	background: #8BDA71;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  width: 100%;
	z-index: 10000;
	margin: auto;
  top: 0;
  left: 0;
}
.main-nav {
	display: flex;
	justify-content: center;

}
	.nav-bar {
		display: none;
	}
	.menu__item {
		background: none;
		border-bottom: none;
	}
	.menu__link {
		padding: 7px 10px;
		color: #0B2019;
	}
.menu__link:hover {
		color: #0B2019;
}
	.menu {
		width: 45%; /*reducimos el ancho para evitar conflicto con el boton de idioma*/
		background: none;
		margin-left: 0;
		display: flex;
		justify-content: center;

	}
	.container-submenu {
		position: relative;
	}
	.submenu {
		position: absolute;
		width: 320px;
		overflow: visible;
		z-index: 1000;
		opacity: 0;
		visibility: hidden;
	}
	.submenu .menu__item {
		background: #215395;
		border-bottom: 1px dashed #999;
}
	.submenu .menu__item:last-child {
		border-bottom: none;
}
	.container-submenu:hover .submenu {
		opacity: 1;
		visibility: visible;
	}
	.submenu .menu__link {
		padding: 5px 20px;
	}
}
