@import url(variables.css);

html {
  font-size: 18px;
  line-height: 1.2em;
}

body {
  margin: 0px;
  padding: 0px;
  background-color: white;
}

* {
  outline: none;
}

a {
  color: var(--accent);
}

input {
  border: none;
  color: white;
  font-family: var(--font-family);
  padding: 5px;
}

input[type="file"] {
  display: none;
}

select {
  font-family: var(--font-family);
  padding: 4px;
  padding-bottom: 3px;
}

textarea {
  font-family: var(--font-family);
}

header {
  margin-top: 40px;
}

section {
  margin-bottom: 40px;
}

button {
  font-family: var(--font-family) !important;
}

.lgpd {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 16px;
  display: none;
  z-index: 10000000;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.coordenacao {
  margin: 0 auto;
  text-align: left;
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
}

.coordenacao > div:nth-child(1) {
  height: 130px;
  width: 100px;
  display: block;
  margin-right: 4px;
  border: var(--border-width) solid var(--accent);
  padding: 2px;
}

.coordenacao > div:nth-child(1) > img {
  height: 124px;
  width: 94px;
  object-fit: cover;
}

.coordenacao > div:nth-child(2) > div:nth-child(1) {
  font-size: 0.7em;
  font-weight: 400;
  font-style: italic;
}

.coordenacao > div:nth-child(2) > div:nth-child(2) {
  font-size: 1em;
  font-weight: 500;
  display: block;
}

.coordenacao > div:nth-child(2) > div:nth-child(3) {
  font-size: 0.8em;
  display: block;
}

.coordenacao > div:nth-child(2) > div:nth-child(3) a {
  text-decoration: none;
  padding: 0;
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
}

.coordenacao > div:nth-child(2) > div:nth-child(3) a:hover {
  text-decoration: underline;
}

.coordenacao > div:nth-child(2) > div:nth-child(3) ion-icon {
  font-size: 1.3em;
}

/*
/////////////////////////////////////////////////////////////////
// Calculadora
/////////////////////////////////////////////////////////////////
*/
.calc-display {
  flex-basis: 50%;
  background-color: #ccc;
  padding: 12px;
  font-size: 1.5em;
  font-weight: bold;
  text-align: start;
  margin: 4px;
}
.calc-result {
  flex-basis: 50%;
  background-color: #aaa;
  padding: 6px 12px;
  font-size: 1.6em;
  text-align: center;
  margin: 4px;
}
.calc-result2 {
  flex-basis: 50%;
  background-color: var(--green);
  padding: 12px;
  font-size: 1.5em;
  text-align: center;
  margin: 4px;
  font-weight: bold;
  color: white;
}
.calc {
  display: flex;
}
.calc-button {
  background-color: var(--blue);
  padding: 12px 0px;
  font-size: 1.5em;
  color: white;
  flex-basis: 33%;
  margin: 4px;
  cursor: pointer;
}
.calc-buttoncalc {
  background-color: var(--blue-light);
  padding: 8px 0px;
  font-size: 1.5em;
  color: white;
  flex-basis: 33%;
  margin: 4px;
  cursor: pointer;
}
.calc-button:hover {
  background-color: var(--blue-hover);
}
.calc-buttoncalc:hover {
  background-color: var(--blue-light-hover);
}

.slick {
  width: calc(100% - 70px);
  padding-left: 15px;
  padding-right: 15px;
}

.slick .item {
  padding: 10px;
}

.slick-single-container {
  width: 340px;
}

.slick-single {
  padding-left: 15px;
  padding-right: 5px;
  width: 290px;
}

.ui-dialog.basic-dialog {
  font-family: var(--font-family);
}

.ui-dialog-titlebar-close {
  visibility: hidden;
}

.new-ul {
  list-style: none;
  margin-left: 0;
  padding-left: 1.5em;
  text-indent: 0em;
}

.new-ul li p {
  font-size: 1em;
}

.new-ul li {
  margin: 10px 0;
}

.new-ul li::before {
  content: "\f318";
  font-family: "Ionicons";
  font-size: 1.2em;
  color: var(--accent);
  margin-right: 10px;
}

.new-ul > li > ul {
  list-style: none;
  margin-left: 0;
  padding-left: 1em;
  text-indent: 0em;
  font-size: 1.2em;
}

.new-ul > li > ul li {
  margin: 8px 8px;
}

.new-ul > li > ul li p {
  font-size: 1em;
}

.new-ul > li > ul li::before {
  content: "\f363";
  font-family: "Ionicons";
  font-size: 1.6em;
  color: var(--accent);
  margin-right: 8px;
}

.hidden {
  display: none;
  opacity: 0;
}

.hidden-not-xs {
  display: none;
  opacity: 0;
}

.accent {
  background-color: var(--accent);
}

.accent:hover {
  background-color: var(--accent-hover);
}

.blue {
  background-color: var(--blue);
}

.blue:hover {
  background-color: var(--blue-hover);
}

.blue-light {
  background-color: var(--blue-light);
}

.blue-light:hover {
  background-color: var(--blue-light-hover);
}

.orange {
  background-color: #ff4500;
}

.orange:hover {
  background-color: #ff6633;
}

.content {
  width: var(--content-width);
  margin: 0 auto;
}

.content p {
  font-size: 0.8em;
}

.content li {
  font-size: 0.8em;
}

.float-right {
  float: right;
}

.float-left {
  float: left;
}

.float-image {
  width: calc(33% - 16px);
  margin-bottom: 8px;
  border: var(--border-width) solid var(--accent);
  padding: 8px 8px 5px 8px;
}

.float-image img {
  width: 100%;
}

.float-image-right {
  margin-left: 16px;
}

.float-image-left {
  margin-right: 16px;
}

.page-content {
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.page-content > * {
  margin: 8px 0;
}

.flexrow {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.flexrow-footer {
  align-items: center;
}

.flexrow-center {
  align-items: center;
  justify-content: center;
}

.flexrow-start-center {
  align-items: center;
  justify-content: space-between;
}

.flexrow-end {
  align-items: flex-end;
  justify-content: flex-end;
}

.flexrow-cursos-dados {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
.flexrow-cursos-dados > * {
  flex: 0 0 12%;
}
.item-metade {
  flex: 0 0 46%;
}

.item-quarto {
  flex: 0 0 22%;
}

.item-terco {
  flex: 0 0 29%;
}

.item-dois-tercos {
  flex: 0 0 66%;
}

.item-quatro-quintos {
  flex: 0 0 80%;
}

.item-três-quartos {
  flex: 0 0 75%;
}

.item-terco-plus {
  flex: 0 0 29.5%;
}

.item-quinto {
  flex: 0 0 16%;
}

.item-sexto {
  flex: 0 0 12%;
}

.item-dois-quintos {
  flex: 0 0 30%;
}

.item-full {
  flex: 0 0 100%;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-black {
  color: black;
}

.text-white {
  color: white;
}

.text-red {
  color: red;
}

.text-accent {
  color: var(--accent);
}

.ion-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ion-item-start {
  justify-content: flex-start;
}

.ion-item ion-icon {
  padding-right: 5px;
}

.ion-item-start ion-icon {
  font-size: 1.5em;
  padding: 3px !important;
  padding-right: 14px;
  color: var(--accent);
}

.ion-item * {
  min-width: 20px;
}

.ion-item-vertical {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.ion-item-horizontal-vertical {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}

.ion-item-horizontal-vertical ion-icon {
  padding-right: 5px;
}

.video {
  font-size: 0.9em;
  font-weight: 500;
  text-align: center;
  color: black;
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 25px;
  height: 0;
}

.video > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video > div {
  position: absolute;
  bottom: 0;
}

.quero-me-inscrever {
  width: 250px;
  float: right;
}

.parallax-container {
  background: transparent;
}

.resultados-busca a {
  color: var(--font-color);
  text-decoration: none;
}

.resultados-busca a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.busca-mobile {
  font-size: 30px;
  position: absolute;
  top: 16px;
  right: 56px;
}

.social-icons img {
  width: 36px;
  height: 36px;
  margin: 10px;
}

.w100pc {
  width: 100%;
}
.pad4px {
  padding: 4px;
}
.pad10pxBottom {
  padding-bottom: 10px;
}
.h180px {
  height: 180px;
}
.espaco-conteudo {
  margin-top: 20px;
  margin-bottom: 20px;
}
.imagem-l80 {
  width: 80%;
  height: auto;
}
.imagem-l60 {
  width: 60%;
  height: auto;
}
.h-16-9 {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.bottom-border {
  border-top: 1px solid black;
  height: 20px;
  margin-top: 20px;
}

/*
/////////////////////////////////////////////////////////////////
// Botões
/////////////////////////////////////////////////////////////////
*/
.bt-large {
  height: 80px;
  font-size: 1.2em;
  padding: var(--large-button-padding);
  font-weight: 400;
}

.bt-large .icon {
  bottom: 18px;
  font-weight: 700;
}

.bt-small {
  height: 46px;
  font-size: 0.8em;
  padding: var(--small-button-padding);
  font-weight: 500;
}

.bt-small .icon {
  bottom: 13px;
}

.bt {
  position: relative;
  background-clip: content-box;
  text-align: center;
  vertical-align: middle;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: 0.5s;
  cursor: pointer;
  text-decoration: none;
}

.bt-large::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 30px;
  height: 30px;
  left: 0;
  border-top: var(--border-width) solid var(--linha-titulo-cor);
  border-left: var(--border-width) solid var(--linha-titulo-cor);
  transition: 0.5s;
  background-clip: border-box;
}

.bt-large::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: 30px;
  height: 30px;
  right: 0;
  border-right: var(--border-width) solid var(--linha-titulo-cor);
  border-bottom: var(--border-width) solid var(--linha-titulo-cor);
  transition: 0.5s;
  background-clip: border-box;
}

.bt-small::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 15px;
  height: 15px;
  left: 0;
  border-top: var(--border-width) solid var(--linha-titulo-cor);
  border-left: var(--border-width) solid var(--linha-titulo-cor);
  transition: 0.5s;
  background-clip: border-box;
}

.bt-small::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: 15px;
  height: 15px;
  right: 0;
  border-right: var(--border-width) solid var(--linha-titulo-cor);
  border-bottom: var(--border-width) solid var(--linha-titulo-cor);
  transition: 0.5s;
  background-clip: border-box;
}

.bt:hover::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: calc(100% - var(--border-width));
  height: calc(100% - var(--border-width));
  left: 0;
  border-top: var(--border-width) solid var(--linha-titulo-cor);
  border-left: var(--border-width) solid var(--linha-titulo-cor);
  transition: 0.5s;
  background-clip: border-box;
}

.bt:hover::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: calc(100% - var(--border-width));
  height: calc(100% - var(--border-width));
  right: 0;
  border-right: var(--border-width) solid var(--linha-titulo-cor);
  border-bottom: var(--border-width) solid var(--linha-titulo-cor);
  transition: 0.5s;
  background-clip: border-box;
}

.bt:hover {
  color: var(--font-color-hover-bt);
  transition: 0.5s;
}

.bt .icon {
  position: absolute;
  width: 20px;
  height: 20px;
  line-height: 22px;
  right: 18px;
  border: var(--border-width) solid white;
  text-align: center;
  vertical-align: middle;
  transition: 0.5s;
  color: white;
  font-family: "Ionicons";
  font-size: 1rem;
}

.bt:hover .icon {
  border: var(--border-width) solid var(--font-color-hover-bt);
  transition: 0.5s;
  color: var(--font-color-hover-bt);
  /*
  border: var(--border-width) solid black;
  color: black;
  */
}

.bt span {
  margin: 0 10px;
}

.bt .dropdown {
  position: absolute;
  background-color: var(--dropdown-bg);
  z-index: 1;
  top: calc(80px - var(--large-button-padding));
  opacity: 1;
  width: calc(100% - 2 * var(--large-button-padding));
  font-size: 0.8em;
}

.bt .dropdown a {
  color: white;
  padding: 10px;
  text-decoration: none;
  display: block;
}

.bt .dropdown a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.bt-simple {
  padding: 8px 30px;
  color: white;
  cursor: pointer;
  text-decoration: none;
}

/*
/////////////////////////////////////////////////////////////////
// MenuCursos
/////////////////////////////////////////////////////////////////
*/

.menucursoscontainermobile {
  display: none;
}

.menucursoscontainermobile2 {
  display: none;
}

.menucursoscontainer {
  width: 100%;
  display: flex;
  justify-content: center;
}

.menucursos {
  border-spacing: 0;
}

.menucursos td {
  height: 60px;
  font-size: 13px;
  font-weight: 500;
  background-color: #dddddd;
}

.menucursos td:nth-child(1) {
  width: 250px;
  padding-right: 40px;
  background-color: #08223d;
  color: white;
  text-align: right;
}

.menucursos td:nth-child(3),
.menucursos td:nth-child(5),
.menucursos td:nth-child(7),
.menucursos td:nth-child(9) {
  width: 100px;
  text-align: left;
}

.menucursos td:nth-child(2) {
  width: 70px;
}

.menucursos td:nth-child(4),
.menucursos td:nth-child(6),
.menucursos td:nth-child(8) {
  width: 50px;
}

.menucursos a {
  color: #08223d;
}

.menucursos a > span:nth-child(1) {
  white-space: nowrap;
}

.menucursos a > span:nth-child(3) {
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}

/*
/////////////////////////////////////////////////////////////////
// Input
/////////////////////////////////////////////////////////////////
*/
.eseginput {
  position: relative;
  padding: 9px 6px 11px 6px;
  font-weight: 400;
  transition: 0.5s;
  font-size: 1em;
  cursor: text;
  background-clip: content-box;
}

.eseginput input[type="text"] {
  padding-right: 32px;
}

.eseginput button {
  position: absolute;
  right: 5px;
  top: 8px;
  border: none;
  background: none;
  z-index: 100;
  cursor: pointer;
}

.eseginput ion-icon {
  width: 22px;
  height: 22px;
  color: white;
}

.eseginput::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 16px;
  height: 16px;
  left: -2px;
  border-top: var(--border-width) solid var(--linha-titulo-cor);
  border-left: var(--border-width) solid var(--linha-titulo-cor);
  transition: 0.5s;
  background-clip: border-box;
}

