﻿body {
	margin: 0;
	background: #00005c;
	font-family: 'Fjalla One', sans-serif;
	font-size: 15px;
	letter-spacing: 1px;
}

/*FONT VARIATION*/



/*links*/
a:link{
	color: inherit;
	font-size: inherit;
	font-weight: inherit;
	text-decoration: none;
}

a:visited {
	color: inherit;
	font-size: inherit;
	font-weight: inherit;
	text-decoration: none;
}

a:hover {
	color: inherit;
	font-size: inherit;
	font-weight: inherit;
	text-decoration: underline;
}

a:active {
	color: inherit;
	font-size: inherit;
	font-weight: inherit;
	text-decoration: none;
}


/*dark font color*/
.positive-font {
	color: #000 !important;
	text-decoration: none;
}


/*light font color*/
.negative-font {
	color: #fff !important;
	text-decoration: none;
}

.red-font {
	color: #c81915 !important;
	text-decoration: none;
}

/* bold decoration */
.bold-font {
	font-weight: bold !important;
}

h1 {
	font-size: 33px !important;
}

h2 {
	font-size: 25px !important;

}

h3 {
	font-size: 18px;
}

h4{
	font-size:16px;
	font-weight: bold;
}

p{
	text-align:justify;
	font-family: 'Signika', sans-serif;
	font-size: 16px;
	letter-spacing: 1px;
}

/* IMAGES */
img {
	border: none;
	max-width: 100% !important;
	max-height: auto !important;

}


/* DIVS AND CONTAINERS*/


.container {
	max-width: 1200px;
	margin: 0 auto;
}


.header-container {
	max-width: 100%;
	position: relative;
	min-height: 190px;
}


.logo {
	display: inline-block;
	vertical-align: top;
	width: 75%;
	padding: 20px 5% 20px 0;
}

.telefones  {
	display: inline-block;
	vertical-align: top;
	width: 20%;
	text-align: right;
	padding: 20px 0;
}

@media screen and (max-width: 1000px) {
	.logo {
		display: block;
		width: 100%;
		padding: 0;
		text-align: center;
	}

	.telefones  {
		display: block;
		vertical-align: top;
		width: 100%;
		text-align: center;
	}
}

.img-logo {
	max-width: 200px !important;
	padding: 0 20px 0 0;
}



.contato {
	display: inline-block;
	width: auto;

}

.fundo-cabacalho{
	max-width: 100%;
	position: relative;
	background-color: #fff;
}

@media screen and (max-width: 1240px) {
	.fundo-cabacalho {
		max-width: 95%;
		padding-left: 2.5%;
		padding-right: 2.5%;
	}
}

.fundo-corpo{
	width: 95%;
	position: relative;
	background-color: #fff;
	padding: 20px 2.5%;
}

.barra-botoes{
	width: 100%;
	position: relative;
	background-color: #000922;
	min-height: 60px;
}

.botoes{
	display: inline-block;
	padding: 20px 15px 20px 15px;
	color: #fff;
	text-decoration: none;
	-webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.botoes:hover{
	display: inline-block;
	text-decoration: none;
	background-color: #0B1940;
	cursor: pointer;
	-webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;

}

.slider-container{
	width: 100%;
	height: 550px;
	overflow: hidden;
	position: relative;
	text-align: center;
	background-position: center center;
	background-size: cover;
	margin-bottom: 7px;
	position: relative;
}
/* começo menu*/
$content-width: 1000px;
$breakpoint: 800px;
$nav-height: 70px;
$nav-background: #262626;
$nav-font-color: #ffffff;
$link-hover-color: #2581DC;

.navigation {
  height: $nav-height;
  background: $nav-background;
}

.brand {
  position: absolute;
  padding-left: 20px;
  float: left;
  line-height: $nav-height;
  text-transform: uppercase;
  font-size: 1.4em;
  a,
  a:visited {
    color: $nav-font-color;
    text-decoration: none;
  }
}


.nav-container {
  max-width: $content-width;
  margin: 0 auto;
}


nav {
  float: right;
  ul {
    list-style: none;
    margin: 0;
    padding: 0;
    li {
      float: left;
      position: relative;
      a,
      a:visited {
        display: block;
        padding: 0 20px;
        line-height: $nav-height;
        background: $nav-background;
        color: $nav-font-color;
        text-decoration: none;
        &:hover {
          background: $link-hover-color;
          color: $nav-font-color;
        }
        &:not(:only-child):after {
          padding-left: 4px;
          content: ' ▾';
        }
      }
      ul li {
        min-width: 190px;
        a {
          padding: 15px;
          line-height: 20px;
        }
      }
    }
  }
}


.nav-dropdown {
  position: absolute;
  display: none;
  z-index: 1;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
}

/* Mobile navigation */

.nav-mobile {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  background: $nav-background;
  height: $nav-height;
  width: $nav-height;
}
@media only screen and (max-width: $breakpoint) {

  .nav-mobile {
    display: block;
  }
  nav {
   width: 100%;
    padding: $nav-height 0 15px;
    ul {
      display: none;
      li {
        float: none;
        a {
          padding: 15px;
          line-height: 20px;
        }
        ul li a {
          padding-left: 30px;
        }
      }
    }
  }
  .nav-dropdown {
    position: static;
  }
}
@media screen and (min-width: $breakpoint) {
  .nav-list {
    display: block !important;
  }
}
#nav-toggle {
  position: absolute;
  left: 18px;
  top: 22px;
  cursor: pointer;
  padding: 10px 35px 16px 0px;
  span,
  span:before,
  span:after {
    cursor: pointer;
    border-radius: 1px;
    height: 5px;
    width: 35px;
    background: $nav-font-color;
    position: absolute;
    display: block;
    content: '';
    transition: all 300ms ease-in-out;
  }
  span:before {
    top: -10px;
  }
  span:after {
    bottom: -10px;
  }
  &.active span {
    background-color: transparent;
    &:before,
    &:after {
      top: 0;
    }
    &:before {
      transform: rotate(45deg);
    }
    &:after {
      transform: rotate(-45deg);
    }
  }
}

