/* CSS RESET */
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,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
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;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: none;
  color: inherit;
}

strong {
  font-weight: 600;
}

/* Hide HTML5 Up and Down arrows on input [number]. */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input:focus {
  outline: none;
}

input[type="number"] {
  -moz-appearance: textfield;
}
/* FIM DO CSS RESET */

.clearfix {
  overflow: auto;
}

.row-flex {
  display: flex;
  flex-wrap: wrap;
}

body {
  font-family: "Open Sans", sans-serif;
}

/* Top bar */
#top-bar {
  position: fixed;
  top: 0;
  background-color: #4a88b1;
  width: 100%;
  color: white;
  height: 65px;
  z-index: 999;
}
#top-bar .gol-logo {
  float: left;
  width: 260px;
  height: 65px;
  background-image: url("../images/gazetaonline_big.min.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 768px) {
  #top-bar .gol-logo {
    width: 240px;
  }
}
#top-bar .assine-agora {
  float: right;
  background-color: #ffb300;
  font-weight: 600;
  padding: 10px 20px;
  font-size: 14px;
  margin-top: 15px;
  margin-right: 20px;
  transition: 0.2s;
}
@media only screen and (max-width: 768px) {
  #top-bar .assine-agora {
    display: none; /* provisorio */
  }
}
#top-bar .assine-agora:hover {
  background-color: #ffc847;
}
#top-bar .entrar {
  float: right;
  margin-top: 15px;
  color: white !important;
  border: solid 1px #fff;
  padding: 10px;
  width: 120px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  #top-bar .entrar {
    display: none; /* provisorio */
  }
}
#top-bar .entrar:hover {
  text-decoration: underline;
}
#top-bar #menu-mobile {
  position: absolute;
  right: 0;
}

#valueOld {
  text-decoration: line-through;
}
@media only screen and (min-width: 768px) {
  #top-bar #menu-mobile {
    display: none;
  }
}
#top-bar #menu-mobile .menu-btn {
  width: 30px;
  height: 30px;
  margin-top: 18px;
  margin-right: 15px;
  background-image: url("../images/menu-mobile.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
#top-bar #menu-mobile ul {
  display: none;
  position: fixed;
  width: 100%;
  top: 65px;
  right: 0;
  padding: 20px;
  background: white;
  text-transform: uppercase;
  -webkit-box-shadow: 2px 4px 30px -5px rgba(0, 0, 0, 0.21);
  -moz-box-shadow: 2px 4px 30px -5px rgba(0, 0, 0, 0.21);
  box-shadow: 2px 4px 30px -5px rgba(0, 0, 0, 0.21);
  z-index: 999;
}
#top-bar #menu-mobile ul li.assine-agora-mobile {
  padding: 10px 20px;
  background-color: #ffb300;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
}
#top-bar #menu-mobile ul li.entrar-mobile {
  margin-top: 15px;
  padding: 10px 20px;
  color: #4a88b1;
  border: 1px solid #4a88b1;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
}

.container.main-area {
  margin-top: 0;
  padding-top: 65px;
}

/* Section Sua Assinatura */
section.sua-assinatura {
  margin-top: 30px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  section.sua-assinatura {
    margin-bottom: 15px;
  }
}
section.sua-assinatura header {
  margin-bottom: 50px;
}
section.sua-assinatura header span {
  display: block;
  width: 100%;
  height: 1px;
  margin-top: -16px;
  border-top: 2px solid #4a88b1;
}
section.sua-assinatura header h1 {
  display: inline-block;
  background-color: white;
  padding-right: 30px;
  color: #4a88b1;
  font-size: 35px;
  font-weight: 600;
}
section.sua-assinatura .offersError {
  display: none;
  background-color: #ffdcdc;
  color: red;
  margin-top: 15px;
  font-size: 13px;
  text-align: center;
  padding: 12px 22px;
  position: relative;
  top: -5px;
}
section.sua-assinatura .noOffers {
  background-color: #ffdcdc;
  color: red;
  margin-top: 15px;
  font-size: 13px;
  text-align: center;
  padding: 12px 22px;
  position: relative;
  top: -5px;
}
section.sua-assinatura .box-oferta {
  height: 100%;
  padding: 20px;
  background: #f1f1f1;
  border-radius: 12px;
  border: 1px solid #d5d5d5;
  cursor: pointer;
  transition: 0.1s ease-in;
}
section.sua-assinatura .box-oferta:hover {
  border: 1px solid #8c8c8c;
}
section.sua-assinatura .box-oferta.active {
  background: #bebebe;
}
@media only screen and (max-width: 768px) {
  section.sua-assinatura .box-oferta {
    height: inherit;
    margin-bottom: 20px;
  }
}
section.sua-assinatura .box-oferta .dados-oferta {
  margin-left: 40px;
}
section.sua-assinatura .box-oferta .dados-oferta p {
  color: #6a6a6a;
  font-size: 15px;
  margin-bottom: 5px;
}
section.sua-assinatura .box-oferta .dados-oferta p:last-child {
  margin-bottom: 0px;
}
section.sua-assinatura .box-oferta .dados-oferta h2 {
  margin-bottom: 5px;
  color: #6a6a6a;
  font-weight: 600;
  font-size: 19px;
}
section.sua-assinatura .box-oferta .check-mark {
  position: absolute;
  display: block;
  margin-top: 16px;
  width: 25px;
  height: 25px;
  background: white;
  border-radius: 20px;
  border: 1px solid #d0d0d0;
}
section.sua-assinatura .box-oferta .check-mark img {
  display: none;
}
section.sua-assinatura .box-oferta.active .check-mark img {
  display: block;
  width: 32px;
  margin-top: -10px;
  margin-left: -3px;
}

