@import url("https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,500,500i,700,700i,900,900i&display=swap");
@import url("https://fonts.googleapis.com/css?family=Rubik:300,300i,400,400i,500,500i,700,700i,900,900i&display=swap");
*, *::before, *::after {
  box-sizing: border-box;
}
.container, .container-fluid {
  margin-right: auto;
  margin-left: auto;
}

.container-fluid {
  padding-right: 2rem;
  padding-left: 2rem;
}

.row {
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -.5rem;
  margin-left: -.5rem;
}

.row.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.col.reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.col-xs, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-offset-0, .col-xs-offset-1, .col-xs-offset-10, .col-xs-offset-11, .col-xs-offset-12, .col-xs-offset-2, .col-xs-offset-3, .col-xs-offset-4, .col-xs-offset-5, .col-xs-offset-6, .col-xs-offset-7, .col-xs-offset-8, .col-xs-offset-9 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  padding-right: .5rem;
  padding-left: .5rem;
}

.col-xs {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  max-width: 100%;
}

.col-xs-1 {
  -ms-flex-preferred-size: 8.33333333%;
  flex-basis: 8.33333333%;
  max-width: 8.33333333%;
}

.col-xs-2 {
  -ms-flex-preferred-size: 16.66666667%;
  flex-basis: 16.66666667%;
  max-width: 16.66666667%;
}

.col-xs-3 {
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  max-width: 25%;
}

.col-xs-4 {
  -ms-flex-preferred-size: 33.33333333%;
  flex-basis: 33.33333333%;
  max-width: 33.33333333%;
}

.col-xs-5 {
  -ms-flex-preferred-size: 41.66666667%;
  flex-basis: 41.66666667%;
  max-width: 41.66666667%;
}

.col-xs-6 {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%;
}

.col-xs-7 {
  -ms-flex-preferred-size: 58.33333333%;
  flex-basis: 58.33333333%;
  max-width: 58.33333333%;
}

.col-xs-8 {
  -ms-flex-preferred-size: 66.66666667%;
  flex-basis: 66.66666667%;
  max-width: 66.66666667%;
}

.col-xs-9 {
  -ms-flex-preferred-size: 75%;
  flex-basis: 75%;
  max-width: 75%;
}

.col-xs-10 {
  -ms-flex-preferred-size: 83.33333333%;
  flex-basis: 83.33333333%;
  max-width: 83.33333333%;
}

.col-xs-11 {
  -ms-flex-preferred-size: 91.66666667%;
  flex-basis: 91.66666667%;
  max-width: 91.66666667%;
}

.col-xs-12 {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}

.col-xs-offset-0 {
  margin-left: 0;
}

.col-xs-offset-1 {
  margin-left: 8.33333333%;
}

