html{
	font-family: 'Roboto', sans-serif;
}

body {
  margin:0px;
  padding:0px;
}
.contenedor{
	display: grid;
	grid-template: 1fr 1fr 400px 60px/ 1fr;   
	grid-template-areas: "header header"    
						 "section section"
						 "aside aside"
						 "footer footer";
	
	height: 100vh;
}

header{
	display: grid;
	grid-area: header;
	grid-template: 1fr 0.5fr 0.5fr 1fr/1fr;
	background-image: url("../Img/fondo.jpg");
	background-repeat:no-repeat;
	background-size: cover;
	background-position: center;
	text-align: center;
}

/*********POLÍTICAS DE PRIVACIDAD***************/

.politicasPrivacidad{
	text-align: center;
}

.politicas{
	margin: 25px;
}

/************************/

.titulo{
	display: grid;
	grid-row: 2/3;
	font-size: 40px;
	font-weight: 550;
	color: #f5f8fd;
}
.subtitulo{
	font-size: 18px;
	display: grid;
	grid-row: 3/4;
	opacity: 0.8;
	color: white;
}
.subtitulo h4{
	margin:0px;	
}

.btn {
	display: grid;
	grid-row: 3/4;
}
.btn button{
	width: 200px;
	height: 70px;
	background-color: #e79046;
	border: none;
	border-radius: 50px;
	font-size: 20px;
	font-weight: 550;
	text-decoration: none;
	color: #f5f8fd;
	cursor: pointer;
}
.btn button:hover{
	filter: brightness(105%); 		
	box-shadow: 4px 4px 4px  rgb(0,0,0,0.3);
}
section{
	grid-area: section;
	background-color: #f5f8fd;	
	align-content: center;
	justify-content: center;	
	text-align: center;
}
.tituloServicio{
	display: grid;
	grid-row: 1/2;
	font-size: 22px;
	justify-content: center;
	align-content: center;
	color: #000;
	background-color: white;
}


footer{
	display: grid;
	grid-area: footer;
	justify-content: center;
	align-content: center;
	padding: 10px;
	background-color: #f0f0f0;
	color: #000;
	font-size: 17px;	
	text-align: center;
	font-weight: 550;
}

@media (max-width: 1150px) {
							

.titulo{
	font-size: 25px;
}
.subtitulo h3{
	font-size: 15px;
}

.btn button{
	width: 150px;
	height: 50px;
	font-size: 13px;
}
.front img{
	width: 75px; 
	height: 40px;
}


}


@media (max-width: 600px) {

header{
	background-size: no-repeat;
}

.titulo{
	font-size: 32px;
}

footer{
	font-size: 15px;	
}

}