
/**
 * ===================================================
 * © 2025 YUYAY Ltda. - yuyay.fin.ec
 * Sistema: Pagína Web
 * Versión: 2.5
 * Desarrollador: [Leonardo Verdugo Crespo - Sistemas]
 * Última modificación: 24/06/2024
 * ===================================================
 */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}
:root{
    --color_text-primary: #0464b4   ;
    --color_text-secundary: #101E2C;
    --color-text-tertiary: #485663;
    --main_color-primary:  #0067B1;
    --main_color-secundary: #0067B1;
    --background-color: #FAFBFE;
    --lowText_font_size: 16px;
    --text_size_title: 40px;
    --text_title_card: 24px;
    --text_title_card2:20px;
    --text_paragraph:16px;
    --box_shadow-primary:0px 6px 50px -20px rgba(0,0,0,0.2);
}
header{
	width: 100%;
	position: fixed; 
	top:0;
	left: 0;
	z-index: 10;
	height: 200px;
	transition: all 0.5s ease;

	
}
/* Parte superior del header */
header .top-header {
	width: 100%;
	background-color: var(--main_color-primary);
	height: 35px;
  }
  
  /* Parte inferior del header */
  header .bottom-header {
	width: 100%;
	position: flex;
	background-color: white ;/* Puedes cambiar el color */
	align-items: center;  
	height: 80px;
  }

  /* Estilos para la parte inferior del header */
.bottom-header {
    display: flex;
    justify-content: left; /* Centra los elementos horizontalmente en la parte inferior */
    align-items: center; /* Alinea los elementos verticalmente en el centro */
    width: 100%;
}

/* Estilos para el logo */
.logo__header {
    display: flex;
    justify-content: center; /* Asegura que el logo se mantenga centrado */
    align-items: center; /* Alinea el logo verticalmente */
    padding-left: 20px; /* Asegura un pequeño margen a la izquierda */
    padding-right: 20px; /* Asegura un pequeño margen a la derecha */
}
    header  .bottom-header .logo__header img{
	width: 200px;
	
	
  }

.container__menu{
	position: absolute;
	bottom: 0;
	height: 70px;
	
	width: 100%;
	background: var(--main_color-primary);
	padding: 0px 20px;
	margin-top: 100px;
	

}

.menu{
	max-width: 1200px;
	margin: auto;
	height: 100%;
}

nav{
	height: 100%;
}

nav > ul{
	height: 100%;
	display: flex;
	gap:13px;

}
nav   ul  li{
	height: 100%;
	list-style: none;
	position: relative;
}

nav > ul > li:first-child > a{
	background-image: url(../..//images/Conocenos/casa.png) ;
	background-size: 24px;
	background-repeat:  no-repeat;
	background-position: center center;
	padding: 20px 40px;
} 
nav > ul > li:first-child:hover > a{
	background-image: url(../..//images/Conocenos/casa.png) ;
	background-size: 24px;
	background-repeat:  no-repeat;
	background-position: center center;
} 

nav > ul > li > a{
	width: 100%;
	height: 100%;
	display: flex;
	color: white;
	align-items: center;
	padding: 14px;
	text-transform: uppercase;
	font-size: 14px;
	transition: all 300ms ease;
	
}
nav > ul > li > a:hover{
	transform: scale(1.1);
	background: #0074c7;
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
	
}
#selected{
	transform: scale(1.1);
	background-color: #0074c7;
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
	
}
/* sub menu*/
nav  ul  li ul{
	width: 200px;
	display: flex;
	flex-direction: column;
	background: white;
	position: absolute;
	top: 90px;
	left: -5px;
	padding: 14px 0px; 
	visibility: hidden;
	opacity: 0;
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
	z-index: 10;
	transition: all 300ms ease;
	
}
nav  ul  li:hover ul{
	visibility: visible;
	opacity: 1;
	top: 70px;
}
 nav ul li ul::before{
	content: '';
	width: 0;
	height: 0;
	border-left: 12px solid transparent;
	border-right: 12px solid transparent;
	border-bottom: 12px solid white;
	position: absolute;
	top: -12px;
	left: 20px;


 }

 nav ul li ul li a{
	display: block;
	color: #0099E9;
	padding: 6px;
	padding-left: 14px;
	margin-top: 10px;
	font-size: 14px;
	text-transform: uppercase;
	transition: all 300ms ease;
 }
 nav ul li ul li a:hover{
	background: #0074c7;
	color: white;
	transform: scale(1.1);
	padding-left: 30px;
	font-size: 14px;
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
	
 }
/*ELEMENTOS RESPONSIVOS*/
.icon__menu{
	font-size: 26px;
	color:white;
	cursor: pointer;
	width: 26px;
	height: 100%;
	display: flex;
	align-items: center;

}
#label__check{
	width: 26px;
	height: 100%;
	display: none;
}
#check__menu{
	display: none;
}
 @media screen and (max-width:720px) {

	nav > ul{
		flex-direction: column;
		background-color: #023877;
		position: fixed;
		left: 0;
		top: 158px;
		width: 100%;
		height: 0px;
		transition: all 300ms ease;
		z-index: 100;
		opacity: 0;
		visibility: hidden;

	}
	nav > li > a:hover{
		transform: scale(1);

	}
	nav ul li ul{
		left: 90px;

	}
	nav > ul > li:hover ul{
		top: 50px;

	}
	nav>ul>li :first-child a{
		background-position: 20px;
	}
	#selected{
		transform: scale(1);
	}
	#label__check{
		display: block;
	}
	.icon__menu{
		display: flex;
	}
	#check__menu:checked ~nav > ul{
		height: 300px;
		visibility: visible;
		opacity: 1;
	}

 }