.col-xs-offset-2 {
  margin-left: 16.66666667%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-4 {
  margin-left: 33.33333333%;
}

.col-xs-offset-5 {
  margin-left: 41.66666667%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-7 {
  margin-left: 58.33333333%;
}

.col-xs-offset-8 {
  margin-left: 66.66666667%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-10 {
  margin-left: 83.33333333%;
}

.col-xs-offset-11 {
  margin-left: 91.66666667%;
}

.start-xs {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-align: start;
}

.center-xs {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.end-xs {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  text-align: end;
}

.top-xs {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.middle-xs {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.bottom-xs {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.around-xs {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.between-xs {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.first-xs {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}

.last-xs {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

/* Estado normal ao carregar */
/* Estado inicial escondido */
.banner-home .megas,
.banner-home .preco,
.banner-home .botao {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.7s cubic-bezier(.22,.61,.36,1);
}

/* Quando animar */
.banner-home .megas.animate,
.banner-home .preco.animate,
.banner-home .botao.animate {
  opacity: 1;
  transform: translateX(0);
}

#destaque .megas,
#destaque .preco,
#destaque .botao {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.7s cubic-bezier(.22,.61,.36,1);
}

#destaque .megas.animate,
#destaque .preco.animate,
#destaque .botao.animate {
  opacity: 1;
  transform: translateX(0);
}

@media only screen and (min-width: 48em) {
  .container {
    width: 49rem;
  }
  .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-offset-0, .col-sm-offset-1, .col-sm-offset-10, .col-sm-offset-11, .col-sm-offset-12, .col-sm-offset-2, .col-sm-offset-3, .col-sm-offset-4, .col-sm-offset-5, .col-sm-offset-6, .col-sm-offset-7, .col-sm-offset-8, .col-sm-offset-9 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
  }
  .col-sm {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-sm-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-sm-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-sm-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-sm-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-sm-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-sm-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-sm-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-sm-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-sm-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-sm-offset-0 {
    margin-left: 0;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .start-sm {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
  }
  .center-sm {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }
  .end-sm {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
  }
  .top-sm {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .middle-sm {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .bottom-sm {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .around-sm {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .between-sm {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .first-sm {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .last-sm {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

@media only screen and (min-width: 64em) {
  .container {
    width: 65rem;
  }
  .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-offset-0, .col-md-offset-1, .col-md-offset-10, .col-md-offset-11, .col-md-offset-12, .col-md-offset-2, .col-md-offset-3, .col-md-offset-4, .col-md-offset-5, .col-md-offset-6, .col-md-offset-7, .col-md-offset-8, .col-md-offset-9 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
  }
  .col-md {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-md-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-md-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-md-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-md-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-md-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-md-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-md-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-md-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-md-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-md-offset-0 {
    margin-left: 0;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .start-md {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
  }
  .center-md {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }
  .end-md {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
  }
  .top-md {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .middle-md {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .bottom-md {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .around-md {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .between-md {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .first-md {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .last-md {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

@media only screen and (min-width: 75em) {
  .container {
    width: 76rem;
  }
  .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-offset-0, .col-lg-offset-1, .col-lg-offset-10, .col-lg-offset-11, .col-lg-offset-12, .col-lg-offset-2, .col-lg-offset-3, .col-lg-offset-4, .col-lg-offset-5, .col-lg-offset-6, .col-lg-offset-7, .col-lg-offset-8, .col-lg-offset-9 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
  }
  .col-lg {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-lg-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-lg-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-lg-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-lg-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-lg-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-lg-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-lg-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-lg-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-lg-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-lg-offset-0 {
    margin-left: 0;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .start-lg {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
  }
  .center-lg {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }
  .end-lg {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
  }
  .top-lg {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .middle-lg {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .bottom-lg {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .around-lg {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .between-lg {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .first-lg {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .last-lg {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

/*!
 * Fotorama 4.6.4 | http://fotorama.io/license/
 */
.fotorama__arr:focus:after, .fotorama__fullscreen-icon:focus:after, .fotorama__html, .fotorama__img, .fotorama__nav__frame:focus .fotorama__dot:after, .fotorama__nav__frame:focus .fotorama__thumb:after, .fotorama__stage__frame, .fotorama__stage__shaft, .fotorama__video iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.fotorama--fullscreen, .fotorama__img {
  max-width: 99999px !important;
  max-height: 99999px !important;
  min-width: 0 !important;
  min-height: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.fotorama__wrap .fotorama__grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}

.fotorama__grabbing * {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing;
}

.fotorama__spinner {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
}

.fotorama__wrap--css3 .fotorama__arr, .fotorama__wrap--css3 .fotorama__fullscreen-icon, .fotorama__wrap--css3 .fotorama__nav__shaft, .fotorama__wrap--css3 .fotorama__stage__shaft, .fotorama__wrap--css3 .fotorama__thumb-border, .fotorama__wrap--css3 .fotorama__video-close, .fotorama__wrap--css3 .fotorama__video-play {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.fotorama__caption, .fotorama__nav:after, .fotorama__nav:before, .fotorama__stage:after, .fotorama__stage:before, .fotorama__wrap--css3 .fotorama__html, .fotorama__wrap--css3 .fotorama__nav, .fotorama__wrap--css3 .fotorama__spinner, .fotorama__wrap--css3 .fotorama__stage, .fotorama__wrap--css3 .fotorama__stage .fotorama__img, .fotorama__wrap--css3 .fotorama__stage__frame {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.fotorama__arr:focus, .fotorama__fullscreen-icon:focus, .fotorama__nav__frame {
  outline: 0;
}

.fotorama__arr:focus:after, .fotorama__fullscreen-icon:focus:after, .fotorama__nav__frame:focus .fotorama__dot:after, .fotorama__nav__frame:focus .fotorama__thumb:after {
  content: '';
  border-radius: inherit;
  background-color: rgba(0, 175, 234, 0.5);
}

.fotorama__wrap--video .fotorama__stage, .fotorama__wrap--video .fotorama__stage__frame--video, .fotorama__wrap--video .fotorama__stage__frame--video .fotorama__html, .fotorama__wrap--video .fotorama__stage__frame--video .fotorama__img, .fotorama__wrap--video .fotorama__stage__shaft {
  -webkit-transform: none !important;
  transform: none !important;
}

.fotorama__wrap--css3 .fotorama__nav__shaft, .fotorama__wrap--css3 .fotorama__stage__shaft, .fotorama__wrap--css3 .fotorama__thumb-border {
  transition-property: -webkit-transform,width;
  transition-property: transform,width;
  transition-timing-function: cubic-bezier(0.1, 0, 0.25, 1);
  transition-duration: 0ms;
}

.fotorama__arr, .fotorama__fullscreen-icon, .fotorama__no-select, .fotorama__video-close, .fotorama__video-play, .fotorama__wrap {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fotorama__select {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

.fotorama__nav, .fotorama__nav__frame {
  margin: auto;
  padding: 0;
}

.fotorama__caption__wrap, .fotorama__nav__frame, .fotorama__nav__shaft {
  -moz-box-orient: vertical;
  display: inline-block;
  vertical-align: middle;
  *display: inline;
  *zoom: 1;
}

.fotorama__nav__frame, .fotorama__thumb-border {
  box-sizing: content-box;
}

.fotorama__caption__wrap {
  box-sizing: border-box;
}

.fotorama--hidden, .fotorama__load {
  position: absolute;
  left: -99999px;
  top: -99999px;
  z-index: -1;
}

.fotorama__arr, .fotorama__fullscreen-icon, .fotorama__nav, .fotorama__nav__frame, .fotorama__nav__shaft, .fotorama__stage__frame, .fotorama__stage__shaft, .fotorama__video-close, .fotorama__video-play {
  -webkit-tap-highlight-color: transparent;
}

.fotorama__arr, .fotorama__fullscreen-icon, .fotorama__video-close, .fotorama__video-play {
  background: url(fotorama.png) no-repeat;
}

@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 2dppx) {
  .fotorama__arr, .fotorama__fullscreen-icon, .fotorama__video-close, .fotorama__video-play {
    background: url(fotorama@2x.png) 0 0/96px 160px no-repeat;
  }
}

.fotorama__thumb {
  background-color: #7f7f7f;
  background-color: rgba(127, 127, 127, 0.2);
}

@media print {
  .fotorama__arr, .fotorama__fullscreen-icon, .fotorama__thumb-border, .fotorama__video-close, .fotorama__video-play {
    background: none !important;
  }
}

.fotorama {
  min-width: 1px;
  overflow: hidden;
}

.fotorama:not(.fotorama--unobtrusive) > *:not(:first-child) {
  display: none;
}

.fullscreen {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  background: #000;
}

.fotorama--fullscreen {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  float: none !important;
  z-index: 2147483647 !important;
  background: #000;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
}

.fotorama--fullscreen .fotorama__nav, .fotorama--fullscreen .fotorama__stage {
  background: #000;
}

.fotorama__wrap {
  -webkit-text-size-adjust: 100%;
  position: relative;
  direction: ltr;
  z-index: 0;
}

.fotorama__wrap--rtl .fotorama__stage__frame {
  direction: rtl;
}

.fotorama__nav, .fotorama__stage {
  overflow: hidden;
  position: relative;
  max-width: 100%;
}

.fotorama__wrap--pan-y {
  -ms-touch-action: pan-y;
}

.fotorama__wrap .fotorama__pointer {
  cursor: pointer;
}

.fotorama__wrap--slide .fotorama__stage__frame {
  opacity: 1 !important;
}

.fotorama__stage__frame {
  overflow: hidden;
}

.fotorama__stage__frame.fotorama__active {
  z-index: 8;
}

.fotorama__wrap--fade .fotorama__stage__frame {
  display: none;
}

.fotorama__wrap--fade .fotorama__fade-front, .fotorama__wrap--fade .fotorama__fade-rear, .fotorama__wrap--fade .fotorama__stage__frame.fotorama__active {
  display: block;
  left: 0;
  top: 0;
}

.fotorama__wrap--fade .fotorama__fade-front {
  z-index: 8;
}

.fotorama__wrap--fade .fotorama__fade-rear {
  z-index: 7;
}

.fotorama__wrap--fade .fotorama__fade-rear.fotorama__active {
  z-index: 9;
}

.fotorama__wrap--fade .fotorama__stage .fotorama__shadow {
  display: none;
}

.fotorama__img {
  -ms-filter: "alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
  border: none !important;
}

.fotorama__error .fotorama__img, .fotorama__loaded .fotorama__img {
  -ms-filter: "alpha(Opacity=100)";
  filter: alpha(opacity=100);
  opacity: 1;
}

.fotorama--fullscreen .fotorama__loaded--full .fotorama__img, .fotorama__img--full {
  display: none;
}

.fotorama--fullscreen .fotorama__loaded--full .fotorama__img--full {
  display: block;
}

.fotorama__wrap--only-active .fotorama__nav, .fotorama__wrap--only-active .fotorama__stage {
  max-width: 99999px !important;
}

.fotorama__wrap--only-active .fotorama__stage__frame {
  visibility: hidden;
}

.fotorama__wrap--only-active .fotorama__stage__frame.fotorama__active {
  visibility: visible;
}

.fotorama__nav {
  font-size: 0;
  line-height: 0;
  text-align: center;
  display: none;
  white-space: nowrap;
  z-index: 5;
}

.fotorama__nav__shaft {
  position: relative;
  left: 0;
  top: 0;
  text-align: left;
}

.fotorama__nav__frame {
  position: relative;
  cursor: pointer;
}

.fotorama__nav--dots {
  display: block;
}

.fotorama__nav--dots .fotorama__nav__frame {
  width: 18px;
  height: 30px;
}

.fotorama__nav--dots .fotorama__nav__frame--thumb, .fotorama__nav--dots .fotorama__thumb-border {
  display: none;
}

.fotorama__nav--thumbs {
  display: block;
}

.fotorama__nav--thumbs .fotorama__nav__frame {
  padding-left: 0 !important;
}

.fotorama__nav--thumbs .fotorama__nav__frame:last-child {
  padding-right: 0 !important;
}

.fotorama__nav--thumbs .fotorama__nav__frame--dot {
  display: none;
}

.fotorama__dot {
  display: block;
  width: 4px;
  height: 4px;
  position: relative;
  top: 12px;
  left: 6px;
  border-radius: 6px;
  border: 1px solid #7f7f7f;
}

.fotorama__nav__frame:focus .fotorama__dot:after {
  padding: 1px;
  top: -1px;
  left: -1px;
}

.fotorama__nav__frame.fotorama__active .fotorama__dot {
  width: 0;
  height: 0;
  border-width: 3px;
}

.fotorama__nav__frame.fotorama__active .fotorama__dot:after {
  padding: 3px;
  top: -3px;
  left: -3px;
}

.fotorama__thumb {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
}

.fotorama__nav__frame:focus .fotorama__thumb {
  z-index: 2;
}

.fotorama__thumb-border {
  position: absolute;
  z-index: 9;
  top: 0;
  left: 0;
  border-style: solid;
  border-color: #00afea;
  background-image: linear-gradient(to bottom right, rgba(255, 255, 255, 0.25), rgba(64, 64, 64, 0.1));
}

.fotorama__caption {
  position: absolute;
  z-index: 12;
  bottom: 0;
  left: 0;
  right: 0;
  font-family: 'Helvetica Neue',Arial,sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #000;
}

.fotorama__caption a {
  text-decoration: none;
  color: #000;
  border-bottom: 1px solid;
  border-color: rgba(0, 0, 0, 0.5);
}

.fotorama__caption a:hover {
  color: #333;
  border-color: rgba(51, 51, 51, 0.5);
}

.fotorama__wrap--rtl .fotorama__caption {
  left: auto;
  right: 0;
}

.fotorama__wrap--no-captions .fotorama__caption, .fotorama__wrap--video .fotorama__caption {
  display: none;
}

.fotorama__caption__wrap {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 5px 10px;
}

@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spinner {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.fotorama__wrap--css3 .fotorama__spinner {
  -webkit-animation: spinner 24s infinite linear;
  animation: spinner 24s infinite linear;
}

.fotorama__wrap--css3 .fotorama__html, .fotorama__wrap--css3 .fotorama__stage .fotorama__img {
  transition-property: opacity;
  transition-timing-function: linear;
  transition-duration: .3s;
}

.fotorama__wrap--video .fotorama__stage__frame--video .fotorama__html, .fotorama__wrap--video .fotorama__stage__frame--video .fotorama__img {
  -ms-filter: "alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
}

.fotorama__select {
  cursor: auto;
}

.fotorama__video {
  top: 32px;
  right: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  z-index: 10;
}

@-moz-document url-prefix() {
  .fotorama__active {
    box-shadow: 0 0 0 transparent;
  }
}

.fotorama__arr, .fotorama__fullscreen-icon, .fotorama__video-close, .fotorama__video-play {
  position: absolute;
  z-index: 11;
  cursor: pointer;
}

.fotorama__arr {
  position: absolute;
  width: 32px;
  height: 32px;
  top: 50%;
  margin-top: -16px;
}

.fotorama__arr--prev {
  left: 2px;
  background-position: 0 0;
}

.fotorama__arr--next {
  right: 2px;
  background-position: -32px 0;
}

.fotorama__arr--disabled {
  pointer-events: none;
  cursor: default;
  *display: none;
  opacity: .1;
}

.fotorama__fullscreen-icon {
  width: 32px;
  height: 32px;
  top: 2px;
  right: 2px;
  background-position: 0 -32px;
  z-index: 20;
}

.fotorama__arr:focus, .fotorama__fullscreen-icon:focus {
  border-radius: 50%;
}

.fotorama--fullscreen .fotorama__fullscreen-icon {
  background-position: -32px -32px;
}

.fotorama__video-play {
  width: 96px;
  height: 96px;
  left: 50%;
  top: 50%;
  margin-left: -48px;
  margin-top: -48px;
  background-position: 0 -64px;
  opacity: 0;
}

.fotorama__wrap--css2 .fotorama__video-play, .fotorama__wrap--video .fotorama__stage .fotorama__video-play {
  display: none;
}

.fotorama__error .fotorama__video-play, .fotorama__loaded .fotorama__video-play, .fotorama__nav__frame .fotorama__video-play {
  opacity: 1;
  display: block;
}

.fotorama__nav__frame .fotorama__video-play {
  width: 32px;
  height: 32px;
  margin-left: -16px;
  margin-top: -16px;
  background-position: -64px -32px;
}

.fotorama__video-close {
  width: 32px;
  height: 32px;
  top: 0;
  right: 0;
  background-position: -64px 0;
  z-index: 20;
  opacity: 0;
}

.fotorama__wrap--css2 .fotorama__video-close {
  display: none;
}

.fotorama__wrap--css3 .fotorama__video-close {
  -webkit-transform: translate3d(32px, -32px, 0);
  transform: translate3d(32px, -32px, 0);
}

.fotorama__wrap--video .fotorama__video-close {
  display: block;
  opacity: 1;
}

.fotorama__wrap--css3.fotorama__wrap--video .fotorama__video-close {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.fotorama__wrap--no-controls.fotorama__wrap--toggle-arrows .fotorama__arr, .fotorama__wrap--no-controls.fotorama__wrap--toggle-arrows .fotorama__fullscreen-icon {
  opacity: 0;
}

.fotorama__wrap--no-controls.fotorama__wrap--toggle-arrows .fotorama__arr:focus, .fotorama__wrap--no-controls.fotorama__wrap--toggle-arrows .fotorama__fullscreen-icon:focus {
  opacity: 1;
}

.fotorama__wrap--video .fotorama__arr, .fotorama__wrap--video .fotorama__fullscreen-icon {
  opacity: 0 !important;
}

.fotorama__wrap--css2.fotorama__wrap--no-controls.fotorama__wrap--toggle-arrows .fotorama__arr, .fotorama__wrap--css2.fotorama__wrap--no-controls.fotorama__wrap--toggle-arrows .fotorama__fullscreen-icon {
  display: none;
}

.fotorama__wrap--css2.fotorama__wrap--no-controls.fotorama__wrap--toggle-arrows .fotorama__arr:focus, .fotorama__wrap--css2.fotorama__wrap--no-controls.fotorama__wrap--toggle-arrows .fotorama__fullscreen-icon:focus {
  display: block;
}

.fotorama__wrap--css2.fotorama__wrap--video .fotorama__arr, .fotorama__wrap--css2.fotorama__wrap--video .fotorama__fullscreen-icon {
  display: none !important;
}

.fotorama__wrap--css3.fotorama__wrap--no-controls.fotorama__wrap--slide.fotorama__wrap--toggle-arrows .fotorama__fullscreen-icon:not(:focus) {
  -webkit-transform: translate3d(32px, -32px, 0);
  transform: translate3d(32px, -32px, 0);
}

.fotorama__wrap--css3.fotorama__wrap--no-controls.fotorama__wrap--slide.fotorama__wrap--toggle-arrows .fotorama__arr--prev:not(:focus) {
  -webkit-transform: translate3d(-48px, 0, 0);
  transform: translate3d(-48px, 0, 0);
}

.fotorama__wrap--css3.fotorama__wrap--no-controls.fotorama__wrap--slide.fotorama__wrap--toggle-arrows .fotorama__arr--next:not(:focus) {
  -webkit-transform: translate3d(48px, 0, 0);
  transform: translate3d(48px, 0, 0);
}

.fotorama__wrap--css3.fotorama__wrap--video .fotorama__fullscreen-icon {
  -webkit-transform: translate3d(32px, -32px, 0) !important;
  transform: translate3d(32px, -32px, 0) !important;
}

.fotorama__wrap--css3.fotorama__wrap--video .fotorama__arr--prev {
  -webkit-transform: translate3d(-48px, 0, 0) !important;
  transform: translate3d(-48px, 0, 0) !important;
}

.fotorama__wrap--css3.fotorama__wrap--video .fotorama__arr--next {
  -webkit-transform: translate3d(48px, 0, 0) !important;
  transform: translate3d(48px, 0, 0) !important;
}

.fotorama__wrap--css3 .fotorama__arr:not(:focus), .fotorama__wrap--css3 .fotorama__fullscreen-icon:not(:focus), .fotorama__wrap--css3 .fotorama__video-close:not(:focus), .fotorama__wrap--css3 .fotorama__video-play:not(:focus) {
  transition-property: -webkit-transform,opacity;
  transition-property: transform,opacity;
  transition-duration: .3s;
}

.fotorama__nav:after, .fotorama__nav:before, .fotorama__stage:after, .fotorama__stage:before {
  content: "";
  display: block;
  position: absolute;
  text-decoration: none;
  top: 0;
  bottom: 0;
  width: 10px;
  height: auto;
  z-index: 10;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: 1px 100%,5px 100%;
}

.fotorama__nav:before, .fotorama__stage:before {
  background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.2) 25%, rgba(0, 0, 0, 0.3) 75%, transparent), radial-gradient(farthest-side at 0 50%, rgba(0, 0, 0, 0.4), transparent);
  background-position: 0 0,0 0;
  left: -10px;
}

.fotorama__nav.fotorama__shadows--left:before, .fotorama__stage.fotorama__shadows--left:before {
  left: 0;
}

.fotorama__nav:after, .fotorama__stage:after {
  background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.2) 25%, rgba(0, 0, 0, 0.3) 75%, transparent), radial-gradient(farthest-side at 100% 50%, rgba(0, 0, 0, 0.4), transparent);
  background-position: 100% 0,100% 0;
  right: -10px;
}

.fotorama__nav.fotorama__shadows--right:after, .fotorama__stage.fotorama__shadows--right:after {
  right: 0;
}

.fotorama--fullscreen .fotorama__nav:after, .fotorama--fullscreen .fotorama__nav:before, .fotorama--fullscreen .fotorama__stage:after, .fotorama--fullscreen .fotorama__stage:before, .fotorama__wrap--fade .fotorama__stage:after, .fotorama__wrap--fade .fotorama__stage:before, .fotorama__wrap--no-shadows .fotorama__nav:after, .fotorama__wrap--no-shadows .fotorama__nav:before, .fotorama__wrap--no-shadows .fotorama__stage:after, .fotorama__wrap--no-shadows .fotorama__stage:before {
  display: none;
}

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  text-decoration: none;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

.right {
  float: right;
}

.left {
  float: left;
}

.colls {
  padding-left: 15px;
  padding-right: 15px;
}

#link-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 35px;
  z-index: 99999;
}

#link-whatsapp img {
  max-width: 67px;
}

.btn {
  font: 700 1.125em 'Rubik', sans-serif;
  color: #fff;
  padding: 19px;
  background: #E00000;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  min-width: 220px;
  display: inline-block;
  text-align: center;
}

.btn:hover {
  background: #2C2D2F;
}

.btn.btn-xs {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  font-size: 1.2em;
  padding: 13px;
  min-width: 160px;
}

@media (max-width: 992px) {
  .btn.btn-xs {
    padding: 8px 15px;
    min-width: 110px;
  }
}

.btn.btn-white {
  background: #fff;
  border: none;
}

.btn.btn-white span {
color:#E00000
}

.btn-flat {
  padding: 16px 30px;
  background: #fff;
  border: none;
  display: inline-block;
  -webkit-border-radius: 25px;
  border-radius: 25px;
  font: 500 1.125em 'Rubik', sans-serif;
  color: #2C2D2F;
  -webkit-transition: all 0.15s ease;
  -moz-transition: all 0.15s ease;
  -ms-transition: all 0.15s ease;
  -o-transition: all 0.15s ease;
  transition: all 0.15s ease;
}

@media (max-width: 992px) {
  .btn-flat {
    font-size: 1em;
    padding: 12px 25px;
  }
}

.btn-flat:hover {
  background: #2C2D2F;
  color: #fff;
}

.title-section {
  width: 100%;
  text-align: center;
}

.title-section2 {
  width: 100%;
  text-align: center;
  margin: 15px 0;
}

.title-section h2 {
  font: 700 3em 'Rubik', sans-serif;
  color: #E00000;
  line-height: 1em;
}
#fale-conosco .title-section h2 {
  font: 700 3em 'Rubik', sans-serif;
  color: #2C2D2F;
  line-height: 1em;
}

#fale-conosco .title-page h2 {
  font: 700 3em 'Rubik', sans-serif;
  color: #fff;
  line-height: 1em;
}

#empresa .title-section h2 {
  font: 700 3em 'Rubik', sans-serif;
  color: #2C2D2F;
  line-height: 1em;
}

#empresa .title-page h2 {
  font: 700 3em 'Rubik', sans-serif;
  color: #fff;
  line-height: 1em;
}

.title-section2 h2 {
  font: 700 3em 'Rubik', sans-serif;
  color: #fff;
  line-height: 1em;
}

@media (max-width: 1200px) {
  .title-section h2 {
    font-size: 2.6em;
  }
  .title-section2 h2 {
    font-size: 2.6em;
  }
}

@media (max-width: 768px) {
  .title-section h2 {
    font-size: 2em !important;
  }
  .title-section2 h2 {
    font-size: 2em !important;
	margin: 0 15px;
  }
}

.title-section span {
  width: 150px;
  display: inline-block;
  height: 5px;
  background: linear-gradient(to right, #2C2D2F, #E00000);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=$init, endColorstr=$end, GradientType=1 );
  margin-top: 20px;
}
.title-section2 span {
  width: 150px;
  display: inline-block;
  height: 5px;
  background: linear-gradient(to right, #2C2D2F, #E00000);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=$init, endColorstr=$end, GradientType=1 );
  margin-top: 20px;
}

@media (max-width: 768px) {
  .title-section span {
    margin-top: 10px;
    width: 90px;
    height: 3px;
  }
.title-section2 span {
    margin-top: 10px;
    width: 90px;
    height: 3px;
}
}

.title-section p {
  font: 1.125em 'Roboto', sans-serif;
  color: #808080;
  margin-top: 15px;
}

#fale-conosco .title-section p {
  font: 1.125em 'Roboto', sans-serif;
  color: #808080;
  margin-top: 15px;
  text-align:center;
}

#empresa .title-section p {
  font: 1.125em 'Roboto', sans-serif;
  color: #4c4c4c;
  margin-top: 15px;
  text-align:center;
}

.title-section p b {
  color: #2C2D2F;
  font-weight: 700;
}

.title-section.versao2 h2 {
  color: #2C2D2F;
}

.title-section.versao2 span {
  background: #2c3e50;
}

.title-section.versao3 h2 {
  color: #d4d4e0;
}

.title-section.versao3 span {
  background: #2c3e50;
}

.publicidade-banners .fotorama__caption {
  width: 55%;
  height: 100%;
  left: auto;
}

@media (max-width: 1200px) {
  .publicidade-banners .fotorama__caption {
    width: 50%;
  }
}

@media (max-width: 992px) {
  .publicidade-banners .fotorama__caption {
    width: 65%;
  }
}

@media (max-width: 810px) {
  .publicidade-banners .fotorama__caption {
    width: 75%;
  }
}

@media (max-width: 768px) {
  .publicidade-banners .fotorama__caption {
    width: 100%;
    padding: 265px 15px 15px 15px;
  }
}
@media (max-width: 480px) {
  .publicidade-banners .fotorama__caption {
    width: 100%;
    padding: 230px 15px 15px 15px;
  }
}

.publicidade-banners .fotorama__caption .bg {
  width: 100%;
  height: 100%;
  background: 
  url("../images/overlay-preto.png") repeat, /* overlay transparente com degradê */ #2C2D2F; /* cor sólida por baixo */
  position: absolute;
  top: 0;
  left: 100%; /* começa fora da tela à direita */
  z-index: 0;
  clip-path: ellipse(100% 120% at 100% 50%); /* curva maior em cima, menor embaixo */
  transition: left 0.6s ease; /* animação */
}

/* quando o banner estiver ativo */
.publicidade-banners .fotorama__active .bg {
  left: 30%; /* recua antes do texto, controla aqui */
}


@media (max-width: 768px) {
  .publicidade-banners .fotorama__caption .bg {
    display: none;
  }
}

.publicidade-banners .fotorama__caption .fotorama__caption__wrap {
  width: 100%;
  height: 100%;
  background: none;
  padding: 0;
}

.publicidade-banners .fotorama__caption .infos {
  width: 100%;
  margin-top: 130px;
  padding-left: 140px;
  position: relative;
  z-index: 1;
 
}

@media (max-width: 1200px) {
  .publicidade-banners .fotorama__caption .infos {
    margin-top: 100px;
  }
}

@media (max-width: 768px) {
  .publicidade-banners .fotorama__caption .infos {
    background: #E00000;
    float: right;
    width: 100%;
    padding: 20px;
    margin: 0;
    -webkit-border-radius: 7px;
    border-radius: 7px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .publicidade-banners .fotorama__caption .infos {
    padding: 20px 5px;
  }
}

@media (max-width: 440px) {
  .publicidade-banners .fotorama__caption .infos {
    max-width: 100%;
  }
}

.publicidade-banners .fotorama__caption .infos p {
  font: 700 1.563em 'Rubik', sans-serif;
  color: #fff;
}

@media (max-width: 1200px) {
  .publicidade-banners .fotorama__caption .infos p {
    font-size: 1.2em;
  }
}

@media (max-width: 768px) {
  .publicidade-banners .fotorama__caption .infos p {
    font-weight: 500;
    font-size: 1.1em;
	text-transform:uppercase;
  }
}
@media (max-width: 768px) {
  .publicidade-banners .fotorama__caption .infos p {
    font-size: 0.88em;
  }
}

.publicidade-banners .fotorama__caption .infos h5 {
  font: 700 6.750em 'Rubik', sans-serif;
  line-height: 80px;
  color: #FA9857;
}

@media (max-width: 1200px) {
  .publicidade-banners .fotorama__caption .infos h5 {
    font-size: 5.4em;
    line-height: 60px;
  }
}

@media (max-width: 768px) {
  .publicidade-banners .fotorama__caption .infos h5 {
    font-size: 4.2em;
    line-height: 48px;
  }
}
@media (max-width: 480px) {
  .publicidade-banners .fotorama__caption .infos h5 {
    font-size: 3.2em;
	line-height: 42px;
  }
}

.publicidade-banners .fotorama__caption .infos h5 span {
  font-weight: 400;
  font-size: 24px;
  vertical-align: text-top;
}

@media (max-width: 1200px) {
  .publicidade-banners .fotorama__caption .infos h5 span {
    font-size: 20px;
  }
}

.publicidade-banners .fotorama__caption .infos h5 span.rs {
  margin-right: -16px;
}
@media (max-width: 768px) {
  .publicidade-banners .fotorama__caption .infos h5 span.rs {
  margin-right: -8px;
  }
}

.publicidade-banners .fotorama__caption .infos h5 span.centavos {
  margin-left: -16px;
}

.publicidade-banners .fotorama__caption .infos b {
  font: 600 4.8em 'Rubik', sans-serif;
  color: #fff;
  line-height: 58px;
  text-transform:uppercase;
}

@media (max-width: 1200px) {
  .publicidade-banners .fotorama__caption .infos b {
    font-size: 3.8em;
  }
}

@media (max-width: 768px) {
  .publicidade-banners .fotorama__caption .infos b {
    font-size: 2.9em;
    line-height: 33px;
  }
}
@media (max-width: 480px) {
  .publicidade-banners .fotorama__caption .infos b {
    font-size: 2.1em;
	line-height: 28px;
  }
}

.publicidade-banners .fotorama__caption .infos .megas {
  float: left;
  position: relative;
  padding-right: 15px;
}

.publicidade-banners .fotorama__caption .infos .megas h5{
text-align:center;
}

@media (max-width: 768px) {
  .publicidade-banners .fotorama__caption .infos .megas {
    float: none;
    display: inline-block;
  }
  .publicidade-banners .fotorama__caption .infos .megas {
  padding-right: 8px;
  }
}

.publicidade-banners .fotorama__caption .infos .megas .linha {
  width: 2px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  padding-bottom: 6px;
  padding-top: 4px;
}

.publicidade-banners .fotorama__caption .infos .megas .linha i {
  width: 100%;
  height: 100%;
  background: #FA9857;
  display: block;
}

.publicidade-banners .fotorama__caption .infos .preco {
  padding-left: 15px;
  float: left;
}

/*Ultima do Destaque */
@media (min-width: 1201px) {
  .publicidade-banners .fotorama__caption,
  .publicidade-banners .fotorama__caption-wrap {
    white-space: normal;
  }
  .publicidade-banners .infos {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: 100%;
  }
  .publicidade-banners .infos .preco {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .publicidade-banners .infos .preco p {
    display: block;
    width: 100%;
    max-width: 260px;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: normal;
  }
}
@media (max-width: 1200px) {
  .publicidade-banners .fotorama__caption .infos .preco h5 {
    display: inline-block !important;
    width: auto !important;
  }
  .publicidade-banners .fotorama__caption .infos .preco {
    display: inline-block !important;
    float: none !important;
    vertical-align: middle !important;
    width: auto !important;
  }
  .publicidade-banners .fotorama__caption .infos .preco p {
    display: block !important;
    clear: both !important; 
    width: 100% !important;
    max-width: 160px !important; 
    margin: 5px auto 0 !important; 
    white-space: normal !important;
    overflow-wrap: break-word !important;
    word-break: normal !important;
  }
}

@media (max-width: 767px) {
  /* Libera as travas nativas do Fotorama no celular */
  div[class*="fotorama__caption"], 
  div[class*="fotorama__caption-wrap"],
  .publicidade-banners .infos {
    white-space: normal;
  }

  /* Transforma o container em Grid para alinhar os elementos verticalmente */
  .publicidade-banners .infos .preco {
    display: grid;
    grid-template-columns: minmax(0, max-content);
    justify-content: center; /* Centraliza o bloco no meio do banner */
    width: 100%;
  }

  /* Garante que o preço ocupe a primeira linha do grid */
  .publicidade-banners .infos .preco h5 {
    grid-column: 1;
    text-align: center;
  }

  /* O parágrafo fica na linha abaixo e é forçado a assumir a largura máxima do h5 */
  .publicidade-banners .infos .preco p {
    grid-column: 1;
    display: block;
    width: 100%;
    max-width: 100%; 
    white-space: normal;
    overflow-wrap: break-word;
    word-break: normal;
    text-align: center;
    margin-top: 6px; /* Espaçamento entre o valor e o texto */
  }
}

@media (max-width: 768px) {
  .publicidade-banners .fotorama__caption .infos .preco {
    float: none;
    display: inline-block;
  }
  .publicidade-banners .fotorama__caption .infos .preco {
  padding-left: 8px;
  }
}

.publicidade-banners .fotorama__caption .infos .preco h5 {
  margin-top: -16px;
  font-size: 6em;
}

@media (max-width: 1200px) {
  .publicidade-banners .fotorama__caption .infos .preco h5 {
    font-size: 6.938em;
  }
}

@media (max-width: 768px) {
  .publicidade-banners .fotorama__caption .infos .preco h5 {
    font-size: 4.2em;
    margin-top: -6px;
  }
}
@media (max-width: 480px) {
  .publicidade-banners .fotorama__caption .infos .preco h5 {
    font-size: 3.2em;
  }
}

.publicidade-banners .fotorama__caption .infos .preco > span {
  margin-top: 10px;
  font: 700 1em 'Rubik', sans-serif;
  color: #fff;
  line-height: 18px;
  display: inline-block;
}

@media (max-width: 1200px) {
  .publicidade-banners .fotorama__caption .infos .preco > span {
    font-size: .9em;
    line-height: 15px;
  }
}

@media (max-width: 768px) {
  .publicidade-banners .fotorama__caption .infos .preco > span {
    font-size: .88em;
    font-weight: 500;
    margin-top: 0px;
  }
}

.publicidade-banners .fotorama__caption .infos .botao {
  width: 100%;
  max-width: 430px;
  float: left;
  clear: both;
  text-align: center;
  margin-top: 40px;
}

@media (max-width: 1200px) {
  .publicidade-banners .fotorama__caption .infos .botao {
    max-width: 350px;
  }
}

@media (max-width: 768px) {
  .publicidade-banners .fotorama__caption .infos .botao {
    max-width: 100%;
    margin-top: 20px;
  }
}

.publicidade-banners .fotorama__active .bg {
  left: 0;
}

.publicidade-banners .fotorama__active .infos {
  padding-left: 90px;
  opacity: 1;
  filter: alpha(opacity=100);
}

@media (max-width: 1200px) {
  .publicidade-banners .fotorama__active .infos {
    padding-left: 50px;
  }
}

@media (max-width: 768px) {
  .publicidade-banners .fotorama__active .infos {
    padding-left: 0px;
	align-items: center;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.mouse-banner {
  width: 100%;
  height: 0;
  float: left;
  position: absolute;
  bottom: 230px;
  left: 0;
  text-align: center;
}

.mouse-banner i {
  width: 48px;
  height: 102px;
  background: url("assets/img/maratona/mouse.png") no-repeat;
  display: inline-block;
  animation: move 1.5s infinite;
}

@-webkit-keyframes move {
  50% {
    margin-top: 6px;
  }
  100% {
    margin-top: 0;
  }
}

@keyframes move {
  50% {
    margin-top: 6px;
  }
  100% {
    margin-top: 0;
  }
}

.modal {
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99999999;
  overflow: auto;
}

.modal .modal-content {
  width: 100%;
  max-width: 640px;
  margin: 5% auto 0;
  padding: 15px;
  position: relative;
  z-index: 9;
}

.modal .bloqueio {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

@keyframes rotate-circle {
  0% {
    transform: rotate(-45deg);
  }
  5% {
    transform: rotate(-45deg);
  }
  12% {
    transform: rotate(-405deg);
  }
  100% {
    transform: rotate(-405deg);
  }
}

@keyframes icon-line-tip {
  0% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  54% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  70% {
    width: 50px;
    left: -8px;
    top: 37px;
  }
  84% {
    width: 17px;
    left: 21px;
    top: 48px;
  }
  100% {
    width: 25px;
    left: 14px;
    top: 45px;
  }
}

@keyframes icon-line-long {
  0% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  65% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  84% {
    width: 55px;
    right: 0px;
    top: 35px;
  }
  100% {
    width: 47px;
    right: 8px;
    top: 38px;
  }
}

.texto-plano-ideal {
  width: 100%;
  float: left;
  clear: both;
  padding: 70px 0 100px;
}

.texto-plano-ideal .title-section {
  text-align: center;
}

.texto-plano-ideal .texto {
  margin-top: 50px;
  text-align: center;
}

.texto-plano-ideal .texto p {
  font: 1.125em 'Roboto', sans-serif;
  color: #E00000;
}

.texto-plano-ideal .texto.v2 p {
  color: #2c3e50;
}

.card-planos {
  text-align: center;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  margin-bottom: 30px;
  display: inline-block;
  width: 100%;
  height: auto;
  float: left;
}
:root {
  /* Altere apenas esta cor! O restante se adapta sozinho */
  --cor-principal: #E00000; 
}
.card-planos .hover {
  background: linear-gradient(
    to bottom, 
    var(--cor-principal), 
    color-mix(in srgb, var(--cor-principal) 65%, black)
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=$init, endColorstr=$end, GradientType=1 );
  -webkit-border-radius: 7px;
  border-radius: 7px;
  -webkit-box-shadow: 0 25px 30px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 25px 30px 0 rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.card-planos .topo {
  padding: 40px 15px 35px;
  font: 700 1em 'Rubik', sans-serif;
  color: #fff;
}

@media (max-width: 992px) {
  .card-planos .topo {
    padding: 20px 10px;
  }
}

.card-planos .topo p {
  font-weight: 400;
  text-transform: uppercase;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  font-size:14px;
  text-transform:uppercase;
  margin-top:20px;
}

@media (max-width: 992px) {
  .card-planos .topo p {
    font-size: .8em;
  }
}

.card-planos .topo h5 {
  color: #FA9857;
  font-size: 6.5em;
  line-height: 110px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  
}

@media (max-width: 1200px) {
  .card-planos .topo h5 {
    font-size: 6.5em;
    line-height: 95px;
  }
}

@media (max-width: 992px) {
  .card-planos .topo h5 {
    font-size: 4.5em;
    line-height: 55px;
    margin-top: 5px;
  }
}

.card-planos .topo b {
  display: block;
  font-size: 3.250em;
  line-height: 40px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-transform: uppercase;
  font-weight:600;
}

@media (max-width: 992px) {
  .card-planos .topo b {
    font-size: 2.3em;
  }
}

.card-planos .topo span {
  display: block;
  font-size: 1.250em;
  line-height: 38px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-transform: uppercase;
  font-size:1.5rem;
}

@media (max-width: 992px) {
  .card-planos .topo span {
    font-size: 1em;
    line-height: 18px;
  }
}

.card-planos .line {
  width: 100%;
  height: 1px;
  display: block;
  background: transparent;
  -webkit-transition: all 0.15s ease;
  -moz-transition: all 0.15s ease;
  -ms-transition: all 0.15s ease;
  -o-transition: all 0.15s ease;
  transition: all 0.15s ease;
}

.card-planos .infos {
  position: relative;
  padding: 30px 0 46px;
}

@media (max-width: 992px) {
  .card-planos .infos {
    padding: 20px 0 30px;
  }
}

.card-planos .infos2 {
  position: relative;
  padding: 30px 0 46px;
  background:#FFFFFF;
  -webkit-border-radius: 0 0 7px 7px;
  border-radius: 0 0 7px 7px;
}

@media (max-width: 992px) {
  .card-planos .infos2 {
    padding: 20px 0 30px;
  }
}

.card-planos .infos2 b, .card-planos .infos2 p {
  font: 300 .875em 'Rubik', sans-serif;
  font-weight: 500;
  font-size: 0.875em;
  line-height: normal;
  color:#595957;
  line-height: 20px;
  margin:10px 0 0;
  text-align: justify;
  padding:0 30px;
}

.card-planos .infos2 b, .card-planos .infos2 b {
  font: 700 1em 'Rubik', sans-serif;
  display: block;
  font-size: 1.250em;
  line-height: 38px;
  color:#4CA925;
  text-transform:uppercase;
  text-align:center;
}

.card-planos .topo2 {
  position: relative;
  overflow: hidden;
  padding: 0;
  font: 700 1em 'Rubik', sans-serif;
  color: #fff;
}

.card-planos .topo2 .fundo-img {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  -webkit-border-radius: 7px 7px 0 0;
  border-radius: 7px 7px 0 0;
}

.card-planos .infos2 .desc p {
  font: .875em 'Roboto', sans-serif;
  color: #595957;
  padding-bottom: 15px;
  text-transform:lowercase;
  text-align:center;
}

.card-planos .infos .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #fff;
  -webkit-border-radius: 0 0 7px 7px;
  border-radius: 0 0 7px 7px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.card-planos .infos .hidden {
  position: relative;
  z-index: 1;
  height: 0;
  overflow: hidden;
}

@media (max-width: 768px) {
  .card-planos .infos .hidden {
    overflow: auto !important;
    height: auto !important;
  }
}

.card-planos .infos .hidden .height {
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

@media (max-width: 768px) {
  .card-planos .infos .hidden .height {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}

.card-planos .infos .hidden .espace {
  display: block;
  height: 30px;
}

@media (max-width: 992px) {
  .card-planos .infos .hidden .espace {
    height: 15px;
  }
}

.card-planos .infos .hidden b,
.card-planos .infos .hidden p {
  font: 500 .875em 'Rubik', sans-serif;
  color: #2C2D2F;
  text-transform: uppercase;
  line-height: 20px;
}

@media (max-width: 992px) {
  .card-planos .infos .hidden b,
  .card-planos .infos .hidden p {
    font-size: .8em;
    line-height: 15px;
    font-weight: 400;
  }
}

.card-planos .infos .hidden b {
  color: #2C2D2F;
  margin-bottom: 15px;
  display: block;
  font-size: 1.125em;
  font-weight: 700;
  text-transform: uppercase;
}

@media (max-width: 992px) {
  .card-planos .infos .hidden b {
    font-size: 1em;
  }
}

.card-planos .infos .preco {
  position: relative;
  z-index: 1;
}

.card-planos .infos .preco p {
  font: .875em 'Roboto', sans-serif;
  color: #2C2D2F;
  -webkit-transition: all 0.15s ease;
  -moz-transition: all 0.15s ease;
  -ms-transition: all 0.15s ease;
  -o-transition: all 0.15s ease;
  transition: all 0.15s ease;
}

.card-planos .infos .preco h6 {
  font: 700 4.2em 'Rubik', sans-serif;
}

.card-planos .infos .preco h6 i {
  background: #2C2D2F;
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=$init, endColorstr=$end, GradientType=1 );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.card-planos .infos .preco h6 span {
  font-size: 16px;
  font-weight: 500;
  background: #2C2D2F;
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=$init, endColorstr=$end, GradientType=1 );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.card-planos .infos .preco h6 span.rs {
  margin-right: -12px;
}

.card-planos .infos .preco h6 span.centavos {
  margin-left: -20px;
}

.card-planos .infos .desc {
	position: relative;
	z-index: 1;
	margin-top: 15px;
}

.card-planos .infos .desc img {
  width:100%;
  padding: 0 20px;
}

.card-planos .infos .desc p {
  font: .875em 'Roboto', sans-serif;
  color: #2C2D2F;
  -webkit-transition: all 0.15s ease;
  -moz-transition: all 0.15s ease;
  -ms-transition: all 0.15s ease;
  -o-transition: all 0.15s ease;
  transition: all 0.15s ease;
  padding-bottom:15px;
}

.card-planos .infos .desc p.through {
  text-decoration: line-through;
}

.card-planos .infos .botao {
  position: relative;
  z-index: 1;
  margin-top: 30px;
}

@media (max-width: 992px) {
  .card-planos .infos .botao {
    margin-top: 15px;
  }
}

.card-planos.card-planos-ideal .hover, .card-planos.active .hover, .card-planos:hover .hover {
  margin-top: -25px;
}

@media (max-width: 768px) {
  .card-planos.card-planos-ideal .hover, .card-planos.active .hover, .card-planos:hover .hover {
    margin-top: 0 !important;
    margin-bottom: 30px !important;
  }
}

.card-planos.card-planos-ideal .line, .card-planos.active .line, .card-planos:hover .line {
  background: #FA9857;
}

.card-planos.card-planos-ideal .infos .bg, .card-planos.active .infos .bg, .card-planos:hover .infos .bg {
  height: 0;
}

.card-planos.card-planos-ideal .infos .hidden .height, .card-planos.active .infos .hidden .height, .card-planos:hover .infos .hidden .height {
  opacity: 1;
  filter: alpha(opacity=100);
}

.card-planos.card-planos-ideal .infos .hidden p, .card-planos.active .infos .hidden p, .card-planos:hover .infos .hidden p {
  color: #2C2D2F;
}

.card-planos.card-planos-ideal .infos .hidden b, .card-planos.active .infos .hidden b, .card-planos:hover .infos .hidden b {
  color: #fff;
}

.card-planos.card-planos-ideal .infos .preco p, .card-planos.active .infos .preco p, .card-planos:hover .infos .preco p {
  color: #FA9857;
}

.card-planos.card-planos-ideal .infos .preco h6 span,
.card-planos.card-planos-ideal .infos .preco h6 i, .card-planos.active .infos .preco h6 span,
.card-planos.active .infos .preco h6 i, .card-planos:hover .infos .preco h6 span,
.card-planos:hover .infos .preco h6 {
  background: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.card-planos.card-planos-ideal .infos .desc p, .card-planos.active .infos .desc p, .card-planos:hover .infos .desc p {
  color: #2C2D2F;
}

.card-planos.card-planos-ideal .infos .botao .btn, .card-planos.active .infos .botao .btn, .card-planos:hover .infos .botao .btn {
  background: #2C2D2F;
  border: none;
}

.card-planos.card-planos-ideal .infos .botao .btn span, .card-planos.active .infos .botao .btn span, .card-planos:hover .infos .botao .btn span {
  background: #fff;
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=$init, endColorstr=$end, GradientType=1 );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.card-planos.card-planos-ideal .hover, .card-planos.active .hover {
  margin-top: -48px;
}

@media (max-width: 768px) {
  .card-planos.card-planos-ideal .hover, .card-planos.active .hover {
    margin: 0 0 30px 0 !important;
  }
}

.card-planos.card-planos-ideal .hidden, .card-planos.active .hidden {
  overflow: auto !important;
  height: auto !important;
}

.card-planos.card-planos-ideal .hidden .height, .card-planos.active .hidden .height {
  opacity: 1 !important;
  filter: alpha(opacity=100) !important;
}

#destaque
 {
  width: 100%;
  float: left;
  clear: both;
  padding-top: 40px;
}

#destaque
 .menu {
  text-align: center;
  margin-top: 20px;
  margin-bottom: -30px;
  position: relative;
  z-index: 1;
}

#destaque
 .menu .card {
  position: relative;
  width: 160px;
  height: 255px;
  display: inline-block;
  margin: 0 13px;
}

#destaque
 .menu .card:first-child {
  margin-left: 0;
}

#destaque
 .menu .card:last-child {
  margin-right: 0;
}

@media (max-width: 1200px) {
  #destaque
 .menu .card {
    width: 130px;
    height: 210px;
  }
}

@media (max-width: 992px) {
  #destaque
 .menu .card {
    width: 103px;
    height: 145px;
    margin: 0 5px;
  }
}

@media (max-width: 768px) {
  #destaque
 .menu .card {
    width: 120px;
    margin: 0 3px;
    height: 120px;
  }
}

@media (max-width: 480px) {
  #destaque
 .menu .card {
    width: 85px;
    height: 85px;
  }
}


#destaque
 .menu .card a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  display: inline-block;
  -webkit-box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.2);
  z-index: 1;
  -webkit-border-radius: 7px;
  border-radius: 7px;
  display: inline-block;
  float: left;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -ms-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

@media (max-width: 768px) {
  #destaque
 .menu .card a {
    display: grid;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

#destaque
 .menu .card a.active, #destaque
 .menu .card a:hover {
  background: #2C2D2F;
  background-image: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0) 100%);
  left: -10px;
  right: -10px;
  bottom: -25px;
}

@media (max-width: 1200px) {
  #destaque
 .menu .card a.active, #destaque
 .menu .card a:hover {
    bottom: -20px;
  }
}

@media (max-width: 992px) {
  #destaque
 .menu .card a.active, #destaque
 .menu .card a:hover {
    bottom: -13px;
  }
}

@media (max-width: 768px) {
  #destaque
 .menu .card a.active, #destaque
 .menu .card a:hover {
    left: 0;
    right: 0;
    bottom: 0;
  }
}

#destaque
 .menu .card a.active .icon .table img, #destaque
 .menu .card a:hover .icon .table img {
  display: none;
  margin-top: 40px;
}

@media (max-width: 1200px) {
  #destaque
 .menu .card a.active .icon .table img, #destaque
 .menu .card a:hover .icon .table img {
    margin-top: 10px;
  }
}

#destaque
 .menu .card a.active .icon .table img.hover, #destaque
 .menu .card a:hover .icon .table img.hover {
  display: inline;
}

#destaque
 .menu .card a.active p, #destaque
 .menu .card a:hover p {
  color: #fff;
  bottom: 50px;
}

@media (max-width: 1200px) {
  #destaque
 .menu .card a.active p, #destaque
 .menu .card a:hover p {
    bottom: 30px;
  }
}

@media (max-width: 992px) {
  #destaque
 .menu .card a.active p, #destaque
 .menu .card a:hover p {
    bottom: 10px;
  }
}

@media (max-width: 768px) {
  #destaque
 .menu .card a.active p, #destaque
 .menu .card a:hover p {
    bottom: 0;
  }
}

#destaque
 .menu .card a .icon {
  width: 100%;
  height: 140px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-size: cover !important;
}

@media (max-width: 992px) {
  #destaque
 .menu .card a .icon {
    height: 100px;
  }
}

@media (max-width: 768px) {
  #destaque
 .menu .card a .icon {
    display: none;
  }
}

#destaque
 .menu .card a .icon .table {
  width: 100%;
  display: block;
  text-align: center;
}

#destaque
 .menu .card a .icon .table img {
  max-width: 95px;
}

@media (max-width: 1200px) {
  #destaque
 .menu .card a .icon .table img {
    max-width: 85px;
  }
}

@media (max-width: 992px) {
  #destaque
 .menu .card a .icon .table img {
    max-width: 65px;
  }
}

#destaque
 .menu .card a .icon .table img.hover {
  max-width: initial;
  display: none;
  margin-left: -6px;
}

@media (max-width: 1200px) {
  #destaque
 .menu .card a .icon .table img.hover {
    max-width: 120px;
  }
}

@media (max-width: 992px) {
  #destaque
 .menu .card a .icon .table img.hover {
    max-width: 100px;
  }
}

#destaque
 .menu .card a p {
  width: 100%;
  position: absolute;
  bottom: 34px;
  left: 0;
  font: 700 1.375em 'Rubik', sans-serif;
  color: #E00000;
  -webkit-transition: all 0.15s ease;
  -moz-transition: all 0.15s ease;
  -ms-transition: all 0.15s ease;
  -o-transition: all 0.15s ease;
  transition: all 0.15s ease;
}

@media (max-width: 1200px) {
  #destaque
 .menu .card a p {
    bottom: 25px;
  }
}

@media (max-width: 992px) {
  #destaque
 .menu .card a p {
    font-size: 1em;
    font-weight: 500;
    bottom: 15px;
  }
}

@media (max-width: 768px) {
  #destaque
 .menu .card a p {
    font-size: .88em;
    position: relative;
    bottom: 0;
    display: inline;
  }
}

#destaque
 .slide .bg {
  background: linear-gradient( to right, var(--cor-principal), color-mix(in srgb, var(--cor-principal) 60%, black) );
}

.planos-chamada .botao-mais {
  width: 100%;
  margin-top: 15px;
  text-align: center;
}

.planos-chamada .botao-mais a {
  font: 700 1.125em 'Rubik', sans-serif;
  font-size: 1.125em;
  color: #fff !important;
  padding: 19px;
  background: #4CA925;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  min-width: 220px;
  display: inline-block;
  text-align: center;
}

.planos-chamada .botao-mais a:hover {
  background: #595957;
  color: #fff !important;
}

.article-planos {
  width: 100%;
  float: left;
  clear: both;
  padding: 40px 0 40px;
}

@media (max-width: 768px) {
  .article-planos {
    padding: 50px 0 30px;
  }
}

.article-planos .planos {
  margin-top: 60px;
}

@media (max-width: 768px) {
  .article-planos .planos {
    margin-top: 50px;
  }
}

.article-planos .botao-mais a {
  color: #E00000;
  font-weight: 400;
}

.article-planos .botao-mais a:hover {
  color: #fff;
}

#detalhes1 {
  width: 100%;
  float: left;
  clear: both;
  padding-top: 50px;
  margin-bottom: -40px;
  position: relative;
  z-index: 1;
}

#detalhes1 .container {
  position: relative;
}

@media (max-width: 992px) {
  #detalhes1 .container {
    max-width: 100%;
    padding: 0 50px;
  }
}

#detalhes1 .menu {
  position: absolute;
  top: 30px;
}

#detalhes1 .menu li {
  width: 100%;
  max-width: 475px;
  text-align: right;
  padding: 40px 35px;
  background: #fff;
  position: relative;
  -webkit-transition: all 0.15s ease;
  -moz-transition: all 0.15s ease;
  -ms-transition: all 0.15s ease;
  -o-transition: all 0.15s ease;
  transition: all 0.15s ease;
}

@media (max-width: 1200px) {
  #detalhes1 .menu li {
    padding: 30px 25px;
  }
}

@media (max-width: 992px) {
  #detalhes1 .menu li {
    padding: 20px 15px;
  }
}

@media (max-width: 768px) {
  #detalhes1 .menu li {
    padding: 10px;
  }
}

#detalhes1 .menu li h6 {
  font: 700 2.250em 'Rubik', sans-serif;
  color: #2c3e50;
  line-height: 1.1em;
}

@media (max-width: 1200px) {
  #detalhes1 .menu li h6 {
    font-size: 2em;
  }
}

@media (max-width: 992px) {
  #detalhes1 .menu li h6 {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  #detalhes1 .menu li h6 {
    font-size: 1em;
  }
}

#detalhes1 .menu li span {
  margin-top: 15px;
  background: #2C2D2F;
  background: -moz-linear-gradient(left, #2C2D2F 0%, #f12711 100%);
  background: -webkit-gradient(left top, right top, color-stop(0%, #2C2D2F), color-stop(100%, #f12711));
  background: -webkit-linear-gradient(left, #2C2D2F 0%, #f12711 100%);
  background: -o-linear-gradient(left, #2C2D2F 0%, #f12711 100%);
  background: -ms-linear-gradient(left, #2C2D2F 0%, #f12711 100%);
  background: linear-gradient(to right, #2C2D2F 0%, #f12711 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=$init, endColorstr=$end, GradientType=1 );
  width: 150px;
  height: 5px;
  display: inline-block;
}

@media (max-width: 992px) {
  #detalhes1 .menu li span {
    width: 100px;
    height: 4px;
    margin-top: 10px;
  }
}

@media (max-width: 768px) {
  #detalhes1 .menu li span {
    width: 70px;
    height: 3px;
    margin-top: 5px;
  }
}

#detalhes1 .menu li.active, #detalhes1 .menu li:hover {
  -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.2);
  z-index: 3;
}

#detalhes1 .bg img {
  max-width: 100%;
  display: inline-block;
}

#detalhes1 .bg img[data-bg="2"] {
  display: none;
}

#confira-planos {
	width: 100%;
	float: left;
	clear: both;
	background: url("../images/confira-planos.jpg") center no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	height: 735px;
	position: relative;
}

@media (max-width: 1200px) {
  #confira-planos {
    height: 690px;
  }
}

@media (max-width: 992px) {
  #confira-planos {
    height: 450px;
  }
}

@media (max-width: 768px) {
  #confira-planos {
    height: 300px;
  }
}

#confira-planos .infos {
  position: absolute;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-size: cover !important;
}

#confira-planos .infos h3 {
  font: 700 3em 'Rubik', sans-serif;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.1em;
}

@media (max-width: 1200px) {
  #confira-planos .infos h3 {
    font-size: 2.5em;
  }
}

@media (max-width: 992px) {
  #confira-planos .infos h3 {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  #confira-planos .infos h3 {
    font-size: 1.5em;
  }
}

#confira-planos .infos .botao {
  margin-top: 30px;
}

@media (max-width: 992px) {
  #confira-planos .infos .botao {
    margin-top: 15px;
  }
}

#quem-confia {
	width: 100%;
	float: left;
	clear: both;
	padding: 110px 0 130px;
	background: url("../images/bg.jpg") center no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

@media (max-width: 1200px) {
  #quem-confia {
    padding: 80px;
  }
}

@media (max-width: 992px) {
  #quem-confia {
    padding: 50px;
  }
}

#quem-confia .title-section h2 {
  color: #fff;
}

#quem-confia .title-section .line {
  background: #fff;
}

#quem-confia .infos {
  margin-top: 70px;
}

@media (max-width: 992px) {
  #quem-confia .infos {
    margin-top: 30px;
  }
}

#quem-confia .infos .info {
  text-align: center;
}

@media (max-width: 768px) {
  #quem-confia .infos .info img {
    max-width: 55px;
  }
}

#quem-confia .infos .info .num {
  display: inline-block;
  position: relative;
}

#quem-confia .infos .info .num h3 {
  font: 700 5.750em 'Rubik', sans-serif;
  color: #fff;
  margin-top: 30px;
}

@media (max-width: 992px) {
  #quem-confia .infos .info .num h3 {
    font-size: 4.2em;
    margin-top: 10px;
  }
}

@media (max-width: 768px) {
  #quem-confia .infos .info .num h3 {
    font-size: 2em;
    margin-top: 0;
  }
}

#quem-confia .infos .info .num i {
  float: left;
  position: absolute;
  top: 52px;
  left: -20px;
  padding: 5px 8px;
  font: 700 .750em 'Rubik', sans-serif;
  color: #fff;
  -webkit-border-radius: 12px;
  border-radius: 12px;
  background: #2C2D2F;
  background: -moz-linear-gradient(left, #2C2D2F 0%, #f12711 100%);
  background: -webkit-gradient(left top, right top, color-stop(0%, #2C2D2F), color-stop(100%, #f12711));
  background: -webkit-linear-gradient(left, #2C2D2F 0%, #f12711 100%);
  background: -o-linear-gradient(left, #2C2D2F 0%, #f12711 100%);
  background: -ms-linear-gradient(left, #2C2D2F 0%, #f12711 100%);
  background: linear-gradient(to right, #2C2D2F 0%, #f12711 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=$init, endColorstr=$end, GradientType=1 );
}

@media (max-width: 992px) {
  #quem-confia .infos .info .num i {
    top: 20px;
  }
}

@media (max-width: 768px) {
  #quem-confia .infos .info .num i {
    font-size: .55em;
    left: -30px;
  }
}

#quem-confia .infos .info p {
  font: 700 1.625em 'Rubik', sans-serif;
  color: #fff;
  line-height: 0em;
}

@media (max-width: 768px) {
  #quem-confia .infos .info p {
    font-size: .9em;
    line-height: inherit;
  }
}

#perguntas {
  width: 100%;
  float: left;
  clear: both;
  padding: 160px 200px;
  background: #ececf9;
}

@media (max-width: 1200px) {
  #perguntas {
    padding: 100px;
  }
}

@media (max-width: 992px) {
  #perguntas {
    padding: 50px;
  }
}

@media (max-width: 768px) {
  #perguntas .title-left {
    text-align: center;
    margin-bottom: 50px;
  }
}

#perguntas .title-left .title-section {
  text-align: left;
}

@media (max-width: 768px) {
  #perguntas .title-left .title-section {
    text-align: center;
  }
}

@media (max-width: 992px) {
  #perguntas .title-left .title-section h2 {
    font-size: 2em;
  }
}

