*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'arial', sans-serif;
}
.main{
	width: 100%;
	height: 100vh;
}
/*inicia seccion 1*/
.section-1{
	width: 100%;
	height: 9em;
	background: linear-gradient(90deg,#ce37ec,#ff5500);
	padding-top: 3em;
}
section-1 .p{
	text-align: left;
}	
header{
	background-color: #2d2f3e;
	width: 100%;
	height: 3.5em;
	display: flex;
	flex-direction: row;
	overflow: hidden;
	justify-content: center;
	align-items: center;
}
.img{
	width: 25;
	height: 100%;
}
.menu{
	width: 75%;
	height: 100%;
	display: flex;
	flex-direction: row;
	justify-content: right;
	align-items: center;
}
.img img{
	object-fit: cover;
	height: 100%;
	visibility: visible;
}	
.menu a{
	display: flex;
	text-decoration: none;
	color: #fff;
	padding: 2em 1em;
}
.menu a:hover{
	background-color: #ff5500;
	
}
/*finaliza seccion1 / 1em es igual a 16px 1*/

/*inicia deccion 2*/

.section-2{
	width: 100%;
	height: calc(100vh-20em);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-top: 1.5em 0;
}
.s2-textos{
	width: 80%;
	height: 25%;
	align-items: center;
}	
.s2-img{
	width: 100%;
	height: 75%;
	display: flex;
	flex-direction: row;
	align-items: center;
}
.titulo{
	font-size: 2em;
	text-align: center;
	color: #454245
}
.s2-textos hr{
	width: 3em;
	height: 0.25em;
	background: linear-gradient(90deg,#ce37ec,#ff5500);
	border: none;
	border-radius: 1em;
	margin: 1em auto;
}
.s2-textos p{
	font-size: 1.25em;
	text-align: center;
}
.s2-contenido{
	width: 33.33%;
	height: 50%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	padding: 0.5em;
}
.contenido-img{
	width: 100%;
	height: 50%;
	display: flex;
	justify-content: center;
}
.contenido-img img{
	object-fit: cover;
	width: 60%;
	display: flex;
	justify-content: center;
}
.contenido-texto{
	width: 100%;
	height: 50%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	padding: 0.5em 0;
}
.contenido-texto h2{
	font-size: 1.25em;
	color: #ff5500;
}
.contenido-texto p{
	font-size: 1.25em;
	color: #454245;
	margin: 1em 0;
	text-align: center;
}
.contenido-texto a{
	 text-decoration: none;
	 color: #fff;
	 background-color: #ff5500;
	 width: 30%;
	 padding: 0.5em 0;
	 border: none;
	 border-radius: 5px;
	 text-align: center;
}
/*finaliza seccion 2*/

/*inicia deccion 3*/

.section-3{
	width: 100%;
	height: 10em;
	background: #2d2f3e;
	display: flex;
	flex-direction: column;
	justify-content: center:
	align-items: center;
}
.section-3 hr{
	background: linear-gradient(90deg,#ce37ec,#ff5500);
	width: 100%;
	height: 5%;
	border: none;	
}
.s3-contenido{
	width: 100%;
	height: 65%;	
	display: flex;
	flex-direction: row;
	justify-content: center;
}
.s3-logo{
	width: 50%;
}
.s3-logo img{
	object-fit: cover;
	height: 100%;
}
.s3-texto{
	width: 30%;
}
.s3-texto h3{
	font-size: 1.1em;
	color: white;
	margin: 0.25em 0;
}
.s3-texto p{
	font-size: 0.9em;
	color: white;
}
.s3-texto a{
	text-decoration: none;
	font-size: 0.9em;
	color: white;
}
footer{
	width: 100%;
	height: 30%;
	border-top: #535353 solid 0.0725em;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 0 10%;
	color: white;
}
.autor{
	text-decoration: none;
	color: white;
	margin: 0.30em;
}
.politicas{
	text-decoration: none;
	color: white;
	margin: 4em;
}
/*finaliza seccion 3*/

/* Estilos básicos */
    .thumbnail {
      width: 150px;
      cursor: pointer;
      transition: transform 0.3s ease;
    }

    .thumbnail:hover{
      transform: scale(.85);
    }

    /* Estilos del modal*/
    .modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.8);
      justify-content: center;
      align-items: center;
    }

    .modal img {
      max-width: 90%;
      max-height: 90%;
    }

    .modal.active {
      display: flex;
    }
.text{
	font-size: 1.3em;
	color: #246E04;  
    }
