/*========================
Class que posiciona a Nav 
à direita quando 
scrollTop >= 170px
========================*/

.nav-appear-right {
	position:absolute !important;
	top:18% !important;
	right:5% !important;
}

/*========================
Navbar
========================*/

.container {
	width: 95%;
	max-width: 1100px;
	margin: 0 auto;
}

header {
	background: rgb(255, 245, 204);
	color: #29a3a3;
	padding: 1em 0;
	z-index: 200;
	width: 100%;
	font-family: 'Quicksand', sans-serif;
	position: fixed;
	height: 52.5px;
}

header::after {
	content: '';
	clear: both;
	display: block;
}

.logo {
	width: 200px;
	height: 100px;
	float: left;
	margin-top: -2.1em;
}

.site-nav {
	position: absolute;
	top: 100%;
	right: 0%;
	background: #464655;
	-webkit-clip-path: circle(0px at top right);
	-moz-clip-path: circle(0px at top right);
	-ms-clip-path: circle(0px at top right);
	-o-clip-path: circle(0px at top right);
	clip-path: circle(0px at top right);
	-webkit-transition: clip-path ease-in-out 700ms;
	-moz-transition: clip-path ease-in-out 700ms;
	-ms-transition: clip-path ease-in-out 700ms;
	-o-transition: clip-path ease-in-out 700ms;
	transition: clip-path ease-in-out 700ms;
}

.site-nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-nav a {
	color: #29a3a3;
	display: block;
	padding: 2em 4em 2em 1.5em;
	text-transform: uppercase;
	-webkit-text-decoration: none !important;
	-moz-text-decoration: none !important;
	-ms-text-decoration: none !important;
	-o-text-decoration: none !important;
	text-decoration: none !important;
}

.site-nav a:hover,
.site-nav a:focus {
	background: none;
	color: #ff6a00 !important;
}

.site-nav--icon {
	display: inline-block;
	font-size: 1.5em;
	margin-right: 1em;
	width: 1.1em;
	text-align: right;
	color: #29a3a3;
}

.site-nav--open {
	-webkit-clip-path: circle(250% at top right);
	-moz-clip-path: circle(250% at top right);
	-ms-clip-path: circle(250% at top right);
	-o-clip-path: circle(250% at top right);
	clip-path: circle(250% at top right);
}

.menu-toggle {
	padding: 1em;
	position: absolute;
	top: .5em;
	right: .5em;
	cursor: pointer;
}

.hamburger,
.hamburger::before,
.hamburger::after {
	content: '';
	display: block;
	background: #29a3a3;
	height: 3px;
	width: 1.75em;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	border-radius: 3px;
	-webkit-transition: all ease-in-out 500ms;
	-moz-transition: all ease-in-out 500ms;
	-ms-transition: all ease-in-out 500ms;
	-o-transition: all ease-in-out 500ms;
	transition: all ease-in-out 500ms;
}

.hamburger::before {
	-webkit-transform: translateY(-6px);
	-moz-transform: translateY(-6px);
	-ms-transform: translateY(-6px);
	-o-transform: translateY(-6px);
	transform: translateY(-6px);
}

.hamburger::after {
	-webkit-transform: translateY(3px);
	-moz-transform: translateY(3px);
	-ms-transform: translateY(3px);
	-o-transform: translateY(3px);
	transform: translateY(3px);
}

