* {
	font-family: 'Oswald', sans-serif;
	box-sizing: border-box;
}

html {
    line-height: 1.2em;
}

main {
	flex: 1 0 auto;
  }

td {
	border-top: 1px solid #E2E9EC;
	border-bottom: 1px solid #E2E9EC;
 }

body {
	min-height: 100vh;
	margin: 0px;
	display: flex;
	background-color: #eee;
	transition: color 0.3s ease, background-color 0.3s ease;
	flex-direction: column;
	grid-template-rows: 120px 1fr 60px;
	grid-template-columns: 1fr;
	grid-template-areas:
		"cabecalho"
		"principal"
		"rodape";
}

body i {
	color: #000;
}

body nav {
	background-color: #fff;
}

.container {
    width: 100%;
    max-width: 1366px;
}

.cabecalho {
	grid-area: cabecalho;
	background-color: #1867c0;
	color: white;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: left;
	padding-bottom: 10px;
	padding-left: 10px;
	z-index: 1;
	box-shadow: 0px 4px 9px -2px rgba(0,0,0,0.75);
}

.cabecalho > h1 {
	margin: 0px;
	font-weight: 300;
	font-size: 2.8rem;
}

.principal {
	grid-area: principal;
	height: calc(100vh - 180px);
	background-color: white;
	padding: 20px;
}

.conteudo {
	position: relative;
	height: 100%;
	overflow-y: scroll;
	background-color: #fff;
	padding: 20px;
	box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.2);
}

.rodape {
	grid-area: rodape;
	background-color: #fff;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	font-size: 1.2rem;
	padding-right: 20px;
	color: #444;
}

.iframe-container {
 position: relative;
 width: 100%;
 height: 0;
}

.investing {
 position: relative;
 padding-bottom: 90.75%; 
 border-radius: 3px;
 height: 100%;
 overflow: hidden;
 box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.12), 2px 2px 2px 0 rgba(0, 0, 0, 0.24);
}

.iframe-container iframe{
 position: absolute;
 top:0;
 left: 0;
 width: 100%;
 height: 100%;
}

.modulo {
    flex-basis: 32%;
    margin-bottom: 20px;
    border-radius: 5px;
}

.modulo > h3 {
    margin: 0px;
    color: #fff;
    font-weight: 300;
    font-size: 1.5rem;
    padding: 10px 20px;
    background-color: #1867c0;
}

.redBg {
    background-color: #ff4a4a;
}

.greenBg {
    background-color: #39d331;
}

.greenFont {
    font-weight: bold;
    color: #39d331;
}

.redFont {
    font-weight: bold;
    color: #FF0000;
}

.tabs .tab a:hover, .tabs .tab a.active {
    background-color: transparent;
    color: #FF0000;
}

.tabs .indicator {
    position: absolute;
    bottom: 0;
    height: 2px;
    background-color: #ff0000;
    will-change: left, right;
}

.tabs .tab a {
    color: #000;
    width: 100%;
    height: 100%;
    padding: 0 0px;
    font-size: 12px;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-transition: color .28s ease, background-color .28s ease;
    transition: color .28s ease, background-color .28s ease;
}