@media (max-width: 992px) {
  #perguntas .title-left .title-section h2 .line {
    width: 80px;
    margin-top: 10px;
  }
}

#perguntas .title-left p {
  font: 1.125em 'Roboto', sans-serif;
  color: #E00000;
  margin-top: 30px;
}

@media (max-width: 992px) {
  #perguntas .title-left p {
    font-size: 1em;
  }
}

#perguntas .title-left .img {
  position: relative;
  margin-top: 35px;
}

#perguntas .title-left .img img {
  max-width: 100%;
}

@media (max-width: 768px) {
  #perguntas .title-left .img img {
    display: none;
  }
}

#perguntas .title-left .img a {
  float: left;
  position: absolute;
  top: 30px;
  left: -15px;
  padding: 10px 30px;
  font: 700 .875em 'Rubik', sans-serif;
  color: #fff;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  background: #2C2D2F;
  background: -moz-linear-gradient(left, #2C2D2F 0%, #f12711 100%);
  background: -webkit-gradient(left top, right top, color-stop(0%, #2C2D2F), color-stop(100%, #f12711));
  background: -webkit-linear-gradient(left, #2C2D2F 0%, #f12711 100%);
  background: -o-linear-gradient(left, #2C2D2F 0%, #f12711 100%);
  background: -ms-linear-gradient(left, #2C2D2F 0%, #f12711 100%);
  background: linear-gradient(to right, #2C2D2F 0%, #f12711 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=$init, endColorstr=$end, GradientType=1 );
  -webkit-box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  #perguntas .title-left .img a {
    position: relative;
    top: 0;
    left: 0;
    float: initial;
    display: inline-block;
  }
}

#perguntas .pergunta {
  background: #fff;
  margin-bottom: 20px;
  -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.2);
  position: relative;
}

#perguntas .pergunta .line {
  width: 100%;
  height: 2px;
  background: #2C2D2F;
  background: -moz-linear-gradient(left, #2C2D2F 0%, #f12711 100%);
  background: -webkit-gradient(left top, right top, color-stop(0%, #2C2D2F), color-stop(100%, #f12711));
  background: -webkit-linear-gradient(left, #2C2D2F 0%, #f12711 100%);
  background: -o-linear-gradient(left, #2C2D2F 0%, #f12711 100%);
  background: -ms-linear-gradient(left, #2C2D2F 0%, #f12711 100%);
  background: linear-gradient(to right, #2C2D2F 0%, #f12711 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=$init, endColorstr=$end, GradientType=1 );
  float: left;
  position: absolute;
  bottom: -2px;
  left: 0;
}

#perguntas .pergunta .title {
  padding: 30px 65px 30px 90px;
  position: relative;
}

@media (max-width: 1200px) {
  #perguntas .pergunta .title {
    padding: 15px 60px 15px 74px;
  }
}

#perguntas .pergunta .title .icon {
  float: left;
  position: absolute;
  top: 50%;
  left: 25px;
  margin-top: -16px;
}

@media (max-width: 1200px) {
  #perguntas .pergunta .title .icon {
    left: 15px;
  }
}

#perguntas .pergunta .title .icon img.hover {
  display: none;
}

#perguntas .pergunta .title p {
  font: 1.125em 'Roboto', sans-serif;
  color: #E00000;
}

@media (max-width: 992px) {
  #perguntas .pergunta .title p {
    font-size: 1em;
  }
}

#perguntas .pergunta .title .link {
  width: 34px;
  height: 34px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background: url("assets/img/peguntas/seta.png") center top no-repeat #ececf9;
  float: left;
  position: absolute;
  top: 50%;
  right: 17px;
  margin-top: -17px;
}

@media (max-width: 1200px) {
  #perguntas .pergunta .title .link {
    right: 13px;
  }
}

