/* Cores */
/* Mixins */
@media (max-width: 1023px) {
  .hidden-mobile {
    display: none;
  }
}
@media (min-width: 1024px) {
  .hidden-desk {
    display: none;
  }
}
/* GRID */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 19px;
  color: #000;
  -webkit-overflow-scrolling: touch;
}
body a {
  text-decoration: none;
  color: #2067CA;
}

ul li {
  list-style: none;
}

p {
  margin: 10px 0;
  line-height: 35px;
}

.row {
  display: flex;
  flex-direction: row;
}
@media (min-width: 1024px) {
  .row {
    flex-direction: row;
  }
}

.column {
  padding: 5px;
  margin: 5px 0;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.title {
  text-transform: uppercase;
  margin: 50px 0;
}
.title h3 {
  font-weight: 100;
  text-transform: initial;
}

.feedback-trabalhe, .feedback-localidade {
  margin-top: 10px;
}

.hide {
  display: none;
}

.success {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}

.danger {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}

.col {
  display: flex;
}
.col input, .col textarea {
  margin: 5px 0;
}

.margin-right {
  margin: 5px 5px auto auto !important;
}

.feedback {
  width: 100%;
  padding: 10px;
  font-size: 85%;
  border-radius: 10px;
  text-align: center;
}

.btn {
  border: none;
  background-color: #1fb161;
  border-radius: 5px;
  padding: 8px 20px;
  box-shadow: 0px 0px 4px 0px rgba(10, 10, 10, 0.18);
  color: #fff;
}

.btn-primary {
  background-color: #2067CA;
  border-radius: 5px;
  padding: 8px 20px;
  box-shadow: 0px 0px 4px 0px rgba(10, 10, 10, 0.18);
  color: #fff;
}

#localizacaoBtn {
  margin-top: 20px;
}

label {
  display: block;
  width: 100%;
  margin: 5px 0;
}

input {
  width: 100%;
  padding: 10px;
  border: 1px solid #979797;
}

select {
  padding: 10px;
  margin-top: 10px;
  width: 100%;
}

button {
  padding: 10px;
  border-radius: 4px;
  width: 80px;
  background: #2067CA;
  color: #fff;
  border: none;
  cursor: pointer;
}

textarea {
  width: 100%;
  height: 100px;
  padding: 10px;
}

header .localizacaoAtual {
  background: #F5F5F5;
  padding: 10px;
  text-align: center;
}
header .localizacaoAtual .container {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  flex-direction: column-reverse;
}
@media (min-width: 1024px) {
  header .localizacaoAtual .container {
    flex-direction: row;
  }
}
header .localizacaoAtual .container div img {
  vertical-align: middle;
  margin-right: 10px;
}
header .row {
  margin-top: 15px;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (min-width: 1024px) {
  header .row {
    flex-wrap: nowrap;
  }
}
header .row .logo {
  margin-top: 22px;
}
header .row nav {
  margin: 25px 0;
  flex-basis: 100%;
  width: 100%;
}
@media (min-width: 1024px) {
  header .row nav {
    width: auto;
    order: 2;
    margin: 15px 0;
  }
}
header .row nav #menu-mobile {
  position: relative;
  padding-left: 1.25em;
  display: block;
  background: #2067CA;
  padding: 10px;
  text-align: center;
  color: #fff;
}
@media (min-width: 1024px) {
  header .row nav #menu-mobile {
    display: none;
  }
}
header .row nav #central-mobile {
  position: relative;
  margin-bottom: 10px;
  padding-left: 1.25em;
  display: block;
  background: url(../images/suporte-branco.png) no-repeat 10px 10px #2067CA;
  padding: 10px;
  text-align: center;
  color: #fff;
}
@media (min-width: 1024px) {
  header .row nav #central-mobile {
    display: none;
  }
}
header .row nav #menu-mobile:before {
  content: "";
  position: absolute;
  left: 15px;
  top: 20px;
  width: 1em;
  height: 0.1em;
  background: #fff;
  box-shadow: 0 0.25em 0 0 #fff, 0 0.5em 0 0 #fff;
}
header .row nav ul {
  display: flex;
  flex-direction: column;
  text-align: center;
  display: none;
}
@media (min-width: 1024px) {
  header .row nav ul {
    justify-content: space-between;
    flex-direction: row;
    justify-content: end;
    text-align: left;
    display: flex;
  }
}
header .row nav ul li {
  margin-top: 15px;
}
@media (min-width: 1024px) {
  header .row nav ul li {
    padding: 15px;
    margin-top: 0;
  }
}
header .row nav ul li a {
  color: #393636;
}
header .row nav ul li a:hover {
  color: #2067CA;
}
header .row nav ul li a.central-cliente {
  width: 135px;
  background: #0065BB;
  color: #fff;
  font-size: 13px;
  display: block;
  padding: 5px;
  border-radius: 5px;
  text-align: center;
  color: #fff !important;
  margin: 0 auto;
  display: none;
}
@media (min-width: 1024px) {
  header .row nav ul li a.central-cliente {
    margin: auto;
    display: initial;
  }
}

