@charset "utf-8";
/* CSS Document */
/******************/
/******************/

/******************/
/******************/
* {
	margin:0;
	padding:0;
}
HTML {
	height:100%;
	 -webkit-text-size-adjust:100%;
	 -ms-text-size-adjust:100%;
    font-size: 15px;
}
/* SMARTPHONES */
@media screen and (max-width: 767px) {
    HTML {
        font-size: 13px;
    }
}
BODY {
	width:100%;
	min-height:100%;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
	color:#231f20;
	background-color:#e7e5d9;
    background-image: url("images/fundo.png");
}
a {
	outline:0;
	color:inherit;
	cursor: pointer;
}
a:link {
	text-decoration:none;
}
a:visited {
	text-decoration:none;
}
a:hover {
	text-decoration:none;
}
a:active {
	text-decoration:none;
}

:focus {
	outline-color: transparent;
	outline-style: none;
}
BUTTON:hover {
	text-decoration:none;
}
IMG {
	border:none;
}
FIELDSET {
	border:none;
	border-color:transparent;
}
*:before, *:after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
button{
	cursor: pointer;
}
INPUT::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	text-transform: uppercase;
}
INPUT::-moz-placeholder { /* Firefox 19+ */
	text-transform: uppercase;
}
INPUT:-ms-input-placeholder { /* IE 10+ */
	text-transform: uppercase;
}
INPUT:-moz-placeholder { /* Firefox 18- */
	text-transform: uppercase;
}
TEXTAREA::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	text-transform: uppercase;
}
TEXTAREA::-moz-placeholder { /* Firefox 19+ */
	text-transform: uppercase;
}
TEXTAREA:-ms-input-placeholder { /* IE 10+ */
	text-transform: uppercase;
}
TEXTAREA:-moz-placeholder { /* Firefox 18- */
	text-transform: uppercase;
}
/******************/
/******************/
/**********************/