/* Form dos dados */
section.form-dados.dependentes table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

section.form-dados.dependentes table td,
section.form-dados.dependentes table th {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
}

section.form-dados.dependentes table tr:nth-child(even) {
  background-color: #dddddd;
}

section.form-dados.dependentes table th.remover {
  color: #619ecb;
  text-decoration: underline;
}

.dependentes section.form-dados button {
  padding: 15px;
  background: #619ecb;
  color: #fff;
  border: none;
}

section.form-dados header {
  border-bottom: 1px solid #d5d5d5;
  margin-bottom: 30px;
  padding-bottom: 10px;
  padding-left: 10px;
}
section.form-dados header .tipo-pessoa {
  display: inline-block;
  font-size: 16px;
  color: #4a88b1;
  cursor: pointer;
  transition: 0.2s;
}
section.form-dados header .tipo-pessoa:first-child {
  margin-right: 20px;
}
section.form-dados header .tipo-pessoa.active {
  font-weight: 600;
}

section.form-dados .checkout-form .sexo .title {
  padding: 10px;
  color: #999;
}

section.form-dados .checkout-form .sexo .content {
  display: flex;
  align-items: center;
  padding-left: 10px;
}
section.form-dados .checkout-form .sexo .content input{
  width: fit-content;
  margin-right: 10px;
  margin-bottom: 0px;
}
section.form-dados .checkout-form .sexo .content label{
  width: fit-content;
  margin-right: 25px;
}

section.form-dados .checkout-form .dt-nasc  {
  margin-top: 15px;
}
section.form-dados .checkout-form .dt-nasc .title {
  padding: 10px;
  color: #999;
}


section.form-dados .checkout-form input,
section.form-pagamento .checkout-form input,
section.compra-aprovada .criar-senha-form input {
  width: 100%;
  padding: 12px 22px;
  margin-bottom: 20px;
  border-radius: 12px;
  border: 1px solid #d5d5d5;
}
section.form-dados .checkout-form input:focus {
  border: 1px solid #4a88b1;
}
section.form-dados .checkout-form .msg-erro,
section.form-pagamento .checkout-form .msg-erro {
  display: none;
  background-color: #ffdcdc;
  color: red;
  margin-bottom: 15px;
  font-size: 13px;
  text-align: center;
  padding: 12px 22px;
  position: relative;
  top: -5px;
}
section.compra-aprovada .msg-erro,
section.total-pagamento .msg-erro {
  display: none;
  background-color: #ffdcdc;
  color: red;
  margin-top: 15px;
  font-size: 13px;
  text-align: center;
  padding: 12px 22px;
  position: relative;
  top: -5px;
}
section.compra-aprovada .msg-success {
  display: none;
  background-color: #dcffdc;
  color: green;
  margin-top: 15px;
  font-size: 13px;
  text-align: center;
  padding: 12px 22px;
  position: relative;
  top: -5px;
}