#perguntas .pergunta .title .link:hover {
  background-color: #f2ce30;
  background-position: center -34px;
  -webkit-box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.2);
}

#perguntas .pergunta .cont {
  height: 0;
  overflow: hidden;
}

#perguntas .pergunta .cont .texto {
  padding: 15px 65px 40px 90px;
  position: relative;
}

@media (max-width: 1200px) {
  #perguntas .pergunta .cont .texto {
    padding: 10px 60px 25px 74px;
  }
}

#perguntas .pergunta .cont .texto p {
  font: 1em 'Roboto', sans-serif;
  color: #fff;
  margin-bottom: 10px;
}

#perguntas .pergunta.active {
  background: #2C2D2F;
  background: -moz-linear-gradient(left, #2C2D2F 0%, #f12711 100%);
  background: -webkit-gradient(left top, right top, color-stop(0%, #2C2D2F), color-stop(100%, #f12711));
  background: -webkit-linear-gradient(left, #2C2D2F 0%, #f12711 100%);
  background: -o-linear-gradient(left, #2C2D2F 0%, #f12711 100%);
  background: -ms-linear-gradient(left, #2C2D2F 0%, #f12711 100%);
  background: linear-gradient(to right, #2C2D2F 0%, #f12711 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=$init, endColorstr=$end, GradientType=1 );
}

#perguntas .pergunta.active .title .icon img {
  display: none;
}

#perguntas .pergunta.active .title .icon img.hover {
  display: block;
}

#perguntas .pergunta.active .title p {
  color: #fff;
}

#perguntas .pergunta.active .title .link {
  background-color: #f2ce30;
  background-position: center -34px;
}

#duvidas {
  float: left;
  clear: both;
  width: 100%;
  padding: 140px 0 120px;
}

@media (max-width: 1200px) {
  #duvidas {
    padding: 90px 0 70px;
  }
}

@media (max-width: 992px) {
  #duvidas {
    padding: 50px 0 30;
  }
}

#duvidas .infos {
  text-align: center;
}

@media (max-width: 768px) {
  #duvidas .infos {
    margin-top: 15px;
  }
}

#duvidas .infos .inline {
  margin: 35px 10px;
  display: inline-block;
}

@media (max-width: 992px) {
  #duvidas .infos .inline {
    margin: 35px 5px;
  }
}

@media (max-width: 768px) {
  #duvidas .infos .inline {
    margin: 15px 0;
    display: block;
    text-align: center;
  }
}

#duvidas .infos .info {
  width: 100%;
  max-width: 340px;
  position: relative;
  color: #fff;
  padding: 25px;
  padding-left: 90px;
  background: #2C2D2F;
  background: -moz-linear-gradient(left, #2C2D2F 0%, #f12711 100%);
  background: -webkit-gradient(left top, right top, color-stop(0%, #2C2D2F), color-stop(100%, #f12711));
  background: -webkit-linear-gradient(left, #2C2D2F 0%, #f12711 100%);
  background: -o-linear-gradient(left, #2C2D2F 0%, #f12711 100%);
  background: -ms-linear-gradient(left, #2C2D2F 0%, #f12711 100%);
  background: linear-gradient(to right, #2C2D2F 0%, #f12711 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=$init, endColorstr=$end, GradientType=1 );
  -webkit-border-radius: 50px;
  border-radius: 50px;
  display: inline-block;
  text-align: left;
  -webkit-box-shadow: 0 6px 20px 0 rgba(244, 127, 22, 0.3);
  box-shadow: 0 6px 20px 0 rgba(244, 127, 22, 0.3);
}

#duvidas .infos .info:hover {
  background: #E00000;
  background: -moz-linear-gradient(left, #E00000 0%, #E00000 100%);
  background: -webkit-gradient(left top, right top, color-stop(0%, #E00000), color-stop(100%, #E00000));
  background: -webkit-linear-gradient(left, #E00000 0%, #E00000 100%);
  background: -o-linear-gradient(left, #E00000 0%, #E00000 100%);
  background: -ms-linear-gradient(left, #E00000 0%, #E00000 100%);
  background: linear-gradient(to right, #E00000 0%, #E00000 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=$init, endColorstr=$end, GradientType=1 );
  -webkit-box-shadow: 0 10px 30px 0 rgba(244, 127, 22, 0.9);
  box-shadow: 0 10px 30px 0 rgba(244, 127, 22, 0.9);
  z-index: 1;
}

@media (max-width: 1200px) {
  #duvidas .infos .info {
    max-width: 280px;
    padding-left: 80px;
  }
}

@media (max-width: 992px) {
  #duvidas .infos .info {
    max-width: 217px;
    padding-left: 57px;
  }
}

#duvidas .infos .info img {
  position: absolute;
  top: 50%;
  margin-top: -20px;
  left: 30px;
}

@media (max-width: 1200px) {
  #duvidas .infos .info img {
    left: 25px;
    max-width: 40px;
    margin-top: -16px;
  }
}

@media (max-width: 992px) {
  #duvidas .infos .info img {
    left: 15px;
    max-width: 30px;
    margin-top: -12px;
  }
}

#duvidas .infos .info span {
  display: block;
  font: 400 1.125em 'Rubik', sans-serif;
}

@media (max-width: 1200px) {
  #duvidas .infos .info span {
    font-size: 1em;
  }
}

@media (max-width: 992px) {
  #duvidas .infos .info span {
    font-size: .8em;
  }
}

#duvidas .infos .info p {
  font: 300 1.625em 'Rubik', sans-serif;
}

@media (max-width: 1200px) {
  #duvidas .infos .info p {
    font-size: 1.4em;
  }
}

@media (max-width: 992px) {
  #duvidas .infos .info p {
    font-size: 1em;
  }
}

#duvidas .infos .info p b {
  font-weight: 700;
}

#onde-estamos {
  width: 100%;
  float: left;
  clear: both;
  padding-bottom: 70px;
}

@media (max-width: 768px) {
  #onde-estamos {
    padding-bottom: 30px;
  }
}

#onde-estamos .title-section {
  width: 100%;
  float: left;
  clear: both;
}

#onde-estamos .title-section h2 {
  font-size: 2.3em;
}

@media (max-width: 992px) {
  #onde-estamos .title-section h2 {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  #onde-estamos .title-section h2 {
    font-size: 1em !important;
  }
}

#onde-estamos .infos {
  width: 100%;
  float: left;
  clear: both;
  margin-top: 120px;
  margin-bottom: 50px;
}

@media (max-width: 1200px) {
  #onde-estamos .infos {
    margin-top: 70px;
  }
}

@media (max-width: 992px) {
  #onde-estamos .infos {
    margin-top: 50px;
  }
}

@media (max-width: 768px) {
  #onde-estamos .infos {
    margin-top: 30px;
  }
}

#onde-estamos .infos .empresa {
  width: 50%;
  display: inline-block;
  min-height: 158px;
  float: left;
  margin: -.5px;
  position: relative;
  border: #ccc solid 1px;
}

@media (max-width: 768px) {
  #onde-estamos .infos .empresa {
    width: 50%;
  }
}

#onde-estamos .infos .empresa .info {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-size: cover !important;
}

#onde-estamos .infos .empresa .info .center {
  width: 100%;
  text-align: center;
}

#onde-estamos .infos .empresa .info p {
  font: 700 1.250em 'Rubik', sans-serif;
  color: #E00000;
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  margin-left: 10px;
  -webkit-transition: all 0.15s ease;
  -moz-transition: all 0.15s ease;
  -ms-transition: all 0.15s ease;
  -o-transition: all 0.15s ease;
  transition: all 0.15s ease;
}

@media (max-width: 992px) {
  #onde-estamos .infos .empresa .info p {
    font-size: .9em;
    margin-left: 0;
  }
}

#onde-estamos .infos .empresa .info span {
  font: 400 1em 'Rubik', sans-serif;
  color: #E00000;
  display: block;
  -webkit-transition: all 0.15s ease;
  -moz-transition: all 0.15s ease;
  -ms-transition: all 0.15s ease;
  -o-transition: all 0.15s ease;
  transition: all 0.15s ease;
}

#onde-estamos .infos .empresa .bg {
  width: 100%;
  height: 100%;
  float: left;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  position: absolute;
  top: 0;
  left: 0;
  background: #2C2D2F;
  background: -moz-linear-gradient(left, #2C2D2F 0%, #f12711 100%);
  background: -webkit-gradient(left top, right top, color-stop(0%, #2C2D2F), color-stop(100%, #f12711));
  background: -webkit-linear-gradient(left, #2C2D2F 0%, #f12711 100%);
  background: -o-linear-gradient(left, #2C2D2F 0%, #f12711 100%);
  background: -ms-linear-gradient(left, #2C2D2F 0%, #f12711 100%);
  background: linear-gradient(to right, #2C2D2F 0%, #f12711 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=$init, endColorstr=$end, GradientType=1 );
  opacity: 0;
  filter: alpha(opacity=0);
}

#onde-estamos .infos .empresa:hover {
  z-index: 10;
  border-color: transparent;
}

#onde-estamos .infos .empresa:hover .bg {
  -moz-transform: scale(1.15);
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.2);
}

#onde-estamos .infos .empresa:hover .info p {
  color: #fff;
  font-size: 1.375em;
}

@media (max-width: 992px) {
  #onde-estamos .infos .empresa:hover .info p {
    font-size: 1em;
  }
}

#onde-estamos .infos .empresa:hover .info span {
  color: #fff;
  font-size: 1.1em;
}

#comp-como-pagar {
  float: left;
  clear: both;
  width: 100%;
  padding: 140px 0 120px;
}

@media (max-width: 1200px) {
  #comp-como-pagar {
    padding: 90px 0 70px;
  }
}

@media (max-width: 992px) {
  #comp-como-pagar {
    padding: 50px 0 30;
  }
}

#comp-como-pagar .title-section.master {
  margin-bottom: 60px;
}

#comp-como-pagar .su-title h2 {
  font-size: 1.5em;
  line-height: 1.5em;
}

@media (max-width: 768px) {
  #comp-como-pagar .su-title h2 {
    font-size: 1em !important;
  }
}

#comp-como-pagar .su-title h2 b {
  font-size: 1.5em;
  color: #2C2D2F;
  display: block;
}

#comp-como-pagar .escolhas {
  margin-top: 30px;
}

#comp-como-pagar .escolhas .coll {
  padding: 15px;
}

#comp-como-pagar .escolhas .banco {
  width: 100%;
  display: inline-block;
  min-height: 100px;
  float: left;
  margin: -.5px;
  position: relative;
  border: #ccc solid 1px;
}

#comp-como-pagar .escolhas .banco .info {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-size: cover !important;
}

#comp-como-pagar .escolhas .banco .info .center {
  width: 100%;
  text-align: center;
}

#comp-como-pagar .escolhas .banco .info p {
  font: 700 1.250em 'Rubik', sans-serif;
  color: #E00000;
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  margin-left: 10px;
  -webkit-transition: all 0.15s ease;
  -moz-transition: all 0.15s ease;
  -ms-transition: all 0.15s ease;
  -o-transition: all 0.15s ease;
  transition: all 0.15s ease;
}

@media (max-width: 992px) {
  #comp-como-pagar .escolhas .banco .info p {
    font-size: .9em;
    margin-left: 0;
  }
}

#comp-como-pagar .escolhas .banco .info span {
  font: 400 1em 'Rubik', sans-serif;
  color: #E00000;
  display: block;
  -webkit-transition: all 0.15s ease;
  -moz-transition: all 0.15s ease;
  -ms-transition: all 0.15s ease;
  -o-transition: all 0.15s ease;
  transition: all 0.15s ease;
}

#comp-como-pagar .escolhas .banco .bg {
  width: 100%;
  height: 100%;
  float: left;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  position: absolute;
  top: 0;
  left: 0;
  background: #2C2D2F;
  background: -moz-linear-gradient(left, #2C2D2F 0%, #f12711 100%);
  background: -webkit-gradient(left top, right top, color-stop(0%, #2C2D2F), color-stop(100%, #f12711));
  background: -webkit-linear-gradient(left, #2C2D2F 0%, #f12711 100%);
  background: -o-linear-gradient(left, #2C2D2F 0%, #f12711 100%);
  background: -ms-linear-gradient(left, #2C2D2F 0%, #f12711 100%);
  background: linear-gradient(to right, #2C2D2F 0%, #f12711 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=$init, endColorstr=$end, GradientType=1 );
  opacity: 0;
  filter: alpha(opacity=0);
}

#comp-como-pagar .escolhas .banco:hover {
  z-index: 10;
  border-color: transparent;
}

#comp-como-pagar .escolhas .banco:hover .bg {
  -moz-transform: scale(1.15);
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.2);
}

#comp-como-pagar .escolhas .banco:hover .info p {
  color: #fff;
  font-size: 1.375em;
}

@media (max-width: 992px) {
  #comp-como-pagar .escolhas .banco:hover .info p {
    font-size: 1em;
  }
}

#comp-como-pagar .escolhas .banco:hover .info span {
  color: #fff;
  font-size: 1.1em;
}

