html,
body,
main,
footer,
p,
h1,
h2,
h3,
h4,
h5,
h6,
a,
li {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  line-height: 1.2em;
  color: #00213D;
}
ul, li{
  list-style: none;
  padding: 0;
}
li,p{
  line-height: 1.5em;
  font-family: 'Source Sans Pro', sans-serif;
}
strong, b{
  font-weight: 600 !important;
}
.btn-link:hover,
a,
a:hover,
a:focus,
a:active {
  border: none;
  outline-style: none;
  text-decoration: none;
}
body {
  background: #fff;
  position: relative;
}
main{
  padding-top: 60px;
}
.bg-cover {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}
.cta2{
  font-family: 'Source Sans Pro', sans-serif;
  background: #28a745;
  color: #fff;
  font-size: 1em;
  padding: 10px 20px;
  width: fit-content;
  transition: ease-in-out .3s;
  font-weight: 600;
  border: 2px solid #28a745;
  border-radius: 16px;
  display: block;
}
.cta2:hover {
  color: #28a745;
  background: transparent;
  border: 2px solid #28a745;
}
.cta {
  font-family: 'Source Sans Pro', sans-serif;
  background: #AD0000;
  color: #fff;
  font-size: 1em;
  padding: 10px 20px;
  width: fit-content;
  transition: ease-in-out .3s;
  font-weight: 600;
  border: 2px solid #AD0000;
  border-radius: 16px;
  display: block;
}
.cta.white{
  color: #AD0000;
  background: #fff;
  border-color: #fff;
}
.cta:hover {
  color: #AD0000;
  background: transparent;
  border: 2px solid #AD0000;
}
.cta.white:hover{
  color: #fff;
  background: #AD0000;
  border-color: #fff;
}
/* Estilos Header */
.header {
  width: 100%;
	background: #AD0000;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
}
.header.white {
	background: #fff;
}
header .navbar {
  display: flex;
  justify-content: space-between;
}
.navbar-brand{
  padding: 0 !important;
}
.navbar-brand img {
  width: 100%;
  max-width: 300px;
}
.navbar a {
  color: #FFFFFF;
  font-size: 0.8em;
  transition: ease-in-out 0.1s;
  padding: 5px 15px;
  padding-bottom: 10px;
  display: block;
  text-align: center;
	position: relative;
  text-transform: uppercase;
  font-weight: 400;
}
.navbar a:hover{
	color: #fff;
  opacity: .7;
}
.header.white .navbar a {
  color: #00213D;
  font-weight: 500;
}
.header.white .navbar a:hover {
  color: #AD0000;
  opacity: 1;
}
.header.white .sub-menu a {
  color: #fff;
}
.header.white .sub-menu a:hover {
  color: #fff;
}
.navbar-brand:hover {
  border: none !important;
  opacity: 1 !important;
}
.menu-item-has-children{
  position: relative;
  cursor: pointer;
}
.menu-item-has-children::after{
  content: '';
  position: absolute;
  right: 0;
  top: 10px;
  width: 13px;
  height: 13px;
  background-image: url('../img/icone-dropdown.svg');
  background-size: contain;
  background-repeat: no-repeat;
  transition: .3s ease all;
}
.header.white .menu-item-has-children::after{
  background-image: url('../img/icone-dropdown-cinza.svg');
}
.navbar .sub-menu{
  display: none;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  list-style: none;
  padding-left: 20px;
  min-width: 180px;
}
.menu-item-has-children:hover .sub-menu{
  display: block;
  background: #AD0000;
  padding: 20px 5px;
}
.menu-item-has-children:hover:before{
  display: block;
}
.navbar .sub-menu li a{
  color: #fff;
  text-align: left;
}
/* Estilos Menu */