@media screen and (max-width: 1200px) {
	
}
/* TABLETS */
@media screen and (max-width: 970px) {
	
}
/* SMARTPHONES */
@media screen and (max-width: 767px) {
	
}
.clearfix::after {
    content: "";
    clear: both;
    display: table;
}
.mobile_only{
	display: none !important;
}
.desk_only{
	display: block !important;	
}
.mobile_only-f{
	display: none !important;
}
.desk_only-f{
	display: flex !important;	
}
/* SMARTPHONES */
@media screen and (max-width: 767px) {
    .mobile_only{
        display: block !important;
    }
    .desk_only{
        display: none !important;	
    }	
    .mobile_only-f{
        display: flex !important;
    }
    .desk_only-f{
        display: none !important;	
    }	
}
.main {
	width:100%;
	height:auto;
	min-height:100vh;
	position:relative;
}
.img_cover{
	background-repeat:no-repeat;
	background-position:center center;
	background-size: cover;
}
.img_contain{
	background-repeat:no-repeat;
	background-position:center center;
	background-size: contain;
}
.img_res{
	width:100%;
	height:auto;
}
.no_margin{
	margin: 0% !important;
}
/************************/
/************************/
section{
	width:100%;
	height:auto;
	position:relative;
}
.block{
	width:100%;
	height:auto;
	position:relative;
}
.row{
    display: flex;
    flex-wrap: wrap;
}
.row_table{
    display: flex;
    flex-wrap: nowrap;
}
.block-auto{
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
}
.block_90{
	width:90%;
	margin-left: 5%;
}
.block_95{
	width:95%;
	margin-left: 2.5%;
}
.block_80{
	width:80%;
	margin-left: 10%;
}
.full_height{
	min-height: 100vh;
}
.wraper{
	width:calc(100% - 30px);
	max-width:calc(1200px - 30px);
	padding: 0 15px;
	margin:0 auto;
}
.block_row{
	width:100%;
	height:auto;
	position:relative;
}
.block_row::after {
    content: "";
    clear: both;
    display: table;
}
.block_col{
	position:relative;
	float:left;
	min-height: 20px;
}
.espaco_80{
	padding: 40px 0;
}
.block_75{
	width:75%;
}
.block_66{
	width:66.66%;
}
.block_50{
	width:50%;
}
.block_33{
	width:33.33%;
}
.block_25{
	width:25%;
}
/* TABLETS */
@media screen and (max-width: 970px) {
    .block_75{
	width:66.66%;
    }
    .block_66{
        width:50%;
    }
    .block_25{
        width:33.33%;
    }
    .block_50.breackTablet{
        width:100%;
    }
	
}
/* SMARTPHONES */
@media screen and (max-width: 767px) {
    .block_80{
        width:100%;
        margin-left: 0;
    }
    .block_95{
        width:100%;
        margin-left: 0;
    }
    .block_90{
        width:100%;
        margin-left: 0;
    }
    .block_75{
        width:100%;
    }
    .block_66{
        width:100%;
    }
    .block_50{
        width:100%;
    }
    .block_33{
        width:100%;
    }
    .block_25{
        width:50%;
    }
	
}
/* SMARTPHONES */
@media screen and (max-width: 467px) {
    .block_25{
        width:100%;
    }
	
}
.flex{
	display: flex;
}
/***/
.flex-hl-left{
    justify-content: flex-start;
}
.flex-hl-center{
    justify-content: center;
}
.flex-hl-right{
    justify-content: flex-end;
}
.flex-hl-space{
    justify-content: space-between;
}
.flex-hl-space-eq{
    justify-content: space-evenly;
}
/***/
.flex-vl-top{
    align-items: flex-start;
}
.flex-vl-center{
    align-items: center;
}
.flex-vl-bottom{
    align-items: flex-end;
}
.flex-vl-stretch {
    align-items: stretch;
}
/***/
.flex-wrap {
    flex-wrap: wrap;
}
/***/
.flex-grid {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.flex-grid-eq {
  display: flex;
  flex-flow: row wrap;
    justify-content: space-evenly;
}
.flex-grid::after {
  content: "";
  flex: auto;
}
/* SMARTPHONES */
@media screen and (max-width: 767px) {
    .flex{
        flex-wrap: wrap;
    }
}
/***********************/
/***********************/
.ba-mgn-100-tp{
	margin-top: 100px;
}
.ba-mgn-80-tp{
	margin-top: 80px;
}
.ba-mgn-801-tp{
	margin-top: 80px;
}
.ba-mgn-60-tp{
	margin-top: 60px;
}
.ba-mgn-40-tp{
	margin-top: 40px;
}
/*****/
.ba-mgn-100-bt{
	margin-bottom: 100px;
}
.ba-mgn-80-bt{
	margin-bottom: 80px;
}
.ba-mgn-60-bt{
	margin-bottom: 60px;
}
.ba-mgn-40-bt{
	margin-bottom: 40px;
}
@media screen and (max-width: 1100px) {
    .ba-mgn-100-tp{
        margin-top: 90px;
    }
    .ba-mgn-80-tp{
        margin-top: 70px;
    }
    .ba-mgn-60-tp{
        margin-top: 50px;
    }
    .ba-mgn-40-tp{
        margin-top: 30px;
    }
    /*****/
    .ba-mgn-100-bt{
        margin-bottom: 90px;
    }
    .ba-mgn-80-bt{
        margin-bottom: 70px;
    }
    .ba-mgn-60-bt{
        margin-bottom: 50px;
    }
    .ba-mgn-40-bt{
        margin-bottom: 30px;
    }
	
}
/* TABLETS */
@media screen and (max-width: 970px) {
    .ba-mgn-100-tp{
        margin-top: 80px;
    }
    .ba-mgn-80-tp{
        margin-top: 60px;
    }
    .ba-mgn-60-tp{
        margin-top: 40px;
    }
    .ba-mgn-40-tp{
        margin-top: 20px;
    }
    /*****/
    .ba-mgn-100-bt{
        margin-bottom: 80px;
    }
    .ba-mgn-80-bt{
        margin-bottom: 60px;
    }
    .ba-mgn-60-bt{
        margin-bottom: 40px;
    }
    .ba-mgn-40-bt{
        margin-bottom: 20px;
    }
	
}
/* SMARTPHONES */
@media screen and (max-width: 767px) {
    .ba-mgn-100-tp{
        margin-top: 60px;
    }
    .ba-mgn-80-tp{
        margin-top: 40px;
    }
    .ba-mgn-801-tp{
        margin-top: 60px;
    }
    .ba-mgn-60-tp{
        margin-top: 25px;
    }
    .ba-mgn-40-tp{
        margin-top: 10px;
    }
    /*****/
    .ba-mgn-100-bt{
        margin-bottom: 60px;
    }
    .ba-mgn-80-bt{
        margin-bottom: 40px;
    }
    .ba-mgn-60-bt{
        margin-bottom: 25px;
    }
    .ba-mgn-40-bt{
        margin-bottom: 10px;
    }
	
}

/************************/
/************************/
/************************/

header {
    display: block;
    position: relative;
}

/************************/
/************************/
footer{
    display: block;
    position: relative;
    padding: 20px 0 0px 0;
}
/*****************/
/*****************/
/*****************/
.titulo{
	padding: 4rem 0;
    background-color: #f5f5f5;
}
.titulo H2{
	font-size: 5rem;
	font-weight: bold;
	padding-bottom: 0.5rem;
}
.titulo H3{
	font-size: 1.3rem;
	font-weight: 300;
	padding-bottom: 0.8rem;
}
/***********************/
/***********************/
.loading{
	width: 100%;
	height: auto;
	min-height: 250px;
	background-repeat: no-repeat;
	background-image: url(images/loading.gif);
	background-position: center center;
}
/************************/
/************************/
/************************/
/************************/
.main-page{
	min-height:100vh;
}
.block-white{
    background-color: #fff;
}
.header-cont{
    padding-top: 40px;
}
.header-1{
    width: calc(65% - 20px);
    height: auto;
    padding-left: 20px;
    padding-top: 20px;
}
.header-2{
    width: 35%;
    height: auto;
}
.header-logo{
    
}
.logo{
    position: relative;
    width: 95%;
    height: 151px;
}
.logo h1 a{
    position: relative;
    display: block;
    float: left;
    width: 95%;
    height: 151px;
    overflow: hidden;
    text-indent: -1500px;
    background-image: url("images/logo.svg");
	background-repeat:no-repeat;
	background-position:center center;
	background-size: contain;
}
.header-texto{
    position: relative;
    width: 90%;
    height: auto;
}
.header-texto-wraper{
    width: 100%;
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-top: -20px;
}
.header-texto-logo{
    width: 60px;
    height: auto;
    position: relative;
}
.header-texto-cont{
    width: calc(100% - 110px);
    height: auto;
    position: relative;
}
.header-texto-cont P{
    font-size: 1.2rem;
    line-height: 1.6rem;
    margin-bottom: 1rem;
    text-align: justify;
}
.header-2 P{
    text-align: center;
}
#container{
    position: relative;
    min-width: 250px;
    min-height: 250px;
    height: 20rem;
}
.anychart-credits{
    display: none;
}
.home-pie-font{
    width: auto;
    height: auto;
    position: absolute;
    bottom: 5px;
    right: 5rem;
}
.home-pie-font P{
    color: #989898;
    font-size: 0.7rem;
}
/* SMARTPHONES */
@media screen and (max-width: 767px) {
    .header-cont{
        padding-top: 20px;
    }
    .logo{
        height: 81px;
        margin-bottom: 30px;
    }
    .logo h1 a{
        height: 81px;
    }
    .header-1{
        width: 100%;
        padding-left: 0;
        padding-bottom: 120px;
    }
    .header-2{
        width: 100%;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }
    .header-texto{
        width: 100%;
    }
    .header-texto-wraper{
        top: -15px;
    }
    .header-texto-logo{
        width: 45px;
    }
    .header-texto-cont{
        width: calc(100% - 60px);
    }
}
/**********/
/**********/
.home-energias-main{
    padding: 25px 0 5px 0;
}
.home-energias-item{
    width: calc(33% - 3.3333333px);
    margin-bottom: 10px;
}
.home-energias-item-click{
    cursor: pointer;
}
.home-energias-item:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.home-it-cont-layer{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.85;
}
.home-energias-item:hover .home-it-cont-layer{
    opacity: 0.7;
}
.home-it-cont{
    position: absolute;
    width: 100%;
    height: auto;
    top: calc(50% - 1.5rem);
}
.home-it-cont H3{
    text-align: center;
    font-weight: normal;
    font-size: 3rem;
    position: relative;
    text-transform: uppercase;
}
.home-it-subtitulo{
    display: block;
    position: relative;
    margin-top: 1rem;
}
.home-it-subtitulo h5{
    display: inline-block;
    padding: 0.6rem 1rem;
    border-radius: 1.5rem;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 300;
    color: #fff;
}
.hm-it-end{
    padding: 2rem;
    position: relative;
}
.hm-it-end h3{
    color: #396274;
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
}
.hm-it-end P{
    color: #396274;
    font-size: 1.3rem;
    text-align: center;
}
@media screen and (max-width: 970px) {
    .home-energias-item{
        width: calc(50% - 5px);
    }
}
@media screen and (max-width: 767px) {
    .home-energias-item{
        width: calc(100%);
    } 
}
/*********/
/*********/
.home-middle{
    padding: 50px 0 40px 0;
}
.home-middle H2{
    font-size: 3rem;
    font-weight: 300;
    max-width: 90%;
}
.home-middle H4{
    font-size: 1.4rem;
    font-weight: 300;
    max-width: 90%;
    margin-left: 10%;
    text-align: justify;
}
/*********/
.home-middle-list{
    padding-bottom: 50px;
}
.home-middle-it{
    position: relative;
    width:  calc(50% - 22px);
    height: auto;
    border: 1px solid #000;
    border-radius: 2rem;
    margin-bottom: 25px;
}
.hm-md-header{
    padding: 0.9rem 0;
    border-bottom: 1px solid #000;
}
.hm-md-header P{
    font-size: 1.3rem;
    font-weight: 400;
    padding: 0 1.5rem;
}
.hm-md-cont{
    padding: 0.9rem 0;
    border-bottom: 1px solid #000;
}
.hm-md-cont P{
    font-size: 0.9rem;
    line-height: 1.3rem;
    font-weight: 300;
    padding: 0 1.5rem;
}
.hm-md-footer{
    align-items: stretch;
}
.hm-md-footer-title{
    width: calc(70% - 2px);
    border-right: 1px solid #000;
}
.hm-md-footer-title P{
    font-size: 0.9rem;
    line-height: 1.3rem;
    font-weight: bold;
    padding: 0 1.5rem;
}
.hm-md-footer-title-2 P{
    font-weight: normal;
    padding: 0.7rem 1.2rem;
}
.hm-md-footer-year{
    width: 15%;
    border-right: 1px solid #000;
    font-size: 1.1rem;
    font-weight: bold;
}
.hm-md-footer-link{
    width: 15%;
    padding: 0.9rem 0;
    font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
    .home-middle H2{
        font-size: 2.5rem;
        max-width: 100%;
        padding-bottom: 1.5rem;
    }
    .home-middle H4{
        font-size: 1.1rem;
        max-width: 100%;
        margin-left: 0;
    }
    .home-middle-it{
        width:  100%;
    }
}
/********************************/
/********************************/
footer UL{
    list-style-type: none;
}
.footer-left{
    width: 48%;
    padding-top: 20px;
    border-right: 1px solid #EBEBEB;
}
.footer-right{
    width: 58%;
    padding-top: 20px;
    align-content: space-between;
    flex-wrap: wrap;
}
/****/
.footer-left1{
    width: 50%;
}
.footer-left1 P{
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
}
.footer-left1 IMG{
    width: 80px;
    height: auto;
}
/***/
.footer-left2{
    width: 50%;
}
.footer-left2 UL LI{
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}
/*******/
.footer-right1{
    
}
.footer-right1 UL LI{
    display: inline-block;
    margin-left: 0.4rem;
    margin-bottom: 0.4rem;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 1.2rem;
    background-color: #295d78;
    overflow: hidden;
    font-size: 1.1rem;
    color: #fff;
    text-align: center;
    line-height: 2.4rem;
}
/***/
.footer-right2{
    
}
.footer-right2 P{
    display: inline-block;
    font-weight: bold;
    font-size: 1.2rem;
    padding-right: 1rem;
    text-align: right;
}
.footer-right2 IMG{
    width: 45px;
    height: auto;
    display: inline-block;
}
.footer-assin{
    padding: 1.5rem 0;
    background-color: #e7e5d9;
}
.footer-assin P{
    text-align: right;
    font-size: 0.8rem;
    color: #95938c;
}
@media screen and (max-width: 767px) {
    .footer-right2 P{
        max-width: 70%;
    }
    .footer-left{
        width: 100%;
        border-right: none;
    }
    .footer-right{
        width: 100%;
        min-height: 180px;
        margin-top: 20px;
    }
}
/********************************/
/********************************/
/********************************/
/********************************/