.filtro {
    background: #fff;
    width: 250px;
    padding: 20px;
    margin: 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.filtro dl dt {
    font-size: 16px;
    text-transform: uppercase;
    color: #333;
    margin-top: 6px;
    font-family: 'robotobold', sans-serif;
}

.filtro dl dd {
    margin-bottom: 5px;
}

#sidebar > dl > dd > form {
      padding: 0;
    max-width: 1306px;
    margin: 0 auto;
    font-size: 18px;
    font-weight: 600;
    line-height: 36px;
}

.filtro  dl dd ol>li>a {
    margin: 6px 0;
    display: inline-block;
    color: #35587f;
}

button.open-aside {
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    background: #35587f;
    display: inline-block;
    padding: 7px 18px;
    color: #fff;
    font-size: 18px;
    font-family: 'robotoregular', sans-serif;
    line-height: 20px;
    position: relative;
    margin-top: 20px;
    margin-bottom: 5px;
    width: auto;
    /* text-transform: uppercase; */
}

button.close-aside {
    font-size: 24px;
    color: #fff;
    background: transparent;
    text-align: center;
    height: 50px;
    width: 70px;
    line-height: 70px;
    cursor: pointer;
    padding: 0 20px;
    position: absolute;
    left: 165px;
    top: 0;
}

button.close-aside:before {
    content: "\f00d";
    font-family: FontAwesome;
    display: inline-block;
    font-size: 20px;
    width: auto;
    color: #FFF;
    background-color: #35587f;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    margin-top: -20px;
}

ol.escolhe-mes {
    display: block;
    font-size: 13px;
    padding: 0 0 5px 0;
    font-family: 'robotobold', sans-serif;
    width: 100%;
    text-align: center;
}

ol.escolhe-mes > li {
    display: inline-block;
    width: 22%;
    margin: 2% 1%;
}

ol.escolhe-mes > li span {
    cursor: pointer;
    border-radius: 2px;
    border: 1px solid #35587f;
    color: #35587f;
    display: block;
    padding: 10px 0;
}

.mes-on {
    color: #FFF !important;
    background-color: #35587f;
}


/*** custom checkboxes ***/
.filtro input[type=checkbox] { display:none; } /* to hide the checkbox itself */
.filtro input[type=checkbox] + label:before {
    font-family: FontAwesome;
    display: inline-block;
}

.filtro input[type=checkbox] + label:before { content: "\f096"; } /* unchecked icon */
.filtro input[type=checkbox] + label:before { letter-spacing: 10px; } /* space between checkbox and label */

.filtro input[type=checkbox]:checked + label:before { content: "\f046"; } /* checked icon */
.filtro input[type=checkbox]:checked + label:before { letter-spacing: 5px; } /* allow space for check mark */

.filtro dl > dd > label {
    display: block;
    color: #35587f;
    padding: 0 0 8px 30px;
}

.filtro dl > dd > label:before { left: 0; }

.filtro .local li {
    display: inline-block;
    width: 21.5%;
    margin: 2% 1%;
}

.filtro .local label {
    display: block;
    width: 100%;
    padding: .5em 0;
    overflow: hidden;
    font-size: 13px;
    font-family: 'robotobold', sans-serif;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    border: 1px solid #35587f;
    color: #35587f;
    border-radius: 2px;
}

.filtro .local input[type=checkbox] + label:before {
    content: '';
    font-family: 'Roboto', sans-serif;
    text-decoration: inherit;

    padding: .5em 0;
    position: absolute;
    top: 0; bottom: 0;
    left: 0; right: 0;

    text-transform: uppercase;
    font-size: 13px;
    font-family: 'robotobold', sans-serif;
    text-align: center;
    letter-spacing: normal;
}