.menu-open-close {
  position: relative;
}
.menu-toggle {
  width: 25px;
  border-radius: 11px;
  display: none !important;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
}
.menu-toggle span {
  font-weight: 600;
  line-height: 40px;
  color: #fff;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  width: 25px;
  border-radius: 11px;
  height: 2px;
  display: block;
  background: #fff;
}
.menuToggle {
  display: none;
  position: relative;
  z-index: 2;
  width: 60px;
  height: 40px;
  cursor: pointer;
}
.menu-lateral {
  margin: 0;
  padding: 30px 0 0 0;
  position: fixed;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  background: #AD0000;
  z-index: 1000;
  transition: 0.5s;
  overflow-y: hidden;
  scrollbar-width: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.close-button {
  position: absolute;
  top: 20px;
  left: 80%;
  cursor: pointer;
  padding: 0px 20px;
}
.close-button span {
  color: #fff;
  font-size: 28px;
  font-weight: 300;
  line-height: 48px;
}
.menu::-webkit-scrollbar {
  display: none;
}
.menu-lateral ul {
  overflow-y: hidden;
  width: 100%;
  margin: 0;
  padding: 0px 10px;
}
.menu-lateral ul li {
  list-style: none;
}
.menu-lateral.active {
  right: 0;
  overflow: auto;
}
/* Footer */
footer{
  background: #00213D;
}
footer .redes-sociais{
  margin: 20px 0;
}
footer .redes-sociais a{
  margin-right: 5px;
  margin-bottom: 0;
}
footer p,
footer a{
  color: #fff;
  font-size: .85em;
  margin-bottom: 20px;
  word-break: break-word;
  display: block;
}
footer a:hover{
  color: #AD0000;
}
footer .topo p,
footer .topo a{
  max-width: 250px;
  line-height: 1.6em;
}
footer p strong,
footer a strong{
  font-weight: 600;
}
footer .bandeiras{
  max-width: 250px;
  object-fit: contain;
}
footer .menu a{
  margin-bottom: 0;
}
footer .menu a.last{
  margin-bottom: 20px;
}
footer .topo,
footer .middle{
  border-bottom: 1px solid #000E1A;
}
footer .selos{
  max-width: 400px;
}
footer .copy p{
  margin-bottom: 0;
}

/* Elementos gerais */

.gray-overlay{
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, .5);
  top: 0;
  left: 0;
  z-index: 10000;

}

.msg-erro,
.msg-sucesso{
  max-width: 500px;
  margin: 1.75rem auto;
  padding: 2rem;
  background: whitesmoke;
  border-radius: 1rem;
  -webkit-box-shadow: inset 5px -4px 30px -11px rgba(0,0,0,0.6);
  -moz-box-shadow: inset 5px -4px 30px -11px rgba(0,0,0,0.6);
  box-shadow: inset 5px -4px 30px -11px rgba(0,0,0,0.6);
}

.msg-erro{
  color: orangered;
}

.msg-sucesso{
  color: green;
}

