
@font-face {
	font-family: 'Lato';
	src: url('/fuentes/Lato/Lato-Light.ttf');
	font-weight: 300;
	font-style: normal;
}

@font-face {
	font-family: 'Lato';
	src: url('/fuentes/Lato/Lato-Regular.ttf');
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: 'Lato';
	src: url('/fuentes/Lato/Lato-Bold.ttf');
	font-weight: 700;
	font-style: normal;
}

:root{
	--principal: #F8B133;
	--principal2: #FFA214;
	--secundario: #48A83A;
	--gris1: #eaeee6 ;
	/* --gris1: #ededed; */
	--negro: #333333;
	--sombra1: rgba(149, 157, 165, 0.2) 0px 6px 12px;
}

.boton-principal{
	background-color: var(--principal);
	border-radius: 10px;
	border: none;
	color: white;
	transition: all .2s;
}

.boton-principal:hover{
	background-color: rgb(255, 174, 54);
}

.texto-principal{
	color: var(--principal2) !important; 
}

.texto-secundario{
	color: var(--secundario) !important; 
}

.link-1{
	color: var(--negro);
	transition: all .2s;
}

.link-1:hover{
	color: var(--principal2);
}

.no-split{
	white-space: nowrap;
}

.icono-tarjeta{
	max-width: 170px;
}

body {
	font-family: 'Lato', sans-serif;
	background-color: white;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

#app{
	display: flex;
	flex-direction: column;
}

footer{
	flex-grow: 1;
	display: flex;
	align-items: end;
}

.pagina{
	/* padding-top: 122px; */
	padding-top: 162px;
}
/* HEADER */

.menu-superior{
	/* background-color: rgba(0, 0, 0, 0.701); */
	background-color: white;
	z-index: 50;
	/* color: white; */
	position: fixed;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}


.menu-superior a{
	/* color: rgb(219, 219, 219); */
	color: black;
	text-decoration: none;
	transition: all .2s;
}
.menu-superior a.active{
	color: var(--principal2);
}

.menu-superior a:hover{
	color: var(--principal2);
}

.menu-superior .navbar-toggler{
	color: white;
}

.navbar-brand img{
	height: 130px;
}

/* FOOTER */

.pie{
	background-color: var(--negro);
}

.pie a{
	color: white;
	text-decoration: none;
	transition: all .2s;
}

.pie a:hover{
	color: var(--principal2);
}

.politicas p, .politicas li{
	font-size: 1rem;
}

@media only screen and (max-width: 1199.5px) {
	/* HEADER */
	.menu-superior{
		background-color: white;
		color: var(--negro);
		position: static;
	}
	
	.menu-superior a{
		color: var(--negro);
	}
	
	.menu-superior .navbar-toggler{
		color: var(--negro);
	}
	
	.navbar-brand img{
		height: 60px;
	}

	.menu-superior a.active{
		color: var(--negro);
	}

	.pagina{
		padding-top: 0px;
	}
}


/* @media only screen and (max-width: 991.5px) {
	
} */