@import "burger.css";
@import "magic.css";
@import "media.css";

/* TABLET */
@media (min-width: 768px) {
	.sm-spacer150 {height: 150px;}
	.sm-spacer120 {height: 120px;}
	.sm-spacer90 {height: 90px;}
	.sm-spacer60 {height: 60px;}
	.sm-spacer30 {height: 30px;}
	.sm-spacer15 {height: 15px;}

	.sm-block150 {display: inline-block; width: 150px;}
	.sm-block120 {display: inline-block; width: 120px;}
	.sm-block90 {display: inline-block; width: 90px;}
	.sm-block60 {display: inline-block; width: 60px;}
	.sm-block30 {display: inline-block; width: 30px;}
	.sm-block15 {display: inline-block; width: 15px;}

	.sm-taleft {text-align: left;}
	.sm-tacenter {text-align: center;}
	.sm-taright {text-align: right;}
	.sm-tajustify {text-align: justify;}
}

/* DESKTOP */
@media (min-width: 992px) {
	.md-spacer150 {height: 150px;}
	.md-spacer120 {height: 120px;}
	.md-spacer90 {height: 90px;}
	.md-spacer60 {height: 60px;}
	.md-spacer30 {height: 30px;}
	.md-spacer15 {height: 15px;}

	.md-block150 {display: inline-block; width: 150px;}
	.md-block120 {display: inline-block; width: 120px;}
	.md-block90 {display: inline-block; width: 90px;}
	.md-block60 {display: inline-block; width: 60px;}
	.md-block30 {display: inline-block; width: 30px;}
	.md-block15 {display: inline-block; width: 15px;}

	.md-taleft {text-align: left;}
	.md-tacenter {text-align: center;}
	.md-taright {text-align: right;}
	.md-tajustify {text-align: justify;}
}

/* LARGE DISPLAY'S */
@media (min-width: 1200px) {
	.lg-spacer150 {height: 150px;}
	.lg-spacer120 {height: 120px;}
	.lg-spacer90 {height: 90px;}
	.lg-spacer60 {height: 60px;}
	.lg-spacer30 {height: 30px;}
	.lg-spacer15 {height: 15px;}

	.lg-block150 {display: inline-block; width: 150px;}
	.lg-block120 {display: inline-block; width: 120px;}
	.lg-block90 {display: inline-block; width: 90px;}
	.lg-block60 {display: inline-block; width: 60px;}
	.lg-block30 {display: inline-block; width: 30px;}
	.lg-block15 {display: inline-block; width: 15px;}

	.lg-taleft {text-align: left;}
	.lg-tacenter {text-align: center;}
	.lg-taright {text-align: right;}
	.lg-tajustify {text-align: justify;}
}

/* MOBILE */
@media (max-width: 767px) {
	.xs-spacer150 {height: 150px;}
	.xs-spacer120 {height: 120px;}
	.xs-spacer90 {height: 90px;}
	.xs-spacer60 {height: 60px;}
	.xs-spacer30 {height: 30px;}
	.xs-spacer15 {height: 15px;}

	.xs-block150 {display: inline-block; width: 150px;}
	.xs-block120 {display: inline-block; width: 120px;}
	.xs-block90 {display: inline-block; width: 90px;}
	.xs-block60 {display: inline-block; width: 60px;}
	.xs-block30 {display: inline-block; width: 30px;}
	.xs-block15 {display: inline-block; width: 15px;}

	.xs-taleft {text-align: left;}
	.xs-tacenter {text-align: center;}
	.xs-taright {text-align: right;}
	.xs-tajustify {text-align: justify;}
}

html,
body {
    overflow-x: hidden;
}

a,
button {
	transition: all ease 500ms;
	text-decoration: none;
	outline: 0;
}

a:hover,
a:focus,
a:visited {
	text-decoration: none;
	outline: 0;
}

img {
	max-width: 100%;
}

.roboto {
	font-family: 'Roboto', sans-serif;
}

.poppins {
	font-family: 'Poppins', sans-serif;
}

.mx-auto {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
}

.hoverW:hover,
.hoverW:focus {
	color: #fff;
}

.none {
	display: none;
}

.marA {
	margin: auto;
}

.noMar {
	margin-top: 0;
	margin-bottom: 0;
}

.noPad {
	padding-left: 0;
	padding-right: 0;
}

.noPadR {
	padding-right: 0;
}

.uppercase {
	text-transform: uppercase;
}

.strong {
	font-weight: 700;
}

.white {
	color: #fff;
}

.whiteB {
	background-color: #fff;
}

.black {
	color: #000;
}

.blackB {
	background-color: #000;
}

.yellow {
	color: #FFA101;
}

.yellowB {
	background-color: #FFA101;
}

.red {
	color: #A30015;
}

.redB {
	background-color: #A30015;
}

.skin {
	color: #ffe7a5;
}

.skinB {
	background-color: #ffe7a5;
}

/* HEADER */