/* Início */
.banner-principal{
  width: 100%;
  height: 70vh;
  position: relative;
}
.banner-principal .slide{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.banner-principal .slide img{
  width: 100%;
  height: 70vh;
  object-fit: cover;
}
.banner-principal::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, rgba(0, 33, 61, 0.7) 0%, rgba(0, 0, 0, 0.296042) 52.08%, rgba(0, 0, 0, 0) 100%);
  width: 100%;
  height: 70vh;
  z-index: 2;
}
.banner-principal .conteudo{
  position: relative;
  z-index: 3;
  padding-top: 100px;
  max-width: 700px;
}
.banner-principal .conteudo h1{
  color: #FFFFFF;
}
.banner-principal .conteudo h1 strong{
  color: #FFFFFF;
  font-weight: 600;
  font-style: italic;
  text-transform: none;
}
.banner-principal .conteudo h2{
  color: #FFFFFF;
}
.cotacao{
  background: #FFFFFF;
  box-shadow: 0px 4px 64px rgba(0, 0, 0, 0.12);
  border-radius: 40px;
  position: relative;
  z-index: 20;
  margin-top: 75px;
}
.box.busca .passageiros .form-control{
  position: relative;
  height: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.box.busca .passageiros .form-control:hover .options{
  display: flex;
}
.box.busca .passageiros .options{
  display: none;
  position: absolute;
  top: 55px;
  left: 0;
  border: 1px solid #00213D;
  border-radius: 18px;
  background: #fff;
  height: 140px;
  z-index: 100;
}
.box.busca .passageiros .option input{
  width: 30px;
  text-align: center;
  margin: 0 10px;
}
.box.busca .passageiros .option .number{
  cursor: pointer;
}
form .radio label{
  font-family: 'Source Sans Pro';
}
form .radio label strong{
  font-style: italic;
}
.box.busca .coberturas .form-group{
  position: relative;
}
.box.busca .coberturas .recomendado{
  background: #00213D;
  border-radius: 8px;
  display: flex;
  align-items: center;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
  font-size: .6em;
  padding: 0 15px;
  width: fit-content;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
}
.box.busca .desconto p{
  text-transform: uppercase;
  font-weight: 700;
  border-left: 3px solid #AD0000;
  padding-left: 10px;
}
.box.busca #cupom{
  text-transform: uppercase;
  font-weight: 600;
  border-color: #AD0000;
  color: #AD0000;
}
.box.busca #cupom::placeholder{
  text-transform: none;
  font-weight: 600;
  color: #AD0000;
  text-align: center;
}
.box.busca .cta{
  width: 100%;
  height: 50px;
}.box.busca .cta2{
  width: 100%;
  height: 50px;
}
#home .seguros .logo img{
  height: auto;
  object-fit: contain;
}
section h1.titulo,
section h2.titulo{
  font-size: 2em;
}
section h1.titulo strong,
section h2.titulo strong{
  font-weight: 600;
  font-style: italic;
}
.box.big{
  background: #FFFFFF;
  box-shadow: 0px 4px 64px rgba(0, 0, 0, 0.12);
  border-radius: 40px;
}
.box.big img{
  width: 100%;
  height: 130px;
  border-radius: 40px 40px 0px 0px;
  object-fit: cover;
}
.box.big .texto{
  width: 100%;
  border-radius: 40px 40px 0px 0px;
  height: 300px;
  padding: 30px;
  position: relative;
}
.box.big .texto h3{
  margin-bottom: 20px;
  font-size: 1.5em;
}
.box.big .texto h3 strong{
  font-style: italic;
}
.diferenciais .box.big .texto{
  height: 230px;
}
.box.big.last{
  height: 360px;
  position: relative;
  background: #AD0000;
  padding: 30px;
}
.box.big.last::before{
  content: '';
  width: 100%;
  height: 100%;
  background-image: url(../img/box-diferenciais-8.png);
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 40px;
}
.box.big.last h3,
.box.big.last svg{
  color: #fff;
  position: relative;
  z-index: 10;
}
.coberturas{
  background: #F8F8F8;
}
.coberturas li{
  margin-bottom: 10px;
  padding-left: 15px;
  position: relative;
}
.coberturas li::after{
  content: '✓';
  position: absolute;
  color: #AD0000;
  top: 0;
  left: 0;
  width: 20px;
  height: 18px;
  font-weight: 900;
}
.depoimentos{
  background: #00213D;
}
.slick-prev:before {
  content: "";
  background-image: url(../img/prev-arrow.svg);
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  background-repeat: no-repeat;
}
.slick-next:before {
  content: "";
  background-image: url(../img/next-arrow.svg);
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  right: 0;
  background-repeat: no-repeat;  
}
.depoimentos h2.titulo{
  color: #fff;
}
.depoimentos .texto{
  padding-left:60px;
}
.depoimentos p{
  color: #fff;
  font-style: italic;
  line-height: 1.6em;
}
.depoimentos .autor{
  color: #fff;
}
.midia .logo{
  background: #FFFFFF;
  box-shadow: 0px 4px 64px rgba(0, 0, 0, 0.12);
  border-radius: 40px;
  padding: 30px;
  height: 130px;
}
.midia .logo img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Página Seguro Viagem */
#seguro-viagem .sobre{
  background: #F8F8F8;
}
#seguro-viagem .sobre{
  background: #F8F8F8;
}
.box.mini{
  background: #FFFFFF;  
  border: 1px solid #FFFFFF;
  box-shadow: 0px 4px 64px rgba(0, 0, 0, 0.12);
  border-radius: 40px;
  padding: 30px;
  height: 230px;
}
.box.mini svg{
  width: 60px;
  margin-bottom: 10px;
}
.box.mini h3{
  font-size: 1.5em;
  margin-bottom: 20px;
}
.box.mini p{
  text-align: center;
  font-weight: 600;
}
#seguro-viagem .como-fazer .box{
  height: 280px;
  padding: 40px;
}
#seguro-viagem .como-fazer .box h3{
  margin-bottom: 10px;
  font-size: 1.2em;
}
#seguro-viagem .como-fazer .box h3 span{
  color: #AD0000;
}
#seguro-viagem .como-fazer .box p{
  text-align: left;
}
#seguro-viagem .informacoes{
  background: #F8F8F8;
}
#seguro-viagem .informacoes{
  position: relative;
}
#seguro-viagem .informacoes h2.titulo,
#seguro-viagem .informacoes p{
  margin-bottom: 20px;
}
#seguro-viagem .informacoes img{
  max-width: 400px;
  height: 100%;
  object-fit: cover;
  position: absolute;
  right: 0;
  top: 0;
}