#banner {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  height: 200px;
}
@media (min-width: 1024px) {
  #banner {
    height: 500px;
  }
}
#banner .prev, #banner .next {
  position: absolute;
  height: 60px;
  top: calc(50% - 60px);
  display: none;
}
@media (min-width: 1024px) {
  #banner .prev, #banner .next {
    display: initial;
  }
}
#banner .prev:hover, #banner .next:hover {
  cursor: pointer;
}
#banner .prev {
  left: 40px;
}
#banner .next {
  right: 40px;
}

.section-planos {
  margin-bottom: 20px;
}
.section-planos .row {
  justify-content: space-between;
  flex-wrap: wrap;
  display: block;
}
@media (min-width: 1024px) {
  .section-planos .row {
    display: flex;
  }
}
.section-planos .title {
  text-align: center;
  margin: 35px 0;
}
@media (min-width: 1024px) {
  .section-planos .title {
    text-align: left;
    margin: 50px 0;
  }
}
.section-planos .aviso {
  color: #979797;
  text-align: right;
}
.section-planos .planos-obs {
  font-size: 13px;
  margin: 0;
  line-height: 23px;
}
.section-planos .planos-ajuda {
  margin: 25px 0;
  text-align: center;
}
@media (min-width: 1024px) {
  .section-planos .planos-ajuda {
    text-align: left;
  }
}
.section-planos .planos-ajuda h2 {
  font-size: 26px;
  margin: 0 auto;
}
.section-planos .planos-ajuda form {
  margin: 20px auto;
  display: flex;
  justify-content: space-around;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .section-planos .planos-ajuda form {
    flex-direction: row;
    width: 50%;
  }
}
.section-planos .planos-ajuda form input {
  margin: 5px 0;
  padding: 10px;
}
@media (min-width: 1024px) {
  .section-planos .planos-ajuda form input {
    margin: 0 5px;
  }
}
.section-planos .planos-ajuda form button {
  margin-top: 10px;
}
@media (min-width: 1024px) {
  .section-planos .planos-ajuda form button {
    margin-top: 0;
  }
}

.globoPlay {
  margin-bottom: 20px;
}

.plano1 .globoPlay {
  display: none;
  margin-bottom: 0;
}