.eseginput::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -1px;
  width: 16px;
  height: 16px;
  right: -8px;
  border-right: var(--border-width) solid var(--linha-titulo-cor);
  border-bottom: var(--border-width) solid var(--linha-titulo-cor);
  transition: 0.5s;
  background-clip: border-box;
}

.eseginput:hover::before {
  content: "";
  display: block;
  position: absolute;
  width: calc(100% - var(--border-width) + 10px);
  height: calc(100% - var(--border-width));
  border-top: var(--border-width) solid var(--linha-titulo-cor);
  border-left: var(--border-width) solid var(--linha-titulo-cor);
  transition: 0.5s;
  background-clip: border-box;
}

.eseginput:hover::after {
  content: "";
  display: block;
  position: absolute;
  width: calc(100% - var(--border-width) + 10px);
  height: calc(100% - var(--border-width));
  border-right: var(--border-width) solid var(--linha-titulo-cor);
  border-bottom: var(--border-width) solid var(--linha-titulo-cor);
  transition: 0.5s;
  background-clip: border-box;
}

/*
/////////////////////////////////////////////////////////////////
// Squares
/////////////////////////////////////////////////////////////////
*/

.squares {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: flex-start;
  width: 100%;
  padding: 20px 0px;
  position: relative;
}

.squares > a {
  width: calc(var(--content-width) / 5);
  height: calc(var(--content-width) / 5);
  overflow: hidden;
  padding: 0px;
  position: relative;
  margin: 4px;
}