/* Página Nossos Planos */
.box.big .cta{
  position: absolute;
  bottom: 30px;
  left: 30px;
}
#nossos-planos .coberturas{
  background: #F8F8F8;
}
#nossos-planos .condicoes{
  padding-bottom: 100px;
}
#nossos-planos .condicoes .box{
  background: transparent;
  border: 2px solid #AD0000;
  border-radius: 30px;
  padding: 20px;
  font-size: 1em;
  text-transform: uppercase;
  text-align: center;
  display: block;
  color: #AD0000;
  font-weight: 600;
  width: 19%;
  height: 100px;
  font-size: .75em;
}
#nossos-planos .formulario{
  background: #AD0000;
  position: relative;
  min-height: 250px;
}
#nossos-planos .formulario h2{
  color: #fff;
}
#nossos-planos .formulario img{
  max-width: 800px;
  position: absolute;
  left: 35%;
  bottom: 0;
}

/* Página Sobre */
#sobre .informacoes{
  background: #F8F8F8;
}
#sobre .informacoes{
  position: relative;
}
#sobre .informacoes h2.titulo,
#sobre .informacoes p{
  margin-bottom: 20px;
}
#sobre .informacoes img{
  max-width: 400px;
  height: 100%;
  object-fit: cover;
  position: absolute;
  right: 0;
  top: 0;
}
#sobre .box.mini{
  max-width: 19%;
  padding: 15px;
}

/* Página Artigos */
#artigos .box.mini{
  height: 300px;
  position: relative;
}
#artigos .box.mini p{
  text-align: left;
}
#artigos .box.mini .cta{
  border-color: #AD0000;
  position: absolute;
  left: 30px;
  bottom: 30px;
}

/* Página Parceiro */
form .form-control{
  border: 1px solid #00213D;
  border-radius: 18px;
  font-family: 'Source Sans Pro';
  color: #00213D;
}
form .form-control::placeholder{
  font-weight: 400;
  color: #00213D;
  font-family: 'Source Sans Pro';
}
form input.form-control,
form select.form-control{
  height: 50px;
}
#parceiro .informacoes{
  background: #AD0000;
}
#parceiro .informacoes .texto p{
  text-align: right;
  color: #fff;
}
#parceiro .informacoes .texto a{
  color: #fff;
  font-weight: 600;
  font-family: 'Source Sans Pro';
}
#parceiro .informacoes .texto a:hover{
  text-decoration: underline;
}