section.compra-aprovada .loading {
  margin-top: 15px;
  display: none;
  text-align: center;
}
section.compra-aprovada .loading img {
  width: 65px;
  height: auto;
}
section.form-dados .alerta-email-desktop {
  display: block;
  color: #6a6a6a;
  font-size: 13px;
  line-height: 18px;
}
@media only screen and (max-width: 768px) {
  section.form-dados .alerta-email-desktop {
    display: none;
  }
}
section.form-dados .alerta-email-mobile {
  display: none;
  margin-left: 10px;
  margin-bottom: 15px;
  color: #6a6a6a;
  font-size: 13px;
  line-height: 18px;
}
@media only screen and (max-width: 768px) {
  section.form-dados .alerta-email-mobile {
    display: block;
  }
}

section.form-dados .checkout-form .input-endereco,
section.form-dados .checkout-form .input-cidade {
  width: 74.3%;
}
@media only screen and (max-width: 992px) {
  section.form-dados .checkout-form .input-endereco,
  section.form-dados .checkout-form .input-cidade {
    width: 74%;
  }
}
section.form-dados .checkout-form .input-n,
section.form-dados .checkout-form .input-uf {
  width: 24%;
}

/* Form Pagamento */
section.form-pagamento {
  margin-top: 0px;
  margin-bottom: 0;
}

@media only screen and (max-width: 768px) {
  section.form-pagamento {
    margin-bottom: 0px;
  }
}
section.form-pagamento header {
  margin-bottom: 50px;
}
section.form-pagamento header span {
  display: block;
  width: 100%;
  height: 1px;
  margin-top: -16px;
  border-top: 2px solid #4a88b1;
}
section.form-pagamento header h1 {
  display: inline-block;
  background-color: white;
  padding-right: 30px;
  color: #4a88b1;
  font-size: 35px;
  font-weight: 600;
}
section.form-pagamento .checkout-form div.card-container {
  margin-bottom: 10px;
}
section.form-pagamento .checkout-form div.card-container > div {
  margin: auto 0;
}
section.form-pagamento .checkout-form .input-n-cartao {
  width: 100%;
}
section.form-pagamento .checkout-form .input-nome {
  width: 100%;
  text-transform: uppercase;
}
section.form-pagamento .checkout-form #bandeira-cartao {
  display: inline-block;
  width: 21%;
  height: 48px;
  margin-bottom: 10px;
  padding: 12px 22px;
  background-color: #ececec;
  border-radius: 12px;
  border: 1px solid #d5d5d5;
  vertical-align: top;
  background-size: 60px;
  background-repeat: no-repeat;
  background-position: 50% 60%;
}

/* Classes com imagens dos cartões */
#bandeira-cartao.visa {
  background-image: url("../images/visa-128px.png");
}
#bandeira-cartao.mastercard {
  background-image: url("../images/mastercard-128px.png");
}
#bandeira-cartao.amex {
  background-image: url("../images/amex-128px.png");
}
#bandeira-cartao.elo {
  background-image: url("../images/elo-128px.png");
}
#bandeira-cartao.hipercard {
  background-image: url("../images/hipercard-128px.png");
}

section.form-pagamento .checkout-form .input-validade {
  width: 37%;
}
@media only screen and (max-width: 992px) {
  section.form-pagamento .checkout-form .input-validade {
    width: 39%;
  }
}
section.form-pagamento .checkout-form .input-cod-seg {
  width: 61.5%;
}
@media only screen and (max-width: 992px) {
  section.form-pagamento .checkout-form .input-cod-seg {
    width: 58.7%;
  }
}

/* Total do pagamento */
section.total-pagamento {
  margin-top: 50px;
  margin-bottom: 50px;
}
@media only screen and (max-width: 768px) {
  section.total-pagamento {
    margin-bottom: 30px;
  }
}
section.total-pagamento header {
  margin-bottom: 30px;
}
section.total-pagamento header h1 {
  display: inline-block;
  background-color: white;
  padding-right: 20px;
  color: #4a88b1;
  font-size: 20px;
  font-weight: 600;
}
section.total-pagamento header span {
  display: block;
  width: 100%;
  height: 1px;
  margin-top: -9px;
  border-top: 2px solid #4a88b1;
}
section.total-pagamento .valor-total {
  width: 100%;
  padding: 12px 22px;
  margin-bottom: 10px;
  background: #efefef;
  border-radius: 12px;
  border: 1px solid #d5d5d5;
  color: #6a6a6a;
  text-align: center;
  cursor: default;
  font-size: 17px;
  line-height: 25px;
}
section.total-pagamento .alerta {
  margin-bottom: 30px;
  color: #828282;
  font-size: 12px;
  line-height: 15px;
}
section.total-pagamento .term {
  color: #828282;
  font-size: 12px;
  line-height: 15px;
}
section.total-pagamento .term a {
  color: #4a88b1;
}
section.total-pagamento .submit-btn-container {
  padding-left: 0;
}
@media only screen and (max-width: 768px) {
  section.total-pagamento .submit-btn-container {
    padding-right: 0;
  }
}
section.total-pagamento .submit-btn,
section.compra-aprovada .submit-btn {
  display: block;
  width: 100%;
  padding: 16px 25px;
  margin-bottom: 10px;
  background: #00b050;
  color: white;
  cursor: pointer;
  border-radius: 12px;
  border: none;
  outline: none;
  font-size: 20px;
  -webkit-appearance: inherit;
}
section.total-pagamento .loading {
  margin-top: 15px;
  display: none;
  text-align: center;
}
section.total-pagamento .loading img {
  width: 65px;
  height: auto;
}
section.total-pagamento .submit-btn:hover,
section.compra-aprovada .submit-btn:hover {
  background: #00cd5d;
}