.logo {
	width: 75px;
	margin: auto;
	transition: all ease 500ms;
}

.menu-link {
	margin-left: 25px;
	margin-right: 25px;
}

.menu-link.active,
.menu-link:hover,
.menu-link:focus {
	color: #fff;
}

.h4 {
	line-height: 25px;
	margin: 0;
}

.bR {
	border-radius: 25px;
}

.howToPlay {
	border-radius: 50px;
	padding: 16px 48px;
	font-size: 16px;
	border: 2px solid #000;
}

.howToPlay:hover,
.howToPlay:focus {
	background-color: #fff;
	color: #000;
}

.fontS17 {
	font-size: 17px;
}

.fontS19 {
	font-size: 19px;
}

.panel-group .panel {
	border-radius: 0;
	box-shadow: none;
}

.panel-default {
	border-color: transparent;
}

.panel-default > .panel-heading {
	background-color: transparent;
	border-color: transparent;
	border-radius: 0;
}

.panel-default > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: transparent;
}

.dIB {
	display: inline-block;
}

.vATop {
	vertical-align: top;
}

.fa-facebook {
	padding-top: 7px;
}

.underline {
	text-decoration: underline;
}

.marT6 {
	margin-top: 6px;
}

.colLW {
	position: relative;
	z-index: 5;
}

.lineH25 {
	line-height: 25px;
}

nav.navbar {
	transition: all ease 750ms;
}

.animated {
	-webkit-animation-duration: 0.8s;
	animation-duration: 0.8s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
}

.animated-1 {
	-webkit-animation-duration: 1.2s;
	animation-duration: 1.2s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
}

.animated-2 {
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
}

.animated-3 {
	-webkit-animation-duration: 3s;
	animation-duration: 3s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
}

.animated-4 {
	-webkit-animation-duration: 4s;
	animation-duration: 4s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
}

.magictime {
	-webkit-animation-duration: 10s;
	-moz-animation-duration: 10s;
	-o-animation-duration: 10s;
	animation-duration: 10s;
	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
}

.magictime-1 {
	-webkit-animation-duration: 5s;
	-moz-animation-duration: 5s;
	-o-animation-duration: 5s;
	animation-duration: 5s;
	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
}

@-webkit-keyframes bounce {
	0%, 100% {
		-webkit-transform: translateY(0);
	}
	50% {
		-webkit-transform: translateY(-15px);
	}
}

@keyframes bounce {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-15px);
	}
}

.bounce {
	-webkit-animation-name: bounce;
	animation-name: bounce;
}

/* WELCOME SECTION */

#welcome {
	position: relative;
	background: rgba(255,161,1,1);
	background: -moz-linear-gradient(left, rgba(255,161,1,1) 0%, rgba(255,161,1,1) 54%, rgba(255,179,0,1) 72%, rgba(255,162,1,1) 88%, rgba(255,162,1,1) 91%, rgba(255,162,1,1) 100%);
	background: -webkit-gradient(left top, right top, color-stop(0%, rgba(255,161,1,1)), color-stop(54%, rgba(255,161,1,1)), color-stop(72%, rgba(255,179,0,1)), color-stop(88%, rgba(255,162,1,1)), color-stop(91%, rgba(255,162,1,1)), color-stop(100%, rgba(255,162,1,1)));
	background: -webkit-linear-gradient(left, rgba(255,161,1,1) 0%, rgba(255,161,1,1) 54%, rgba(255,179,0,1) 72%, rgba(255,162,1,1) 88%, rgba(255,162,1,1) 91%, rgba(255,162,1,1) 100%);
	background: -o-linear-gradient(left, rgba(255,161,1,1) 0%, rgba(255,161,1,1) 54%, rgba(255,179,0,1) 72%, rgba(255,162,1,1) 88%, rgba(255,162,1,1) 91%, rgba(255,162,1,1) 100%);
	background: -ms-linear-gradient(left, rgba(255,161,1,1) 0%, rgba(255,161,1,1) 54%, rgba(255,179,0,1) 72%, rgba(255,162,1,1) 88%, rgba(255,162,1,1) 91%, rgba(255,162,1,1) 100%);
	background: linear-gradient(to right, rgba(255,161,1,1) 0%, rgba(255,161,1,1) 54%, rgba(255,179,0,1) 72%, rgba(255,162,1,1) 88%, rgba(255,162,1,1) 91%, rgba(255,162,1,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffa101', endColorstr='#ffa201', GradientType=1 );
}

#welcome .layer {
	background: url(../../u-files/background.png);
	background-repeat: no-repeat;
	background-position: 120% 0%;
    background-size: 68%;
}

#welcome .layer .container-img {
	position: absolute;
	right: 0;
	bottom: 0;
	background-image: url(../../u-files/app-fm.png);
	background-repeat: no-repeat;
    background-position: 93% -300%;
    background-size: 35%;
    width: 100%;
}

#welcome .app-store {
	margin-top: 15px;
}