.filtro .local input[type=checkbox]:checked + label:before { content: attr(title); background-color: #35587f; color: #FFF; } /* checked icon */
.filtro .local input[type=checkbox]:checked + label:before { color: #FFF; } /* allow space for check mark */


/* Scss Document */
.inputGroup {
  background-color: #fff;
  display: block;
  margin: 10px 0;
  position: relative; }
  .inputGroup label {
    padding: 4px 10px;
    width: 100%;
    display: block;
    text-align: left;
    color: #3C454C;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: color 200ms ease-in;
    overflow: hidden;
    font-size: 17px; }
    .inputGroup label:before {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      content: '';
      background-color: #2a73d4;
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%) scale3d(1, 1, 1);
      transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
      opacity: 0;
      z-index: -1; }
    .inputGroup label:after {
      width: 32px;
      height: 32px;
      content: '';
      border: 2px solid #D1D7DC;
      background-color: #fff;
      background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.414 11L4 12.414l5.414 5.414L20.828 6.414 19.414 5l-10 10z' fill='%23fff' fill-rule='nonzero'/%3E%3C/svg%3E ");
      background-repeat: no-repeat;
      background-position: 2px 3px;
      border-radius: 50%;
      z-index: 2;
      position: absolute;
      right: 30px;
      top: 50%;
      transform: translateY(-50%);
      cursor: pointer;
      transition: all 200ms ease-in; 
      display:none;}
  .inputGroup input:checked ~ label {
    color: #fff; }
    .inputGroup input:checked ~ label:before {
      transform: translate(-50%, -50%) scale3d(56, 56, 1);
      opacity: 1; }
    .inputGroup input:checked ~ label:after {
      background-color: #54E0C7;
      border-color: #54E0C7; }
  .inputGroup input {
    width: 32px;
    height: 32px;
    order: 1;
    z-index: 2;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    visibility: hidden; }

.form {
  padding: 0 16px;
  max-width: 550px;
  margin: 50px auto;
  font-size: 18px;
  font-weight: 600;
  line-height: 36px; }

body {
  background-color: #D1D7DC;
  font-family: 'Fira Sans', sans-serif; }

*,
*::before,
*::after {
  box-sizing: inherit; }

html {
  box-sizing: border-box; }

code {
  background-color: #9AA3AC;
  padding: 0 8px; }

/*# sourceMappingURL=menue.css.map */

.resultados h2.title-tipo {
    background-color: #dde0e2;
    color: #444444;
    padding: .5em;
}

.arrow {
    display: none;
}

.menu-lateral .topo-padrao h1 {
    text-align: left;
    text-align-last: left;
    margin: .3em;
    text-shadow: none;
    font-size: calc(20px + 1em);
    line-height: calc(20px + .7em);
    text-transform: none;
    font-family: 'robotoregular', sans-serif;
}

.menu-lateral .bloco-5-1:before {
    content: none;
}

.menu-lateral .bloco-5-1.cor-categoria-sap {
    background-image: none !important;
    background: linear-gradient(to right, #0072ff, #00c6ff) !important;
}

.menu-lateral .bloco-5-1.cor-categoria-sap {
    background-image: none !important;
    background: linear-gradient(to right, #0072ff, #00c6ff) !important;
}

.menu-lateral > div.bloco-5-1.topo-padrao {
    height: auto;
    min-height: auto;
}

.topo-categoria {
	background: #1f1c2c !important;
    background: -webkit-linear-gradient(to right, #1f1c2c, #928dab) !important;
    background: linear-gradient(to right, #1f1c2c, #928dab) !important;
}

.topo-categoria.cor-categoria-sap {
    background: #00c6ff !important;
    background: -webkit-linear-gradient(to right, #0072ff, #00c6ff) !important;
    background: linear-gradient(to right, #0072ff, #00c6ff) !important;
}

.topo-categoria.cor-categoria-governaca-e-negocio {
	background: #007d82 !important;
	background: -webkit-linear-gradient(to right, #007d82, #00ffd5) !important;
    background: linear-gradient(to right, #007d82, #00ffd5) !important;
}

.topo-categoria.cor-categoria-gestao-de-projetos {
	background: #7d00ff !important;
	background: -webkit-linear-gradient(to left, #7d00ff, #2c0846) !important;
    background: linear-gradient(to left, #7d00ff, #2c0846) !important;
}

.topo-categoria.cor-categoria-microsoft {
	background: #000000 !important;
    background: -webkit-linear-gradient(to right, #000000, #434343) !important;
    background: linear-gradient(to right, #000000, #434343) !important;
}

.topo-categoria.cor-categoria-office {
	background: #1f6e42 !important;
    background: -webkit-linear-gradient(to right, #183524, #1f6e42) !important;
    background: linear-gradient(to right, #183524, #1f6e42) !important;
}

.topo-categoria.cor-categoria-seguranca {
	background: #0076c1 !important;
    background: -webkit-linear-gradient(to right, #000173, #0076c1) !important;
    background: linear-gradient(to right, #000173, #0076c1) !important;
}

.topo-categoria.cor-categoria-bi-big-data {
	background: #ff5e62 !important;
    background: -webkit-linear-gradient(to right, #ff5e62, #ff9966) !important;
    background: linear-gradient(to right, #ff5e62, #ff9966) !important;
}

.topo-categoria.cor-categoria-desenvolvimento {
	background: #004400 !important;
    background: -webkit-linear-gradient(to right, #004400, #4caf50) !important;
    background: linear-gradient(to right, #004400, #4caf50) !important;
}

.topo-categoria.cor-categoria-banco-de-dados {
	background: #5a000a !important;
    background: -webkit-linear-gradient(to right, #5a000a, #ff5151) !important;
    background: linear-gradient(to right,#5a000a, #ff5151) !important;
}

.topo-categoria.cor-categoria-infraestrutura {
	background: #F7971E !important;
    background: -webkit-linear-gradient(to right, #F7971E, #FFD200) !important;
    background: linear-gradient(to right, #F7971E, #FFD200) !important;
}

.topo-categoria.cor-categoria-marketing {
	background: #e73827 !important;
    background: -webkit-linear-gradient(to right, #e73827, #f88d32) !important;
    background: linear-gradient(to right, #e73827, #f88d32) !important;
}



.topo-categoria h1 {
	color: #FFF;
    text-align: left;
    text-align-last: left;
    margin: .3em 0;
    text-shadow: none;
    font-size: calc(20px + 1em);
    line-height: calc(20px + .7em);
    text-transform: none;
    font-family: 'robotoregular', sans-serif;
}

.destaques-cursos {
    padding-bottom: .4em;
}

ul.lista-formacoes { text-align: center; }

ul.lista-formacoes > li {
    display: inline-block;
    margin: .4vw;
}

ul.lista-formacoes > li > figure {
    position: relative;

    display: flex;
    overflow: hidden;

    width: 100%;
    min-width: 220px;
    max-width: 310px;
    max-height: 220px;
    margin: 2px;

    text-align: center;

    color: #fff;
    background: #000;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #434343, #000);  /* Chrome 10-25, Safari 5.1-6 */
    background:         linear-gradient(to right, #434343, #000); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

    align-items: center;
}


ul.lista-formacoes > li > figure * {
  -webkit-box-sizing: padding-box;
  box-sizing: padding-box;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  color: #FFF;

  text-shadow: 1px 1px 4px #000;
}

ul.lista-formacoes > li > figure img {
  opacity: .3;
  width: 100%;
}

ul.lista-formacoes > li > figure figcaption {
    width: calc(100% - 50px);

    max-height: 200px;
    /*overflow: auto;*/
    margin: auto;
    position: absolute;
    left: 0; right: 0;
    top: 50%;
    transform: translateY(-50%);
}

ul.lista-formacoes > li > figure figcaption h4 {
    font-size: 20px;
    font-weight: 400;
    line-height: 25px;
    font-family: 'robotobold', sans-serif;

    position: relative;

    margin: 0;
/*
    -webkit-transform: translateY(75%);
            transform: translateY(75%);*/
    text-align: center;
    text-transform: uppercase;
}


ul.lista-formacoes > li > figure figcaption h4 span {
  font-weight: 800;
}

ul.lista-formacoes > li > figure figcaption p {
    font-size: .9em;
    font-weight: 500;

    overflow: hidden;

    /*max-height: 0;*/
    margin: 0;

    -webkit-transition: max-height .7s ease-in-out;
       -moz-transition: max-height .7s ease-in-out;
        -ms-transition: max-height .7s ease-in-out;
         -o-transition: max-height .7s ease-in-out;
            transition: max-height .7s ease-in-out;
    text-align: center;

    /*opacity: 0;*/
}

ul.lista-formacoes > li > figure figcaption p b { font-size: 1.3em }
ul.lista-formacoes > li > figure:before,
ul.lista-formacoes > li > figure:after {
  position: absolute;
  top: 20px;
  right: 20px;
  bottom: 20px;
  left: 20px;
  content: '';
  opacity: 0;
  -webkit-transition: opacity 0.6s, -webkit-transform 0.6s;
  transition: opacity 0.6s, -webkit-transform 0.6s, -moz-transform 0.6s, -o-transform 0.6s, transform 0.6s;
}

ul.lista-formacoes > li > figure:before {
  border-top: 1px double #fff;
  border-bottom: 1px double #fff;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}

ul.lista-formacoes > li > figure:after {
  border-right: 1px double #fff;
  border-left: 1px double #fff;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
}

ul.lista-formacoes > li > figure a {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  z-index: 1;
}

ul.lista-formacoes > li > figure:hover img,
ul.lista-formacoes > li > figure.hover img {
  opacity: 0.2;
  -webkit-filter: blur(5px);
  filter: blur(5px);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

ul.lista-formacoes > li > figure:hover figcaption h4,
ul.lista-formacoes > li > figure.hover figcaption h4,
ul.lista-formacoes > li > figure:hover figcaption p,
ul.lista-formacoes > li > figure.hover figcaption p
{
    max-height: 140px;

    -webkit-transition-delay: .2s;
            transition-delay: .2s;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    text-align: center;

    opacity: 1;
    border-color: rgba(255, 255, 255, .5);

}

ul.lista-formacoes > li > figure:hover figcaption p,
ul.lista-formacoes > li > figure.hover figcaption p {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

ul.lista-formacoes > li > figure:hover:before,
ul.lista-formacoes > li > figure.hover:before,
ul.lista-formacoes > li > figure:hover:after,
ul.lista-formacoes > li > figure.hover:after {
    opacity: 0.8;
    -webkit-transform: scale(1);
    transform: scale(1);
}

@media screen and (min-width: 1024px) {

  button.open-aside, button.close-aside {
    display: none !important;
}

	.menu-lateral > div.bloco-5-1.topo-padrao {
	        height: auto;
	}

	.categoria {
	    display: block;
	    width: 100%;
	    max-width: 1280px;
      padding: 1% !important;
	}

	.filtro {
	    display: block;
	    overflow: hidden;
	    margin-right: auto;
	    margin: 0 auto;
	    padding: .5em;
	    min-width: auto;
	    width: 100%;
	    max-width: 1375px;
	    background: none;
	}

	.form {
	    display: block;
		padding: 0;
	    margin: 0px;
	    max-width: none;
	    width: 100%;

	    text-align: left;
	}

	.inputGroup {
	    background-color: #fff;
	    display: inline-block;
	    margin: 0.6% 1% 0.6% 0;
	    position: relative;

    	box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.1);
	    width: auto;
	    transition: all .6s ease-in-out;
      border-radius: 3px;

	}

	.inputGroup:hover {
		box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.1);
	}

	.carrossel-geral {
	    padding: 5px 0 5px;
	}

	.resultados {
	    flex: 4;
	    overflow: hidden;
	    margin: 0 auto;
	    max-width: 1375px;

	        padding: .5em;
	}

	#sidebar {
		
	}

	.filtro dl dt,
	h2 {
	    font-size: calc(26px + .1em);
	    line-height: calc(26px + .1em);
	    margin-bottom: 10px;
	    margin: 0.67em 0 0.5em;
	    color: #444;
	    text-align: left;
	    font-family: 'robotoregular', sans-serif;
	    text-transform: none;
	}

	.filtro dl dt {
		font-family: 'robotobold', sans-serif;
		padding-bottom: 0;
	}

	.menu-lateral .topo-padrao .container {
	    max-width: 1375px;
	    padding: .5em;
	}

	.title,
	.resultados h2.title-tipo {
	    background: none;

	    padding: .5em 0;

		overflow: hidden;
		text-align: left;
		color: #444;
		line-height: normal;
	}
	
	.title:before,
	.resultados h2.title-tipo:before {
		content: none;
	}

	.title:after,
	.resultados h2.title-tipo:after {
	    background-color: #444;
	    content: "";
	    display: inline-block;
	    height: 1px;
	    position: relative;
	    vertical-align: middle;
	    width: 100%;
	}

	.resultados h2.title-tipo:before {
	    right: 0.5em;
	    margin-left: -50%;
	}

	.resultados h2.title-tipo:after {
	    left: 0.5em;
	    margin-right: -50%;
	}

	h3.title {
	    text-transform: uppercase;
	    padding: 0;
	}

}

@media screen and (max-width: 1023px) {

	.carrossel-geral { display: none !important; }

  #GridForm{    }

  section .destaques-cursos {
      padding-bottom: 5px !important;
  }

  .destaques-cursos ul.lista-formacoes {
      display: block;
      width: 100%;
      position: relative;
      margin: 0 auto;
      white-space: nowrap;
      overflow-x: scroll;
      text-align: center;
      height: auto;
      margin-bottom: 20px !important;
  }

  .destaques-cursos ul.lista-formacoes li {
      max-width: 315px;
      margin-right: 15px;
      display: inline-block;
      width: 75%;
      white-space: normal;
      margin-bottom: 5px;
  }

  .destaques-cursos ul.lista-formacoes > li > figure figcaption {
      width: calc(100% - 35px);
  }

  .grid-body { position: relative; }

        ul.grid li.grid-body:before {
              content: "\f067";
            font-family: FontAwesome;
            font-weight: normal;
            text-decoration: inherit;
            font-size: 15px;
            position: absolute;
            top: 0;
            right: 0;
            line-height: 50px;
            height: 50px; width: 35px;
            color: #ccc;
            z-index: 1;
            transition: all .3s ease-in-out;
        }

        ul.grid li.grid-body.fcurrent:before { content: "\f068" !important; }

        .grid-body .price-box,
        .grid-body div:nth-child(4),
        .grid-body div:last-child {
          display: none !important;
        }

        .grid-body.fcurrent .price-box,
        .grid-body.fcurrent div:nth-child(4),
        .grid-body.fcurrent div:last-child {
          display: inline-block !important;
        }

        ul.grid li.grid-body > div {
            display: block;
            padding: 1em 1.5em .75em .5em;
            width: 100%;
        }

        ul.grid li.grid-body > div:first-child {
          display: flex;
        }

        ul.grid li.grid-body > div:first-child a,
        ul.grid li.grid-body > div:first-child > * {
          text-align: left;
        }

        ul.grid li.grid-body > div:first-child > img {
          
        }

        ul.grid li.grid-body > div:first-child a {
          padding-left: .5em;
        }


}

@media screen and (min-width: 1023px) {

  .carrossel-geral { display: none !important; }

  #GridForm{ height:auto;overflow:hidden;   }

}