.squares > a > div:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(var(--content-width) / 5);
  height: calc(var(--content-width) / 5);
  text-align: center;
  font-size: 1em;
  font-weight: 700;
  color: white;
  transition: 0.4s;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 8px;
}

.squares > a > div:nth-child(2):hover {
  background-color: rgba(50, 50, 50, 0.1);
  transition: 0.4s;
  padding-top: calc(var(--content-width) / 10 + 34px);
}

.squares > a:nth-child(even) > div {
  /*background-color: rgba(50, 50, 50, 0.7);*/
  text-shadow: 1px 1px 0.2em black, -1px -1px 0.2em black;
  color: var(--accent);
  color: white;
}

.squares > a:nth-child(odd) > div {
  /*background-color: rgba(4, 177, 194, 0.7);*/
  color: white;
  text-shadow: 1px 1px 0.2em black, -1px -1px 0.2em black;
}

.squares img {
  object-fit: cover;
  width: calc(var(--content-width) / 5);
  height: calc(var(--content-width) / 5);
}

/*
/////////////////////////////////////////////////////////////////
// Títulos
/////////////////////////////////////////////////////////////////
*/

/* Normal com barra */
h1 {
  font-size: 1.1em;
  color: var(--accent);
  font-weight: 700;
  width: 100%;
  border-bottom: 1px solid var(--linha-titulo-cor);
  padding-bottom: 4px;
  margin: 20px 0px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
}

h1 ion-icon {
  font-size: 1.3em;
  margin-right: 10px;
  align-self: flex-start;
}

/* Grande - para titulo dos cursos */
h2 {
  font-size: 1.3em;
  color: var(--accent);
  font-weight: 700;
  width: 100%;
  border-bottom: 1px solid var(--linha-titulo-cor);
  margin: 20px 0px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
}

h2 ion-icon {
  margin-right: 10px;
  align-self: flex-start;
}

/* Só negrito e azul */
h3 {
  font-weight: 600;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 1.1em;
}

h3 ion-icon {
  margin: 0px 10px 0px 0px;
  color: var(--accent);
}

/* Igual ao 3 so que com texto preto */
h4 {
  font-weight: 500;
  color: var(--font-color);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 1.2em;
}

h4 ion-icon {
  margin: 0px 10px 0px 0px;
  color: var(--accent);
}

/*
/////////////////////////////////////////////////////////////////
// Grade de disciplinas
/////////////////////////////////////////////////////////////////
*/
.grade {
  align-items: stretch;
  justify-content: space-between;
  cursor: pointer;
}

.grade > div {
  flex-basis: 49%;
}