.section-planos .plano {
  text-align: center;
  border: 1px solid #dbdbdb;
  border-radius: 5px;
  max-width: 100%;
  margin-bottom: 25px;
  width: 100%;
  position: relative;
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.section-planos .plano:first-child {
  margin-top: 20px;
}
@media (min-width: 1024px) {
  .section-planos .plano {
    width: 30%;
    margin-top: 0;
  }
  .section-planos .plano:first-child {
    margin-top: 0;
  }
}
.section-planos .plano-title, .section-planos .plano-body, .section-planos .plano-price, .section-planos .plano-obs {
  padding: 0 10px;
}
.section-planos .plano-title {
  margin-bottom: 25px;
  animation: action 1s infinite alternate;
  padding: 10px;
  filter: drop-shadow(1px 1px 5px #ddd);
  background: rgb(0, 76, 174) 20%;
  background: rgb(0, 76, 174);
  background: linear-gradient(-150deg, rgb(0, 76, 174) 20%, rgb(0, 234, 255) 100%);
  color: #fff;
  font-size: 34px;
  position: absolute;
  top: -50px;
  left: 15px;
  right: 15px;
  height: 150px;
  border-radius: 25px;
}
@keyframes action {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}
.section-planos .plano-body {
  margin-top: 125px;
}
.section-planos .plano .preco-antigo {
  text-decoration: line-through;
  color: #999;
}
.section-planos .plano-price {
  display: flex;
  flex-flow: row;
  justify-content: center;
  margin: 0 15px 25px 15px;
}
.section-planos .plano-price h3 {
  font-size: 50px;
}
.section-planos .plano-price div {
  text-align: left;
  margin: 10px 5px;
}
.section-planos .plano-price div span {
  display: block;
}
.section-planos .plano-obs {
  margin-bottom: 30px;
  padding-bottom: 10px;
}
@media (min-width: 1024px) {
  .section-planos .plano-obs {
    padding-bottom: 0px;
  }
}
.section-planos .plano-obs p {
  color: #979797;
  font-size: 65%;
}
.section-planos .plano-obs p:first-of-type {
  margin: 20px 0 -20px 0;
}
.section-planos .plano-obs ul {
  font-size: 13px;
  margin-bottom: 30px;
}
.section-planos .plano-obs ul li {
  border-bottom: 1px solid #efefef;
  padding-bottom: 10px;
  padding-top: 5px;
}
.section-planos .plano-obs ul li img {
  vertical-align: middle;
  margin-right: 5px;
}

.section-sobre {
  background: #F5F5F5;
  padding: 20px 0 100px 0;
}
@media (min-width: 1024px) {
  .section-sobre {
    text-align: left;
  }
}
.section-sobre .container {
  text-align: center;
}
.section-sobre .sobre-globo {
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .section-sobre .sobre-globo {
    flex-direction: row;
  }
}
.section-sobre .sobre-globo img {
  max-width: 372px;
}
.section-sobre h1 {
  color: #053388;
  margin-top: 50px;
  font-size: 40px;
}
.section-sobre img {
  margin-bottom: 25px;
  animation: action 1s infinite alternate;
}
@keyframes action {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}
.section-sobre .title {
  margin: 0;
}
@media (min-width: 1024px) {
  .section-sobre .title {
    margin-top: -25px;
  }
}
.section-sobre .diferenciais {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1024px) {
  .section-sobre .diferenciais {
    margin-top: 50px;
    flex-direction: row;
  }
}
.section-sobre .diferenciais div {
  background-color: #fff;
  padding: 20px;
  width: 300px;
  height: 300px;
  position: relative;
  margin-top: 25px;
}
@media (min-width: 1024px) {
  .section-sobre .diferenciais div {
    width: 24%;
    margin-right: 1%;
    margin-top: 0;
  }
}
.section-sobre .diferenciais div h2 {
  position: absolute;
  bottom: 25px;
  color: #fff;
  font-weight: bold;
  font-size: 26px;
  padding-right: 7%;
}
.section-sobre .diferenciais div h2 small {
  display: block;
  font-size: 18px;
  font-weight: normal;
  margin-top: 10px;
}
.section-sobre .diferenciais .bgsuporte {
  background: url(../images/bgsuporte.jpg) no-repeat;
}
.section-sobre .diferenciais .bgestabilidade {
  background: url(../images/bgestabilidade.jpg) no-repeat;
}
.section-sobre .diferenciais .bgcentral {
  background: url(../images/bgcentral.jpg) no-repeat;
}
.section-sobre .diferenciais .bgwifi {
  background: url(../images/bgwifi.jpg) no-repeat;
}

.section-certificacoes {
  text-align: center;
  margin-top: -10px;
  color: #fff;
  background: rgb(31, 177, 97);
  background: linear-gradient(0deg, rgb(31, 177, 97) 0%, rgb(11, 199, 96) 47%, rgb(27, 173, 93) 100%);
}
@media (min-width: 1024px) {
  .section-certificacoes {
    text-align: center;
  }
}
.section-certificacoes .row {
  flex-direction: column;
  height: 650px;
  align-items: center;
}
@media (min-width: 1024px) {
  .section-certificacoes .row {
    height: 500px;
    flex-direction: row;
  }
}
.section-certificacoes-medalha {
  max-width: 30%;
  text-align: center;
}
.section-certificacoes-medalha img {
  max-width: 80%;
  margin-top: 25px;
}
@media (min-width: 1024px) {
  .section-certificacoes-medalha img {
    margin-top: 0;
    max-width: 60%;
  }
}
.section-certificacoes-texto {
  width: 100%;
}
@media (min-width: 1024px) {
  .section-certificacoes-texto {
    width: 70%;
  }
}
.section-certificacoes-texto strong {
  font-size: 1.5em;
}
.section-certificacoes .certificacoes-icones {
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
}
.section-certificacoes .certificacoes-icones img {
  width: 80px;
}
@media (min-width: 1024px) {
  .section-certificacoes .certificacoes-icones img {
    width: auto;
  }
}

.section-atendimento {
  padding: 50px 0;
  color: #fff;
  background: rgb(0, 76, 174);
  background: linear-gradient(146deg, rgb(0, 76, 174) 20%, rgb(0, 234, 255) 100%);
}
.section-atendimento .row {
  justify-content: space-around;
  flex-direction: column;
  text-align: center;
}
@media (min-width: 1024px) {
  .section-atendimento .row {
    flex-direction: row;
  }
  .section-atendimento .row .title, .section-atendimento .row .numeros {
    width: 50%;
  }
}
.section-atendimento .title p {
  text-transform: none;
}
.section-atendimento .numeros {
  margin: 25px 0;
}
@media (min-width: 1024px) {
  .section-atendimento .numeros {
    text-align: left;
    margin: 75px 0;
  }
}
.section-atendimento .numeros h2 {
  margin-top: 20px;
}
.section-atendimento .numeros img {
  vertical-align: middle;
  margin-right: 10px;
}

#perguntas {
  background: #F5F5F5;
  padding: 50px 0;
  text-align: center;
}
#perguntas h2 {
  margin-bottom: 50px;
}

