@charset "UTF-8";

@import url('https://fonts.googleapis.com/css?family=Comfortaa:400,700');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,700');

* {
	margin: 0;
	padding: 0;
}

body {
	font-family: Roboto, sans-serif;
	font-weight: 400;
}

nav {
}

nav ul {
	display: flex;
	list-style-type: none;
	margin-right: 20px;
}

nav ul a {
	text-decoration: none;
	color: white;
	margin: 10px;
	padding-right: 15px;	
}

nav ul a:hover {
	color: #fcc367;
}


header {
	width: 100%; 
	background: rgba(0, 0, 0, 0.51); 
	display: flex; 
	justify-content: 
	space-between; 
	align-items: center; 
	position: fixed;
	padding: 10px 20px 10px 15px;
}

h1, h2 {
    font-family: Comfortaa, sans-serif;
}

h1, h2, h3 {
	margin: 10px;
	text-align: center;
}

h1 {
	font-size: 5em;
}

h2 {
	font-size: 3em;
	margin: 0;
}

#boton-descarga {
	text-decoration: none;
	font-family: Roboto, sans-serif;
	background-color: #e35d52;
	color: white;
	padding: 15px;
	border-bottom: 1px solid grey;
	border-right: 1px solid grey;
    border-radius: 10px;
}

#boton-descarga:hover {
	background-color: brown;
}

section {
	padding: 100px 250px;
}

/* seccion 0 */

.section0 {
	background-image: url(../img/fondo.png);
	background-color: #26a9e0;
    background-size: 100%;
    background-repeat: no-repeat;
	background-position: top;
	height: 55vh;
	display: flex;
	flex-direction: row;
	justify-content:  space-around;
	align-items: center;
    color: white;
}

.section0 .contenedor {
    height: 60%;
    width: 60%;
    margin: auto;
    display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
}

.section0 h2 {
	text-shadow: -2px 3px 6px rgba(0,0,0,0.30);
	text-align: left;
	margin: 5px 0px 10px 0px;
}

.section0 p {
	text-shadow: -2px 3px 6px rgba(0,0,0,0.30);
	font-family: Comfortaa, sans-serif;
	font-size: 2.5em;
}

.section0 img {
	flex-direction: row;
}

.section0 .content {
	margin: 20px 0 20px 50px;
	display: flex;
	flex-direction: column;
	justify-content: left;
}
.section0 .botonesdescarga {
	width: 100%;
	height: 50px;
	margin: 20px 0px 0px 0px;
}

.section0 .botonesdescarga img {
	height: 45px;
}

/* seccion 1 */

.section1 {
	display: flex;
	justify-content: center;
	align-items: center;
}

.section1 h2 {
	text-align: left;
}

.section1 img {
	flex: 0;
	width: 50%;
	height: auto;
}

.section1 .content {
	width: 50%;
	margin: 20px 0 20px 50px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.section1 .content p {
	font-size: 1.25em;
	margin-top: 20px;
}

/* seccion 2 */

.section2 {
	background-color: #26a9e0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
    color: white;
}

.section2 h3 {
	margin-top: 30px;
}

.section2 .content {
	display: flex;
	justify-content: space-around;
	margin-top: 30px;
}

.section2 .content .paso {
	padding: 35px;
	width: 25%;

	display: flex;
	flex-direction: column;
	align-items: center;
}

.section2 img {
	width: 200px;
	height: 400px; /*Offline*/
}

.section3 {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.section3 h2 {
	text-align: left;
}

.section3 .contenedor{
	margin-top: 30px;
	display: flex;
	justify-content: space-between;
}

.section3 .columna {
	display: flex;
	flex-direction: column;
	margin: 0 30px;
}

.section3 .columna .comentario {
	display: flex;
	align-items: flex-start;
	margin-top: 35px;
}

.section3 .columna .comentario img {
	margin-right: 15px;
	width: 50px;
	height: 50px; /*Offline*/
}

.section3 .columna .comentario .content {
	flex: 1;
}

.section3 .columna .comentario .content h3 {
	text-align: left;
	margin: 0 0 10px 0;
	color: #26a9e0;
}

.section3 .columna .comentario .content p {
	font-style: italic;
}

.section4 {
	background-color: #26a9e0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
    color: white;
}

.section4 h3 {
	margin-top: 30px;
}

.section4 .content {
	display: flex;
	justify-content: space-around;
	margin-top: 30px;
}

.section4 .content .beneficio {
	padding: 35px;
	width: 33%;

	display: flex;
	flex-direction: column;
	align-items: center;
}

.section4 img {
	width: 300px;
	height: 300px; /*Offline*/
}

.section5 {
	background-color: #26a9e0;
	flex-direction: column;
	justify-content: center;
	text-align: center;
    color: white;
    padding: 0px 0px 80px 0px;
}

footer {
	background-color: black;
	padding: 50px 250px 15px 250px;
}

footer p {
	color: lightgrey;
	font-size: 0.7em;
}

footer .content {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 50px;
}

footer ul li {
	margin-bottom: 10px;
	list-style-type: none;
}

footer a {
	text-decoration: none;
	color: white;
	font-size: 0.75em;
}

footer a:hover {
	color: orange;
}

footer img {
	width: 100px;
	height: 100px;
}