/*--------------------*\
  SISTEMA
\*--------------------*/
.sistema {
  position: relative;  /* Para o "position: absolute" do plano--mais-popular::after ficar relativo ao pai*/

  padding: 10px;
  border: 1px solid #95a4a5;

  font-size: 1.4rem; /* 14px */
}

.sistema--mais-popular::after {
  position: absolute;
  top: -10px;
  left: -10px;

  padding: 0 10px; /* recuo nos lados (NÃO tem superior e inferior, TEM direito e esquerdo)*/

  background-color: #c20303;
  color: #fff;

  font-size: 0.7142em; /* 10px = 10 / 14 (fonte do pai - "plano") */
  line-height: 2.5;   /* altura da linha em relação à fonte*/

  content: "MAIS POPULAR";
}

.sistema__cabecalho {
  margin: -10px;
  margin-bottom: 0;

  background-color: #0e0874;
  color: #fff;

  text-align: center;
  line-height: 2.5;
  font-weight: normal;
  font-size: 2em;
}

.sistema__preco {
  margin: 20px 0;

  text-align: center;
  font-size: 2em;
}

.sistema__caracteristicas {
  padding: 0;
  margin: 20px 0;

  font-size: 1em;

  list-style-type: square;
}

.sistema__caracteristicas > li {
  text-align: left;
}

.sistema__rodape {
  text-align: center;
}


/*--------------------*\
  BOTAO
\*--------------------*/
.botao {
  display: inline-block;
  padding: 0.8em 1.2em;

  background-color: #bbb;
  color: #fff;
  border: none; /* 7.16 O input typy submit coloca uma "borda" no botão, então retiramos essa borda*/

  line-height: normal;   /* 7.13 normal para não herdar de nada */
  font-size: 1em;
  text-decoration: none;
}

.botao:hover, .botao:focus {
  background-color: #aaa;
  color: #fff;

  text-decoration: none;
}

.botao--assinar, .botao--login  { /* 7.13 usa as mesmas propriedades para as duas classes */
  background-color: #1a6fbd;   /* azul */
}

.botao--assinar:hover, .botao--assinar:focus,
.botao--login:hover, .botao--login:focus  {
  background-color: #1a3fbd;   /* azul escuro */
}

.botao--principal {
  border-radius: 10px;

  background-color: #004b86;
}

.botao--principal:hover, .botao--principal:focus {
  background-color: #003b6a;
}


/*--------------------*\
  CHAMADA
\*--------------------*/
.chamada {
  font-size: 1.6rem; /* 1.6 * 10px = 16px */
  text-align: center;
  background-image: url(../imagens/escritorio2.jpg);
  background-repeat: no-repeat;
}

.chamada__titulo {
  margin: 0;

  color: #ff970e; /* laranja */

  font-size: 3em; /* 48px / 16px = 3.00 */
  line-height: 0.9;
  text-shadow: 1px 1px #313131;
}

.chamada__subtitulo {
  margin: 60px 0;

  color: #f8c701;
  font-weight: bold;

  font-size: 1.5em;
  line-height: 1.5;
  text-shadow: 1px 1px #313131;

  text-align: left;
}

.chamada__acao {
  font-size: 1em;
}

@media(min-width: 992px) {
  .chamada {
    padding-left: 10%;
    padding-right: 10%;

    font-size: 2.2rem; /* 2.2 * 10px = 22px */
  }
}

/*---------------*\
  CONTEUDO
\*---------------*/
.conteudo {
  font-size: 1.0em;
}

.conteudo__imagem-esquerda {
  float: left;
  margin-right: 10px;
}

.conteudo__imagem-esquerda > img {
  border-radius: 50%;
  height: 250px;
  width: 250px;
}

@media(max-width: 400px) { /** ATÉ A LARGURA MÁXIMA DE 991, APLIQUE AS REGRAS*/

  .conteudo__imagem-esquerda > img {
    height: 150px;
    width: 150px;
  }
}

.conteudo__imagem-direita {
  float: right;
}

.conteudo__imagem-direita > img {
  border-radius: 50%;
  height: 250px;
  width: 250px;
}

@media(max-width: 400px) { /** ATÉ A LARGURA MÁXIMA DE 991, APLIQUE AS REGRAS*/
  .conteudo__imagem-direita > img {
    height: 150px;
    width: 150px;
  }
}


/*--------------------*\
  NAVEGACAO
\*--------------------*/
.navegacao {
}

.navegacao--assinatura {
  text-align: center;
}

.navegacao__menu {
  float: right;
}

.link-custom {
  color: #ff970e; /* laranja */
}


/*--------------------*\
  BOTAO-CHAVEADOR
\*--------------------*/
.botao-chaveador {
  width: 24px;
  height: 24px;
  border: 0;

  background: none;
  background-image: url("../imagens/bars.png");

  outline: none;  /* Tira o FOCO */
}

@media(min-width: 992px) { /* A PARTIR de 992px... */
  .botao-chaveador {
    display: none;
  }
}


/*--------------------*\
  MENU
\*--------------------*/
.menu {
  margin: 0;

  font-size: 1.4rem;

  list-style: none;
}

@media(max-width: 991px) { /** ATÉ A LARGURA MÁXIMA DE 991, APLIQUE AS REGRAS*/

  .menu {
    position: fixed; /* FIXA POSIÇÃO na parte esquerda, superior até inferior: ao rolar a tela, essa parte fica imovel */
    top: 0;          /**/
    left: 0;         /**/
    bottom: 0;       /**/

    display: none;
    width: 200px;
    padding: 20px;
    border-right: 1px solid #eee;

    background-color: #fbfbfb; /* cinza */
  }

  .menu--exibindo {
    display: block;
  }
  
  .menu__item {
    display: block;

    line-height: 3; /* altura da linha = 3x tamanho da fonte */
  }

  .menu__item--botao {
    margin-top: 20px;
  }

}

@media(min-width: 992px) { /* A PARTIR DE 992, aplique as regras */

  .menu__item {
    display: inline-block;
    padding-right: 20px;
  }

  .menu__item:last-of-type { /* PSEUDO-CLASSE */
    padding-right: 0px;
  }

}


/*--------------------*\
  TITULO-FORMULARIO
\*--------------------*/
.titulo-formulario {
  margin: 0;
  margin-bottom: 40px;
  
  border-bottom: 1px solid #ccc;

  font-size: 2.6rem;
  font-weight: normal;
  color: #004b86;
}


/*--------------------*\
  GRUPO-ENTRADA
\*--------------------*/
.grupo-entrada {
  margin-bottom: 15px;
}

.grupo-entrada > label {
  display: block;  /* block automaticamente já quebra os componentes em linhas */

  font-weight: bold;
}


/*--------------------*\
  CAMPO
\*--------------------*/
.campo {
  display: block;
  width: 100%;
  height: 2.8em;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;

  background-color: #fff;

  font-size: 1.4rem;
}