@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 */

*{
	box-sizing: border-box;
}

img{
	max-width: 100%;
}

body {
	font-family: 'Mukta Mahee', sans-serif;
	font-size: 22pt;
	line-height: 1.1;
	color: white;
}

body a{
	color: #024c7a;
	text-decoration: none;
}

#contenedor{
	padding: 40px;
}
.modulo{
	position: relative;
	overflow: hidden;
}

.primario{
	width: 40%;
	float: right;
	
}
.red{
	background-color: #bb1733;
}

.blue{
	background-color: #024c7a;
}

h1{
	font-family: TagusWide-Medium;
	font-size: 62pt;
	margin-top: 80px;
	color: black;
}

h1 span{
	font-size: 140pt;
}

#hero{
	background-image: url("images/hero-back.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	
}

#titulo{
	width: 60%;
	float: left;
}

#hero-img{
	width: 40%;
	float: left;
	margin-top: -50px;
}

#modulo1{
	margin-top: 100px;
}

#img1{
	
	margin-top: 80px;
}
#txt1{
	width: 55%;
	float: right;
	padding: 20px;
}

h2{
	font-family: TagusWide-Black;
	font-size: 34pt;
	padding: 10px;
	width: 65%;
}

#modulo2{
	
	margin-top: 100px;
	margin-left: 100px;
}

#txt2{
	float: left;
	width: 50%;
	margin-top: 100px;
}

#txt1, #txt2, #txt3, p{
	padding: 20px;
	margin-top: 20px;
	
	}

#img2{
	width: 50%;
	float: left;
	padding: 50px;
}

#modulo3{
	margin-top: 100px;
	
}


#img3{
	width: 40%;
	float: right;
	margin-right: 20px
}

#txt3{
	width: 40%;
	float: right;
	margin-right: 150px;
	margin-top: 50px;
}

#txt3 p{
	width: 70%;
}

h3,h4,h5,h6,h7{
	font-family: TagusWide-Black;
	font-size: 34pt;
	padding: 10px;
}

#modulo4{
	margin-top: 100px;
}

#txt4{
	width: 60%;
	float: left;
	margin-top: 50px;
}

#txt4 p{
	width: 80%;
}

#img4{
	width: 40%;
	float: left;
	margin-top: 50px;
}

#modulo5{
	margin-top: 50px;
}

#img5{
	width: 50%;
	float: right;
}

h5{
	width: 70%;
}

#txt5{
	width: 50%;
	float: right;
	margin-top: 150px;
}

#modulo6{
	margin-top: 100px;
	
}

#txt6{
	width: 60%;
	float: left;
	margin-left: 150px;
	margin-top: 50px;
}

#txt6 p{
	width: 80%;
}

#img6{
	width: 30%;
	float: left;
	margin-left: -150px
}

#modulo7{
	margin-top: 100px;
}

#txt7{
	width: 50%;
	float: right;
	margin-top: 100px;
}

#img7{
	width: 50%;
	float: right;
	margin-top:50px;
}

#img7 img{
	margin-left: 100px;
}

/*Animacioes*/

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

.flotar{
	animation: flota 2s infinite;
	animation-timing-function: linear;
	animation-direction: alternate;
}

@keyframes rota{
	
	from{
		transform: rotate(0deg);
	}
	
	to{
		transform: rotate(-15deg)
	}
}
	.rotar{
		animation: rota 3s infinite;
		animation-timing-function: linear;
		animation-direction: alternate;
	}
	@keyframes latido{
	from{
		transform: scale(1);
		
	}
	
	to{
		transform: scale(1.1);
	}
}

.corazon{
	animation: latido 2s infinite;
	animation-timing-function: ease-in-out;
	animation-direction: alternate-reverse;
}


/* Responsive*/

@media screen and (max-width:1440px){
	
	#img4{
		margin-top: 100px;
	}
	
	h2,h3,h4,h5,h6,h7{
		font-size: 30pt;
	}
}