#comp-como-pagar .pop-up {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  padding: 30px;
}

#comp-como-pagar .pop-up .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}

@media (max-width: 992px) {
  #comp-como-pagar .pop-up .overlay {
    display: block;
  }
}

#comp-como-pagar .pop-up .video {
  width: 100%;
  max-width: 600px;
  min-width: 100px;
  position: relative;
  margin: 10% auto;
}

#comp-como-pagar .pop-up .video .fechar {
  width: 30px;
  height: 30px;
  position: absolute;
  top: -45px;
  right: -45px;
  background: #2C2D2F;
  background: -moz-linear-gradient(left, #2C2D2F 0%, #f12711 100%);
  background: -webkit-gradient(left top, right top, color-stop(0%, #2C2D2F), color-stop(100%, #f12711));
  background: -webkit-linear-gradient(left, #2C2D2F 0%, #f12711 100%);
  background: -o-linear-gradient(left, #2C2D2F 0%, #f12711 100%);
  background: -ms-linear-gradient(left, #2C2D2F 0%, #f12711 100%);
  background: linear-gradient(to right, #2C2D2F 0%, #f12711 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=$init, endColorstr=$end, GradientType=1 );
  cursor: pointer;
}

#comp-como-pagar .pop-up .video .fechar i {
  width: 100%;
  height: 100%;
  display: block;
  background: url("assets/img/fechar-modal.png") center no-repeat;
}

#comp-como-pagar .pop-up .video .iframe {
  width: 100%;
  float: left;
}

#home {
  width: 100%;
  float: left;
  clear: both;
}

#home .dots {
  padding: 15px 0;
  background: #d4d4e0;
  text-align: center;
  position: relative;             
}

@media (max-width: 768px) {
  #home .dots {
    padding: 10px 0;
  }
  #home {
  margin-bottom:30px;
  }
}

#home .dots .dot {
  width: 80px;
  height: 10px;
  display: inline-block;
  background: #b4b4be;
  margin: 0 5px;
  -webkit-transition: all 0.15s ease;
  -moz-transition: all 0.15s ease;
  -ms-transition: all 0.15s ease;
  -o-transition: all 0.15s ease;
  transition: all 0.15s ease;
}

#home .dots .dot:hover, #home .dots .dot.active {
  background: #E00000;
}

@media (max-width: 768px) {
  #home .dots .dot {
    width: 30px;
  }
}

#home .article-planos .botao-mais {
  display: none !important;
}

body.maratona {
  background: #021229;
}

body.maratona #header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

#maratona {
  width: 100%;
  float: left;
  clear: both;
}

#maratona .banner {
  width: 100%;
  height: 100vh;
  max-height: 1060px;
  min-height: 700px;
  background: url("assets/img/maratona/banner.jpg") center bottom no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  position: relative;
}

#maratona .article-planos {
  margin-top: -80px;
  position: relative;
  z-index: 1;
}

#maratona .assistir {
  float: left;
  clear: both;
  width: 100%;
  padding: 30px 0;
  position: relative;
  z-index: 1;
}

#maratona .assistir .series {
  margin-top: 40px;
}

#maratona .assistir .series .MS-content {
  white-space: nowrap;
  overflow: hidden;
  padding: 30px 0;
}

#maratona .assistir .series .MS-content .item {
  max-width: 340px;
  display: inline-block;
}

#maratona .assistir .series .MS-content .item img {
  max-width: 100%;
  display: inline-block;
  -webkit-transition: all 0.15s ease;
  -moz-transition: all 0.15s ease;
  -ms-transition: all 0.15s ease;
  -o-transition: all 0.15s ease;
  transition: all 0.15s ease;
}

#maratona .assistir .series .MS-content .item img:hover {
  -webkit-box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 9;
  -moz-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

#maratona .assistir .infos {
  text-align: center;
  margin-top: 10px;
}

#maratona .assistir .infos p {
  font: 1.125em 'Roboto', sans-serif;
  color: #E00000;
  display: inline-block;
  vertical-align: middle;
  -webkit-transition: all 0.15s ease;
  -moz-transition: all 0.15s ease;
  -ms-transition: all 0.15s ease;
  -o-transition: all 0.15s ease;
  transition: all 0.15s ease;
  cursor: default;
}

@media (max-width: 992px) {
  #maratona .assistir .infos p {
    font-size: 1em;
  }
}

@media (max-width: 769px) {
  #maratona .assistir .infos p {
    font-size: .88em;
  }
}

#maratona .assistir .infos p:hover {
  color: #2C2D2F;
}

#maratona .assistir .infos i {
  width: 4px;
  height: 4px;
  display: inline-block;
  background: #E00000;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  margin: 0 13px;
  vertical-align: middle;
}

@media (max-width: 769px) {
  #maratona .assistir .infos i {
    margin: 0 7px;
  }
}

#maratona .velocidade {
  width: 100%;
  float: left;
  clear: both;
  background: url("assets/img/maratona/bg-velocidade.jpg") center top no-repeat;
  padding-top: 240px;
  margin-top: -75px;
}

@media (max-width: 992px) {
  #maratona .velocidade {
    padding-top: 150px;
  }
}

@media (max-width: 992px) {
  #maratona .velocidade .title {
    margin-bottom: 30px;
    text-align: center;
  }
}

#maratona .velocidade .title .title-section {
  text-align: left;
}

@media (max-width: 992px) {
  #maratona .velocidade .title .title-section {
    text-align: center;
  }
}

#maratona .velocidade .title .title-section h2 {
  font-size: 2.6em;
}

#maratona .velocidade .title .botao {
  margin-top: 30px;
}

@media (max-width: 992px) {
  #maratona .velocidade .img {
    text-align: center;
  }
}

#maratona .velocidade .img img {
  max-width: 100%;
  float: right;
}

@media (max-width: 992px) {
  #maratona .velocidade .img img {
    float: none;
  }
}

#maratona .qualidade {
  width: 100%;
  float: left;
  clear: both;
  margin: 50px 0 80px;
}

#maratona .qualidade .title {
  text-align: right;
}

@media (max-width: 992px) {
  #maratona .qualidade .title {
    margin-bottom: 30px;
    text-align: center;
  }
}

#maratona .qualidade .title .title-section {
  text-align: right;
}

@media (max-width: 992px) {
  #maratona .qualidade .title .title-section {
    text-align: center;
  }
}

#maratona .qualidade .title .botao {
  margin-top: 30px;
}

@media (max-width: 992px) {
  #maratona .qualidade .gifs {
    text-align: center;
  }
}

#maratona .qualidade .gif {
  padding: 13px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  border: #E00000 solid 3px;
  display: inline-block;
  position: relative;
  float: left;
  -webkit-box-shadow: 0 25px 30px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 25px 30px 0 rgba(0, 0, 0, 0.2);
}

@media (max-width: 992px) {
  #maratona .qualidade .gif {
    float: none;
  }
}

#maratona .qualidade .gif img {
  width: 330px;
  height: 330px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

@media (max-width: 1200px) {
  #maratona .qualidade .gif img {
    width: 250px;
    height: 250px;
  }
}

#maratona .qualidade .gif i {
  float: left;
  position: absolute;
  top: 50%;
  left: -25px;
  margin-top: -8px;
  padding: 5px 15px;
  font: 700 .750em 'Rubik', sans-serif;
  color: #021229;
  -webkit-border-radius: 12px;
  border-radius: 12px;
  background: #2C2D2F;
  background: -moz-linear-gradient(left, #2C2D2F 0%, #f12711 100%);
  background: -webkit-gradient(left top, right top, color-stop(0%, #2C2D2F), color-stop(100%, #f12711));
  background: -webkit-linear-gradient(left, #2C2D2F 0%, #f12711 100%);
  background: -o-linear-gradient(left, #2C2D2F 0%, #f12711 100%);
  background: -ms-linear-gradient(left, #2C2D2F 0%, #f12711 100%);
  background: linear-gradient(to right, #2C2D2F 0%, #f12711 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=$init, endColorstr=$end, GradientType=1 );
}

#maratona .qualidade .gif.right {
  margin-left: -100px;
}

#maratona .qualidade .gif.right i {
  left: auto;
  right: -25px;
}

#maratona .play {
  float: left;
  clear: both;
  width: 100%;
  min-height: 770px;
  background: url("assets/img/maratona/bg-play.jpg") center top no-repeat;
  padding-top: 230px;
}

@media (max-width: 992px) {
  #maratona .play {
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    min-height: 500px;
    padding-top: 130px;
  }
}

#maratona .play .title-section {
  text-align: left;
}

#maratona .play .botao {
  margin-top: 30px;
}

#redes {
  float: left;
  clear: both;
  width: 100%;
}

#redes .banner {
  float: left;
  clear: both;
  width: 100%;
  height: 100vh;
  max-height: 1060px;
  min-height: 700px;
  background: url("assets/img/redes/banner.jpg") center bottom no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  position: relative;
}

#redes .banner .mouse-banner i {
  background: url("assets/img/redes/mouse.png") center no-repeat;
}

#redes .fotos {
  float: left;
  clear: both;
  width: 100%;
  padding: 30px 0;
  position: relative;
  z-index: 1;
}

#redes .fotos .box-fotos {
  margin-top: 40px;
}

#redes .fotos .box-fotos .MS-content {
  white-space: nowrap;
  overflow: hidden;
  padding: 30px 0;
}

#redes .fotos .box-fotos .MS-content .item {
  max-width: 310px;
  display: inline-block;
  position: relative;
}

#redes .fotos .box-fotos .MS-content .item img {
  max-width: 100%;
  display: inline-block;
  -webkit-transition: all 0.15s ease;
  -moz-transition: all 0.15s ease;
  -ms-transition: all 0.15s ease;
  -o-transition: all 0.15s ease;
  transition: all 0.15s ease;
}

#redes .fotos .box-fotos .MS-content .item .like {
  float: left;
  width: 25px;
  height: 22px;
  background: url("assets/img/redes/like.png") center top no-repeat;
  position: absolute;
  right: 10px;
  bottom: 10px;
}

#redes .fotos .box-fotos .MS-content .item:hover img {
  -webkit-box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 9;
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

#redes .fotos .box-fotos .MS-content .item:hover .like {
  z-index: 10;
  background-position: center -22px;
}

#redes .familia {
  width: 100%;
  float: left;
  clear: both;
  margin: 50px 0 80px;
}

#redes .familia .title {
  text-align: right;
}

@media (max-width: 992px) {
  #redes .familia .title {
    margin-bottom: 30px;
    text-align: center;
  }
}

#redes .familia .title .title-section {
  text-align: right;
}

@media (max-width: 992px) {
  #redes .familia .title .title-section {
    text-align: center;
  }
}

#redes .familia .title .botao {
  margin-top: 30px;
}

#redes .familia .img img {
  max-width: 100%;
}

#redes .momentos {
  float: left;
  clear: both;
  width: 100%;
  min-height: 770px;
  background: url("assets/img/redes/momentos.jpg") center top no-repeat;
  padding-top: 250px;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

@media (max-width: 992px) {
  #redes .momentos {
    min-height: 500px;
    padding-top: 130px;
  }
}

#redes .momentos .title-section {
  text-align: left;
}

#redes .momentos .title-section h2 {
  color: #fff;
}

#redes .momentos .botao {
  margin-top: 30px;
}

#planos {
  float: left;
  clear: both;
  width: 100%;
}

#planos .article-planos .planos {
  position: relative;
  padding: 0 60px;
  margin-top: 50px;
  margin-bottom: -150px;
  z-index: 1;
}

@media (max-width: 992px) {
  #planos .article-planos .planos {
    padding: 0 35px;
  }
}

@media (max-width: 992px) {
  #planos .article-planos .planos .colls {
    padding: 0 10px;
  }
}

@media (max-width: 768px) {
  #planos .article-planos .planos .colls {
    text-align: center;
  }
}

#planos .article-planos .planos .card-planos {
  width: 100%;
}

@media (max-width: 768px) {
  #planos .article-planos .planos .card-planos {
    max-width: 310px;
    display: inline-block;
    float: none;
  }
}

#planos .article-planos .planos .arrows {
  width: 106px;
  height: 106px;
  position: absolute;
  top: 50%;
  margin-top: -140px;
  z-index: 9;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  background: none;
}

#planos .article-planos .planos .arrows.prev {
  left: -50px;
}

#planos .article-planos .planos .arrows.next {
  right: -50px;
}

#planos .article-planos .planos .arrows img {
  display: inline-block;
}

@media (max-width: 992px) {
  #planos .article-planos .planos .arrows img {
    max-width: 70px;
  }
}

#planos .article-planos .planos .MS-content {
  white-space: nowrap;
  overflow: hidden;
  padding: 50px 0 150px;
}

#planos .article-planos .planos .MS-content .item {
  width: 33.333%;
  display: inline-block;
  position: relative;
}

@media (max-width: 768px) {
  #planos .article-planos .planos .MS-content .item {
    width: 100%;
  }
}

#trabalho-em-casa {
  float: left;
  clear: both;
  width: 100%;
}

#trabalho-em-casa .banner {
  float: left;
  clear: both;
  width: 100%;
  height: 100vh;
  max-height: 1060px;
  min-height: 700px;
  background: url("assets/img/trabalho-em-casa/banner.jpg") center bottom no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  position: relative;
}

@media (max-width: 768px) {
  #trabalho-em-casa .banner {
    min-height: 500px;
    max-height: 500px;
  }
}

@media (max-width: 768px) {
  #trabalho-em-casa .banner .mouse-banner {
    bottom: 100px;
  }
}

#trabalho-em-casa .banner .mouse-banner i {
  background: url("assets/img/maratona/mouse.png") center no-repeat;
}

#trabalho-em-casa .banner .title {
  width: 100%;
  height: 100%;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#trabalho-em-casa .banner .title h1 {
  width: 100%;
  text-align: center;
  font: 700 3.750em 'Rubik', sans-serif;
  color: #fff;
  line-height: .9em;
  margin-top: -150px;
}

@media (max-width: 768px) {
  #trabalho-em-casa .banner .title h1 {
    font-size: 2em;
  }
}

#trabalho-em-casa .ferramentas {
  width: 100%;
  float: left;
  clear: both;
  background: #ececf9;
  padding: 60px 0 120px;
}

@media (max-width: 992px) {
  #trabalho-em-casa .ferramentas {
    padding: 50px 0 60px;
  }
}

#trabalho-em-casa .ferramentas .logos {
  margin-top: 90px;
}

@media (max-width: 992px) {
  #trabalho-em-casa .ferramentas .logos {
    margin-top: 50px;
  }
}

@media (max-width: 768px) {
  #trabalho-em-casa .ferramentas .logos {
    margin-top: 30px;
  }
}

@media (max-width: 992px) {
  #trabalho-em-casa .ferramentas .logos img {
    max-width: 100px;
  }
}

@media (max-width: 768px) {
  #trabalho-em-casa .ferramentas .logos img {
    max-width: 60px;
  }
}

#trabalho-em-casa .video {
  width: 100%;
  float: left;
  clear: both;
  margin: 50px 0 80px;
}

@media (max-width: 992px) {
  #trabalho-em-casa .video {
    margin-top: 0 0 30px;
  }
}

#trabalho-em-casa .video .title {
  text-align: right;
  margin-top: 50px;
}

@media (max-width: 992px) {
  #trabalho-em-casa .video .title {
    margin-bottom: 30px;
    text-align: center;
  }
}

#trabalho-em-casa .video .title .title-section {
  text-align: right;
}

@media (max-width: 992px) {
  #trabalho-em-casa .video .title .title-section {
    text-align: center;
  }
}

#trabalho-em-casa .video .title .title-section h2 {
  font-size: 2.7em;
}

#trabalho-em-casa .video .title .botao {
  margin-top: 30px;
}

@media (max-width: 992px) {
  #trabalho-em-casa .video .img {
    text-align: center;
  }
}

#trabalho-em-casa .video .img img {
  max-width: 100%;
}

@media (max-width: 1200px) {
  #trabalho-em-casa .video .img img {
    max-width: 400px;
  }
}

@media (max-width: 992px) {
  #trabalho-em-casa .video .img img {
    max-width: 300px;
  }
}

#trabalho-em-casa .nuvem {
  width: 100%;
  float: left;
  clear: both;
  margin: 50px 0 80px;
}

@media (max-width: 992px) {
  #trabalho-em-casa .nuvem {
    margin-top: 30px 0;
  }
}

#trabalho-em-casa .nuvem .title {
  text-align: left;
  margin-top: 110px;
}

@media (max-width: 992px) {
  #trabalho-em-casa .nuvem .title {
    margin-top: 30px;
    margin-bottom: 30px;
    text-align: center;
  }
}

#trabalho-em-casa .nuvem .title .title-section {
  text-align: left;
}

@media (max-width: 992px) {
  #trabalho-em-casa .nuvem .title .title-section {
    text-align: center;
  }
}

#trabalho-em-casa .nuvem .title .title-section h2 {
  font-size: 2.7em;
}

#trabalho-em-casa .nuvem .title .botao {
  margin-top: 30px;
}

#trabalho-em-casa .nuvem .img {
  text-align: right;
}

@media (max-width: 992px) {
  #trabalho-em-casa .nuvem .img {
    text-align: center;
  }
}

#trabalho-em-casa .nuvem .img img {
  max-width: 100%;
}

@media (max-width: 1200px) {
  #trabalho-em-casa .nuvem .img img {
    max-width: 400px;
  }
}

@media (max-width: 992px) {
  #trabalho-em-casa .nuvem .img img {
    max-width: 300px;
  }
}

body.minha-empresa {
  background: #003047;
}

body.minha-empresa #header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

body.minha-empresa #header .infos p {
  color: #fff;
}

body.minha-empresa #header .infos p a {
  color: #fff;
}

body.minha-empresa #header .infos p a:hover {
  color: #2C2D2F;
}

body.minha-empresa #header .infos p i {
  color: #2C2D2F;
}

body.minha-empresa #header .menu ul li a {
  color: #fff;
}

body.minha-empresa #header .menu .via {
  color: #fff;
}

#minha-empresa {
  width: 100%;
  float: left;
  clear: both;
}

#minha-empresa .title-section h2 {
  color: #d4d4e0;
}

#minha-empresa .banner {
  float: left;
  clear: both;
  width: 100%;
  height: 100vh;
  max-height: 1060px;
  min-height: 700px;
  background: url("assets/img/minha-empresa/banner.jpg") center bottom no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  position: relative;
}

@media (max-width: 768px) {
  #minha-empresa .banner {
    min-height: 500px;
    max-height: 500px;
  }
}

@media (max-width: 768px) {
  #minha-empresa .banner .mouse-banner {
    bottom: 100px;
  }
}

#minha-empresa .banner .mouse-banner i {
  background: url("assets/img/maratona/mouse.png") center no-repeat;
}

#minha-empresa .banner .title {
  width: 100%;
  height: 100%;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.2);
}

#minha-empresa .banner .title h1 {
  width: 100%;
  text-align: center;
  font: 700 3.750em 'Rubik', sans-serif;
  color: #fff;
  line-height: .9em;
  margin-top: -150px;
}

@media (max-width: 768px) {
  #minha-empresa .banner .title h1 {
    font-size: 2em;
    margin-top: -50px;
  }
}

#minha-empresa .article-planos {
  width: 100%;
  float: left;
  clear: both;
}

#minha-empresa .article-planos .title-section h2 {
  color: #d4d4e0;
}

#minha-empresa .article-planos .planos-chamada .botao-mais a {
  color: #d4d4e0;
}

#minha-empresa .potencial {
  width: 100%;
  float: left;
  clear: both;
  padding: 90px 0 50px;
}

