﻿body, html {
	margin: 0;
	padding: 0;
}

.section {
	min-height: 800px;
	position: relative;
	text-align: center;
	font-family: Proxima Nova Lt;
	margin: 0;
}

h1, p {
	margin: 0;
	font-family: Proxima Nova Lt;
	font-weight: bold;
}

.text-wr {
	position: absolute;
	/* subino un nadiña para mellor centrado, pero depende do contido que se meta na web */
	top: 40%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

/* en esta parte estableces a cor de fondo/texto de cada sección */
#section1 {
	background: #3c7e65;
	color: #f1fbf8;
}

#section2 {
	background: #f1fbf8;
	color: #3c7e65;
}

#section3 {
	background: #3c7e65;
	color: #f1fbf8;
}

#section4 {
	background: #f1fbf8;
	color: #3c7e65;
}

#section5 {
	background: #3c7e65;
	color: #f1fbf8;
}

#section6 {
	background: #f1fbf8;
	color: #3c7e65;
}

/* a cor das ligazóns, para destacar do texto normal e resaltar do fondo */

a {
	color: #1a1a1aff ;
	font-size: 1.0em;
	font-weight: bold;
	text-decoration: none;
}

/* titular principal da sección */
h1 {
	font-size: 50px;
	margin-bottom: 25px;
}

.title-top {
	font-size: 60px;
	padding-bottom: 30px;
}

.title-bottom {
	font-size: 30px;
}

.title-tx {
	font-size: 20px;
	opacity: 0.8;
}

.nav {
	position: fixed; /*left: 50%;*/
	width: 100%;
	top: 20px;
	z-index: 9;
	padding-left: 10px;
}

.nav a {
	padding: 7px 20px;
	border-radius: 7px;
	margin-right: 10px;
	background: rgba(255, 255, 255, 0.5);
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-ms-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
	text-decoration: none;
	color: black;
	font-family: Proxima Nova Lt;
	font-weight: 100;
}

.nav a.active {
	background: rgba(0, 0, 0, 0.7);
	color: #ccc;
}

.nav a:hover {
	background: rgba(255, 255, 255, 0.7);
}


/* engade o resaltado */
.destacado { 
	font-weight: bold;
	}
	
/* quita os puntos da lista */
li {
 	list-style: none;
 	}
 	