.open .hamburger {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

.open .hamburger::before {
	-webkit-opacity: 0;
	-moz-opacity: 0;
	-ms-opacity: 0;
	-o-opacity: 0;
	opacity: 0;
}

.open .hamburger::after {
	-webkit-transform: translateY(-3px) rotate(-90deg);
	-moz-transform: translateY(-3px) rotate(-90deg);
	-ms-transform: translateY(-3px) rotate(-90deg);
	-o-transform: translateY(-3px) rotate(-90deg);
	transform: translateY(-3px) rotate(-90deg);
}

@media (min-width:1025px) {
	header {
		margin-top:1.25em;
	}
}

@media (max-width:1024px) {
	.site-nav a {
		color: #29a3a3;
		display: block;
		padding: 2em 4em 2em 1.5em;
		text-transform: uppercase;
		-webkit-text-decoration: none !important;
		-moz-text-decoration: none !important;
		-ms-text-decoration: none !important;
		-o-text-decoration: none !important;
		text-decoration: none !important;
		border-bottom: 1px solid rgba(41, 163, 163,.45) !important;
	}

	.site-nav .b-none {
		border-bottom: none !important;
	}
}

@media (max-height:480px) and (max-width:1024px) {
	.site-nav ul li {
		height: 70px;
	}

	.site-nav a {
		color: #29a3a3;
		display: block;
		padding: 1em 2em 1em .75em;
		text-transform: uppercase;
		-webkit-text-decoration: none !important;
		-moz-text-decoration: none !important;
		-ms-text-decoration: none !important;
		-o-text-decoration: none !important;
		text-decoration: none !important;
	}
}

@media (max-height:334px) and (max-width:1024px) {
	.site-nav ul li {
		height: 55px;
	}

	.site-nav a {
		color: #29a3a3;
		display: block;
		padding: .75em 1.75em .75em .5em;
		text-transform: uppercase;
		-webkit-text-decoration: none !important;
		-moz-text-decoration: none !important;
		-ms-text-decoration: none !important;
		-o-text-decoration: none !important;
		text-decoration: none !important;
	}
}

@media (max-width:1024px) {
	#LitStatus {
		margin-right: -1.95em !important;
	}
}

/*============================== Navbar Hide/Show com Scroll =========================*/

@media screen and (min-width: 1025px) {
	.menu-toggle {
		display: none;
	}

	.site-nav {
		height: auto;
		position: relative;
		background: transparent;
		float: right;
		-webkit-clip-path: initial;
		-moz-clip-path: initial;
		-ms-clip-path: initial;
		-o-clip-path: initial;
		clip-path: initial;
	}

	.site-nav li {
		display: inline-block;
		border: none;
	}

	.site-nav a {
		padding: 0;
		margin-left: 2.65em;
	}

	.site-nav ul li a {
		color: #fff;
	}

	.site-nav a:hover,
	.site-nav a:focus {
		background-color: transparent;
		color: #ffcc00;
	}

	header {
		background-color: transparent !important;
		position: absolute;
	}

	.site-nav--icon {
		display: none;
	}

	header.show {
		width: 100%;
		margin-top: 0;
		margin-left: 0;
		background: rgba(255, 245, 204,.9);
		height: 53px;
		padding: 10px 10px;
		position: fixed;
		z-index: 10;
		-webkit-transition: .25s;
		-moz-transition: .25s;
		-ms-transition: .25s;
		-o-transition: .25s;
		transition: .25s;
	}

	header.show nav {
		float: right;
	}

	header.show nav ul li a {
		color: #29a3a3;
	}

	header.show img.logo {
		height: 50px;
		width: 95px;
		float: left;
	}

	header.show .logo {
		display: none;
	}
}

/*========== Navbar + Toggler (Quando o user faz scroll) ==========*/

.toggle {
	display: none;
	position: absolute;
	text-align: right;
	width: 100%;
	padding: 10px 20px;
	background: rgba(255, 245, 204,.975);
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 30px;
}

@media screen and (min-width: 1025px) {
	.toggle.custom {
		display: block;
		position: fixed;
		z-index: 10;
		height: 52.5px;
	}

	.hamburger {
		margin-top: 10px;
		color: #29a3a3;
		cursor: pointer;
	}

	.logo-toggle {
		float: left;
		width: 200px;
		height: 100px;
		margin-top: -1.05em;
		margin-left: .25em !important;
	}

	.toggle ul {
		top: 50px;
		display: none;
		background: rgba(255, 245, 204,.975);
	}

	header.show #menu.site-nav.appear ul {
		margin-top: .4em !important;
	}

	header.show ul.active li {
		margin-right: 0;
		margin-left: 0;
		top: 50px;
		display: none;
		text-align: center;
	}

	header.show ul.active {
		width: 100%;
		z-index: 10000;
		z-index: 10000;
		position: fixed;
		margin-top: 20px;
		margin-left: -20px;
		background: rgba(255, 245, 204,.975);
		top: 50px;
	}

	header.show ul.active li.active {
		border-bottom: 1px solid #29a3a3;
		display: block;
		text-align: center;
		float: none;
	}

	header.show ul.active li.active a {
		color: #2eb8b8;
		font-size: 15px;
		letter-spacing: 1px;
	}
}
@media screen and (min-width:1025px) {
	header.show ul {
		margin-top:.25em !important;
	}
}