@media (max-width: 992px) {
  #minha-empresa .potencial {
    padding: 50px 0 30px;
  }
}

#minha-empresa .potencial .title-section {
  position: relative;
  z-index: 1;
}

#minha-empresa .potencial .img {
  text-align: center;
  margin-top: -35px;
}

#minha-empresa .potencial .img img {
  max-width: 100%;
}

#minha-empresa .potencial .infos {
  margin-top: 60px;
  text-align: center;
}

#minha-empresa .potencial .infos .text {
  display: inline-block;
  text-align: center;
  margin: 0 120px;
}

#minha-empresa .potencial .infos .text:first-child {
  margin-left: 0;
}

#minha-empresa .potencial .infos .text:last-child {
  margin-right: 0;
}

@media (max-width: 1200px) {
  #minha-empresa .potencial .infos .text {
    margin: 0 64px;
  }
}

@media (max-width: 992px) {
  #minha-empresa .potencial .infos .text {
    margin: 0 18px;
  }
}

@media (max-width: 768px) {
  #minha-empresa .potencial .infos .text {
    margin: 0 5px;
  }
}

#minha-empresa .potencial .infos .text p {
  font: 700 1.250em 'Rubik', sans-serif;
  color: #fff;
  margin-top: 40px;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
  #minha-empresa .potencial .infos .text p {
    font-size: 1em;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  #minha-empresa .potencial .infos .text img {
    max-width: 80px;
  }
}

#minha-empresa .estabilidade {
  width: 100%;
  float: left;
  clear: both;
  border-top: #E00000 solid 30px;
  background: #fff;
  padding: 110px 0;
}

@media (max-width: 1200px) {
  #minha-empresa .estabilidade {
    padding: 90px 0;
  }
}

@media (max-width: 992px) {
  #minha-empresa .estabilidade {
    padding: 50px 0;
  }
}

#minha-empresa .estabilidade .title-section h2 {
  color: #E00000;
  font-size: 2.7em;
}

#minha-empresa .estabilidade .info {
  width: 100%;
  float: left;
  clear: both;
  margin-top: 70px;
}

#minha-empresa .estabilidade .info .title {
  text-align: left;
  margin-top: 50px;
}

@media (max-width: 992px) {
  #minha-empresa .estabilidade .info .title {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  #minha-empresa .estabilidade .info .title {
    text-align: center;
    margin-bottom: 30px;
  }
}

#minha-empresa .estabilidade .info .title .title-section {
  text-align: left;
}

@media (max-width: 768px) {
  #minha-empresa .estabilidade .info .title .title-section {
    text-align: center;
  }
}

@media (max-width: 1200px) {
  #minha-empresa .estabilidade .info .title .title-section h2 {
    font-size: 2em;
  }
}

@media (max-width: 992px) {
  #minha-empresa .estabilidade .info .title .title-section h2 {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  #minha-empresa .estabilidade .info .title .title-section h2 {
    font-size: 1.5em;
  }
}

@media (max-width: 992px) {
  #minha-empresa .estabilidade .info .title .title-section p {
    font-size: .88em;
  }
}

#minha-empresa .estabilidade .info .title .botao {
  margin-top: 30px;
}

#minha-empresa .estabilidade .info .img {
  text-align: right;
}

#minha-empresa .estabilidade .info .img img {
  max-width: 100%;
}

#minha-empresa .estabilidade .info.versao2 .title {
  text-align: right;
}

#minha-empresa .estabilidade .info.versao2 .title .title-section {
  text-align: right;
}

@media (max-width: 768px) {
  #minha-empresa .estabilidade .info.versao2 .title .title-section {
    text-align: center;
  }
}

#minha-empresa .estabilidade .info.versao2 .botao {
  text-align: center;
}

#minha-empresa .estabilidade .info.versao2 .img {
  text-align: left;
}

#minha-empresa .parceria-de-sucesso {
  width: 100%;
  float: left;
  clear: both;
  background: url("assets/img/parceria-de-sucesso.jpg") center no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  height: 735px;
  position: relative;
}

@media (max-width: 1200px) {
  #minha-empresa .parceria-de-sucesso {
    height: 690px;
  }
}

@media (max-width: 992px) {
  #minha-empresa .parceria-de-sucesso {
    height: 450px;
  }
}

@media (max-width: 768px) {
  #minha-empresa .parceria-de-sucesso {
    height: 300px;
  }
}

#minha-empresa .parceria-de-sucesso .infos {
  position: absolute;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-size: cover !important;
}

#minha-empresa .parceria-de-sucesso .infos h3 {
  font: 700 3em 'Rubik', sans-serif;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.1em;
}

@media (max-width: 1200px) {
  #minha-empresa .parceria-de-sucesso .infos h3 {
    font-size: 2.5em;
  }
}

@media (max-width: 992px) {
  #minha-empresa .parceria-de-sucesso .infos h3 {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  #minha-empresa .parceria-de-sucesso .infos h3 {
    font-size: 1.5em;
  }
}

#minha-empresa .parceria-de-sucesso .infos .botao {
  margin-top: 30px;
}

@media (max-width: 992px) {
  #minha-empresa .parceria-de-sucesso .infos .botao {
    margin-top: 15px;
  }
}

#minha-empresa #perguntas .title-section h2 {
  color: #E00000 !important;
}

#faq {
  float: left;
  clear: both;
  width: 100%;
}

#faq .article-planos {
  padding-bottom: 100px;
}

#fale-conosco {
  float: left;
  clear: both;
  width: 100%;
}

#empresa {
  float: left;
  clear: both;
  width: 100%;
}

#fale-conosco .title-page {
  padding: 100px 0 80px;
  background: #E00000;
}

#empresa .title-page {
  padding: 100px 0 80px;
  background: #E00000;
}

#fale-conosco > .chamadas {
  width: 100%;
  float: left;
  clear: both;
  margin-top: -83px;
}

#empresa > .chamadas {
  width: 100%;
  float: left;
  clear: both;
  margin-top: -83px;
}

#fale-conosco > .chamadas #duvidas {
  padding: 0 !important;
}

#empresa > .chamadas #duvidas {
  padding: 0 !important;
}

#fale-conosco > .chamadas #duvidas .title-section {
  display: none;
}

#empresa > .chamadas #duvidas .title-section {
  display: none;
}

#fale-conosco > .cont {
  width: 100%;
  float: left;
  clear: both;
  margin: 50px 0 50px;
}

#empresa > .cont {
  width: 100%;
  float: left;
  clear: both;
  margin: 50px 0 50px;
}

#fale-conosco .forma {
  max-width: 480px;
}

#empresa .forma {
  max-width: 100%;
}

.empresa_img img {
 width:100%;
 }
.empresa_img {
  max-width: 480px;
  float:right;
}

#fale-conosco .forma .title-section {
  text-align: center;
}

#empresa .forma .title-section {
  text-align: center;
}

#fale-conosco .forma .title-section h2 {
  font-size: 2.7em;
  text-align:center;
}

#empresa .forma .title-section h2 {
  font-size: 2.7em;
  text-align:center;
}

@media (max-width: 1200px) {
  #fale-conosco .forma .title-section h2 {
    font-size: 2em;
  }
  #empresa .forma .title-section h2 {
    font-size: 2em;
  }
}

@media (max-width: 992px) {
  #fale-conosco .forma .title-section h2 {
    font-size: 1.7em;
  }
  #empresa .forma .title-section h2 {
    font-size: 1.7em;
  }
}

@media (max-width: 992px) {
  #fale-conosco .forma .title-section p {
    font-size: .88em;
  }
  #empresa .forma .title-section p {
    font-size: .88em;
  }
}

#fale-conosco .forma .infos {
  margin: 20px 0;
  background: #fff;
  padding: 15px 20px;
  box-shadow: 0 0 5px 0px #a5a5a5;
  border-radius: 25px;
  text-align:center;
}

#empresa .forma .infos {
  margin: 20px 0;
  background: #fff;
  padding: 15px 0;
  box-shadow: 0 0 5px 0px #a5a5a5;
  border-radius: 25px;
  text-align:center;
}

#fale-conosco .forma .infos p {
  font: 1.125em 'Roboto', sans-serif;
  color: #E00000;
  margin: 10px 0;
  position: relative;
}

#empresa .forma .infos p {
  font: 1.125em 'Roboto', sans-serif;
  color: #E00000;
  margin: 10px 0;
  position: relative;
}

@media (max-width: 992px) {
  #fale-conosco .forma .infos p {
    font-size: .88em;
    margin-bottom: 15px;
  }
  #empresa .forma .infos p {
    font-size: .88em;
    margin-bottom: 15px;
  }
}

#fale-conosco .forma .infos p img {
  position: absolute;
  top: 0;
  left: 0;
}
#empresa .forma .infos p img {
  position: absolute;
  top: 0;
  left: 0;
}

@media (max-width: 992px) {
  #fale-conosco .forma .bottom {
    margin-top: 30px;
  }
  #empresa .forma .bottom {
    margin-top: 30px;
  }
}

#fale-conosco .forma .bottom p {
  font: 1.125em 'Roboto', sans-serif;
  color: #808080;
  text-align:center;
}
#empresa .forma .bottom p {
  font: 1.125em 'Roboto', sans-serif;
  color: #808080;
  text-align:center;
}

.con i {
font-size:23px;
color:#2C2D2F;
}

@media (max-width: 992px) {
  #fale-conosco .forma .bottom p {
    font-size: .88em;
  }
  #empresa .forma .bottom p {
    font-size: .88em;
  }
}

@media (max-width: 768px) {
  #fale-conosco .formulario {
    margin-top: 50px;
  }
  #empresa .formulario {
    margin-top: 50px;
  }
  .empresa_img {
  margin-top:20px;
}
}

#fale-conosco .formulario .title-section {
  text-align: center;
}
#empresa .formulario .title-section {
  text-align: center;
}

#fale-conosco .formulario .title-section h2 {
  font-size: 2.7em;
  text-align:center;
}
#empresa .formulario .title-section h2 {
  font-size: 2.7em;
  text-align:center;
}

@media (max-width: 1200px) {
  #fale-conosco .formulario .title-section h2 {
    font-size: 2em;
  }
    #empresa .formulario .title-section h2 {
    font-size: 2em;
  }
}

@media (max-width: 992px) {
  #fale-conosco .formulario .title-section h2 {
    font-size: 1.7em;
  }
    #empresa .formulario .title-section h2 {
    font-size: 1.7em;
  }
}

@media (max-width: 992px) {
  #fale-conosco .formulario .title-section p {
    font-size: .88em;
  }
    #empresa .formulario .title-section p {
    font-size: .88em;
  }
}

#fale-conosco .formulario form {
  margin-top: 30px;
}
#empresa .formulario form {
  margin-top: 30px;
}

#fale-conosco .formulario form select,
#fale-conosco .formulario form textarea,
#fale-conosco .formulario form input {
  width: 100%;
  height: 45px;
  border: #d3d6df solid 1px;
  -webkit-border-radius: 7px;
  border-radius: 7px;
  margin-bottom: 10px;
  padding: 0 25px;
  font: 1.125em 'Roboto', sans-serif;
  color: #E00000;
  outline: none;
}
#empresa .formulario form select,
#empresa .formulario form textarea,
#empresa .formulario form input {
  width: 100%;
  height: 45px;
  border: #d3d6df solid 1px;
  -webkit-border-radius: 7px;
  border-radius: 7px;
  margin-bottom: 10px;
  padding: 0 25px;
  font: 1.125em 'Roboto', sans-serif;
  color: #E00000;
  outline: none;
}

#fale-conosco .formulario form select:focus,
#fale-conosco .formulario form textarea:focus,
#fale-conosco .formulario form input:focus {
  border-color: #E00000;
}
#empresa .formulario form select:focus,
#empresa .formulario form textarea:focus,
#empresa .formulario form input:focus {
  border-color: #E00000;
}

#fale-conosco .formulario form select::placeholder,
#fale-conosco .formulario form textarea::placeholder,
#fale-conosco .formulario form input::placeholder {
  color: #E00000;
}
#empresa .formulario form select::placeholder,
#empresa .formulario form textarea::placeholder,
#empresa .formulario form input::placeholder {
  color: #E00000;
}

#fale-conosco .formulario form select:-ms-input-placeholder,
#fale-conosco .formulario form textarea:-ms-input-placeholder,
#fale-conosco .formulario form input:-ms-input-placeholder {
  color: #E00000;
}
#empresa .formulario form select:-ms-input-placeholder,
#empresa .formulario form textarea:-ms-input-placeholder,
#empresa .formulario form input:-ms-input-placeholder {
  color: #E00000;
}
#fale-conosco .formulario form select::-ms-input-placeholder,
#fale-conosco .formulario form textarea::-ms-input-placeholder,
#fale-conosco .formulario form input::-ms-input-placeholder {
  color: #E00000;
}
#empresa .formulario form select::-ms-input-placeholder,
#empresa .formulario form textarea::-ms-input-placeholder,
#empresa .formulario form input::-ms-input-placeholder {
  color: #E00000;
}

#fale-conosco .formulario form textarea {
  padding: 25px;
  height: 130px;
}
#empresa .formulario form textarea {
  padding: 25px;
  height: 130px;
}

#fale-conosco .formulario form .button {
  text-align: center;
}
#empresa .formulario form .button {
  text-align: center;
}

#fale-conosco .formulario form .button button {
  border: none;
  outline: none;
  cursor: pointer;
}
#empresa .formulario form .button button {
  border: none;
  outline: none;
  cursor: pointer;
}

#fale-conosco .formulario form .error {
  display: none;
  width: 100%;
  padding: 15px;
  font: 400 .8em 'Roboto', sans-serif;
  color: #fff;
  background: #ec3c2a;
  margin: 15px 0;
}
#empresa .formulario form .error {
  display: none;
  width: 100%;
  padding: 15px;
  font: 400 .8em 'Roboto', sans-serif;
  color: #fff;
  background: #ec3c2a;
  margin: 15px 0;
}

#fale-conosco #modal-fale-conosco .success {
  width: 100%;
  height: 100%;
  background: #fff;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  padding: 30px;
}
#empresa #modal-fale-conosco .success {
  width: 100%;
  height: 100%;
  background: #fff;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  padding: 30px;
}

#fale-conosco #modal-fale-conosco .success .topo {
  margin-top: 20px;
}
#empresa #modal-fale-conosco .success .topo {
  margin-top: 20px;
}

#fale-conosco #modal-fale-conosco .success .topo h2 {
  font: 700 2.2em 'Rubik', sans-serif;
  background: -webkit-gradient(left top, right top, color-stop(0%, #2C2D2F), color-stop(100%, #f12711));
  background: linear-gradient(to right, #2C2D2F 0%, #f12711 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=$init, endColorstr=$end, GradientType=1 );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}
#empresa #modal-fale-conosco .success .topo h2 {
  font: 700 2.2em 'Rubik', sans-serif;
  background: -webkit-gradient(left top, right top, color-stop(0%, #2C2D2F), color-stop(100%, #f12711));
  background: linear-gradient(to right, #2C2D2F 0%, #f12711 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=$init, endColorstr=$end, GradientType=1 );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

#fale-conosco #modal-fale-conosco .success .topo p {
  font: 1em 'Rubik', sans-serif;
  color: #E00000;
  text-align: center;
}
#empresa #modal-fale-conosco .success .topo p {
  font: 1em 'Rubik', sans-serif;
  color: #E00000;
  text-align: center;
}

#fale-conosco #modal-fale-conosco .success .icon {
  margin-top: 70px;
}

#fale-conosco #modal-fale-conosco .success .success-checkmark {
  width: 80px;
  height: 115px;
  margin: 0 auto;
}

#fale-conosco #modal-fale-conosco .success .success-checkmark .check-icon {
  width: 80px;
  height: 80px;
  position: relative;
  border-radius: 50%;
  box-sizing: content-box;
  border: 4px solid #4CAF50;
}

#fale-conosco #modal-fale-conosco .success .success-checkmark .check-icon::before {
  top: 3px;
  left: -2px;
  width: 30px;
  transform-origin: 100% 50%;
  border-radius: 100px 0 0 100px;
}

#fale-conosco #modal-fale-conosco .success .success-checkmark .check-icon::after {
  top: 0;
  left: 30px;
  width: 60px;
  transform-origin: 0 50%;
  border-radius: 0 100px 100px 0;
  animation: rotate-circle 4.25s ease-in;
}

#fale-conosco #modal-fale-conosco .success .success-checkmark .check-icon::before, #fale-conosco #modal-fale-conosco .success .success-checkmark .check-icon::after {
  content: '';
  height: 100px;
  position: absolute;
  background: #FFFFFF;
  transform: rotate(-45deg);
}

#fale-conosco #modal-fale-conosco .success .success-checkmark .check-icon .icon-line {
  height: 5px;
  background-color: #4CAF50;
  display: block;
  border-radius: 2px;
  position: absolute;
  z-index: 10;
}

#fale-conosco #modal-fale-conosco .success .success-checkmark .check-icon .icon-line.line-tip {
  top: 46px;
  left: 14px;
  width: 25px;
  transform: rotate(45deg);
  animation: icon-line-tip 0.75s;
}

#fale-conosco #modal-fale-conosco .success .success-checkmark .check-icon .icon-line.line-long {
  top: 38px;
  right: 8px;
  width: 47px;
  transform: rotate(-45deg);
  animation: icon-line-long 0.75s;
}

#fale-conosco #modal-fale-conosco .success .success-checkmark .check-icon .icon-circle {
  top: -4px;
  left: -4px;
  z-index: 10;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: absolute;
  box-sizing: content-box;
  border: 4px solid rgba(76, 175, 80, 0.5);
}

#fale-conosco #modal-fale-conosco .success .success-checkmark .check-icon .icon-fix {
  top: 8px;
  width: 5px;
  left: 26px;
  z-index: 1;
  height: 85px;
  position: absolute;
  transform: rotate(-45deg);
  background-color: #FFFFFF;
}

@keyframes rotate-circle {
  0% {
    transform: rotate(-45deg);
  }
  5% {
    transform: rotate(-45deg);
  }
  12% {
    transform: rotate(-405deg);
  }
  100% {
    transform: rotate(-405deg);
  }
}

@keyframes icon-line-tip {
  0% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  54% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  70% {
    width: 50px;
    left: -8px;
    top: 37px;
  }
  84% {
    width: 17px;
    left: 21px;
    top: 48px;
  }
  100% {
    width: 25px;
    left: 14px;
    top: 45px;
  }
}

@keyframes icon-line-long {
  0% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  65% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  84% {
    width: 55px;
    right: 0px;
    top: 35px;
  }
  100% {
    width: 47px;
    right: 8px;
    top: 38px;
  }
}

body.games {
  background: #021329;
}

body.games #header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

#games {
  float: left;
  clear: both;
  width: 100%;
}

#games .banner {
  width: 100%;
  height: 100vh;
  max-height: 1080px;
  min-height: 700px;
  background: url("assets/img/games/banner.jpg") center bottom no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  position: relative;
}

#games .banner .texto h2 {
  width: auto;
  text-align: left;
  float: left;
  margin-top: 25%;
  background: -webkit-gradient(left top, right top, color-stop(0%, #2C2D2F), color-stop(100%, #f12711));
  background: linear-gradient(to right, #2C2D2F 0%, #f12711 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=$init, endColorstr=$end, GradientType=1 );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-animation: shake-horizontal 0.6s cubic-bezier(0.455, 0.03, 0.515, 0.955) 1.5s both;
  animation: shake-horizontal 0.6s cubic-bezier(0.455, 0.03, 0.515, 0.955) 1.5s both;
}

@media (max-width: 992px) {
  #games .banner .texto h2 {
    width: 100%;
    text-align: center;
    margin-top: 30%;
  }
}

@-webkit-keyframes shake-horizontal {
  0%,
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  10%, 30%, 50%, 70% {
    -webkit-transform: translateX(-12px);
    transform: translateX(-12px);
  }
  20%, 40%, 60% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  80% {
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
  }
  90% {
    -webkit-transform: translateX(-8px);
    transform: translateX(-8px);
  }
}

@keyframes shake-horizontal {
  0%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  10%, 30%, 50%, 70% {
    -webkit-transform: translateX(-12px);
    transform: translateX(-12px);
  }
  20%, 40%, 60% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  80% {
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
  }
  90% {
    -webkit-transform: translateX(-8px);
    transform: translateX(-8px);
  }
}

#games .desempenho {
  float: left;
  clear: both;
  width: 100%;
  padding: 60px 0;
  background: url("assets/img/games/bg-desempenho.jpg") center bottom no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

#games .desempenho .infos {
  margin-top: 40px;
  text-align: center;
}