#welcome .img-background {
	position: absolute;
    right: 0;
    bottom: -455px;
    width: 1050px;
	animation: fa-spin 100s infinite linear;
}

#welcome .img-app-fm {
	position: absolute;
	right: 0;
	bottom: -150px;
    width: 660px;
}

/* ABOUT SECTION */

#about .bg {
	background: url(../../u-files/viagemnotempo2.png);
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: contain;
	position: relative;
	z-index: 19;
}

#about .logo-y {
	background: url(../../u-files/viagemnotempo1.png);
	background-repeat: no-repeat;
	background-position: 70% 100%;
    background-size: contain;
    display: block;
    width: 345px;
    height: 200px;
}

#about .qr-code {
	background: url(../../u-files/viagemnotempo3.png);
	background-repeat: no-repeat;
    background-position: 0% 100%;
    background-size: contain;
    width: 330px;
    height: 650px;
    position: absolute;
    bottom: 0;
    z-index: 20;
    left: -430px;
    right: 0;
    margin: auto;
}

/* HOW TO PLAY SECTION */

#howToPlay {
	position: relative;
	background: rgba(255,161,1,1);
	background: -moz-linear-gradient(left, rgba(255,161,1,1) 0%, rgba(255,161,1,1) 54%, rgba(255,179,0,1) 72%, rgba(255,162,1,1) 88%, rgba(255,162,1,1) 91%, rgba(255,162,1,1) 100%);
	background: -webkit-gradient(left top, right top, color-stop(0%, rgba(255,161,1,1)), color-stop(54%, rgba(255,161,1,1)), color-stop(72%, rgba(255,179,0,1)), color-stop(88%, rgba(255,162,1,1)), color-stop(91%, rgba(255,162,1,1)), color-stop(100%, rgba(255,162,1,1)));
	background: -webkit-linear-gradient(left, rgba(255,161,1,1) 0%, rgba(255,161,1,1) 54%, rgba(255,179,0,1) 72%, rgba(255,162,1,1) 88%, rgba(255,162,1,1) 91%, rgba(255,162,1,1) 100%);
	background: -o-linear-gradient(left, rgba(255,161,1,1) 0%, rgba(255,161,1,1) 54%, rgba(255,179,0,1) 72%, rgba(255,162,1,1) 88%, rgba(255,162,1,1) 91%, rgba(255,162,1,1) 100%);
	background: -ms-linear-gradient(left, rgba(255,161,1,1) 0%, rgba(255,161,1,1) 54%, rgba(255,179,0,1) 72%, rgba(255,162,1,1) 88%, rgba(255,162,1,1) 91%, rgba(255,162,1,1) 100%);
	background: linear-gradient(to right, rgba(255,161,1,1) 0%, rgba(255,161,1,1) 54%, rgba(255,179,0,1) 72%, rgba(255,162,1,1) 88%, rgba(255,162,1,1) 91%, rgba(255,162,1,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffa101', endColorstr='#ffa201', GradientType=1 );

}

#howToPlay .layer {
	background: url(../../u-files/background.png);
	background-repeat: no-repeat;
	background-position: center;
    background-size: contain;
}

#howToPlay .steps {
	padding: 6px 12px;
	border-radius: 25px;
	font-size: 24px;
}

#howToPlay .google-play {
	width: 44px;
    margin-top: -27px;
}

#howToPlay .minH56 {
	min-height: 56px;
}

#howToPlay .checkpoint {
	background: url(../../u-files/checkpoint.jpg);
	background-repeat: no-repeat;
	background-position: 60% 100%;
    background-size: contain;
	position: relative;
	margin-bottom: -150px;
}

#howToPlay .pin01 {
	position: absolute;
	left: 100px;
	bottom: 150px;
}

#howToPlay .pin02 {
	position: absolute;
	right: 130px;
	bottom: 0;
	z-index: 0;
}

#howToPlay .pin03 {
	position: absolute;
    right: 15px;
	bottom: -160px;
	z-index: 10;
}

#howToPlay h4 {
	line-height: 25px;
}

#howToPlay .pin04 {
	position: absolute;
    right: 250px;
	bottom: 0;
	z-index: 10;
}

#howToPlay .pin05 {
	position: absolute;
    right: 30px;
	bottom: 0;
	z-index: 10;
}

/* PRIZES SECTION */

#prizes .list {
	padding: 6px 12px;
	border-radius: 25px;
	font-size: 18px;
	margin-bottom: 5px;
}

/* REGULATION SECTION */

#regulation .logo-fma {
	background: url(../../u-files/ic_launcher-512.png);
	background-repeat: no-repeat;
	background-position: center;
    background-size: contain;
}

/* FAQS SECTION */

.panel-title a[aria-expanded="true"] {
	color: #ffa101;
}

/* MAPA */

#mapa .return {
	position: absolute;
	left: 50px;
	top: 75px;
	z-index: 100;
}

#mapa .return-link:hover,
#mapa .return-link:focus {
	color: #000;
}

#mapa .map {
	border: none;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
}