article {
  max-width: $content-width;
  margin: 0 auto;
  padding: 10px;
}

/*fim menu*/
.content-container {
	max-width: 100%;
	padding: 20px;
	margin: 0 auto;
	background: #fff;
}

.container25 {
	width: 25%;
	vertical-align: top;
	display: inline-block;
	height: 300px;
	background-position: center center;
	background-size: 100%;
	margin-bottom: 7px;
	position: relative;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
}
.container25:hover {
	background-size: 110%;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
}
.container50 {
	width: 50%;
	vertical-align: top;
	display: inline-block;
	height: 300px;
	background-position: center center;
	background-size: 100%;
	margin-bottom: 7px;
	position: relative;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
}
.container50:hover {
	background-size: 110%;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
}
.container33 {
	width: 33.33333%;
	vertical-align: top;
	display: inline-block;
	height: 300px;
	background-position: center center;
	background-size: 100%;
	margin-bottom: 7px;
	position: relative;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
}
.container33:hover {
	background-size: 110%;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
}
.container25-2 {
	width: 25%;
	vertical-align: top;
	display: inline-block;
	height: 500px;
	background-position: center center;
	background-size: cover;
	margin-bottom: 7px;
	position: relative;
}
.container75 {
	width: 75%;
	vertical-align: top;
	display: inline-block;
	height: 500px;
	background-position: center center;
	background-size: cover;
	margin-bottom: 7px;
	position: relative;
}
.container100 {
	width: 100%;
	vertical-align: top;
	height: 476px;
	background-size: cover;
	background-position: center center;
	position: relative;
}
.videoyoutube{
	float:right;
	padding: 5%;
}
.container100-360 {
	width: 100%;
	vertical-align: top;
	height: 360px;
	background-size: cover;
	background-position: center center;
	position: relative;
}
.container100-interno {
	width: 100%;
	vertical-align: top;
	background-size: cover;
	background-position: center center;
	position: relative;
	margin-bottom: 10px;

}

.container75-interno {
	width: 70%;
	vertical-align: top;
	display: inline-block;
	background-position: center center;
	background-size: cover;
	margin-bottom: 7px;
	position: relative;
	padding: 0 0 0 2%;
}

.container-preto{
	width: 95%;
	bottom: 0;
	padding: 15px 2.5%;
	position: absolute;
	text-align: center;
	background-color: rgba(0,0,0,0.5);
}
.barra-divisao{
	width: 100%;
	position: relative;
	background-color: #000922;
	padding: 5px 0;
}
.footer {
	width: 100%;
	position: relative;
	background-color: #000922;

}

.footer-container{
	max-width: 1200px;
	margin: 0 auto;
	padding: 30px 20px;
}
.footer-colunas{
	width: 20%;
	vertical-align: top;
	display: inline-block;
	padding: 0 2%;
}

@media screen and (max-width:  800px) {
	.footer-colunas {
		width: 96%;
		padding: 30px 2%;
		display: block;
	}
}

.webtagger {
	width: 100%;
	text-align: center;
	padding: 15px;
}



@media screen and (min-width: 600px) and (max-width: 975px) {

.container25 {
	width: 50%;
	position: relative;
}
.container50 {
	width: 100%;
	position: relative;
}
.container33 {
	width: 50%;
	position: relative;
}

}

@media screen and (min-width: 1px) and (max-width: 599px) {
	.container25 {
	width: 100%;
	position: relative;
	height: 200px;
}
.container50 {
	width: 100%;
	position: relative;
	height: 200px;
}
.container50Contato{
	height: 300px !important;
}
.container33 {
	width: 100%;
	position: relative;
	height: 200px;
}
.container100 {
	width: 100%;
	height: 276px;
	position: relative;
}
.slider{
	width: 100%;
	height: 350px;
}
}

@media screen and (max-width: 650px) {
	iframe {
		width: 95%;
		margin: 0 2.5%;
	}
}

textarea, input, select, input[type=text], input[type=button], input[type=submit]{
	border: 1px solid #ccc;
}

textarea, input, select, input[type=text], input[type=button], input[type=submit]:focus {
  	outline-width: 0;
	width: 100%;
	padding: 10px;
	margin-bottom: 10px;
	font-family: inherit;
}

input[type=button], input[type=submit] {
	color: #fff;
	font-size: 19px;
	padding: 15px;
	border: none;
	font-family: inherit;
	background: #000922;
	cursor: pointer;
	-webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}

input[type=button], input[type=submit]:hover {
	background: #ad181b;
	color: #fff;
}