#games .desempenho .infos .info {
  display: inline-block;
  margin: 0 15px;
  margin-top: 30px;
  text-align: center;
}

@media (max-width: 768px) {
  #games .desempenho .infos .info {
    margin: 0 5px;
  }
}

#games .desempenho .infos .info:first-child {
  margin-left: 0;
}

#games .desempenho .infos .info:last-child {
  margin-right: 0;
}

#games .desempenho .infos .info img {
  display: inline-block;
  max-width: 330px;
  -webkit-transition: all 0.15s ease;
  -moz-transition: all 0.15s ease;
  -ms-transition: all 0.15s ease;
  -o-transition: all 0.15s ease;
  transition: all 0.15s ease;
}

@media (max-width: 1200px) {
  #games .desempenho .infos .info img {
    max-width: 285px;
  }
}

@media (max-width: 992px) {
  #games .desempenho .infos .info img {
    max-width: 205px;
  }
}

@media (max-width: 768px) {
  #games .desempenho .infos .info img {
    max-width: 160px;
  }
}

#games .desempenho .infos .info img:hover {
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

#games .desempenho .infos .info p {
  display: block;
  text-align: center;
  font: 700 1.250em 'Rubik', sans-serif;
  color: #E00000;
  margin-top: 25px;
}

@media (max-width: 768px) {
  #games .desempenho .infos .info p {
    font-size: 1em;
  }
}

#games .desempenho .infos .info .line {
  width: 85px;
  height: 5px;
  background: #2C2D2F;
  display: inline-block;
  margin-top: 15px;
}

@media (max-width: 768px) {
  #games .desempenho .infos .info .line {
    height: 3px;
    width: 60px;
    margin-top: 10px;
  }
}

#games .batalhas {
  float: left;
  clear: both;
  width: 100%;
  height: 840px;
  padding: 60px 0;
  background: url("assets/img/games/bg-batalhas.jpg") center bottom no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 1200px) {
  #games .batalhas {
    height: 700px;
  }
}

@media (max-width: 992px) {
  #games .batalhas {
    height: 500px;
  }
}

@media (max-width: 768px) {
  #games .batalhas {
    height: 400px;
  }
}

#games .batalhas .texto {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-size: cover !important;
}

#games .batalhas .texto .title-section {
  text-align: left;
}

#games .batalhas .texto .title-section h2 {
  color: #fff;
}

@media (min-width: 1200px) {
  #games .batalhas .texto .title-section h2 {
    font-size: 3em;
  }
}

#games .batalhas .texto .title-section p {
  color: #fff;
}

@media (max-width: 768px) {
  #games .batalhas .texto .title-section p {
    font-size: .9em;
  }
}

#games .batalhas .texto .title-section b {
  color: #fff;
}

#games .batalhas .texto .botao {
  margin-top: 40px;
  display: block;
}

@media (max-width: 768px) {
  #games .batalhas .texto .botao {
    margin-top: 20px;
  }
}

#games .futebol {
  width: 100%;
  float: left;
  clear: both;
  padding: 100px 0 70px;
}

@media (max-width: 992px) {
  #games .futebol {
    padding: 70px 0;
  }
}

@media (max-width: 768px) {
  #games .futebol {
    padding: 30px 0;
  }
}

#games .futebol .title {
  text-align: right;
}

@media (max-width: 992px) {
  #games .futebol .title {
    margin-bottom: 30px;
    text-align: center;
  }
}

#games .futebol .title .title-section {
  text-align: right;
}

@media (max-width: 768px) {
  #games .futebol .title .title-section {
    text-align: center;
  }
}

@media (max-width: 992px) {
  #games .futebol .title .title-section h2 {
    font-size: 2em;
  }
}

#games .futebol .title .botao {
  margin-top: 30px;
}

@media (max-width: 992px) {
  #games .futebol .title .botao {
    text-align: right;
  }
}

@media (max-width: 768px) {
  #games .futebol .title .botao {
    text-align: center;
  }
}

#games .futebol .img {
  margin-top: -183px;
}

@media (max-width: 992px) {
  #games .futebol .img {
    margin-top: -50px;
  }
}

@media (max-width: 768px) {
  #games .futebol .img {
    display: none;
  }
}

#games .futebol .img img {
  max-width: 100%;
  -webkit-transition: all 0.15s ease;
  -moz-transition: all 0.15s ease;
  -ms-transition: all 0.15s ease;
  -o-transition: all 0.15s ease;
  transition: all 0.15s ease;
}

#games .futebol .img img:hover {
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

#games .passo-profissional {
  width: 100%;
  float: left;
  clear: both;
  background: url("assets/img/games/passo-profissional.jpg") center no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  height: 735px;
  position: relative;
}

@media (max-width: 1200px) {
  #games .passo-profissional {
    height: 690px;
  }
}

@media (max-width: 992px) {
  #games .passo-profissional {
    height: 450px;
  }
}

@media (max-width: 768px) {
  #games .passo-profissional {
    height: 300px;
  }
}

#games .passo-profissional .infos {
  position: absolute;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-size: cover !important;
}

#games .passo-profissional .infos h3 {
  font: 700 3em 'Rubik', sans-serif;
  color: #fff;
  line-height: 1.1em;
}

@media (max-width: 1200px) {
  #games .passo-profissional .infos h3 {
    font-size: 2.5em;
  }
}

@media (max-width: 992px) {
  #games .passo-profissional .infos h3 {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  #games .passo-profissional .infos h3 {
    font-size: 1.5em;
  }
}

#games .passo-profissional .infos .botao {
  margin-top: 30px;
}

@media (max-width: 992px) {
  #games .passo-profissional .infos .botao {
    margin-top: 15px;
  }
}

body.lives {
  background: #021329;
}

body.lives #header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

body.lives #header .infos p,
body.lives #header .infos p a {
  color: #fff;
}

body.lives #header .menu .via,
body.lives #header .menu ul li a {
  color: #fff !important;
}

body.lives #header .menu .logo img {
  display: none;
}

body.lives #header .menu .logo img.branca {
  display: inline-block;
}

#lives {
  float: left;
  clear: both;
  width: 100%;
}

#lives .banner {
  float: left;
  clear: both;
  width: 100%;
  height: 100vh;
  max-height: 1080px;
  min-height: 700px;
  background: url("assets/img/lives/banner.jpg") center bottom no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  position: relative;
}

#lives .banner .texto h2 {
  width: auto;
  text-align: left;
  float: left;
  margin-top: 25%;
  color: #fff;
}

@media (max-width: 992px) {
  #lives .banner .texto h2 {
    width: 100%;
    text-align: center;
    margin-top: 30%;
  }
}

#lives .partida {
  float: left;
  clear: both;
  width: 100%;
  padding-bottom: 150px;
}

@media (max-width: 768px) {
  #lives .partida {
    padding-bottom: 50px;
  }
}

#lives .partida .tv {
  margin-top: 15px;
  text-align: center;
}

#lives .partida .tv img {
  max-width: 100%;
}

#lives .partida .tv .relative {
  position: relative;
  display: inline-block;
}

#lives .partida .tv .info {
  width: 230px;
  height: 230px;
  position: absolute;
  bottom: -70px;
}

@media (max-width: 992px) {
  #lives .partida .tv .info {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 768px) {
  #lives .partida .tv .info {
    width: 100px;
    height: 100px;
    bottom: -20px;
  }
}

#lives .partida .tv .info.info2 {
  left: 50%;
  margin-left: -115px;
}

@media (max-width: 992px) {
  #lives .partida .tv .info.info2 {
    margin-left: -75px;
  }
}

@media (max-width: 768px) {
  #lives .partida .tv .info.info2 {
    margin-left: -50px;
  }
}

#lives .partida .tv .info.info3 {
  right: 0;
}

#lives .partida .tv .info .item {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  border: #2C2D2F solid 5px;
  background: url("assets/img/lives/tv-icon2.png") center no-repeat #021329;
  -webkit-transition: all 0.15s ease;
  -moz-transition: all 0.15s ease;
  -ms-transition: all 0.15s ease;
  -o-transition: all 0.15s ease;
  transition: all 0.15s ease;
}

@media (max-width: 768px) {
  #lives .partida .tv .info .item {
    background-size: 40px;
  }
}

#lives .partida .tv .info .item:hover {
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
}

#lives .partida .tv .info.info1 .item {
  background-image: url("assets/img/lives/tv-icon1.png");
}

@media (max-width: 768px) {
  #lives .partida .tv .info.info1 .item {
    background-size: 50px;
  }
}

#lives .conteudo {
  width: 100%;
  float: left;
  clear: both;
  margin: 50px 0 80px;
}

@media (max-width: 992px) {
  #lives .conteudo {
    margin-top: 30px 0;
  }
}

#lives .conteudo .title {
  text-align: left;
  margin-top: 50px;
}

@media (max-width: 992px) {
  #lives .conteudo .title {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  #lives .conteudo .title {
    margin-bottom: 30px;
    text-align: center;
  }
}

#lives .conteudo .title .title-section {
  text-align: left;
}

@media (max-width: 768px) {
  #lives .conteudo .title .title-section {
    text-align: center;
  }
}

#lives .conteudo .title .title-section h2 {
  font-size: 2.7em;
  color: #fff;
}

@media (max-width: 1200px) {
  #lives .conteudo .title .title-section h2 {
    font-size: 2em;
  }
}

#lives .conteudo .title .botao {
  margin-top: 30px;
  text-align: left;
}

@media (max-width: 768px) {
  #lives .conteudo .title .botao {
    text-align: center;
  }
}

#lives .conteudo .img {
  position: relative;
  float: right;
}

@media (max-width: 992px) {
  #lives .conteudo .img {
    text-align: center;
  }
}

#lives .conteudo .img .bike {
  width: 100%;
  max-width: 100%;
}

@media (max-width: 768px) {
  #lives .conteudo .img .bike {
    display: none;
  }
}

#lives .conteudo .img img.ao-vivo {
  position: absolute;
  bottom: 30px;
  left: 30px;
}

#lives .possibilidades {
  width: 100%;
  float: left;
  clear: both;
  height: 620px;
  background: url("assets/img/lives/bg-possibilidades.jpg") center bottom no-repeat #021329;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

@media (max-width: 768px) {
  #lives .possibilidades {
    margin-bottom: 30px;
    text-align: center;
  }
}

@media (max-width: 1200px) {
  #lives .possibilidades {
    height: 580px;
  }
}

@media (max-width: 992px) {
  #lives .possibilidades {
    height: 430px;
  }
}

@media (max-width: 768px) {
  #lives .possibilidades {
    background-image: url("assets/img/lives/bg-possibilidades-mobile.jpg");
  }
}

#lives .possibilidades .title {
  text-align: left;
  margin-top: 80px;
}

@media (max-width: 992px) {
  #lives .possibilidades .title {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  #lives .possibilidades .title {
    margin-bottom: 30px;
    text-align: center;
  }
}

#lives .possibilidades .title .title-section {
  text-align: left;
}

@media (max-width: 768px) {
  #lives .possibilidades .title .title-section {
    text-align: center;
  }
}

#lives .possibilidades .title .title-section h2 {
  font-size: 2.7em;
}

@media (max-width: 1200px) {
  #lives .possibilidades .title .title-section h2 {
    font-size: 2em;
  }
}

#lives .possibilidades .title .title-section p {
  color: #d4d4e0;
}

#lives .possibilidades .title img {
  max-width: 100%;
  margin-top: 23px;
}

@media (max-width: 992px) {
  #lives .possibilidades .title img {
    max-width: 270px;
  }
}

#lives .possibilidades .title .botao {
  margin-top: 30px;
  text-align: left;
}

@media (max-width: 768px) {
  #lives .possibilidades .title .botao {
    text-align: center;
  }
}

#lives .possibilidades .img {
  position: relative;
  float: right;
}

@media (max-width: 992px) {
  #lives .possibilidades .img {
    text-align: center;
  }
}

#lives .possibilidades .img img {
  width: 100%;
  max-width: 100%;
}

@media (max-width: 768px) {
  #lives .possibilidades .img img {
    display: none;
  }
}

#lives .campo {
  width: 100%;
  float: left;
  clear: both;
  background: url("assets/img/lives/campo.jpg") center no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  height: 735px;
  position: relative;
}

@media (max-width: 1200px) {
  #lives .campo {
    height: 690px;
  }
}

@media (max-width: 992px) {
  #lives .campo {
    height: 450px;
  }
}

@media (max-width: 768px) {
  #lives .campo {
    height: 300px;
  }
}

#lives .campo .infos {
  position: absolute;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-size: cover !important;
}

#lives .campo .infos h3 {
  font: 700 3em 'Rubik', sans-serif;
  color: #fff;
  line-height: 1.1em;
}

@media (max-width: 1200px) {
  #lives .campo .infos h3 {
    font-size: 2.5em;
  }
}

@media (max-width: 992px) {
  #lives .campo .infos h3 {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  #lives .campo .infos h3 {
    font-size: 1.5em;
  }
}

#lives .campo .infos .botao {
  margin-top: 30px;
}

@media (max-width: 992px) {
  #lives .campo .infos .botao {
    margin-top: 15px;
  }
}

#cobertura {
  float: left;
  clear: both;
  width: 100%;
}

#cobertura .title-page {
  padding: 100px 0 80px;
  background: #ececf9;
}

#cobertura .matriz {
  width: 100%;
  float: left;
  clear: both;
  padding: 150px 0 0;
}

#cobertura .matriz .title {
  margin-bottom: 50px;
}

#cobertura .matriz .title h2 {
  font-size: 1.5em;
  line-height: 1.5em;
}

@media (max-width: 768px) {
  #cobertura .matriz .title h2 {
    font-size: 1em !important;
  }
}

#cobertura .matriz .title h2 b {
  font-size: 1.5em;
  color: #2C2D2F;
  display: block;
}

#cobertura .matriz .container {
  max-width: 600px;
}

#cobertura .matriz .item {
  width: 50%;
  float: left;
  text-align: center;
}

#cobertura .matriz .item p {
  font: 700 1em 'Rubik', sans-serif;
  color: #E00000;
}

#cobertura .empresas {
  padding: 50px;
  width: 100%;
  float: left;
}

#cobertura .empresas .title {
  margin-bottom: 50px;
}

#cobertura .empresas .title h2 {
  font-size: 1.5em;
  color: #b4b4be;
}

#cobertura .empresas .itens {
  width: 20%;
  display: inline-block;
  min-height: 100px;
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 768px) {
  #cobertura .empresas .itens {
    width: 50%;
  }
}

#cobertura .empresas .itens .center {
  width: 100%;
  text-align: center;
}

#cobertura .empresas .itens .center p {
  font: 700 1em 'Rubik', sans-serif;
  color: #2C2D2F;
}

#quem-somos {
  float: left;
  clear: both;
  width: 100%;
}

#quem-somos .title-page {
  padding: 100px 0 80px;
  background: #ececf9;
}

#quem-somos .pub {
  padding: 60px 0 100px;
}

#quem-somos .pub p {
  font: 1.125em 'Roboto', sans-serif;
  color: #E00000;
}

@media (max-width: 992px) {
  #quem-somos .pub p {
    font-size: 1em;
  }
}

#quem-somos .pub img {
  margin-top: 40px;
  max-width: 100%;
}

#quem-somos .pub .objetivo {
  margin-top: 160px;
}

@media (max-width: 992px) {
  #quem-somos .pub .objetivo {
    margin-top: 50px;
  }
}

#quem-somos .pub .objetivo .title-section h2 {
  font-size: 2.250em;
}

#quem-somos .pub .objetivo .title-section .line {
  width: 75px;
  height: 5px;
}

#quem-somos .pub .objetivo p {
  margin-top: 30px;
  text-align: center;
}

#quem-somos .historia {
  padding-bottom: 70px;
}

#quem-somos .historia .title-section {
  margin-bottom: 50px;
}

#quem-somos .historia .title-section h2 {
  font-size: 2.250em;
}

#quem-somos .historia .title-section .line {
  width: 75px;
  height: 5px;
}

#quem-somos .historia p {
  font: 1.125em 'Roboto', sans-serif;
  color: #E00000;
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  #quem-somos .historia p {
    font-size: 1em;
  }
}

#como-pagar {
  float: left;
  clear: both;
  width: 100%;
}

#como-pagar .title-page {
  padding: 100px 0 80px;
  background: #ececf9;
}

#como-pagar .cont .title-section {
  display: none;
}

#como-pagar .cont .su-title .title-section {
  display: block;
}

#contratos {
  float: left;
  clear: both;
  width: 100%;
}

#contratos .title-page {
  padding: 100px 0 80px;
  background: #ececf9;
}

#contratos .contratos {
  padding: 150px 0 100px;
}

@media (max-width: 1200px) {
  #contratos .contratos {
    padding: 100px 0 70px;
  }
}

@media (max-width: 992px) {
  #contratos .contratos {
    padding: 70px 0 20px;
  }
}

#contratos .contratos ul li {
  margin-bottom: 30px;
}

#contratos .contratos ul li a {
  font: 1.8em 'Roboto', sans-serif;
  color: #E00000;
}

#contratos .contratos ul li a:hover {
  color: #2C2D2F;
}

@media (max-width: 992px) {
  #contratos .contratos ul li a {
    font-size: 1.2em;
  }
}

#contratos .contratos ul li a img {
  vertical-align: -3px;
}

#header {
  width: 100%;
  float: left;
  clear: both;
  padding-bottom: 15px;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0 2px 15px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 15px 2px rgba(0, 0, 0, 0.2);
}

#header .infos {
  width: 100%;
  float: left;
  clear: both;
  background: #f3f3f3;
  padding: 15px 0;
}

#header .infos p {
  float: left;
  font: .875em 'Roboto', sans-serif;
  color: #2c3e50;
  margin: 0 10px;
}

#header .infos p i {
  color: #b4b4be;
  margin-right: 8px;
}

#header .infos p a {
  color: #2c3e50;
  -webkit-transition: all 0.15s ease;
  -moz-transition: all 0.15s ease;
  -ms-transition: all 0.15s ease;
  -o-transition: all 0.15s ease;
  transition: all 0.15s ease;
}

@media (max-width: 992px) {
  #header .infos p {
    font-size: .88em;
    margin: 0 6px;
  }
}

@media (max-width: 769px) {
  #header .infos p {
    font-size: .7em;
  }
  #header .infos p i {
    margin-right: 4px;
  }
  #header .infos p.teste {
    display: none;
  }
}

@media (max-width: 480px) {
  #header .infos p.whatsapp, #header .infos p.user {
    display: none;
  }
}

#header .menu {
  width: 100%;
  float: left;
  clear: both;
}

#header .menu .logo {
  margin-top: -10px;
  float: left;
}

@media (max-width: 992px) {
  #header .menu .logo img {
    max-width: 140px;
  }
}

@media (max-width: 769px) {
  #header .menu .logo img {
    max-width: 110px;
  }
}

#header .menu .logo img.branca {
  display: none;
}

#header .menu .right {
  margin-top: 30px;
}

@media (max-width: 992px) {
  #header .menu .right {
    margin-top: 26px;
  }
}

@media (max-width: 769px) {
  #header .menu .right {
    margin-top: 15px;
  }
}

#header .menu ul {
  display: inline-block;
}

#header .menu ul li {
  display: inline-block;
}

#header .menu ul li a {
  font: 500 1.125em 'Roboto', sans-serif;
  color: #2c3e50;
  padding: 10px 5px;
  margin: 0 3px;
  display: inline-block;
  -webkit-transition: all 0.15s ease;
  -moz-transition: all 0.15s ease;
  -ms-transition: all 0.15s ease;
  -o-transition: all 0.15s ease;
  transition: all 0.15s ease;
}

#header .menu ul li a:hover {
  color: #E00000;
}

@media (max-width: 992px) {
  #header .menu ul li a {
    font-size: .88em;
    padding: 10px 2px;
    margin: 0 2px;
  }
}