@media screen and (max-width:1330px){
	body{
		font-size: 18pt;
	}
	h1 span{
		
		font-size: 100pt;
	}
	
	h2,h3,h4,h5,h6,h7{
		font-size: 26pt;
	}
	
	#txt1 img{
		width: 15%;
	}
	
	#img6 img{
		margin-left: 80px;
	}
	
	#img7 img{
		margin-left: 20px;
	}
}

@media screen and (max-width:1024px){
	
	body{
		font-size: 14pt;
	}
	
	#img2{
		margin-top: 40px;
	}
	
	h2,h3,h4,h5,h6,h7{
		font-size: 20pt;
	}
}

@media screen and (max-width:768px){
	
	body{
		font-size: 12pt;
	}
	
	h1{
		margin-top: 10px;
	}
	
	h1 span{
		font-size: 70pt;
	}
	
	#txt1,#txt2,#txt3,#txt4,#txt5,#txt6,#txt7{
		padding: 5px;
	}
	
	#hero-img{
		margin-top: -20px;
	}
	
	h2{
		font-size: 18pt;
		width: 90%;
	}
	
	h3,h4,h5,h6,h7{
		font-size: 18pt;
	}
	
	#img2{
		padding: 0px;
		margin-top: 80px;
	}
	
	
	
	#txt3 p{
		width: 90%;
	}
	
	#txt3{
		margin-right: 90px;
	}
	#img3{
		margin-top: 50px;
	}
	
	#img4{
		margin-top: 140px;
	}
	
	#txt5{
		margin-top: 40px;
	}
	
	#txt6{
		margin-left: 40px;
	}
	
	#img6 img{
		margin-left: 100px;
		margin-top: 100px;
	}
	
	h7{
		line-height: 1.5
	}
}

@media screen and (max-width:600px){
	
	body{
		float: none;
	}
	
	h1{
		font-size: 20pt;
	}
	
	h1 span{
		font-size: 55pt;
	}
	
	.primario{
		width: 100%;
	}
	
	#txt1,#txt2,#txt3,#txt4,#txt5,#txt6,#txt7{
		width: 100%;
		
	}
	
	h2, h3, h4, h5, h6, h7{
		width: 100%;
	}
	
	#txt2{
		float: none;
		padding: 0px;
	
	}
	
	#modulo2{
		margin-left: 0px;
	}
	#img2  {
		width: 90%;
		margin-left: 50px;
	}
	
	#txt3 p{
		width: 100%;
	}
	#modulo3{
		margin-top: 50px;
	}
	
	#txt3{
		margin-right: 0px;
	}
	
	#img3{
		width: 70%;
		margin-right: 80px;
	}
	
	#modulo4{
		margin-top: 30px;
	}
	
	#txt4 p{
		width: 100%;
	}
	#img4{
		width: 90%;
	}
	
	#img5{
		width: 80%;
		margin-right: 40px;
		margin-top: 40px;
	}
	
	#modulo6{
		margin-top: 30px;
	
	}
	
	#txt6{
		margin-left: 0px;
	}
	
	#txt6 p{
		width: 100%;
	}
	
	#img6{
		width: 70%;
		margin-left:-50px;
	}
	
	#modulo7{
		margin-top: 30px;
	}
	
	#img7{
		width: 70%;
		
	}
	
	#img7 img{
		margin-left: -50px;
	}
}

@media screen and (max-width:480px){
	#modulo1{
		margin-top: 30px;
	}
	
	#img4{
		margin-top: 30px;
	}
}

@media screen and (max-width:350px){
	
	h1{
		font-size: 14pt;
	}
	
	h1 span{
		font-size: 26pt;
	}
	
	#hero-img{
		margin-top: 30px;
	}
	
	body{
		font-size: 10pt;
	}
	
	h2,h3,h4,h5,h5,h7{
		font-size: 13pt;
	}
	
	#img2 img{
		margin-left: -30px;
	}
	
	#img3{
		width: 85%;
	    margin-right: 20px;
	}
	
	#img5 img{
		margin-left: 25px;
	}
	
	#img6{
		width: 90%;
		margin-left: -90px
	}
	h7{
		line-height: 2;
	}
	
	#img7{
		width: 90%;
	}
}