/* Página compra aprovada */
section.compra-aprovada {
  margin-top: 40px;
  margin-bottom: 50px;
}
@media only screen and (max-width: 768px) {
  section.compra-aprovada {
    margin-bottom: 30px;
  }
}
section.compra-aprovada header {
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #d5d5d5;
}
section.compra-aprovada header span {
  display: block;
  width: 100%;
  height: 1px;
  margin-top: -16px;
  border-top: 2px solid #4a88b1;
}
@media only screen and (max-width: 768px) {
  section.compra-aprovada header span {
    margin-top: -12px;
  }
}
section.compra-aprovada header h1 {
  display: inline-block;
  background-color: white;
  padding-right: 30px;
  color: #4a88b1;
  font-size: 35px;
  font-weight: 600;
}
@media only screen and (max-width: 768px) {
  section.compra-aprovada header h1 {
    font-size: 27px;
  }
}
section.compra-aprovada header p {
  margin-top: 60px;
  color: #6a6a6a;
  font-size: 18px;
}

/* CSS para o botào ASSINE COM O GOOGLE */
/* Página offers */
.google-sign__offers-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 30px;
  padding: 30px;
  background-color: #f3f3f3;
  border-radius: 12px;
}
.google-sign__btn .cat,
.google-sign__btn--mobile .cat {
  padding: 0;
}
.google-sign__btn .buttong,
.google-sign__btn--mobile .buttong {
  max-width: 100%;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .google-sign__offers-container {
    flex-direction: column;
    text-align: center;
    margin-top: 15px;
  }
}
.google-sign__offers-container h3 {
  margin-right: 15px;
  color: #6a6a6a;
  font-size: 25px;
  font-weight: 600;
}
@media only screen and (max-width: 768px) {
  .google-sign__offers-container h3 {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

/* Novo Layout Loja */
/* Página index */

.planos-loja {
  text-align: center;
  border-radius: 20px;
  width: 100%;
  height: 300px;
  background-color: #f2f2f2;
}
.planos-loja figure {
  max-width: 100%;
  max-height: 300px;
}
.planos-loja img {
  max-width: 100%;
  max-height: 300px;
}
.p-15 {
  padding: 15px;
}
.assine-label {
  text-align: center;
  font-weight: 600;
  color: #4a88b1;
}

.texto-planos h4 {
  font-size: 22px;
  font-weight: 600;
  padding: 10px 0;
}
.texto-planos p {
  font-size: 12px;
  margin-top: 20px;
  line-height: 1.7;
}
.texto-planos p i {
  margin-right: 10px;
}
.icon-beneficio {
  color: #1ec469;
}
.icon-sembeneficio {
  color: #f20c19;
}

.valor-planos {
  text-align: center;
  margin-top: 20px;
}
.valor-planos h6 {
  font-size: 22px;
  font-weight: 600;
  color: #606060;
  text-decoration: line-through;
}
.valor-planos h4 {
  font-size: 34px;
  font-weight: 600;
  color: #1697b3;
}
.valor-planos button {
  background-color: #fec32d;
  border: none;
  border-radius: 6px;
  max-width: 100%;
  width: 100%;
  padding: 10px;
  color: #fff;
  margin-top: 20px;
}
.valor-planos a {
  background-color: #fec32d;
  border: none;
  border-radius: 6px;
  max-width: 100%;
  width: 100%;
  padding: 10px;
  color: #fff;
  margin-top: 20px;
  text-transform: uppercase;
}
.valor-planos button:hover {
  cursor: pointer;
  font-weight: 600;
}
.valor-planos button:focus {
  border: none;
}
.valor-planos a:hover {
  cursor: pointer;
  font-weight: 600;
}
.valor-planos a:focus {
  border: none;
}
.formpaypal {
  margin-top: 2px;
  width: 240px;
  height: 40px;
}
.paypalb {
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 1px 1px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
}
.buttong {
  max-width: 50%;
}

.jp-card-container {
  width: 100%;
}

div.cat {
  padding: 30px 0 0 0;
}

.cat-plano {
  padding: 0 0 0 0 !important;
  display: inline-block !important;
  margin-left: 20px !important;
}

div.cat button {
  width: 240px;
  height: 40px;
  display: block;
  max-width: 240px;
}

.p-15 {
  padding: 15px;
}

.p-r-30 {
  padding-right: 30px;
}
.p-l-30 {
  padding-left: 30px;
}
.m-t-20 {
  margin-top: 20px;
}

.linha {
  width: 100%;
  margin: 30px 0 10px 0;
  padding: 0;
  text-align: center;
}
.linha:before {
  display: inline-block;
  margin: 0 20px 4px 0;
  height: 1px;
  content: " ";
  text-shadow: none;
  background-color: #919191;
  width: 45%;
}
.linha:after {
  display: inline-block;
  margin: 0 0 4px 20px;
  height: 1px;
  content: " ";
  text-shadow: none;
  background-color: #919191;
  width: 45%;
}
.border-right {
  border-right: 1px solid #919191;
}
.total-checkout {
  margin-top: 20px;
  padding: 20px;
  background-color: #619ecb;
  text-align: center;
  border-radius: 6px;
  margin-bottom: 20px;
}
.total-checkout .total-preco h4 {
  font-weight: 600;
  font-size: 32px;
  margin-bottom: 20px;
  color: #fff;
}
.total-checkout button {
  background-color: #fec32d;
  border: none;
  border-radius: 6px;
  max-width: 100%;
  width: 100%;
  padding: 10px;
  color: #fff;
  margin-top: 0px;
  text-transform: uppercase;
}
.total-checkout button:hover {
  cursor: pointer;
  font-weight: 600;
}
.total-checkout button:focus {
  border: none;
}
.total-checkout .msg-erro-total {
  color: red;
  font-size: 11px;
  text-align: center;
  width: 100%;
  margin-top: 10px;
  line-height: 1.7;
}
.total-checkout .info-compra p {
  color: #fff;
  line-height: 1.5;
  margin-bottom: 20px;
  font-size: 12px;
  text-align: left;
}
.total-checkout .info-compra p:last-child {
  margin-bottom: 0;
}
.row-eq-height {
  text-align: center;
  width: 80%;
  margin: 0 auto;
}
.msg-warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
  margin-bottom: 30px;
  font-size: 13px;
  text-align: center;
  padding: 12px 22px;
  position: relative;
}
.msg-warning i {
  display: inline-block;
  font-size: 32px;
  vertical-align: middle;
  margin-bottom: 15px;
}
.msg-warning b {
  font-weight: 700;
}
.msg-warning p {
  display: inline-block;
  vertical-align: middle;
  line-height: 1.5;
}

/*Novo Layout - Mobile*/
@media (min-width: 768px) and (max-width: 1280px) {
  .row-eq-height {
    text-align: center;
    width: 100%;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .planos {
    padding: 30px 0;
  }
  .planos-loja {
    margin-top: 10px;
  }
  .texto-planos h4 {
    font-size: 24px;
    padding: 10px 24px;
  }
  section.sua-assinatura {
    margin-top: 15px;
  }
  .formpaypal {
    margin: 0 auto 20px;
  }
  .cat-plano {
    margin: 0 auto 10px !important;
  }
  .jp-card {
    min-width: 100% !important;
  }
  .total-checkout button {
    margin-bottom: 20px;
  }
  .row-eq-height {
    width: 100%;
  }
  .assine-label {
    width: 100%;
    display: block;
  }
  .linha:before {
    width: 35%;
  }
  .linha:after {
    width: 35%;
  }
  .msg-warning i {
    margin-bottom: 10px;
    font-size: 32px;
  }
  .msg-warning p {
    line-height: 1.5;
  }
}
@media only screen and (min-width: 768px) {
  .texto-planos {
    text-align: center;
  }
  .valor-planos button {
    max-width: 240px;
  }
}
@media only screen and (min-width: 1024px) {
  .texto-planos {
    text-align: left;
  }
}