#header .menu .via {
  font: .875em 'Roboto', sans-serif;
  color: #2c3e50;
  margin-left: 40px;
  -webkit-transition: all 0.15s ease;
  -moz-transition: all 0.15s ease;
  -ms-transition: all 0.15s ease;
  -o-transition: all 0.15s ease;
  transition: all 0.15s ease;
}

#header .menu .via:hover {
  color: #E00000;
}

@media (max-width: 992px) {
  #header .menu .via {
    margin-left: 10px;
  }
}

@media (max-width: 769px) {
  #header .menu .via {
    display: none !important;
  }
}

#header .menu .via i {
  margin-right: 3px;
}

#header .menu .assine {
  margin-left: 45px;
}

@media (max-width: 992px) {
  #header .menu .assine {
    margin-left: 20px;
  }
}

@media (max-width: 769px) {
  #header .menu .assine {
    margin-left: 10px;
  }
}

@media (max-width: 576px) {
  #header .menu .assine {
    display: none;
  }
}

.page-flat #header {
  box-shadow: none;
  -webkit-box-shadow: none;
}

.page-flat #header .infos {
  background: none;
}

.page-flat #header .infos p {
  color: #d4d4e0;
}

.page-flat #header .infos p a {
  color: #d4d4e0;
}

.page-flat #header .infos p i {
  color: #2C2D2F;
}

.page-flat #header .menu .via {
  color: #d4d4e0;
}

.page-flat #header .menu ul li a {
  color: #2C2D2F;
}

.page-flat #header .menu ul li a:hover {
  color: #2C2D2F;
}


  .logomarca img {
   width:100%;
   max-width: 300px !important;
   }
   .elementor-nav-menu--dropdown {
   top:55px !important;
   }
  .mobile {
  display:none
  }
  .desktop {
  display:block
  }
@media (max-width: 769px) {
  .logomarca img {
   max-width: 140px !important;
  }
  .back-color {
  padding: 0 !important;
  }
  .mobile {
  display:block
  }
  .desktop {
  display:none
  }
  #destaque
 .menu .card {margin: 0;}
}
.slide img {
width:100% !important;
height:100% !important;
left:0 !important;
top:0 !important;
}
/* Estado normal */
.menu .card a .meu-icone {
  fill: #2C2D2F; 
  transition: 0.3s ease;
  margin-top:40px;
}
/* Quando passa o mouse no CARD */
.menu .card a:hover .meu-icone {
  fill: #ffffff;
}
/* Quando estiver ACTIVE */
.menu .card a.active .meu-icone {
  fill: #ffffff;
}
.menu .card a .meu-icone {
  width: 95px; 
  transition: transform 0.1s ease;
}
/* Quando passa o mouse */
.menu .card a:hover .meu-icone {
  transform: scale(1.5);
}
/* Quando estiver ativo */
.menu .card a.active .meu-icone {
  transform: scale(1.5);
}
/* =======================================================
   ESTILOS DO RODAPÉ (VERSÃO PC / DESKTOP)
   ======================================================= */

/* Container Principal */
.footer-container {
    background: linear-gradient(to bottom, var(--cor-principal), color-mix(in srgb, var(--cor-principal) 65%, black));
    color: #ffffff;
    padding: 0px 20px 15px 20px;
    width: 100%;
    clear: both;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    font-family: 'Rubik', sans-serif;
}

/* Linhas de Conteúdo Gerais */
.footer-row {
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    padding: 25px 0;
}

/* NOVO: Ajuste para a linha de cima também ficar voltada para o centro */
.footer-row:first-of-type {
    justify-content: center; /* Traz logo, botão e texto para o centro */
    gap: 60px; /* Controla a distância entre os blocos de cima (ajuste se quiser mais perto ou longe) */
}

/* Divisores Horizontais longos */
.footer-horizontal-divider {
    width: 100%;
    max-width: 1200px;
    height: 1px;
    background-color: #fff;
    display: block;
}

/* Configuração da linha de baixo que contém os segmentos com divisórias verticais */
.footer-row-segments {
    display: flex;
    justify-content: center; /* Mantém os blocos de baixo voltados para o centro */
    gap: 40px; 
}

/* Segmentos individuais (App, Telefone, Redes) */
.footer-segment {
    flex: 0 1 auto; 
    padding: 10px 0;
}
/* Alinhamento específico para cada bloco de baixo no PC */
.footer-app-block {
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: center; 
    gap: 12px;
    padding-right: 40px;
    position: relative; /* Necessário para posicionar a nova linha */
}

/* Cria a primeira linha vertical com altura fixa e controlada */
.footer-app-block::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%); /* Centraliza a linha perfeitamente na vertical */
    width: 1px;
    height: 50px; /* Altere este valor para controlar a altura exata da barra */
    background-color: #ffffff;
    opacity: 0.4; /* Deixa a linha sutil como no design original */
}

.footer-phone-block {
    order: 2;
    gap: 12px;
    font-size: 25px;
    font-weight: 700;
    padding-right: 40px;
    position: relative; /* Necessário para posicionar a nova linha */
	text-align:left;
}

/* Cria a segunda linha vertical com a mesma altura exata */
.footer-phone-block::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%); /* Centraliza a linha perfeitamente na vertical */
    width: 1px;
    height: 50px; /* Mesma altura da outra barra */
    background-color: #ffffff;
    opacity: 0.4;
}

.footer-social-block {
    order: 3; 
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* Imagem da logo */
.footer-logo-img {
	width:100%;
	max-width:170px;
}

.footer-logo-block {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Botão "Fale Conosco" */
.btn-fale-conosco {
    background-color: #32bb00;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 35px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 17px;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.5px;
    transition: background-color 0.2s ease;
    flex-shrink: 0; /* Impede o botão de amassar caso reduza a tela */
}

.btn-fale-conosco:hover {
    background-color: #289600;
}

/* Texto Informativo de Premiação */
.footer-award-text {
    font-size: 13px;
    color: #fff;
    max-width: 340px;
    line-height: 1.5;
    text-align: left; /* Mudado para a esquerda para combinar com o fluxo voltado para o centro */
}

.footer-award-text strong {
    color: #ffffff;
    font-weight: 600;
}

/* Botões de Aplicativos */
.footer-app-title {
    font-size: 14px;
    color: #ffffff;
    font-weight: 500;
}

.app-buttons {
    display: flex;
    gap: 12px;
}

.btn-app {
    border: 1px solid #000;
    border-radius: 6px;
    padding: 6px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    text-decoration: none;
    background-color: #000;
    width: 150px;
    transition: border-color 0.2s ease;
}

.btn-app:hover {
    border: 1px solid #2C2D2F;
	background-color: #2C2D2F;
}

.btn-app i {
    font-size: 22px;
}

.btn-app-text {
    display: flex;
    flex-direction: column;
    font-size: 9px;
    color: #fff;
    line-height: 1.2;
}

.btn-app-text strong {
    font-size: 13px;
    color: #ffffff;
}

/* Detalhes do Telefone */
.footer-phone-block i.fa-phone {
    color: #ffffff;
    transform: rotate(15deg);
}

.footer-phone-block i.fa-whatsapp {
    font-size: 32px;
    color: #fff;
}

.footer-phone-block a {
    color: #ffffff;
    text-decoration: none;
    padding-bottom: 2px;
}

/* Detalhes das Redes Sociais */
.footer-social-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    max-width: 120px;
    color: #ffffff;
	margin-right:10px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.icon-link {
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    color: #E00000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 20px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.icon-link:hover {
    color:#fff;
    background-color: #2C2D2F;
}

/* Direitos Autorais */
.footer-bottom {
    width: 100%;
    max-width: 1200px;
    text-align: center;
    font-size: 14px;
    color: #fff;
    line-height: 1.2;
    padding-top: 15px;
}

.footer-bottom a {
    color: #2C2D2F;
    text-decoration: underline;
}


/* =======================================================
   REGRAS ADAPTATIVAS (MOBILE / CELULAR)
   ======================================================= */
@media (max-width: 768px) {
    .footer-container {
        padding: 10px 20px 10px 20px;
    }

    /* Reseta o comportamento de centro para coluna em telas menores */
    .footer-row:first-of-type {
        flex-direction: column;
        gap: 20px;
    }

    .footer-row-segments {
        flex-direction: column;
        gap: 20px;
    }

    .footer-row {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 15px 0;
    }

    .footer-phone-block,
    .footer-social-block {
        border-right: none !important;
        padding-right: 0 !important;
    }

    .footer-segment {
        width: 100%;
        justify-content: center !important;
        text-align: center;
    }

    .footer-logo-block {
        flex-direction: column;
        gap: 8px;
    }

    /* Mantém oculto o texto de premiação no mobile para seguir o layout original */
    .footer-award-text {
        display: none;
    }

    .footer-app-block {
        align-items: center;
		padding-right: 0; 
    }

    .app-buttons {
        justify-content: center;
        width: 100%;
    }

    .footer-phone-block {
        font-size: 26px;
		text-align:center;
    }

    .footer-phone-block i.fa-whatsapp {
        font-size: 28px;
    }

    .footer-social-block {
        flex-direction: column; 
        gap: 15px;
    }

    .footer-social-title {
        max-width: 100%;
    }

    .social-icons {
        justify-content: center; 
    }

    .footer-bottom {
        padding-top: 20px;
        font-size: 11px;
        color: #fff;
    }
	/* Adiciona linhas horizontais de separação apenas no celular */
    .footer-phone-block, .footer-app-block {
        border-bottom: 1px solid #fff !important;
        padding-bottom: 25px !important; 
        width: 100%; 
        margin: 0 auto; 
    }
	.footer-app-block::after, 
    .footer-phone-block::after {
        display: none !important;
    }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 10px 5px 10px 5px;
  }
}

/* Para Video */
.video-full {
  width: 100vw; /* Usa a largura total da janela do navegador */
  height: auto;  /* Mantém a proporção correta do vídeo */
  display: block;
}
/* ==========================================
   ÁREA PRINCIPAL
   ========================================== */

.app-download {
    width: 100%;
    position: relative;
    overflow: hidden;
    line-height: 0;
}


/* ==========================================
   IMAGEM DE FUNDO
   ========================================== */

.app-bg {
    display: block;
    width: 100%;
    height: auto;
	margin-top:20px;
}


/* Mobile fica escondido no PC */
.app-bg-mobile {
    display: none;
}


/* ==========================================
   CAIXA TRANSPARENTE
   ========================================== */

.app-download-box {
    position: absolute;
    width: 43%;
    top: 45%;
    right: 5%;
    padding: 45px 35px;
    background: #E0000080;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 20px;

    box-sizing: border-box;

    line-height: normal;
}


/* ==========================================
   BOTÕES
   ========================================== */

.app-download-box a {
    display: block;
    width: 48%;

    transition: transform 0.2s ease;
}

.app-download-box a:hover {
    transform: scale(1.03);
}

.app-download-box a img {
    display: block;

    width: 100%;
    height: auto;

    border: 0;
}


/* ==========================================
   MOBILE
   ========================================== */

@media (max-width: 768px) {

    .app-bg-desktop {
        display: none;
    }
    .app-bg-mobile {
        display: block;
        width: 100%;
        height: auto;
    }
    .app-download-box {
        width: 70%;
        top: 160px;
        right: 15%;
        padding: 30px 20px;
        border-radius: 22px;
        flex-direction: column;
        gap: 20px;
    }
    .app-download-box a {
        width: 100%;
    }
}

/* FAQ */
/* Container Principal */
.faq-container {
    display:grid;
    grid-template-columns:550px 1fr;
    align-items:end;
    max-width: 1140px;
    width: 100%;
    margin: 50px auto 0; /* Adicionado para centralizar na tela e dar espaço do banner de cima */
    padding: 0 20px;   /* Evita que o conteúdo cole nas bordas em telas menores */
    justify-content: space-between;
    gap: 40px;
    font-family: 'Rubik', sans-serif; /* Fonte aplicada direto no bloco do FAQ */
}

/* Garante que os elementos internos usem a mesma fonte e herdem propriedades corretas */
.faq-container * {
    box-sizing: border-box;
    font-family: 'Rubik', sans-serif;
}

/* Lado Esquerdo: Conteúdo */
.faq-content {
    flex: 1;
    max-width: 550px;
	margin-bottom:10px;
	align-self:center;
}

.faq-title {
    color: #2C2D2F;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.faq-description {
    border-left: 2px solid #2C2D2F;
    padding-left: 15px;
    margin-bottom: 35px;
}

.faq-description p {
    color: #8c8c8c;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Estrutura do Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    background-color: #E00000;
    border-radius: 10px;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

/* Botão da Pergunta */
.accordion-header {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    color: #ffffff;
    padding: 18px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: left;
    transition: background-color 0.2s ease;
}

.accordion-header:hover {
    background-color: #2C2D2F;
}

.accordion-header .icon {
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
}

/* Corpo da Resposta (Escondido por padrão) */
.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    background-color: #E00000; /* Fundo ligeiramente mais escuro para a resposta */
    padding: 0 25px;
}

.accordion-body p {
    color: #e0e6f5;
    font-size: 0.9rem;
    line-height: 1.5;
    padding-bottom: 18px;
}

/* Estado Ativo (Quando aberto pelo JS) */
.accordion-item.active .accordion-body {
    max-height: 200px; /* Altura máxima para permitir a animação suave */
    padding-top: 10px;
}
.accordion-item.active .accordion-header {
	background-color:#2C2D2F;
}

/* Lado Direito: Imagem */
.faq-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.faq-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Responsividade para Celulares */
@media (max-width: 768px) {
    .faq-container {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .faq-title {
        font-size: 2rem;
    }

    .faq-image-container {
        width: 100%;
    }
	.faq-container {
    display: flex;
    max-width: 1140px;
    width: 100%;
    margin: 50px auto 0; /* Adicionado para centralizar na tela e dar espaço do banner de cima */
    padding: 0 20px;   /* Evita que o conteúdo cole nas bordas em telas menores */
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    font-family: 'Rubik', sans-serif; /* Fonte aplicada direto no bloco do FAQ */
}
.faq-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.faq-image {
    max-width: 300px;
    height: auto;
    object-fit: contain;
}
}
@media (min-width: 1201px) {
  .publicidade-banners .fotorama__caption .infos {
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    height: 100%;
    margin-top: 0;
    padding-left: 0 !important;
    padding-top: 3vw;
    text-align: left;
  }

  .publicidade-banners .fotorama__active .infos {
    padding-left: 0 !important;
  }

  .publicidade-banners .fotorama__caption .infos .megas,
  .publicidade-banners .fotorama__caption .infos .preco {
    float: none;
    display: inline-block;
    vertical-align: middle;
  }

  .publicidade-banners .fotorama__caption .infos p {
    font-size: 1.65vw;
    margin-bottom: 0.15vw;
	text-transform: uppercase;
	white-space: normal !important;   /* Cancela qualquer proibição de quebra de linha */
    overflow-wrap: anywhere !important; /* Força a quebra em qualquer ponto se necessário */
    word-break: break-all !important;  /* Quebra palavras longas imediatamente */
    width: 100% !important;     
  }

  .publicidade-banners .fotorama__caption .infos h5 {
    font-size: 7.1vw;
    line-height: 5.6vw;
    margin-bottom: 0.2vw;
  }

  .publicidade-banners .fotorama__caption .infos h5 span {
    font-size: 1.58vw;
  }

  .publicidade-banners .fotorama__caption .infos h5 span.rs {
    margin-right: -1.05vw;
  }

  .publicidade-banners .fotorama__caption .infos h5 span.centavos {
    margin-left: -1.05vw;
  }

  .publicidade-banners .fotorama__caption .infos b {
    font-size: 5.05vw;
    line-height: 4vw;
	text-transform: uppercase;
	text-align:center;
  }

  .publicidade-banners .fotorama__caption .infos .preco h5 {
    margin-top: -1.05vw;
    font-size: 6.3vw;
    line-height: 6.6vw;
    margin-bottom: 0.15vw;
  }

  .publicidade-banners .fotorama__caption .infos .preco > span {
    margin-top: 0.4vw;
    font-size: 1.05vw;
    line-height: 1.19vw;
  }

  .publicidade-banners .fotorama__caption .infos .botao {
    width: 100%;
    max-width: 27.8vw;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
  }

  .publicidade-banners .fotorama__caption .infos .botao .btn {
    padding: 1.26vw 3.9vw;
    font-size: 1.2vw;
    min-width: 13.9vw;
  }
}
.modal-curriculo {
    display: none;
    position: fixed;
    z-index: 99999;
    inset: 0;
    background: rgba(0,0,0,.65);
    align-items: center;
    justify-content: center;
    padding: 20px;
	font-family: 'Rubik', sans-serif;
}

.modal-curriculo.ativo {
    display: flex;
}

.modal-conteudo {
    position: relative;
    width: 100%;
    max-width: 500px;
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,.25);
}

.modal-conteudo h2 {
    margin-top: 0;
    color: #E00000;
	text-align: center;
    font-size: 2.5em;
	margin-bottom:10px;
	font-weight:700;
}

.modal-conteudo p {
text-align:center;
font-size: 1em;
color:#808080;
}

.modal-conteudo label {
    display: block;
    margin: 15px 0 6px;
    color: #E00000;
}

.modal-conteudo input {
    width: 100%;
    box-sizing: border-box;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    outline: none;
}

/* Borda azul ao clicar no campo */
.modal-conteudo input:focus {
    border-color: #E00000;
    box-shadow: 0 0 0 2px rgba(80, 8, 200, 0.10);
}

/* Botão de selecionar currículo */
.modal-conteudo input[type="file"]::file-selector-button {
    background: #2C2D2F;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 8px 12px;
    margin-right: 10px;
    cursor: pointer;
    font-weight: 600;
}

.modal-conteudo input[type="file"]::file-selector-button:hover {
    background: #E00000;
}

.modal-conteudo button[type="submit"] {
    width: 100%;
    margin-top: 20px;
    padding: 13px;
    border: 0;
    border-radius: 6px;
    cursor: pointer;
    background: #E00000;
    color: #fff;
    font-weight: 700;
}

.modal-conteudo button[type="submit"]:hover {
    background: #2C2D2F;
}

.fechar {
    position: absolute;
    right: 15px;
    top: 10px;
    border: 0;
    background: none;
    font-size: 28px;
    cursor: pointer;
    color: #E00000;
}

.fechar:hover {
    color: #2C2D2F;
}
/* Remove as bolinhas padrões, margens e espaçamentos da lista */
.planos .infos .hidden ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Aplica a sua estilização diretamente aos itens da lista */
.planos .infos .hidden ul li {
  font: 500 .875em 'Rubik', sans-serif;
  color: #FA9857;
  text-transform: uppercase;
  line-height: 20px; /* Substituiu o 'normal' que estava duplicado */
}
.article-planos .planos .row {
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}
#fale-conosco .bottom p { 
font: 1.125em 'Roboto', sans-serif;
color: #808080;
text-align: center;
margin: 10px 0;
}
.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
  font: 1.125em 'Roboto', sans-serif;
}
.alert {
  position: relative;
  padding: .75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
  border-radius: .25rem;
}
.container-anatel {
    display: flex;
    justify-content: center; /* Centraliza na horizontal */
    align-items: center;     /* Centraliza na vertical */
	margin-top:15px;
}
.anatel {
    width: 200px;
}

.anatel img {
    width: 100%;
    object-fit: contain;
}
.iframe-container {
    width: 100%;
    height: 350px;
    display: block;
    position: relative;
    clear: both;
    margin-top: 20px;
}

.iframe-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

@media (max-width: 768px) {
    .iframe-container {
        height: 300px;
    }
}
.publicidade-banners .fotorama__caption .infos ul,
.publicidade-banners .fotorama__caption .infos li {
  margin-bottom: 0.15vw;
  text-transform: uppercase;
  white-space: normal !important;
  overflow-wrap: anywhere !important;
  word-break: break-all !important;
  width: 100% !important;
  font: 700 1.25em 'Rubik', sans-serif;
  color: #fff;
}
@media (max-width: 768px) {
.publicidade-banners .fotorama__caption .infos ul,
.publicidade-banners .fotorama__caption .infos li {
  font: 700 0.95em 'Rubik', sans-serif;

}
}