/* Página Contato */
#contato .telefones{
  background: #AD0000;
}
#contato .telefones p,
#contato .telefones a{
  color: #fff;
}
#contato .telefones a{
  font-weight: 700;
  font-family: 'Source Sans Pro', sans-serif;
}
#contato .informacoes{
  position: relative;
  height: 600px;
}
#contato .reembolso{  
  background: #F8F8F8;
}
#contato .img-absolute{
  max-width: 400px;
  height: 100%;
  object-fit: cover;
  position: absolute;
  right: 0;
  top: 0;
}
#contato .cancelamento .img-absolute{
  max-width: 400px;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  right: auto;
  top: 0;
}
#contato .informacoes h3{
  font-size: 1.5em;
}
#contato .informacoes h3 strong{
  color: #AD0000;
  font-style: italic;
}
#contato .informacoes a{
  font-family: 'Source Sans Pro', sans-serif;
  text-decoration: underline;
  color: #AD0000;
}
.email-link{
  color:#000E1A;
}.email-link:hover{
  color:#AD0000;
}
@media(max-width: 767px) {
  .axa-logo {
    height: 150px;
    margin:auto;
    margin-top: 20px;
  }
}
#contato .informacoes a.email{
  color: #2A2725;
}
#contato .informacoes .cta{
  border-color: #AD0000;
  background: #AD0000;
  color:#fff;
  text-decoration: none;
}
#contato .informacoes .cta:hover{
  background: transparent;
  color: #AD0000;
  border-color: #AD0000;
}
#contato .faq{
  background: #F8F8F8;
}
#contato .faq .accordion .card{
  background: #FFFFFF;
  border-radius: 18px;
  margin-bottom: 10px;
}
#contato .faq .accordion .card .card-header{
  background: #FFFFFF;
}
#contato .faq .accordion .card .card-header button{
  background: transparent;
  border: 0;
  outline: none;
}
#contato .faq .accordion .card .card-header button h5{
  font-size: 1.5em;
}

/* Página Área Privada Cliente */
#area-privada .formularios h2.titulo{
  font-size: 1.5em;
}
#area-privada .formularios .cta{
  width: 100%;
}
#area-privada .formularios .botoes a{
  border: 1px solid #00213D;
  border-radius: 18px;
  text-align: center;
  padding: 12px;
}
#area-privada .formularios .divisor{
  width: 1px;
  height: 400px;
  background: #AD0000;
  display: block;
}

/* Página Detalhes Plano */
.box.plano{
  background: #FFFFFF;
  border: 1px solid #00213D;
  border-radius: 40px;
  padding: 40px 30px;
}
.box.plano .left{
  border-right: 1px solid #BCBCBC;
}
.box.plano .texto p strong{
  font-weight: 700;
  font-size: 1.1em;
}
.box.plano .texto a{
  color: #00213D;
  text-decoration: underline;
  font-family: 'Source Sans Pro', sans-serif;
  display: block;
  margin-top: 20px;
}
table,
tr{
  width: 100%;
}
tr{
  border-bottom: 1px solid #BCBCBC;
}
tr td{  
  padding: 15px 30px 15px 0;
  font-family: 'Source Sans Pro', sans-serif;
}
tr td:nth-child(1){  
  font-weight: 600;
  width: 70%;
}
tr td:nth-child(2){  
  width: 30%;
  text-align: right;
}
#detalhes-plano .regras p{
  font-weight: 600;
  margin-bottom: 30px;
}
#detalhes-plano .regras ul li{
  position: relative;
  padding-left: 10px;
}
#detalhes-plano .regras ul li::before{
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 5px;
  height: 5px;
  background: #AD0000;
  border-radius: 50%;
}

/* Página Resultados */
#resultados .banner-principal,
#resultados .banner-principal .slide img,
#resultados .banner-principal::after{
  height: 350px;
}