/*========================
Tipografia 
========================*/

h1 {
	font-weight: 300;
	font-size: 2.5rem;
	margin-top: 0;
}

p {
	margin-top: 0;
	line-height: 1.5;
}

p:last-of-type {
	margin-bottom: 0;
}

.title {
	font-size: 2.5rem;
	margin-bottom: 1.5em;
	font-weight: 900;
	margin-top: 1em;
	color: white;
	text-shadow: -1px -1px 0 #000,
		2px -2px 0 #000,
		-1px 1px 0 #000,
		1px 1px 0 #000;
}

.title span {
	font-weight: 300;
	display: block;
	font-size: .9em;
	color: white;
	text-shadow: -.5px -.5px 0 #000,
		1.5px -1.5px 0 #000,
		-1px 1px 0 #000,
		1px 1px 0 #000;
}

.unstyled-list {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.unstyled-list li {
	line-height: 1.65;
}

.unstyled-list li img {
	margin-right: 5px;
}

/*======================== 
Scroll Top BTN
========================*/

#scroll {
	position: fixed;
	right: 16.25px;
	bottom: 16px;
	cursor: pointer;
	width: 40px;
	height: 40px;
	background-color: #33ccff;
	text-indent: -9999px;
	display: none;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	-ms-border-radius: 30px;
	-o-border-radius: 30px;
	border-radius: 30px;
	z-index: 500;
}

#scroll span {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -8px;
	margin-top: -12px;
	height: 0;
	width: 0;
	border: 8px solid transparent;
	border-bottom-color: #fff;
}

#scroll:hover {
	background-color: rgb(102, 102, 102);
	-webkit-opacity: 1;
	-moz-opacity: 1;
	-ms-opacity: 1;
	-o-opacity: 1;
	opacity: 1;
	-webkit-filter: "alpha(opacity=100)";
	-moz-filter: "alpha(opacity=100)";
	-ms-filter: "alpha(opacity=100)";
	-o-filter: "alpha(opacity=100)";
	filter: "alpha(opacity=100)";
}

/*======================== 
	    Css Geral 
========================*/

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all ease-in-out 200ms;
	-moz-transition: all ease-in-out 200ms;
	-ms-transition: all ease-in-out 200ms;
	-o-transition: all ease-in-out 200ms;
	transition: all ease-in-out 200ms;
}


.clearfix::after,
section::after,
footer::after {
	content: '';
	display: block;
	clear: both;
}

img {
	max-width: 100%;
	height: auto;
}

body {
	min-width:100%;
	min-height:100%;
	margin: 0;
	text-align: center;
	font-family: 'Raleway' !important;
	font-size: 20px !important;
}

@media only screen and (max-device-width: 1025px) {
	body {
		-webkit-text-size-adjust: 100%;
		-ms-text-size-adjust: 100%;
	}
}

@media (min-width: 60rem) {
	p {
		font-size: 1.15rem;
		line-height: 1.5;
	}

	.title {
		font-size: 3.7rem;
	}
}

/*======================== 
		 Login 
========================*/

.popup {
	height: 309px;
	padding: 40px 22.5px 30px;
	background: rgba(255, 255, 255,.95);
	z-index: 999;
	display: none;
	position:fixed;
	right: 0;
	-webkit-border-bottom-left-radius: 5px;
	-moz-border-bottom-left-radius: 5px;
	-ms-border-bottom-left-radius: 5px;
	-o-border-bottom-left-radius: 5px;
	border-bottom-left-radius: 5px;
	-webkit-border-bottom-right-radius: 5px;
	-moz-border-bottom-right-radius: 5px;
	-ms-border-bottom-right-radius: 5px;
	-o-border-bottom-right-radius: 5px;
	border-bottom-right-radius: 5px;
	font-family: Raleway;
	border: 1px solid #ff6a00;
	border-top: none;
	outline: 1.5px solid #29a3a3;
	outline-offset: -.25em;
}

.head {
	margin-bottom:-2em;
	width: 100% !important;
}

.popup h1 {
	color: #29a3a3;
	float: left;
	margin: -.35em 1.5em .5em -.1em;
}
 