#perguntas .container {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  #perguntas .container {
    flex-direction: row;
  }
}

.atendimento-central-cliente {
  padding: 25px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 5px 5px 0px 0px #dbdbdb;
  margin-top: 50px;
}
@media (min-width: 1024px) {
  .atendimento-central-cliente {
    width: 50%;
    margin-top: 0;
  }
}
.atendimento-central-cliente .central-cliente-beneficios {
  margin: 25px 0;
  font-size: 16px;
}
.atendimento-central-cliente .central-cliente-beneficios li {
  padding: 5px;
}
.atendimento-central-cliente .central-cliente-beneficios li img {
  vertical-align: bottom;
}

.perguntas-e-respostas {
  padding: 25px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 5px 5px 0px 0px rgb(219, 219, 219);
  width: 100%;
}
@media (min-width: 1024px) {
  .perguntas-e-respostas {
    width: 50%;
    margin-right: 50px;
  }
}
.perguntas-e-respostas .resposta {
  font-size: 85%;
}
.perguntas-e-respostas .perguntaAtiva {
  font-weight: bold;
}

.section-trabalhe {
  padding: 50px 0;
}
.section-trabalhe .row {
  justify-content: space-around;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .section-trabalhe .row {
    flex-direction: row;
  }
}
.section-trabalhe .row .title, .section-trabalhe .row .form {
  width: 100%;
  text-align: center;
}
@media (min-width: 1024px) {
  .section-trabalhe .row .title, .section-trabalhe .row .form {
    width: 50%;
  }
}
.section-trabalhe .row .title p {
  text-transform: none;
}
.section-trabalhe .row .title img {
  display: none;
}
@media (min-width: 1024px) {
  .section-trabalhe .row .title img {
    display: block;
    text-align: center;
    margin: 0 auto;
  }
}
.section-trabalhe .row form {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 0;
  text-align: left;
}
@media (min-width: 1024px) {
  .section-trabalhe .row form {
    margin: 110px auto;
    width: 80%;
  }
}
.section-trabalhe .row form select {
  margin: 10px 0;
}
.section-trabalhe .row form button {
  margin-top: 20px;
}

footer {
  border-top: 1px solid #ccc;
  clear: both;
  padding: 25px 0;
}
@media (min-width: 1024px) {
  footer {
    padding: 50px 0;
  }
}
footer .container {
  font-size: 13px;
}
@media (min-width: 1024px) {
  footer .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
}
@media (min-width: 1024px) {
  footer .container ul {
    display: flex;
    text-align: center;
  }
}
footer .container ul li {
  margin: 15px 25px 25px 0;
  text-align: center;
}
@media (min-width: 1024px) {
  footer .container ul li {
    margin: 0 50px 0 0;
    text-align: left;
  }
}
footer .container ul li:last-child {
  margin-right: 0;
}/*# sourceMappingURL=master.css.map */