/*Página pagamento*/

.formPgto{
  margin-top: 15px;
  padding: 2rem;
  padding-bottom: 0;
  /*border-radius: 5px;
  border: 3px solid rgba(0, 0, 0, .3);*/
}

.area-input input{
  border: 1px solid #00213D;
  border-radius: 10px;
  margin-bottom: 5px;
}

@media only screen and (max-width: 1000px) {
  .desktop-only {
    display: none;
  }
}


/* Responsividade */
@media (max-width: 991px) {
  .menu-toggle {
    display: flex !important;
  }
  .navbar a{
    text-align: left;
    color: #fff;
    font-weight: 600;
  }
  .sub-menu a{
    font-weight: 400;
  }
  .menu-item-has-children::after{
    content: none;
  }
  .navbar a:hover:before{
    display: none;
  }
  .header .redes-sociais{
    padding-right: 15px;
  }
  .menu-toggle span::before, 
  .menu-toggle span::after {
    background: #fff;
  }
  .navbar .sub-menu{
    display: block;
    position: relative;
    top: auto;
    left: auto;
    transform: none;
  }
}
@media (max-width: 480px) { 
  footer .selos{
    max-width: 300px;
    margin: 0 auto;
    margin-bottom: 20px;
  }
  footer .topo p, footer .topo a{
    max-width: 100%;
    font-size: .8em;
  }
  footer .info .cta{
    margin: 0 auto;
    margin-bottom: 20px;
  }
  footer .menu{
    display: none !important;
  }
  footer .copy p{
    text-align: center;
    margin: 0 auto;
  }
  .banner-principal .conteudo{
    padding-top: 100px;
  }
  .banner-principal .conteudo h1{
    text-align: center;
  }
  .banner-principal .conteudo h2{
    font-size: 1.5em;
    text-align: center;
    margin-top: 20px;
    padding: 0 30px;
  }
  .banner-principal::after{
    background: linear-gradient(180deg, rgba(0, 33, 61, 0.7) 0%, rgba(0, 0, 0, 0.296042) 99.99%, rgba(0, 0, 0, 0) 100%);
  }
  .cotacao{
    max-width: 320px;
  }
  section h1.titulo, section h2.titulo{
    font-size: 1.5em;
    text-align: center;
    padding: 0 40px;
  }  
  .box.busca .desconto{
    order: 2;
  }
  .box.busca .desconto p{
    font-size: 1.2em;
  }
  .seguros .inicio p{
    margin: 20px 0;
    font-size: 1.2em;
    text-align: center;
  }
  #home .seguros .logo img{
    margin: 0 auto;
  }
  .box.big .texto{
    height: auto;
  }
  .diferenciais h2.titulo{
    padding: 0 20px;
    margin-bottom: 20px;
  }
  .diferenciais .box.big .texto{
    height: auto;
  }
  .conteudo-texto p{
    padding: 0 20px;
    text-align: center;
  }
  .coberturas h2.titulo{
    padding: 0 10px;
  }
  .depoimentos .texto{
    padding-left: 0;
  }
  .slick-next{
    right: 0;
  }
  .slick-prev{
    left: -20px;
  }
  .midia h2.titulo{
    padding: 0 60px;
  }
  .midia .logo{
    padding: 15px;
    border-radius: 16px;
    height: 90px;
    box-shadow: 0px 4px 64px rgba(0, 0, 0, 0.1);
  }
  #seguro-viagem .sobre h2.titulo{
    padding: 0;
  }
  .seguro-next h2.titulo{
    padding: 0 60px;
  }
  .box.mini{
    padding: 20px;
    height: 200px;
  }
  #seguro-viagem .como-fazer .box{
    padding: 20px;
    height: auto;
  }
  #seguro-viagem .informacoes{
    flex-direction: column;
  }
  #seguro-viagem .informacoes .container{
    order: 2;
  }
  #seguro-viagem .informacoes img{
    position: relative;
    height: 300px;
    border-radius: 24px;
  }
  #seguro-viagem .informacoes .texto{
    text-align: center;
  }
  #seguro-viagem .informacoes .cta{
    margin: 0 auto;
  }
  .box.big{
    max-width: 300px;
    margin: 0 auto;
  }
  .box.big .texto{
    padding: 20px;
    height: auto;
  }
  .box.big .cta{
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 20px;
    width: 100%;
    text-align: center;
  }
  .chubb img{
    margin: 0 auto;
    margin-top: 20px;
  }
  #nossos-planos .diferenciais h2.titulo{
    padding: 0;
  }
  .condicoes p strong{
    margin-top: 20px;
    display: block;
  }
  #nossos-planos .condicoes .box{
    padding: 10px 40px;
    width: 100%;
    font-size: 1em;
    margin: 0 20px;
    margin-bottom: 10px;
  }
  #nossos-planos .formulario img{
    left: 50%;
    transform: translate(-50%);
    bottom: auto;
    top: -10px;
  }
  #nossos-planos .formulario .col-md-5{
    margin-top: 100px;
  }
  #nossos-planos .formulario .cta{
    margin: 0 auto;
  }
  #sobre .informacoes{
    flex-direction: column;
    padding: 0;
  }
  #sobre .informacoes img{    
    position: relative;
    height: 250px;
  }
  #sobre .informacoes .container{
    order: 2;
  }
  #sobre .informacoes h2.titulo{
    padding: 0;
  }
  #sobre .box.mini{
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 10px;
  }
  #parceiro section h1.titulo, #parceiro section h2.titulo{
    padding: 0;
    margin-bottom: 20px !important;
  }
  #parceiro .informacoes .texto p{
    text-align: center;
    margin-bottom: 20px;
  }
  #parceiro .informacoes .cta{
    margin: 0 auto;
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
  form .cta{
    width: 100%;
    max-width: 300px;
  }
  #artigos h2.titulo{
    padding: 0;
  }
  .telefones .texto{
    text-align: center;
    margin-bottom: 20px;
  }
  #contato .informacoes{
    height: auto;
  }
  #contato .reembolso,
  #contato .cancelamento{
    flex-direction: column;
  }
  #contato .reembolso .container,
  #contato .cancelamento .container{
    order: 2;
  }
  #contato .img-absolute,
  #contato .cancelamento .img-absolute{
    position: relative;
    border-radius: 24px;
    height: 300px;
    padding: 0 40px;
    margin-top: 40px;
  }
  #contato .faq .accordion .card .card-header button,
  #contato .faq .accordion .card .card-header button{
    font-size: 16px;
    font-weight: 600;
    text-align: left;
  }
  #area-privada .parceiro a{
    max-width: 210px;
    text-align: center;
  }
  #area-privada .formularios .divisor{
    display: none;
  }
  #area-privada .formularios .left{
    margin-bottom: 60px;
  }
  .box.plano .left{
    border-right: 0;
  }
  .box.plano .texto{
    margin-bottom: 20px;
  }
  #compra .checkout h2.titulo{
    padding: 0;
    margin: 20px 0;
  }
  #compra .checkout .bandeira{
    width: 33%;
  }
  #cvvCartao{
    position: relative;
  }
  #compra .checkout .cvv{
    position: absolute;
    right: 20px;
    top: 10px;
  }
  tr td{  
    padding: 15px 0 15px 0;
    font-family: 'Source Sans Pro', sans-serif;
  }
  #compra .resumo p{
    font-size: 1.2em;
    font-weight: 700;
  }
  #compra .resumo p a{
    font-size: .8em;
    text-decoration: underline;
  }
  #compra .resumo table{
    margin: 30px 0;
  }
  #compra #aceito{
    margin-right: 10px;
  }
  #compra .aceito label{
    font-size: .85em;
  }
  form .cta{
    margin: 0 auto;
  }
  #resultados h2.titulo{
    padding: 0;
  }
}