@charset "UTF-8";
/* CSS Document */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* CSS Reset*/ 

body{
font-family: 'Poppins', sans-serif;	
font-weight: 300;
font-size: 22px;	
line-height: 1.3;
}

img{
	max-width: 100%;
}

.modulo{
	position: relative;
	overflow: hidden;
    
}

.primario{
	width: 50%;
}

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

.tarjeta2{
	display: flex;
	justify-content: center;
	align-items:center;
	flex-direction: row-reverse;
	
}

.textos{
	padding: 2.6em;
}

.txt-rosa{
	color: #f26d7d;
}

@keyframes flota{
	from{
		transform: translateY(0px);
	}
	
	to{
		transform: translateY(-10px);
	}
}

.flotar{
	animation: flota 1s infinite;
	animation-timing-function: linear;
	
}

header{
	padding: .6em;
	background-color: black;
}

#hero{
	height: 100vh;
	background-image: url("images/hero-img.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 3em;
	text-align: center;
}

h1{
	font-size: 3em;
}

h1 span{
	font-family: 'Playfair Display SC', serif;
	font-size: 1.2em;
}

#hero p{
	width: 46%;
	margin-left: auto;
	margin-right: auto;
	font-size: 1.1em;
	font-weight: 500;
}

#hero p span{
	font-style: italic;
}

h2{
	font-size: 2.4em;
	font-weight: 200;
	text-transform: uppercase;
}

h2 span{
	font-weight: 600;
}

#txt1 span{
	font-style: italic;
}

#modulo2{
	height: 100vh;
	background-image: url("images/img-2.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

#informacion{
	background-color: rgb(0,0,0,0.50);
	color: #f6e7f2;
	position: absolute;
	bottom: 0;
	height: 13%;
	transition: all 0.5s  ease;
	box-sizing: border-box;
	overflow: hidden;
	opacity: 0;
}

#modulo2:hover .subir{
	bottom: 0;
	overflow: visible;
	height: 28%;
	opacity: 1;
}

#cursor1{
	position: relative;
	top:-2em;
	opacity: .70;
}

#modulo3{
	background-color: #f5989d;
	color: white;
	width: 44%;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

#img-hv1{
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 100%;
	height: 100%;
	transition: all 0.5s ease;
	box-sizing: border-box;
	overflow: hidden;
	opacity: 0;
	background-image: url("images/img-3.jpg");
	background-size: cover;
	background-position: center;
}

#modulo3:hover .opacidad{
	bottom: 0;
	overflow: visible;
	opacity: 1;
}

#cursor2{
	position: relative;
	top:-2.1em;
}

#txt4, #txt5 span{
	font-style: italic;
}

#txt5{
	width: 70%;
	margin-left: auto;
	margin-right: auto;
}

#modulo6{
	background-color: #8560a8;
	color: white;
	width: 44%;
	margin-left: auto;
	margin-right: auto;
	padding: 10em 4em;
	text-align: center;
}

#cursor3{
	position: relative;
	top:-2.6em;
}

#img-hv2{
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 100%;
	height: 100%;
	transition: all 0.5s ease;
	box-sizing: border-box;
	overflow: hidden;
	opacity: 0;
	background-image: url("images/img-7.jpg");
	background-size: cover;
	background-position: center;
}

#modulo6:hover .opacidad{
	bottom: 0;
	overflow: visible;
	opacity: 1;
}

footer{
	padding: 1.8em;
	background-color: #8560a8;
}

@media screen and (max-width:1280px){
	body{
		font-size: 20px;
	}
}

@media screen and (max-width:1024px){
	body {
		font-size: 18px;
	}
	
	#hero p{
		width: 56%;
	}
	
	#modulo3{
		width: 48%;
	}
	
	#modulo6{
		width: 46%;
	}
}

@media screen and (max-width: 800px){
	body{
		font-size: 16px;
	}
	
	#modulo2{
		height: 80vh;
	}
	
	#modulo3{
		width: 56%;
	}
	
	#modulo6{
		width: 54%;
	}
}

@media screen and (max-width:768px){
	
	.tarjeta, .tarjeta2{
		flex-direction: column;
	}
	
	.primario{
		width: 100%;
	}
	
	#modulo3{
		width: 58%;
	}
	
	#modulo6{
		width: 56%;
	}
}

@media screen and (max-width:600px){
	body{
		font-size: 14px;
	}
	
	#hero{
		height: 80vh;
	}
	
	#hero p{
		width: 72%;
	}
	
	#modulo3{
		width: 66%;
	}
	
	#modulo6{
		width: 64%;
	}
	
	#cursor1{
		top:-3em;
	}
	
	}

@media screen and (max-width:500px){
	#modulo3{
		width: 72%;
	}
	
	#modulo6{
		width: 70%;
	}
}

@media screen and (max-width:450px){
	body{
		font-size: 12px;
	}
	
	#hero{
		height: 70vh;
		background-position: right;
	}
	
	
	#hero p{
		width: 100%;
	}
	
	#modulo3{
		width: 90%;
	}
	
	#modulo6{
		width: 80%;
	}
	
	#cursor2{
		top:-3em;
	}
}

@media screen and (max-width:350px){
	body{
		font-size: 10px;
	}
}