.grade .gradeb {
  margin: 3px 3px;
  border: 1px solid black;
  font-size: 0.8em;
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

.grade .gradeb > div:nth-child(1) {
  font-weight: 600;
  background-color: var(--accent);
  color: white;
  padding: 5px;
  width: 45px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  order: 1;
}

.grade .gradeb > div:nth-child(1) ion-icon {
  color: white;
  font-size: 1.5em;
  padding-top: 4px;
}

.grade .gradeb > div:nth-child(2) {
  word-wrap: break-word;
  padding: 5px;
  display: flex;
  align-items: center;
  width: calc(100% - 45px);
  flex-grow: 1;
  order: 0;
}

.comtotal > div:last-child > div:nth-child(1) {
  background-color: var(--accent);
  color: white;
  padding: 5px;
  width: 45px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  order: 1;
}

.comtotal > div:last-child > div:nth-child(2) {
  background-color: var(--accent);
  color: white;
  word-wrap: break-word;
  padding: 5px;
  display: flex;
  align-items: center;
  width: calc(100% - 45px);
  flex-grow: 1;
  order: 0;
  font-weight: 600;
}

.semcarga > div > div:nth-child(1) {
  display: none;
}

.semcarga > div:last-child {
  display: none;
}

.minicurriculo {
  width: 100%;
  font-size: 0.8em;
  margin: 4px 16px;
  display: none;
}

/*
/////////////////////////////////////////////////////////////////
// icone-titulo-hor
/////////////////////////////////////////////////////////////////
*/
.icone-titulo-hor {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-decoration: none;
  margin: 10px 0;
}
.icone-titulo-hor > ion-icon {
  color: var(--accent);
  text-align: center;
  font-size: 1.6em;
}
.icone-titulo-hor > span {
  color: var(--font-color);
  font-weight: 500;
  font-size: 1.1em;
  padding: 0 10px;
  white-space: nowrap;
}

/*
/////////////////////////////////////////////////////////////////
// imagem-titulo
/////////////////////////////////////////////////////////////////
*/
.imagem-titulo {
  width: 100%;
  text-decoration: none;
  margin-bottom: 20px;
}
.imagem-titulo > div:nth-child(1) {
  width: 100%;
  height: 0px;
  padding-bottom: 65%;
  background-position: 50% 50%;
  background-size: cover;
}
.imagem-titulo > div:nth-child(2) {
  width: 100%;
  color: var(--font-color);
  font-weight: 500;
  padding: 6px 0px;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.imagem-titulo > div:nth-child(2):hover {
  text-decoration: underline;
}

/*
/////////////////////////////////////////////////////////////////
// imagem-titulo-texto
/////////////////////////////////////////////////////////////////
*/
.imagem-titulo-texto {
  width: 100%;
  text-decoration: none;
  margin-bottom: 20px;
}
.imagem-titulo-texto > div:nth-child(1) {
  width: 100%;
  height: 0px;
  padding-bottom: 40%;
  background-position: 50% 50%;
  background-size: cover;
}
.imagem-titulo-texto > div:nth-child(2) {
  width: 100%;
  color: var(--font-color);
  font-weight: 500;
  padding: 6px 0px;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.imagem-titulo-texto > div:nth-child(2):hover {
  text-decoration: underline;
}
.imagem-titulo-texto > div:nth-child(3) {
  width: 100%;
  color: var(--font-color-light);
  font-weight: 400;
  font-size: 0.8em;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

/*
/////////////////////////////////////////////////////////////////
// lista-cursos
/////////////////////////////////////////////////////////////////
*/
.lista-cursos {
  width: 100%;
  text-decoration: none;
  margin-bottom: 20px;
}
.lista-cursos > div:nth-child(1) {
  width: 100%;
  height: 0px;
  padding-bottom: 40%;
  background-position: 50% 50%;
  background-size: cover;
}
.lista-cursos > div:nth-child(2) {
  width: 100%;
  color: var(--font-color);
  font-weight: 500;
  padding: 6px 0px;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}
.lista-cursos > div:nth-child(2):hover {
  text-decoration: underline;
}
.lista-cursos > div:nth-child(3) {
  width: 100%;
  color: var(--font-color-light);
  font-weight: 400;
  font-size: 0.8em;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}

/*
/////////////////////////////////////////////////////////////////
// icone-titulo-texto
/////////////////////////////////////////////////////////////////
*/
.icone-titulo-texto {
  width: 100%;
  text-decoration: none;
  margin-bottom: 20px;
}
.icone-titulo-texto > div:nth-child(1) {
  width: 100%;
  color: var(--accent);
  text-align: center;
  font-weight: 500;
}
.icone-titulo-texto > div:nth-child(2) {
  text-align: center;
  width: 100%;
  color: var(--font-color);
  font-weight: 500;
  padding: 6px 0px;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.icone-titulo-texto > div:nth-child(2):hover {
  text-decoration: underline;
}
.icone-titulo-texto > div:nth-child(3) {
  text-align: center;
  width: 100%;
  color: var(--font-color-light);
  font-weight: 400;
  font-size: 0.8em;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

/*
/////////////////////////////////////////////////////////////////
// imagem-data-titulo-texto
/////////////////////////////////////////////////////////////////
*/
.imagem-data-titulo-texto {
  width: 100%;
  text-decoration: none;
  margin-bottom: 20px;
  display: block;
}
.imagem-data-titulo-texto > div:nth-child(1) {
  width: 100%;
  height: 0px;
  padding-bottom: 40%;
  background-position: 50% 50%;
  background-size: cover;
}
.imagem-data-titulo-texto > div:nth-child(2) {
  color: var(--font-color-gray);
  font-weight: 500;
  font-size: 0.7em;
  font-style: italic;
  padding-top: 6px;
}
.imagem-data-titulo-texto > div:nth-child(3) {
  width: 100%;
  color: var(--font-color);
  font-weight: 500;
  padding-top: 6px;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.imagem-data-titulo-texto > div:nth-child(3):hover {
  text-decoration: underline;
}
.imagem-data-titulo-texto > div:nth-child(4) {
  padding-top: 6px;
  width: 100%;
  color: var(--font-color-light);
  font-weight: 400;
  font-size: 0.8em;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

/*
/////////////////////////////////////////////////////////////////
// imagem-data-titulo-texto sem restricao
/////////////////////////////////////////////////////////////////
*/
.imagem-data-titulo-texto-livre {
  width: 100%;
  text-decoration: none;
  margin-bottom: 20px;
  display: block;
}
.imagem-data-titulo-texto-livre > div:nth-child(1) {
  width: 100%;
  height: 0px;
  padding-bottom: 75%;
  background-position: 50% 50%;
  background-size: cover;
}
.imagem-data-titulo-texto-livre > div:nth-child(2) {
  color: var(--font-color-gray);
  font-weight: 500;
  font-size: 0.7em;
  font-style: italic;
  padding-top: 6px;
}
.imagem-data-titulo-texto-livre > div:nth-child(3) {
  width: 100%;
  color: var(--font-color);
  font-weight: 500;
  padding-top: 6px;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.imagem-data-titulo-texto-livre > div:nth-child(3):hover {
  text-decoration: underline;
}
.imagem-data-titulo-texto-livre > div:nth-child(4) {
  padding-top: 6px;
  width: 100%;
  color: var(--font-color-light);
  font-weight: 400;
  font-size: 0.8em;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/*
/////////////////////////////////////////////////////////////////
// data-titulo-texto
/////////////////////////////////////////////////////////////////
*/
.data-titulo-texto {
  width: 100%;
  text-decoration: none;
  display: block;
}
.data-titulo-texto > div:nth-child(1) {
  color: var(--font-color-gray);
  font-weight: 500;
  font-size: 0.7em;
  font-style: italic;
  padding-top: 6px;
}
.data-titulo-texto > div:nth-child(2) {
  width: 100%;
  color: #666;
  font-weight: 500;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}
.data-titulo-texto > div:nth-child(2):hover {
  text-decoration: underline;
}
.data-titulo-texto > div:nth-child(3) {
  padding-top: 4px;
  width: 100%;
  color: var(--font-color-light);
  font-weight: 400;
  font-size: 0.8em;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

/*
/////////////////////////////////////////////////////////////////
// Menu Horizontal
/////////////////////////////////////////////////////////////////
*/
.menu-pagina {
  width: 100%;
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 4px;
}

.menu-pagina::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -1px;
  width: 8px;
  height: 8px;
  right: -1px;
  border-bottom: var(--border-width) solid var(--linha-titulo-cor);
  border-right: var(--border-width) solid var(--linha-titulo-cor);
  transition: 0.3s;
  background-clip: border-box;
}

.menu-pagina::after {
  content: "";
  display: block;
  position: absolute;
  top: -1px;
  width: 8px;
  height: 8px;
  left: -1px;
  border-top: var(--border-width) solid var(--linha-titulo-cor);
  border-left: var(--border-width) solid var(--linha-titulo-cor);
  transition: 0.3s;
  background-clip: border-box;
}

.menu-pagina a:nth-child(3n + 1) {
  background-color: var(--blue);
}

.menu-pagina a:nth-child(3n + 2) {
  background-color: var(--blue-light);
}

.menu-pagina a:nth-child(3n + 3) {
  background-color: var(--accent);
}

.menu-pagina a:nth-child(3n + 1):hover {
  background-color: var(--blue-hover);
}

.menu-pagina a:nth-child(3n + 2):hover {
  background-color: var(--blue-light-hover);
}

.menu-pagina a:nth-child(3n + 3):hover {
  background-color: var(--accent-hover);
}

.menu-bg-accent a {
  background-color: var(--accent) !important;
}

.menu-bg-accent a:hover {
  background-color: var(--accent-hover) !important;
}

.menu-bg-blue a {
  background-color: var(--blue) !important;
}

.menu-bg-blue a:hover {
  background-color: var(--blue-hover) !important;
}

.menu-bg-blue-light a {
  background-color: var(--blue-light) !important;
}

.menu-bg-blue-light a:hover {
  background-color: var(--blue-light-hover) !important;
}

.menu-pagina a {
  box-sizing: border-box;
  position: relative;
  border: none;
  text-align: center;
  font-size: 0.8em;
  color: white;
  font-weight: 500;
  cursor: pointer;
  margin: 2px;
  padding: 6px 40px;
  transition: 0.3s;
  flex-grow: 1;
  text-transform: uppercase;
  font-family: var(--font-family);
  text-decoration: none;
}

.menu-pagina a:hover {
  background-color: var(--accent-hover);
  transition: 0.3s;
}

.menu-pagina a:hover::after {
  position: absolute;
  content: "\f30f";
  width: 20px;
  height: 21px;
  line-height: 22px;
  right: 2px;
  top: 2px;
  border: var(--border-width) solid white;
  text-align: center;
  vertical-align: middle;
  transition: 0.3s;
  color: white;
  font-family: "Ionicons";
  font-size: 1rem;
}

.menu-vertical {
  flex-direction: column;
  margin-top: 30px;
}

.menu-float-right {
  flex-direction: column;
  float: right;
  width: calc(33% - 10px);
  margin: 0 0 10px 10px;
}

.menu-float-left {
  flex-direction: column;
  float: left;
  width: calc(33% - 10px);
  margin: 0 10px 10px 0;
}

/*
/////////////////////////////////////////////////////////////////
// Tab
/////////////////////////////////////////////////////////////////
*/
.tab {
  width: 100%;
  padding: 20px 0px;
  position: relative;
}

.tab .tab-bar {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
}

.tab .tab-bar::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -1px;
  width: 8px;
  height: 8px;
  right: -1px;
  border-bottom: var(--border-width) solid var(--linha-titulo-cor);
  border-right: var(--border-width) solid var(--linha-titulo-cor);
  transition: 0.3s;
  background-clip: border-box;
}

.tab .tab-bar::after {
  content: "";
  display: block;
  position: absolute;
  top: -1px;
  width: 8px;
  height: 8px;
  left: -1px;
  border-top: var(--border-width) solid var(--linha-titulo-cor);
  border-left: var(--border-width) solid var(--linha-titulo-cor);
  transition: 0.3s;
  background-clip: border-box;
}

.tab .tab-bar > button:nth-child(3n + 1) {
  background-color: var(--blue);
}

.tab .tab-bar > button:nth-child(3n + 2) {
  background-color: var(--blue-light);
}

.tab .tab-bar > button:nth-child(3n + 3) {
  background-color: var(--accent);
}

.tab .tab-bar > button:nth-child(3n + 1):hover {
  background-color: var(--blue-hover);
}

.tab .tab-bar > button:nth-child(3n + 2):hover {
  background-color: var(--blue-light-hover);
}

.tab .tab-bar > button:nth-child(3n + 3):hover {
  background-color: var(--accent-hover);
}

.tab .tab-bar > button {
  border: none;
  font-size: 0.8em;
  color: white;
  font-weight: 500;
  cursor: pointer;
  padding: 6px 18px;
  margin: 6px;
  border: 1px solid rgba(255, 255, 255, 0);
  transition: 0.3s;
  flex-grow: 1;
  text-transform: uppercase;
  font-family: var(--font-family);
}

.tab .tab-bar > button:hover {
  background-color: var(--accent-hover);
  transition: 0.3s;
}

.tab .tab-blue > button {
  background-color: var(--blue) !important;
}

.tab .tab-blue > button:hover {
  background-color: var(--blue-hover) !important;
}

.tab .tab-accent > button {
  background-color: var(--accent) !important;
}

.tab .tab-accent > button:hover {
  background-color: var(--accent-hover) !important;
}

.tab .tab-blue-light > button {
  background-color: var(--blue-light) !important;
}

.tab .tab-blue-light > button:hover {
  background-color: var(--blue-light-hover) !important;
}

.tab .active {
  position: relative;
  transition: 0.3s;
  background-color: var(--accent-hover);
}

.tab .tab-bar .active::after {
  position: absolute;
  content: "\f35d";
  width: 20px;
  height: 21px;
  line-height: 22px;
  right: 2px;
  top: 3px;
  border: var(--border-width) solid white;
  text-align: center;
  vertical-align: middle;
  transition: 0.3s;
  color: white;
  font-family: "Ionicons";
  font-size: 1rem;
}

/*
/////////////////////////////////////////////////////////////////
// Footer
/////////////////////////////////////////////////////////////////
*/
footer {
  background-color: var(--blue);
  color: white;
  padding: 20px;
  margin-top: 50px;
  font-size: 0.8em;
}

footer .logo {
  height: 120px;
}

footer ion-icon {
  font-size: 1.2em;
}

footer .flexrow * {
  margin: 8px 0px;
}

footer a {
  color: white;
}

.footermenu {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  position: relative;
  box-sizing: border-box;
  font-weight: 700;
  font-size: 1.4em;
  z-index: 5;
}

.footermenu > li {
  padding: 0;
  margin-bottom: 20px;
  margin-right: 15px;
  list-style: none;
  position: relative;
  cursor: pointer;
}

.footermenu > li > a {
  text-decoration: none;
  padding: 0.2em 0.2em;
  display: block;
  border-bottom: 1px solid white;
}

.footermenu > li > ul {
  padding: 0;
  margin: 0;
  list-style: none;
  position: absolute;
  top: 0px;
  left: 0px;
  transform: translateY(-100%);
  background-color: var(--blue);
  padding: 5px 10px;
  display: none;
  border: 1px solid white;
}

.footermenu > li > ul > li {
  padding: 0;
  margin: 5px 2px;
  list-style: none;
  font-weight: 400;
  white-space: nowrap;
  font-size: 0.9em;
}

.footermenu > li > ul > li a {
  text-decoration: none;
  padding: 0.15em 0.15em;
  display: block;
}

.footermenu > li > ul > li a:hover {
  text-decoration: underline;
}

.footermenu .ion-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.footermenu .ion-item ion-icon {
  font-size: 1.1em;
}

/*
////////////////////////////////////////////////////////////////
// Slide
/////////////////////////////////////////////////////////////////
*/
.fit {
  object-fit: cover;
}

.slides {
  padding: 0;
  width: 100%;
  height: var(--altura-banner);
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 0;
  background-color: var(--blue);
}

.slides * {
  user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

.slides input {
  display: none;
}

.slide-container {
  display: block;
}

.slide {
  top: 0;
  opacity: 0;
  width: 100%;
  height: var(--altura-banner);
  display: block;
  position: absolute;

  transform: scale(0);

  transition: all 0.7s ease-in-out;
}

.slide img {
  width: 100%;
  height: 100%;
}

.nav label {
  width: 75px;
  height: 100%;
  display: none;
  position: absolute;

  opacity: 0;
  z-index: 9;
  cursor: pointer;

  transition: opacity 0.2s;

  color: #fff;
  font-size: 30pt;
  text-align: center;
  line-height: var(--altura-banner);
  font-family: "Varela Round", sans-serif;
  background-color: rgba(255, 255, 255, 0.3);
  text-shadow: 0px 0px 15px rgb(119, 119, 119);
}

.slide:hover + .nav label {
  opacity: 0.5;
}

.nav label:hover {
  opacity: 1;
}

.nav .next {
  right: 0;
}

input:checked + .slide-container .slide {
  opacity: 1;

  transform: scale(1);

  transition: opacity 1s ease-in-out;
}

input:checked + .slide-container .nav label {
  display: block;
}

.nav-dots {
  width: 100%;
  bottom: -18px;
  height: 11px;
  display: block;
  position: absolute;
  text-align: center;
}

.nav-dots .nav-dot {
  top: -5px;
  width: 11px;
  height: 11px;
  margin: 0 4px;
  position: relative;
  border-radius: 100%;
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.6);
}

.nav-dots .nav-dot:hover {
  cursor: pointer;
  background-color: var(--accent-hover);
}

input#img-1:checked ~ .nav-dots label#img-dot-1,
input#img-2:checked ~ .nav-dots label#img-dot-2,
input#img-3:checked ~ .nav-dots label#img-dot-3,
input#img-4:checked ~ .nav-dots label#img-dot-4,
input#img-5:checked ~ .nav-dots label#img-dot-5,
input#img-6:checked ~ .nav-dots label#img-dot-6 {
  background: var(--accent);
}

.texto-banner-bottom-right {
  position: absolute;
  left: calc(50% - 100px);
  bottom: 100px;
  width: 600px;
  text-align: right;
}

.texto-banner-bottom-left {
  position: absolute;
  left: calc(50% - 480px);
  bottom: 100px;
  width: 600px;
  text-align: left;
}

.texto-banner-top-right {
  position: absolute;
  left: calc(50% - 100px);
  top: 100px;
  width: 600px;
  text-align: right;
}

.texto-banner-top-left {
  position: absolute;
  left: calc(50% - 480px);
  top: 100px;
  width: 600px;
  text-align: left;
}

.texto-banner-bottom-right > span,
.texto-banner-bottom-left > span,
.texto-banner-top-right > span,
.texto-banner-top-left > span {
  color: white;
  font-size: 2em;
  font-weight: 500;
  text-shadow: 2px 2px 8px #000000;
}
/*
/////////////////////////////////////////////////////////////////
// Mobile
/////////////////////////////////////////////////////////////////
*/

@media only screen and (max-width: 1020px) {
  html {
    font-size: 20px;
  }

  h1 {
    width: 100%;
    margin: 16px auto;
    font-size: 1.1em;
  }

  h2 {
    width: 100%;
    margin: 16px auto;
    font-size: 1.1em;
  }

  h3 {
    width: 100%;
    margin: 16px auto;
    font-size: 1.1em;
  }

  header {
    margin-top: 6px;
  }

  footer {
    padding: 16px 0px;
    margin-top: 16px;
  }

  [class*="item-"] {
    flex: 0 0 100%;
  }

  [class*="imagem-l"] {
    width: 90%;
    height: auto;
  }

  .bt {
    margin-bottom: 8px;
    font-size: 1em;
    /*display: initial;*/
  }
  /*
  .bt .dropdown {
    display: block;
    position: initial;
  }
  */

  .page-content {
    font-size: 21px;
  }

  .bt-small {
    font-size: 0.8em;
  }

  .bt-small .icon {
    bottom: 11px;
  }

  .bt .icon {
    width: 24px;
    height: 24px;
    line-height: 22px;
    padding-top: 1px;
  }

  .flexrow {
    justify-content: center;
  }

  .flexrow-footer {
    flex-direction: column;
    align-items: center;
  }

  .flexrow-start-center {
    align-items: center;
    justify-content: space-between;
  }

  .content {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .hidden-xs {
    display: none;
  }

  .hidden-not-xs {
    display: initial;
    opacity: 1;
  }

  .ion-item-horizontal-vertical {
    flex-direction: column;
  }

  .ion-item-horizontal-vertical ion-icon {
    padding: 0;
  }

  .footermenu {
    width: 100%;
  }

  .footermenu > li {
    width: 100%;
  }

  .footermenu > li > ul > li {
    white-space: initial;
  }

  .fit {
    object-fit: contain;
  }

  .slides,
  .slide {
    height: calc(100vh - 60px);
  }

  .nav label {
    line-height: calc(100vh - 60px);
  }

  .texto-banner-bottom-right > span,
  .texto-banner-bottom-left > span,
  .texto-banner-top-right > span,
  .texto-banner-top-left > span {
    font-size: 1.5em;
  }

  .texto-banner-bottom-right,
  .texto-banner-bottom-left,
  .texto-banner-top-right,
  .texto-banner-top-left {
    position: absolute;
    left: 0;
    bottom: 40px;
    top: initial;
    width: 100%;
    text-align: center;
  }

  .tab .tab-bar .button {
    font-size: 0.8em;
  }

  .tab .tab-bar {
    display: flex;
    flex-direction: column;
  }

  .text-center-xs {
    text-align: center;
  }

  .tab .tab-bar .active::after {
    height: 22px;
    top: 3px;
  }

  .grade {
    flex-wrap: nowrap;
    flex-direction: column;
  }

  .grade > div {
    flex-basis: 100%;
  }

  .icone-titulo-hor {
    font-size: 0.8em;
  }

  .footermenu > li > ul {
    width: 100%;
  }

  .quero-me-inscrever {
    float: none;
    width: 100%;
  }

  .coordenacao > div:nth-child(1) {
    height: 72px;
    width: 56px;
  }

  .coordenacao > div:nth-child(1) > img {
    height: 66px;
    width: 50px;
  }

  .flexrow-cursos-dados {
    display: flex;
    flex-wrap: wrap;
    flex-basis: 49%;
    flex-direction: row;
    align-items: stretch;
  }

  .flexrow-cursos-dados > * {
    flex: 0 0 49%;
  }

  .flexrow-cursos-dados-ferias > * {
    flex: 0 0 100%;
  }

  .flexrow > * {
    margin-bottom: 16px;
  }

  .linhaembranco {
    display: none;
  }

  .float-image {
    width: 100%;
  }

  .slick {
    padding: 0;
    width: 100%;
  }

  .slick-single-container {
    padding: 0;
    width: 100%;
  }

  .slick-single {
    padding: 0;
    width: 100%;
  }

  .slick .item {
    padding: 0;
  }

  .menu-pagina {
    order: -1;
    flex-direction: column;
  }

  .menu-float-right {
    width: 100%;
    margin: 10px 0;
    float: none;
  }

  .menu-float-left {
    width: 100%;
    margin: 10px 0;
    float: none;
  }

  .squares > a {
    width: calc(50vw - 24px);
    height: calc(50vw - 24px);
  }

  .squares > a > div:nth-child(2) {
    width: calc(50vw - 24px);
    height: calc(50vw - 24px);
  }

  .squares > a > div:nth-child(2):hover {
    padding-top: 0;
  }

  .squares img {
    width: calc(50vw - 24px);
    height: calc(50vw - 24px);
  }

  .squares > a:nth-child(4n + 1) > div {
    background-color: rgba(50, 50, 50, 0.7);
    text-shadow: 1px 1px 0.2em black, -1px -1px 0.2em black;
    color: var(--accent);
    color: white;
  }

  .squares > a:nth-child(4n + 2) > div {
    background-color: rgba(4, 177, 194, 0.7);
    color: white;
    text-shadow: 1px 1px 0.2em black, -1px -1px 0.2em black;
  }

  .squares > a:nth-child(4n + 3) > div {
    background-color: rgba(4, 177, 194, 0.7);
    color: white;
    text-shadow: 1px 1px 0.2em black, -1px -1px 0.2em black;
  }

  .squares > a:nth-child(4n + 4) > div {
    background-color: rgba(50, 50, 50, 0.7);
    text-shadow: 1px 1px 0.2em black, -1px -1px 0.2em black;
    color: var(--accent);
    color: white;
  }

  .menucursoscontainer {
    display: none;
  }

  .menucursoscontainermobile2 {
    width: 100%;
    border-spacing: 0;
    display: table;
    background-color: #08223d;
    font-weight: 500;
  }

  .menucursoscontainermobile2 td {
    height: 70px;
    width: 50%;
  }

  .menucursoscontainermobile2 td:nth-child(1) {
    color: white;
    text-align: center;
    font-weight: 500;
  }

  .menucursoscontainermobile2 td:nth-child(1) > span:nth-child(1) {
    color: white;
    text-align: center;
    font-size: 32px;
    font-weight: 700;
  }

  .menucursoscontainermobile2 td:nth-child(1) > span:nth-child(3) {
    font-size: 14px;
  }

  .menucursoscontainermobile2 td:nth-child(2) {
    text-align: center;
    padding: 8px;
  }

  .menucursoscontainermobile2 td:nth-child(2) a {
    text-align: center;
    font-weight: 500;
    color: #08223d;
    background-color: white;
    display: flex;
    padding: 8px;
    margin: 8px;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    text-decoration: none;
    font-size: 11px;
  }

  .menucursoscontainermobile {
    width: 100%;
    border-spacing: 0;
    display: table;
    font-size: 11px;
    font-weight: 500;
  }

  .menucursoscontainermobile td {
    height: 60px;
    font-size: 11px;
    font-weight: 500;
    background-color: #dddddd;
  }

  .menucursoscontainermobile td:nth-child(1) {
    padding-right: 8px;
    background-color: #08223d;
    color: white;
    text-align: right;
  }

  .menucursoscontainermobile td:nth-child(3),
  .menucursoscontainermobile td:nth-child(5) {
    text-align: left;
  }

  .menucursoscontainermobile a {
    color: #08223d;
  }

  .menucursoscontainermobile td:nth-child(2),
  .menucursoscontainermobile td:nth-child(4) {
    width: 20px;
  }

  .menucursoscontainermobile td:nth-child(6) {
    width: 5%;
  }

  .menucursoscontainermobile a > span:nth-child(3) {
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
  }
}

/*
/////////////////////////////////////////////////////////////////
// Formulários
/////////////////////////////////////////////////////////////////
*/

.formulario input,
textarea,
select {
  border: none;
  border-bottom: 1px solid var(--font-color-light);
  background-color: #eee;
  color: var(--font-color);
  padding-left: 4px;
  padding-right: 4px;
  transition: 0.3s;
  resize: none;
}

.formulario input[required] + label::after,
textarea[required] + label::after {
  content: "*";
}

.formulario input::placeholder,
textarea::placeholder {
  color: #eee;
}

.formulario div:not(.icon) {
  position: relative;
  margin: 15px 0;
}

.formulario div[class*="subformulario"] {
  margin: 0;
}

.formulario input:focus + label,
.formulario input:not(:placeholder-shown) + label,
textarea:focus + label,
.formulario textarea:not(:placeholder-shown) + label {
  top: -18px;
  font-size: 0.8em;
  color: var(--accent);
  outline: 0;
  box-shadow: 0;
}

.formulario input:focus,
input:not(:placeholder-shown),
textarea:focus,
textarea:not(:placeholder-shown) {
  border-bottom: 1px solid var(--accent);
}

.formulario input:invalid:not(:placeholder-shown) + label,
textarea:invalid:not(:placeholder-shown) + label {
  color: red;
}

.formulario label {
  position: absolute;
  color: var(--font-color-light);
  transition: 0.3s;
  top: 5px;
  left: 4px;
  font-size: 0.9em;
}

.formulario button {
  background-color: var(--accent);
  border: none;
  color: white;
  font-family: var(--font-family);
  padding: 5px 10px;
  font-size: 0.9em;
  font-weight: 500;
}

.formulario {
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}

.formulario-button {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  width: 100%;
}

.file-container {
  border-bottom: 1px solid var(--font-color-light);
  background-color: #eee;
  color: var(--font-color);
  font-size: 0.9em;
}

.file-container > * {
  margin: 0 !important;
}

.subformulario {
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  margin: 0;
  position: relative;
}

.formulario > * {
  margin: 4px;
}

@media only screen and (max-width: 979px) {
  .formulario {
    font-size: 21px;
  }

  .formulario input {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    font-size: 1em;
  }

  .formulario select {
    padding: 6px;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .formulario textarea {
    width: 100%;
    font-size: 1em;
  }

  .formulario > * {
    margin: 4px 0px;
    flex-basis: 100%;
  }

  .subformulario > * {
    margin: 4px 0px;
    flex-basis: 100%;
  }

  .formulario input:focus + label,
  .formulario input:not(:placeholder-shown) + label,
  textarea:focus + label,
  .formulario textarea:not(:placeholder-shown) + label {
    top: -18px;
  }
}

/**
 *
 * slippry v1.4.0 - Responsive content slider for jQuery
 * http://slippry.com
 *
 * Authors: Lukas Jakob Hafner - @saftsaak
 *          Thomas Hurd - @SeenNotHurd
 *
 * Copyright 2016, booncon oy - http://booncon.com
 *
 *
 * Released under the MIT license - http://opensource.org/licenses/MIT
 */
/* kenBurns animations, very basic */
@-webkit-keyframes left-right {
  0% {
    -webkit-transform: translateY(-20%) translateX(-10%);
    transform: translateY(-20%) translateX(-10%);
  }
  100% {
    -webkit-transform: translateY(0%) translateX(10%);
    transform: translateY(0%) translateX(10%);
  }
}
@-o-keyframes left-right {
  0% {
    -o-transform: translateY(-20%) translateX(-10%);
    transform: translateY(-20%) translateX(-10%);
  }
  100% {
    -o-transform: translateY(0%) translateX(10%);
    transform: translateY(0%) translateX(10%);
  }
}
@keyframes left-right {
  0% {
    -webkit-transform: translateY(-20%) translateX(-10%);
    -o-transform: translateY(-20%) translateX(-10%);
    transform: translateY(-20%) translateX(-10%);
  }
  100% {
    -webkit-transform: translateY(0%) translateX(10%);
    -o-transform: translateY(0%) translateX(10%);
    transform: translateY(0%) translateX(10%);
  }
}
@-webkit-keyframes right-left {
  0% {
    -webkit-transform: translateY(0%) translateX(10%);
    transform: translateY(0%) translateX(10%);
  }
  100% {
    -webkit-transform: translateY(-20%) translateX(-10%);
    transform: translateY(-20%) translateX(-10%);
  }
}
@-o-keyframes right-left {
  0% {
    -o-transform: translateY(0%) translateX(10%);
    transform: translateY(0%) translateX(10%);
  }
  100% {
    -o-transform: translateY(-20%) translateX(-10%);
    transform: translateY(-20%) translateX(-10%);
  }
}
@keyframes right-left {
  0% {
    -webkit-transform: translateY(0%) translateX(10%);
    -o-transform: translateY(0%) translateX(10%);
    transform: translateY(0%) translateX(10%);
  }
  100% {
    -webkit-transform: translateY(-20%) translateX(-10%);
    -o-transform: translateY(-20%) translateX(-10%);
    transform: translateY(-20%) translateX(-10%);
  }
}
/* added to the original element calling slippry */
.sy-box.sy-loading {
  background: url("../img/sy-loader.gif") 50% 50% no-repeat;
  -webkit-background-size: 32px 32px;
  background-size: 32px;
  min-height: 40px;
}
.sy-box.sy-loading .sy-slides-wrap,
.sy-box.sy-loading .sy-pager {
  visibility: hidden;
}

/* element that wraps the slides */
.sy-slides-wrap {
  position: relative;
  height: 100%;
  width: 100%;
}
.sy-slides-wrap:hover .sy-controls {
  display: block;
}

/* element that crops the visible area to the slides */
.sy-slides-crop {
  height: 100%;
  width: 100%;
  position: absolute;
  overflow: hidden;
}

/* list containing the slides */
.sy-list {
  width: 100%;
  height: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
}
.sy-list.horizontal {
  -webkit-transition: left ease;
  -o-transition: left ease;
  transition: left ease;
}
.sy-list.vertical {
  -webkit-transition: top ease;
  -o-transition: top ease;
  transition: top ease;
}

/* single slide */
.sy-slide {
  position: absolute;
  width: 100%;
  z-index: 2;
}
.sy-slide.kenburns {
  width: 140%;
  left: -20%;
}
.sy-slide.kenburns.useCSS {
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}
.sy-slide.kenburns.useCSS.sy-ken:nth-child(1n) {
  -webkit-animation-name: left-right;
  -o-animation-name: left-right;
  animation-name: left-right;
  -webkit-animation-fill-mode: forwards;
  -o-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.sy-slide.kenburns.useCSS.sy-ken:nth-child(2n) {
  -webkit-animation-name: right-left;
  -o-animation-name: right-left;
  animation-name: right-left;
  -webkit-animation-fill-mode: forwards;
  -o-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.sy-slide.sy-active {
  z-index: 3;
}
.sy-slide > img {
  object-fit: cover;
  margin: 0;
  padding: 0;
  display: block;
  width: 100%;
  border: 0;
}
.sy-slide > a {
  margin: 0;
  padding: 0;
  display: block;
  width: 100%;
}
.sy-slide > a > img {
  object-fit: cover;
  margin: 0;
  padding: 0;
  display: block;
  width: 100%;
  border: 0;
}

/* next/ prev buttons, with arrows and clickable area a lot larger than the visible buttons */
.sy-controls {
  display: none;
  list-style: none;
  height: 100%;
  width: 100%;
  position: absolute;
  padding: 0;
  margin: 0;
}
.sy-controls li {
  position: absolute;
  width: 10%;
  min-width: 4.2em;
  height: 100%;
  z-index: 33;
}
.sy-controls li.sy-prev {
  left: 0;
  top: 0;
}
.sy-controls li.sy-prev a:after {
  background-position: -5% 0;
}
.sy-controls li.sy-next {
  right: 0;
  top: 0;
}
.sy-controls li.sy-next a:after {
  background-position: 105% 0;
}
.sy-controls li a {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  text-indent: -9999px;
}
.sy-controls li a:link,
.sy-controls li a:visited {
  opacity: 0.4;
}
.sy-controls li a:hover,
.sy-controls li a:focus {
  opacity: 0.8;
  outline: none;
}
.sy-controls li a:after {
  content: "";
  background-image: url("arrows.svg");
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  text-align: center;
  text-indent: 0;
  line-height: 1.8em;
  color: #111;
  font-weight: 800;
  position: absolute;
  background-color: #fff;
  width: 1.8em;
  height: 1.8em;
  left: 50%;
  top: 50%;
  margin-top: -1.4em;
  margin-left: -1.4em;
  border-radius: 50%;
}
@media only screen and (max-device-width: 600px) {
  .sy-controls {
    display: block;
  }
  .sy-controls li {
    min-width: 2.1em;
  }
  .sy-controls li a:after {
    width: 1.4em;
    height: 1.4em;
    margin-top: -0.7em;
    margin-left: -0.7em;
  }
}

/* captions, styled fo the overlay variant */
.sy-caption-wrap {
  position: absolute;
  bottom: 2em;
  z-index: 12;
  left: 50%;
}
.sy-caption-wrap .sy-caption {
  position: relative;
  left: -50%;
  background-color: rgba(0, 0, 0, 0.54);
  color: #fff;
  padding: 0.4em 1em;
  border-radius: 1.2em;
}
.sy-caption-wrap .sy-caption a:link,
.sy-caption-wrap .sy-caption a:visited {
  color: #e24b70;
  font-weight: 600;
  text-decoration: none;
}
.sy-caption-wrap .sy-caption a:hover,
.sy-caption-wrap .sy-caption a:focus {
  text-decoration: underline;
}
@media only screen and (max-device-width: 600px),
  screen and (max-width: 600px) {
  .sy-caption-wrap {
    left: 0;
    bottom: 0.4em;
  }
  .sy-caption-wrap .sy-caption {
    left: 0;
    padding: 0.2em 0.4em;
    font-size: 0.92em;
    border-radius: 0;
  }
}

/* pager bubbles */
.sy-pager {
  clear: both;
  display: block;
  width: 100%;
  margin-top: -30px;
  margin: 0.5em 0 0;
  padding: 0;
  list-style: none;
  text-align: center;
}
.sy-pager li {
  display: inline-block;
  width: 0.65em;
  height: 0.65em;
  margin: 0 1em 0 0;
  border-radius: 50%;
}
.sy-pager li.sy-active a {
  background-color: var(--accent);
}
.sy-pager li a {
  width: 100%;
  height: 100%;
  display: block;
  background-color: #ccc;
  text-indent: -9999px;
  -webkit-background-size: 2em 2em;
  background-size: 2em;
  border-radius: 50%;
}
.sy-pager li a:link,
.sy-pager li a:visited {
  opacity: 1;
}
.sy-pager li a:hover,
.sy-pager li a:focus {
  opacity: 0.6;
}

/* element to "keep/ fill" the space of the content, gets intrinsic height via js */
.sy-filler {
  width: 100%;
}
.sy-filler.ready {
  -webkit-transition: padding 600ms ease;
  -o-transition: padding 600ms ease;
  transition: padding 600ms ease;
}

/* 
- Name: megamenu.js - style.css
- Version: 1.0
- Latest update: 29.01.2016.
- Author: Mario Loncarek
- Author web site: http://marioloncarek.com
*/

/* ––––––––––––––––––––––––––––––––––––––––––––––––––
Body - not related to megamenu
–––––––––––––––––––––––––––––––––––––––––––––––––– */
* {
  box-sizing: border-box;
}

.menu-container a {
  color: black;
}

.icone-menu {
  height: 50px;
  padding-right: 10px;
}

.icone-menu-container {
  padding-bottom: 18px;
}

.busca {
  padding-bottom: 20px;
}
/* ––––––––––––––––––––––––––––––––––––––––––––––––––
megamenu.js STYLE STARTS HERE
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* ––––––––––––––––––––––––––––––––––––––––––––––––––
Screen style's
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.menu-container {
  width: var(--content-width);
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  font-size: 0.9em;
}

.menu-mobile {
  display: none;
  padding: 15px;
}

.menu-mobile:before {
  content: "\f394";
  font-family: "Ionicons";
  font-size: 1.5rem;
  padding: 0;
  float: right;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-25%);
  -ms-transform: translateY(-25%);
  transform: translateY(-25%);
  padding-top: 4px;
}

.menu-dropdown-icon:before {
  content: "\f489";
  font-family: "Ionicons";
  display: none;
  cursor: pointer;
  float: right;
  padding: 0.7em 1em;
  font-size: 1.2em;
  color: #000;
}

.menu ul {
  list-style: none;
}

.menu > ul {
  margin: 0 auto;
  width: 100%;
  list-style: none;
  padding: 0;
  position: relative;
  /* IF .menu position=relative -> ul = container width, ELSE ul = 100% width */
  box-sizing: border-box;
  font-weight: 500;
  font-size: 0.9em;
}

.menu > ul:before,
.menu > ul:after {
  content: "";
  display: table;
}

.menu > ul:after {
  clear: both;
}

.menu > ul > li {
  float: left;
  padding: 0;
  margin: 0;
}

.menu > ul > li a {
  text-decoration: none;
  padding: 1.3em 0.7em;
  display: block;
}

.menu > ul > li:hover {
  background: var(--accent);
}

.menu > ul > li > ul {
  display: none;
  width: 750px;
  background: var(--accent-transp);
  padding: 20px;
  position: absolute;
  z-index: 999;
  left: 0;
  margin: 0;
  list-style: none;
  box-sizing: border-box;
  font-weight: 400;
  font-size: 0.9em;
  max-width: 750px;
  min-width: 250px;
}

.menu > ul > li > ul:before,
.menu > ul > li > ul:after {
  content: "";
  display: table;
}

.menu > ul > li > ul:after {
  clear: both;
}

.menu > ul > li > ul > li {
  margin: 0;
  padding-bottom: 0;
  list-style: none;
  width: 230px;
  background: none;
  float: left;
}

.menu > ul > li > ul > li a {
  padding-left: 10px !important;
  color: #fff;
  padding: 0.2em 0;
  width: 95%;
  display: block;
  font-weight: 700;
  border-bottom: 1px solid #fff;
}

.menu > ul > li > ul > li > a {
  font-weight: 700;
  /* text-transform: uppercase; */
}

.menu > ul > li > ul > li a:hover {
  background-color: var(--accent-hover);
}

.menu > ul > li > ul > li > ul {
  display: block;
  padding: 0;
  margin: 10px 0 0;
  box-sizing: border-box;
}

.menu > ul > li > ul > li > ul:before,
.menu > ul > li > ul > li > ul:after {
  content: "";
  display: table;
}

.menu > ul > li > ul > li > ul:after {
  clear: both;
}

.menu > ul > li > ul > li > ul > li {
  float: left;
  width: 100%;
  padding: 5px 0;
  margin: 0;
}

.menu > ul > li > ul > li > ul > li a {
  border: 0;
  font-weight: 400;
}

.menu > ul > li > ul > li > ul > li > ul {
  border: 0;
  margin: 0;
  padding: 0 10px;
  list-style: none;
}

.menu > ul > li > ul.normal-sub {
  width: 300px;
  left: auto;
  padding: 10px 20px;
}

.menu > ul > li > ul.normal-sub > li {
  width: 100%;
}

.menu > ul > li > ul.normal-sub > li a {
  border: 0;
  padding: 0.5em 0;
  font-weight: 400;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––
Mobile style's
–––––––––––––––––––––––––––––––––––––––––––––––––– */

@media only screen and (max-width: 979px) {
  .menu {
    width: 100%;
  }
  .menu-container {
    width: 100%;
    background-color: white;
  }
  .menu-mobile {
    display: block;
  }
  .menu-dropdown-icon:before {
    display: block;
  }
  .menu > ul {
    display: none;
  }
  .menu > ul > li {
    width: 100%;
    float: none;
    display: block;
  }
  .menu > ul > li a {
    padding: 1em;
    width: 100%;
    display: block;
  }
  .menu > ul > li > ul {
    position: relative;
    width: 100%;
  }
  .menu > ul > li > ul.normal-sub {
    width: 100%;
  }
  .menu > ul > li > ul > li {
    float: none;
    width: 100%;
    margin-top: 20px;
  }
  .menu > ul > li > ul > li:first-child {
    margin: 0;
  }
  .menu > ul > li > ul > li > ul {
    position: relative;
  }
  .menu > ul > li > ul > li > ul > li {
    float: none;
  }
  .menu .show-on-mobile {
    display: block;
  }
  .icone-menu {
    height: 40px;
    padding-right: 20px;
  }

  .menu .hidden-xs {
    display: none;
  }
}
