/* ==========================================================================
   Normatização CSS
   ========================================================================== */

html {
	margin: 0;
	padding: 0;
	background: #fff;
	
	scroll-behavior: smooth;
}

:target {
	scroll-margin-top: 1em;
}

body {
    font-size: 1.2em;
    line-height: 1.5;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #444;
	margin: 0;
	padding-bottom: 0;
}

*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

a {
    color: #0093dd;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}


/*====
Estilos Principais
==== */

img,
picture,
video,
embed {
    max-width: 100%;
}

/*embed responsivo*/
.embed-container { 
	position: relative; 
	padding-bottom: 56.25%;  
	overflow: hidden; 
	max-width: 100%; 
	height: auto;
	margin-top: 30px;
	margin-bottom: 30px; 
} 

.embed-container iframe, .embed-container object, .embed-container embed {
	position: absolute; 
	top: 0; 
	left: 0; 
	width: 100%; 
	height: 100%; 
}
/*embed responsivo*/

h1  {
    color: #000010;
	font-family: 'Bitter', serif;
}

h2 {
    color: #000010;
	font-family: 'Bitter', serif;
}

p {
    color: #222;
}

.footer {
    width: 100%;
	font-size: .8em;
	background-color: #000010;
	border-top: 1px solid #fff;
    margin-top: 0;
	padding: 1.5em 0;
}

.footer p {
    margin-bottom: 0;
	color: #fff;
	text-align: center;
}

.footer a {
	color: #fff;
}


/*====
OUTRAS CLASSES
====*/
.clearfix:before,
.clearfix:after {
    content: " "; 
    display: table; 
}

.clearfix:after {
    clear: both;
}

.clearfix {
    *zoom: 1;
}

.box {
	padding: 2em 5em;
}

.boxvideo {
	padding: 0 5em;
}

/*BOTOES*/
.but {
	display: inline-block;
	background-color: #ccc;
	color: #444;
	padding: 10px 20px;
	text-decoration: none !important;
	font-size: 1.6em;
	
	box-shadow: 0 5px 6px #000;
	-moz-box-shadow: 0 5px 6px #000;
	
	border-radius: 10px;
}
		
.but:hover {
	background-image: linear-gradient(to bottom, transparent, rgba(0,0,0,.15));
	background-image: -webkit-linear-gradient(to bottom, transparent, rgba(0,0,0,.15));
	background-image: -moz-linear-gradient(to bottom, transparent, rgba(0,0,0,.15));
	background-image: -o-linear-gradient(to bottom, transparent, rgba(0,0,0,.15));
	cursor: pointer;
	transition: all 2s;
}

.but-ok {
	background-color:#0093dd;
	color: #fff;
}

.but-cancel {
	background-color:#F60;
	color: #fff;
}

.but-mini {
	padding: 5px 10px;
}

.btn-secondary {
	background-color: #000010;
	border: none;
}

.btn-secondary:hover {
	background-color: #000066;
	
	transition: all 2s;
}

/*BOTÕES*/


/* ==========================================================================
    Sessões
   ========================================================================== */
.section-title {
	width:100%;
	background-image: linear-gradient(to right, transparent, #000010, #000010, transparent);
	text-align: center;
	font-family: 'Bitter', serif;
	font-size: 2.2em;
	font-weight: bold;
	color: #fff;
	margin: 1em 0;
}

/* ==========================================================================
    Section Institucional
   ========================================================================== */
.institucional {
	text-align: center;
	background-color: #fff;
}

/* ==========================================================================
    Section Copy
   ========================================================================== */
.copy {
	background: #ccc;
}

/* ==========================================================================
    Section Investimento
   ========================================================================== */
.investimento {
	background: #ccc;
	text-align: center;
}

.investimento .valor {
	font-size: 2.0em;
}

/* ==========================================================================
    Section Comprar
   ========================================================================== */
.comprar {
	text-align: center;
}

.comprar .valor {
	font-size: 3.0em;
	color: #000;
	font-family: 'Bitter', serif;
}

/* ==========================================================================
    Section Aula
   ========================================================================== */
.aula {
	border-top: 1px solid #000;
	text-align: center;
}


/*------------------------------------------------------
	RESPONSIVE STYLES 
--------------------------------------------------------*/
/*bootstrap lg*/
@media (max-width: 1199px) {
	
}

/*bootstrap md*/
@media (max-width: 991px) {
	
  
}

/*bootstrap sm*/
@media (max-width: 767px) {
	.box {
		padding: 1em 10px;
	}
	
	.video {
		padding: 0;
	}
	
}

@media (max-width: 500px) {
	
}