@charset "utf-8";
/* CSS Document */
/* ----------------------------- */
/*      BASIC SETUP              */
/* ----------------------------- */
*{ 
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html, body {
	color: #573275;
	font-family: 'Myriad Pro', sans-serif;
	font-size: 24px;
	font-weight: 400;
	text-rendering: optimizeLegibility;
    overflow-x: hidden;	
}
.clearfix {
    zoom: 1;
}
.clearfix:after {
    content: '.';
    clear: both;
    display: block;
    height: 0;
    visibility: hidden;
}
/* ----------------------------- */
/*      REUSABLE COMPONENTS      */
/* ----------------------------- */
h1, h2, h3 {
    font-weight: 300;
}
h3 {
	text-align: center;
	color: #573376;
}
p {
	font-size: 100%;
	color: #573275;
	align-content: center;
	text-align: center;
}
.box{ padding: 1%; }
.image{ 
	display: block;
	margin: 0 auto;
	margin-bottom: 20px;
	max-height: 230px;
	width: auto;
	height: auto;
}
.icon { 
	display: block;
	margin-left: auto;
	margin-right: auto;
}
/* -----LINKS------------------- */
a:link, a:visited {
	color: #FFFFFF;
    text-decoration: none;
	transition: border-bottom 0.2s, color 0.2s;
	font-weight: 700;
}
/* ---------- BUTTONS ---------- */
.btn { float: right; }
.btn:link, .btn:visited, input[type=submit]{
	display: inline-block;
	padding: 6px 5px 3px 5px;
	font-weight: 300;
	text-decoration: none;
	border-radius: 8px;
	transition: background-color 0.2s, border 0.2s, color 0.2s;
	background-color: #573275;
	color: #fff;
	border: 1px solid #ccc;
}
.btn:hover, .btn:active,
input[type=submit]:hover, input[type=submit]:active{
	background-color: #674B7E;
}
/* ----------------------------- */
/*      HEADER                   */
/* ----------------------------- */
header {
    background-attachment: fixed;    
    background-size: cover;
    background-position: center;
    height: 100px;
}
.header {
	height: 100vh;
}
.logo {
    height: 70px;
    width: auto;
    float: right;
    margin: 20px 8px 0 0;
}
video {
    position: fixed;
    width: 100%;
    height: auto;
	z-index: -1;
}
.bg {
    position: fixed;
    top: 0;
    background-color: #C5C5C5;
    background: rgba(19, 19, 19, 0.05);   
    color: #FFFFFF;
    width: 100%;
    padding-bottom: 10px;
}
.bg-dark{
	position: fixed;
	top: 0;
	background-color: #F5F5F5;
	width: 100%;
	padding-bottom: 10px;
}
/* -------NAV------------------- */
.main-nav{
    float: left;
    list-style: none;
    margin-top: 45px;
}
.main-nav li {
    display: inline-block;
    margin-left: 40px;
}
.main-nav li a:link, .main-nav li a:visited  {
    border-bottom: 2px solid transparent;
    transition: border-bottom 0.4s;
    padding-bottom: 2px;
}    
.main-nav li a:hover, .main-nav li a:active{
    border-bottom: 2px solid #A89439;
    padding-bottom: 2px;
}
.phrase {
	position: absolute;
	width: 1140px;
	top: 45%;
	left: 50%;
	transform: translate(-50%, -50%);
    text-align: center;
}
.main-nav-dark{	
    float: left;
    list-style: none;
    margin-top: 45px;
	z-index: 99999;
}
.main-nav-dark li {
    display: inline-block;
    margin-left: 40px;
}
.main-nav-dark li a:link, .main-nav-dark li a:visited  {
    border-bottom: 2px solid transparent;
    transition: border-bottom 0.4s;
    padding-bottom: 2px;
	color: #573376;
}    
.main-nav-dark li a:hover, .main-nav-dark li a:active{
    border-bottom: 2px solid #753CED; /* Somente para testar as cores */
    padding-bottom: 2px;
}
/* sticky navigation */
.sticky {
	position:static;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #AF2224;
    box-shadow: 0 2px 2px 0 #efefef;
    z-index: 99999;
}
.sticky .main-nav{ margin-top: 18px; }
.sticky .main-nav li a:link, 
.sticky .main-nav li a:visited  {
    padding: 16px 0;
    color: #555;
}
.sticky .logo { display: none; }
.sticky .logo { display: block; }
/* blockquotes & citations */
blockquote{
    font-size: 300%;
	color: #fff;
}
blockquote:before {
    content: "\201C";
    font-size: 230%;
	color: #fff;
}
cite{
    font-size: 90%;
    margin-top: 25px;
    display: block;
    float: right;
    margin-right: 65px;
    border-bottom: 2px solid #A89439;
}
/* ----------------------------- */
/*      SOBRE                    */
/* ----------------------------- */
.sobre{
	padding: 80px 0 ;
	position: static;
	background-color: #E3E3E3;	
}
.sobre h1, h2, p{
	padding: 0 15%;
	margin-bottom: 55px;
	color: #573275;
}
.sobre h3 {margin-top: 25px;}
/* ----------------------------- */
/*      SOLUÇÕES                 */
/* ----------------------------- */
.produtos {	
	padding: 80px 0;
	position: static;
	background-color: #D8D8D8;
	width: 100%;
	height: auto;	
}
.produtos h1, h2, p {
	padding: 0 15%;
	color: #573275;
}
.produtos col {
	padding: 0 80%;
}
/* ----------------------------- */
/*      CONTATO                  */
/* ----------------------------- */
.contato{
	padding: 50px 0;
	position: relative;
	background-color: #E3E3E3;
}
.contato p, h2, label {	
	color: #573275;
}
.contato h1 {
	padding: 0 15%;
}
.formulario{
	width: 45%;
	margin: 0 auto;	
}
input[type=text],input[type=email], select, textarea {
    width: 100%;
    padding: 7px;
    border-radius: 3px;
    border: 1px solid #ccc;
}
textarea{
    height: 150px;
}
*:focus{
    outline: none
}