.popup a img {
	margin-right: -.45em;
	width: 25px;
	height: 25px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	border-radius: 50%;
	-webkit-transition: -webkit-transform .8s ease-in-out;
	-moz-transition: -webkit-transform .8s ease-in-out;
	-ms-transition: -webkit-transform .8s ease-in-out;
	-o-transition: -webkit-transform .8s ease-in-out;
	transition: -webkit-transform .8s ease-in-out;
	-webkit-transition: transform .8s ease-in-out;
	-moz-transition: transform .8s ease-in-out;
	-ms-transition: transform .8s ease-in-out;
	-o-transition: transform .8s ease-in-out;
	transition: transform .8s ease-in-out;
}

.popup a img:hover {
	-webkit-transform: rotate(360deg);
	-moz-transform: rotate(360deg);
	-ms-transform: rotate(360deg);
	-o-transform: rotate(360deg);
	transform: rotate(360deg);
	-webkit-transform: rotate(360deg);
	-moz-transform: rotate(360deg);
	-ms-transform: rotate(360deg);
	-o-transform: rotate(360deg);
	transform: rotate(360deg);
}

::placeholder {
	color: #575766 !important;
	-webkit-opacity: 1;
	-moz-opacity: 1;
	-ms-opacity: 1;
	-o-opacity: 1;
	opacity: 1;
	/* Firefox */
	font-family: Raleway !important;
}

:-ms-input-placeholder {
	/* Internet Explorer 10-11 */
	color: #575766 !important;
	font-family: Raleway !important;
}

::-ms-input-placeholder {
	/* Microsoft Edge */
	color: #575766 !important;
	font-family: Raleway !important;
}

.txtUN {
	background: url('../fotos/man-icon.png') no-repeat 0 .55em;
	-webkit-background-size: 25px 25px;
	-moz-background-size: 25px 25px;
	-ms-background-size: 25px 25px;
	-o-background-size: 25px 25px;
	background-size: 25px 25px;
	padding-left: 35px;
	padding-bottom: 7px;
	height: 3em !important;
	width: 15em !important;
	padding-top: .5em;
	background-color: transparent !important;
	border-top: none;
	border-right: none;
	border-left: none;
	border-bottom: 2px solid #29a3a3;
	font-size: .75em;
	margin: -1.75em 0 .75em 0;
}

.txtPS {
	background: url('../fotos/key-icon.png') no-repeat 0 .5em;
	-webkit-background-size: 25px 25px;
	-moz-background-size: 25px 25px;
	-ms-background-size: 25px 25px;
	-o-background-size: 25px 25px;
	background-size: 25px 25px;
	padding-left: 35px;
	padding-bottom: 7px;
	height: 3em !important;
	width: 15em !important;
	padding-top: .5em;
	background-color: transparent !important;
	border-top: none;
	border-right: none;
	border-left: none;
	border-bottom: 2px solid #29a3a3;
	font-size: .75em;
	margin-top: -1.75em;
}

.txtUN:focus,
.txtPS:focus {
	border-bottom-color: #ff6a00;
	-webkit-box-shadow: 0px 10px 10px -10px #ff6a00;
	-moz-box-shadow: 0px 10px 10px -10px #ff6a00;
	-ms-box-shadow: 0px 10px 10px -10px #ff6a00;
	-o-box-shadow: 0px 10px 10px -10px #ff6a00;
	box-shadow: 0px 10px 10px -10px #ff6a00;
	-webkit-transition: .525s !important;
	-moz-transition: .525s !important;
	-ms-transition: .525s !important;
	-o-transition: .525s !important;
	transition: .525s !important;
}

.lnkLog {
	cursor: pointer !important;
}

#lblErro {
	font-size: .75em !important;
	color: #ff0000 !important;
	float: left !important;
}

.pop-header {
	/*JavaScrit para quando o utilizador faz scroll*/
	margin-top: 2.64em !important;
}

.pop-header2 {
	/*JavaScrit para quando o utilizador faz scroll*/
	margin-top: 0 !important;
}

.p-reg {
	text-align:center;
	font-size:.75em;
	margin-top:.45em;
	margin-bottom:0;
}

@media(max-width:960px) {
	.p-reg {
		margin-top:-.5em !important;
	}	
}