/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: 'Ruda', sans-serif;
  color: #444444;
}

a {
  color: #3540F4;
  text-decoration: none;
}

a:hover {
  color: #0C047D;
  text-decoration: none;
}

.mobile { display: none; }

@media (max-width: 768px) {
  .desktop { display: none !important; }
  .mobile { display: block; }
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #be1823;
  border: 2px solid #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover, .back-to-top:active, .back-to-top:focus {
  background: #570A10;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 100px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  background: #0A0D1F;
}

#header.header-scrolled {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.3);
}

#header .logo img {
  max-height: 55px;
  max-width: 250px;
  padding-top: 10px;
}

@media (max-width: 768px) {
  #header {
    height: 80px;
    padding: 0 15px;
  }

  #header .logo img {
    max-height: 45px;
  }
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
  padding: 0;
}

.navbar ul, .dropdown_perfil {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li, .dropdown_perfil li {
  position: relative;
}

.navbar a,
.navbar a:focus,
.dropdown_perfil a,
.dropdown_perfil a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 400;
  white-space: nowrap;
  transition: 0.3s;
  color: #FFF;
  border-bottom: 1px solid transparent;
}

.navbar a i,
.navbar a:focus i,
.dropdown_perfil a i,
.dropdown_perfil a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a,
.dropdown_perfil a:hover,
.dropdown_perfil .active,
.dropdown_perfil .active:focus,
.dropdown_perfil li:hover>a {
  color: #FFF;
  border-bottom: 1px solid #3540F4;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 400;
  color: #21262a;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #3498db;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (max-width: 768px) {
  #header .align-items-center {
    justify-content: space-between !important;
  }

  #header .me-auto {
    margin: 0 !important;
  }
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
  color: #BE1823;
  font-size: 32px;
  margin-left: 20px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

@media (max-width: 768px) {
  .mobile-nav-toggle {
    color: #FFF;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(33, 38, 42, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 25px;
  right: 26px;
  background: #D35400;
  border-radius: 50%;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 65px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 25px !important;
  color: #384046;
  text-align: center;
  color: #03051A;
  margin: 0 10px;
  font-size: 12px;
  font-weight: 500;
  display: block;
}

.navbar-mobile .btn {
  border-radius: 8px;
  background: #D35400;
  margin: 0 10px;
  color: #FFF;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
}

.navbar-mobile .btn:hover {
  background: #6D0D14;
  color: #FFF;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #03051A;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #3498db;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

.page-wrapper { padding-top: 100px; }

.nav_botoes {
  display: contents;
}

.btn_login {
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  display: inline-block;
  padding: 10px 15px;
  transition: all 0.5s;
  border-radius: 3px;
}

.btn_login:hover, .btn_login:active, .btn_login:focus {
  color: #FFF;
  text-decoration: unset;
  background: #ffffff3d;
}

.nav_botoes img, .dropdown_perfil img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}


.dropdown_perfil .dropdown ul {
  display: block;
  position: absolute;
  right: -20px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  border-radius: 5px;
  background: #FFF;
  box-shadow: 0px 4px 19px 0px rgba(0, 0, 0, 0.25);
  transition: 0.3s;
}

.dropdown_perfil ul li a {
  color: #1F2133;
  font-size: 12px;
  font-weight: 500;
}

.dropdown_perfil .dropdown ul li {
  min-width: 200px;
}

.dropdown_perfil .dropdown ul li+li {
  border-top: 1px solid #D9D9D9;
}

.dropdown_perfil .dropdown ul a {
  padding: 10px 20px;
  color: #03051A;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  display: block;
}

.dropdown_perfil .dropdown ul a:hover,
.dropdown_perfil .dropdown ul .active:hover,
.dropdown_perfil .dropdown ul li:hover>a {
  color: #BE1823;
}

.dropdown_perfil .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.dropdown_perfil .dropdown .dropdown ul {
  top: 0;
  right: calc(100% - 30px);
  visibility: hidden;
}

.dropdown_perfil ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.dropdown_perfil .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .dropdown_perfil .dropdown .dropdown ul {
    left: -90%;
  }

  .dropdown_perfil .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (max-width: 768px) {
  .page-wrapper { padding-top: 80px; }

  .dropdown_perfil, .btn_login, .nav_botoes {
    display: none !important;
  }
}

.btn_comprar {
  border-radius: 5px;
  border: unset;
  background: #D35400;
  display: inline-flex;
  padding: 10px 20px;
  align-items: flex-start;
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  margin-left: 20px;
  transition: all 0.5s;
}

.btn_comprar:hover, .btn_comprar:focus, .btn_comprar:active {
  background: #DE7F40;
  color: #FFF;
}

@media (max-width: 1400px) {
  .btn_comprar {
    padding: 10px 20px;
    font-size: 14px;
  }

  .navbar a, .navbar a:focus, .dropdown_perfil a, .dropdown_perfil a:focus {
    padding: 10px 0 10px 25px;
  }
  .nav_botoes {
    text-align: center;
  }
}

@media (max-width: 991px) {
  .btn_comprar {
    padding: 7px 20px;
    font-size: 14px;
  }

  .header-social-links { display: none !important; }
  #header > .align-items-center { justify-content: space-between; }
  #header > .align-items-center .me-auto { margin-right: unset !important; }
  .col_offset_planos { display: none; }
}

@media (max-width: 768px) {
  .btn_comprar {
    display: none !important;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  background: #000;
  overflow: hidden;
  position: relative;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-item {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 70px;
  left: 50px;
  right: 50px;
}

.banner_mobile { display: none; }

@media (min-width: 2400px) {
  #hero {
    width: 1320px;
    margin: 0 auto;
    height: 505px;
  }
}

@media (max-width: 2400px) {
  #hero {
    height: 870px;
  }
}

@media (max-width: 2200px) {
  #hero {
    height: 800px;
  }
}

@media (max-width: 2000px) {
  #hero {
    height: 750px;
  }
}

@media (max-width: 1900px) {
  #hero {
    height: 730px;
  }
}

@media (max-width: 1800px) {
  #hero {
    height: 700px;
  }
}

@media (max-width: 1650px) {
  #hero {
    height: 620px;
  }
}

@media (max-width: 1500px) {
  #hero {
    height: 545px;
  }
}

@media (max-width: 1400px) {
  #hero {
    height: 525px;
  }
}

@media (max-width: 1300px) {
  #hero {
    height: 460px;
  }
}

@media (max-width: 1130px) {
  #hero {
    height: 440px;
  }
}

@media (max-width: 1090px) {
  #hero {
    height: 420px;
  }
}

@media (max-width: 1024px) {
  #hero {
    height: 390px;
  }
}

@media (max-width: 960px) {
  #hero {
    height: 350px;
  }
}

@media (max-width: 870px) {
  #hero {
    height: 300px;
  }
}

@media (max-width: 768px) {
  #hero {
    height: 250px;
  }
}

@media (max-width: 615px) {
  #hero {
    min-height: 780px;
  }

  .banner_mobile { display: block; }
  .banner_desktop { display: none; }
}

@media (max-width: 590px) {
  #hero {
    min-height: 730px;
  }
}

@media (max-width: 520px) {
  #hero {
    min-height: 600px;
  }
}

@media (max-width: 450px) {
  #hero {
    min-height: 550px;
  }
}

@media (max-width: 400px) {
  #hero {
    min-height: 500px;
  }
}

#hero .container {
  width: 30%;
  margin-left: 15%;
}

#hero h2 {
  color: #1F2133;
  font-size: 16px;
  font-weight: 500;
  line-height: 117.7%;
  letter-spacing: 6px;
  text-transform: uppercase;
}

#hero p {
  color: #1F2133;
  font-size: 18px;
  font-weight: 500;
  line-height: 135.7%;
  padding-top: 15px;
}

#hero h2.branco, #hero p.branco {
  color: #FFF;
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 20px;
    line-height: 1.2;
  }
}

#hero h3 {
  color: #1F2133;
  font-size: 40px;
  font-weight: 800;
  line-height: 117.7%;
  padding-top: 10px;
}

@media (max-width: 768px) {
  #hero h3 {
    font-size: 28px;
  }
}

#hero .carousel-fade {
  overflow: hidden;
}

#hero .carousel-fade .carousel-inner .carousel-item {
  transition-property: opacity;
}

#hero .carousel-fade .carousel-inner .carousel-item,
#hero .carousel-fade .carousel-inner .active.carousel-item-start,
#hero .carousel-fade .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-fade .carousel-inner .active,
#hero .carousel-fade .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-fade .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-fade .carousel-inner .carousel-item-next,
#hero .carousel-fade .carousel-inner .carousel-item-prev,
#hero .carousel-fade .carousel-inner .active.carousel-item-start,
#hero .carousel-fade .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-prev,
#hero .carousel-control-next {
  width: 10%;
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  line-height: 1;
  border: 2px solid #fff;
  border-radius: 50%;
  padding: 5px 0 0;
  width: 40px;
  height: 40px;
}

#hero .carousel-control-next-icon img,
#hero .carousel-control-prev-icon img {
  width: 27px;
}

#hero .carousel-indicators li {
  cursor: pointer;
  list-style-type: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  opacity: 1;
}

#hero .carousel-indicators .active {
  background-color: #BE1823;
}

#hero .btn-get-started {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 15px 35px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  background: #BE1823;
}

#hero .btn-get-started:hover {
  background: #fff;
  color: #3ec1d5;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  color: #0A0D1F;
  text-align: center;
  font-size: 34px;
  font-weight: 900;
  line-height: 116.298%;
}

.section-title p {
  margin-bottom: 0;
}

.dis_flex { display: flex; }
.clear { clear: both; }

.pad_t10 { padding-top: 10px; }
.pad_t20 { padding-top: 20px; }
.pad_t30 { padding-top: 30px !important; }

.pad_r20 { padding-right: 20px; }

@media (max-width: 768px) {

  .section-title h2 {
    font-size: 25px;
    margin: 0;
  }
}

/*--------------------------------------------------------------
# Servicos
--------------------------------------------------------------*/
.servicos {
  padding-top: 130px;
}

.servicos .icon-box {
  padding: 30px;
  transition: all ease-in-out 0.3s;
  background: #fff;
}

.servicos .icon-box .icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  background: rgba(53, 64, 244, 0.20);
  border-radius: 50%;
  padding: 8px;
}

.servicos .icon-box h4 {
  color: #0A0D1F;
  font-size: 16px;
  font-weight: 800;
  line-height: normal;
  margin: 0 auto;
  margin-bottom: 15px;
}

.servicos .icon-box p {
  color: #4B506C;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
}


@media (max-width: 991px) {
  .servicos .icon-box h4 {
    font-size: 21px;
    width: 100%;
  }

  .servicos .icon-box {
    padding: 30px 10px;
  }
}

@media (max-width: 768px) {
  .servicos {
    padding: 50px 25px;
  }

  .servicos .icon-box {
    padding: 20px 10px;
  }

  .servicos .icon-box h4 {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Planos Section
--------------------------------------------------------------*/
.testeira {
  margin-top: 40px;
  padding: 60px 0 0;
  background: #0C047D;
}

.testeira .section-title {
  margin: 0 auto;
  width: 60%;
  padding: 0;
  color: #FFF;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 116.298%;
}

.testeira .section-subtitle {
  text-align: center;
  margin-bottom: 20px;
  color: #FFF;
  font-size: 40px;
  font-style: normal;
  font-weight: 900;
  line-height: 116.298%;
}

.testeira .box {
  padding: 20px 30px;
  margin: 30px 0;
  border-radius: 10px;
  border: 1px solid #8F9099;
  background: #fff;
  text-align: center;
}

.testeira img {
  margin-bottom: -120px;
}

@media (max-width: 768px) {
  .testeira {
    padding: 35px 15px;
  }

  .testeira .section-title {
    margin: 0;
    margin-top: 20px;
    width: 100%;
    text-align: left;
    font-size: 16px;
    font-weight: 100;
  }

  .testeira .section-subtitle {
    text-align: left;
    font-size: 25px;
  }

  .testeira img {
    margin-bottom: 0;
    margin-top: 25px;
  }
}

/*--------------------------------------------------------------
# CTA
--------------------------------------------------------------*/
.cta {
  padding: 110px 0;
}

.cta .bg-cta {
  background-image: url('../img/CTAbackground.png');
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 30px;
}

.cta h2 {
  color: #FFF;
  font-size: 34px;
  font-weight: 900;
  line-height: normal;
  text-align: left;
  margin-bottom: 30px;
}

.cta .section-title {
  padding: 80px 0 80px 80px;
}

.cta img {
  margin-top: -50px;
  position: absolute;
  bottom: 0;
  right: 70px;
}

.cta a {
  border-radius: 8px;
  background: #D35400;
  padding: 10px 30px;
  color: #FFF;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  float: left;
}

.cta a:hover,
.cta a:active,
.cta a:focus {
  background: #DE7F40;
}

@media (max-width: 991px) {
  .adicionais h3 {
    padding-top: 0;
  }
}

@media (max-width: 768px) {
  .cta {
    padding: 0 15px;
  }

  .cta .section-title {
    padding: 40px;
  }

  .cta h2 {
    font-size: 25px;
  }

  .cta img {
    margin-top: 0;
    position: relative;
    bottom: unset;
    right: unset;
    max-width: 120%;
    margin-left: -10%;
  }

  .cta a {
    padding: 10px 20px;
    font-size: 14px;
    float: unset;
    display: block;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# DEPOIMENTOS
--------------------------------------------------------------*/
.depoimentos h2 {
  color: #0C047D;
  font-size: 34px;
  font-weight: 900;
  line-height: 116.298%;
}

.depoimentos .depoimento-box img {
  padding: 5px;
}

.depoimentos .depoimento-box p {
  color: #4B506C;
  font-size: 21px;
  font-weight: 500;
}

.depoimentos .depoimento-box h4 {
  color: #D35400;
  font-size: 55px;
  font-weight: 900;
  padding: 30px 0;
}

@media (max-width: 768px) {
  .depoimentos .depoimento-box h4 {
    font-size: 32px;
    padding: 10px 0;
  }

  .depoimentos .depoimento-box p {
    color: #4B506C;
    font-size: 14px;
    font-weight: 500;
  }

  .depoimentos .px-5 {
    padding: 0 30px !important;
  }

  .depoimento-box {
    width: 100%;
    margin-bottom: 20px;
  }

  .depoimento-box img { max-height: 45px; }
}

/*--------------------------------------------------------------
# +SERVIÇOS
--------------------------------------------------------------*/
.outros-servicos h2 {
  color: #0A0D1F;
  font-size: 34px;
  font-weight: 900;
  line-height: 116.298%;
}

.outros-servicos h3 {
  color: #0C047D;
  font-size: 22px;
  font-weight: 900;
}

.outros-servicos p {
  color: #4B506C;
  font-size: 15px;
  font-weight: 500;
}

.outros-servicos img {
  border-radius: 10px;
  width: 100%;
}

.outros-servicos .accordion-button,
.outros-servicos .accordion-button:not(.collapsed),
.outros-servicos .accordion-button:focus {
  color: #0C047D;
  font-size: 22px;
  font-weight: 900;
  background: unset;
  outline: unset;
  border-color: transparent;
  box-shadow: unset;
  padding-left: 0;
}

.outros-servicos .accordion-body { padding-left: 0; }

@media (max-width: 768px) {
  .outros-servicos {
    padding: 0;
  }

  .outros-servicos-mobile {
    padding: 15px;
  }

  .outros-servicos-mobile h2 {
    color: #0C047D;
    font-size: 18px;
    font-weight: 900;
  }

  .outros-servicos-mobile p {
    color: #4B506C;
    font-size: 15px;
    font-weight: 500;
    line-height: 122.546%;
    padding: 15px 0;
  }

  .outros-servicos-mobile img {
    border-radius: 8px;
    margin-bottom: 35px;
  }
}

/*--------------------------------------------------------------
# Detalhes dos Planos
--------------------------------------------------------------*/
.section-detalhes {
  background: #F0F1FA;
  padding: 60px 0;
}

.section-detalhes h2 {
  color: #0C047D;
  font-size: 30px;
  font-weight: 900;
  line-height: 117.7%;
}

.section-detalhes p {
  color: #606060;
  font-size: 16px;
  font-weight: 400;
  line-height: 116.298%;
}

.section-detalhes table {
  margin: 30px 0;
  width: 100%;
  text-align: center;
}

.section-detalhes table .titulo {
  color: #0A0D1F;
  font-size: 20px;
  font-weight: 800;
  line-height: normal;
  margin: 0;
}

.section-detalhes table .descricao {
  color: #0C047D;
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
  margin: 0;
}

.section-detalhes table img {
  max-height: 25px;
}

.section-detalhes table a {
  border-radius: 100px;
  background: #D35400;
  cursor: pointer;
  color: #FFF !important;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  padding: 10px 20px;
  display: inline-block;
}

.section-detalhes table td {
  color: #606060;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 117.7%;
}

.section-detalhes table th, .section-detalhes table td {
  background: transparent;
  padding: 15px 30px;
  box-shadow: unset;
}

.section-detalhes table tfoot th, .section-detalhes table tfoot td {
  border: unset;
  padding-top: 15px;
}

.section-detalhes table > tbody > tr:nth-of-type(odd) {
  background: #FFF;
}

.section-detalhes .condicoes {
  color: #747474;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  line-height: 117.7%;
  margin-top: 40px;
}



/*--------------------------------------------------------------
# PLANOS
--------------------------------------------------------------*/
.planos .titulo h2 {
  color: #000;
  font-size: 34px;
  font-weight: 800;
  line-height: 124%;
}

.planos .titulo p {
  color: #878CAB;
  font-size: 20px;
  font-weight: 500;
}

.plano-box {
  border-radius: 10px;
  border: 1px solid #D9D9D9;
  background: #FFF;
  padding: 25px 30px;
}

.resumo-box {
  padding: 25px 30px;
  border-radius: 10px;
  background: rgba(217, 217, 217, 0.60);
}

.resumo-box p {
  color: #4B506C;
  font-size: 16px;
  font-weight: 700;
}

.switch-field {
  display: flex;
  overflow: hidden;
}

.modalidade-title {
  color: #4B506C;
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

.switch-field input {
  position: absolute !important;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  width: 1px;
  border: 0;
  overflow: hidden;
}

.switch-field label {
  border-radius: 3px;
  color: #3540F4;
  border: 1px solid #3540F4;
  background: #FFF;
  margin-right: 5px;
  font-size: 14px;
  line-height: 1;
  text-align: center;
  padding: 9px 16px 7px;
  box-shadow: unset;
  transition: all 0.1s ease-in-out;
}

.switch-field label:hover {
  cursor: pointer;
}

.switch-field input:checked + label {
  color: #FFF;
  background-color: #3540F4;
  box-shadow: none;
}

.plano-box-valor {
  border-radius: 5px;
  background: rgba(217, 217, 217, 0.60);
  margin: 10px 0;
  padding: 15px 25px;
}

.plano-box-valor img {
  width: 150px;
}

.plano-box-valor p {
  color: #4B506C;
  font-size: 12px;
  font-weight: 500;
  margin: 0;
}

.plano-box-valor h4 {
  color: #0C047D;
  font-size: 26px;
  font-weight: 800;
  padding-top: 15px;
  margin: 0;
}

.plano-box-valor .text-right {
  text-align: right;
}

.plano-lista p {
  color: #0A0D1F;
  font-size: 16px;
  font-weight: 700;
}

.plano-lista .list-group .list-group-item {
  border: unset;
  color: #4B506C;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 0;
}

.plano-lista .list-group .list-group-item img {
  width: 12px;
  margin-right: 7px;
  margin-top: -3px;
}

.minus, .plus {
  padding:8px 5px 8px 5px;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
  float: left;
}

.minus {
  padding: 5px 5px 5px 0;
}

.plus {
  padding: 5px 0 5px 5px;
}

.minus img, .plus img {
  width:20px;
  height:20px;
}

.number input {
  border-radius: 5px;
  border: 0.5px solid #878CAB;
  background: #FFF;
  color: #4B506C;
  font-size: 16px;
  font-weight: 900;
  float: left;
  height:34px;
  width: calc(100% - 72px);
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  min-width: 40px;
}

#valor_mes {
  color: #0C047D;
  font-size: 16px;
  font-weight: 500;
}

#valor_total {
  color: #0C047D;
  font-size: 24px;
  font-weight: 800;
  margin: 0;
}

.text-info p {
  color: #4B506C;
  font-size: 10px;
  font-weight: 400;
}

.resumo-box a {
  border-radius: 8px;
  background: #D35400;
  padding: 10px 30px;
  color: #FFF;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  display: block;
  text-align: center;
}

.resumo-box a:hover,
.resumo-box a:active,
.resumo-box a:focus {
  background: #DE7F40;
}

.resumo-box .min-text {
  color: #878CAB;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  margin-top: 10px;
}


@media (max-width: 768px) {
  .planos .titulo p {
    font-size: 12px;
  }

  .planos .titulo h2 {
    font-size: 20px;
    margin: 0;
  }

  .plano-box {
    border-radius: unset;
    border: unset;
    background: #FFF;
    padding: 0 10px;
  }

  .plano-box-valor {
    margin: 25px 0;
    padding: 15px;
  }

  .plano-box-valor .col {
    padding: 0;
  }

  .plano-box-valor h4 {
    font-size: 20px;
    padding-top: 5px;
  }

  .plano-box-valor img {
    width: 100px;
  }

  .col-m-p0 { padding: 0; }

  .resumo-box {
    margin-top: 30px;
    border-radius: unset;
    background: rgba(217, 217, 217, 0.60);
  }
}


/*--------------------------------------------------------------
# Frequently Asked Questions Section
--------------------------------------------------------------*/
.faq {
  padding-top: 80px;
}

.faq .accordion-item {
  border: 0;
  margin-bottom: -1px;
}

.faq h2 {
  color: #0C047D;
  font-size: 30px;
  font-weight: 900;
  line-height: 117.7%;
  margin-bottom: 35px;
}

.faq .link {
  color: #6B6A6A;
  text-align: center;
  font-size: 21px;
  font-weight: 400;
  line-height: 117.7%;
  margin-top: 25px;
}

.faq .link a {
  color: #BE1823;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  border-bottom: 1px solid #BE1823;
}

.faq .link img {
  width: 15px;
  margin-top: -2px;
}

.faq .accordion-collapse {
  border: 0;
}

.faq .accordion-button {
  padding: 20px;
  border: 1px solid rgba(135, 140, 171, 0.63);
  border-left: unset;
  border-right: unset;
  color: #4B506C !important;
  font-size: 16px;
  font-weight: 800;
  line-height: 116.298%;
  text-align: left;
  background: #FFF;
}

.faq .accordion-button:focus {
  box-shadow: none;
}

.faq .accordion-button:not(.collapsed) {
  background: #fff;
  border-bottom: 0;
  box-shadow: none;
  color: #0C047D !important;
}

.faq .accordion-button:after {
  position: absolute;
  right: 20px;
  top: 19px;
}

.faq .accordion-body {
  padding: 20px 30px;
  padding-top: 10px;
  border: unset;
  background: #fff;
  color: #606060;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}

.faq .accordion-button::after {
  background-image: url('../img/icones/Mais_Azul.png') !important;
}

.faq .accordion-button:not(.collapsed)::after {
  background-image: url('../img/icones/Menos_Azul.png') !important;
}

@media (max-width: 768px) {
  .faq .accordion-button {
    padding: 20px;
    padding-right: 45px;
    border: 0;
    border-bottom: 1px solid rgba(135, 140, 171, 0.63);
  }

  .faq .accordion-item {
    margin-bottom: 0;
  }

  .faq .accordion-button:not(.collapsed) {
    background: #fff;
    color: #BE1823;
  }

  .faq .accordion-body {
    padding-top: 10px;
    border: unset;
    border-bottom: 1px solid rgba(135, 140, 171, 0.63);
    background-color: transparent;
  }

  .faq .link, .faq .link a {
    font-size: 14px;
  }

  .faq .link img {
    margin-top: 2px;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 25px 0;
  background: #FBDADC;
}

.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  color: #BE1823;
  font-size: 14px;
  font-weight: 400;
}

.breadcrumbs ol a {
  color: #1F2133;
}

.breadcrumbs ol a img {
  width: 15px;
  margin-right: 3px;
  margin-top: -3px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #4f5a62;
  content: ">";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
    text-align: center;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }

  .breadcrumbs .voltar { display: none; }
}

.breadcrumbs .voltar {
  color: #BE1823;
  font-size: 14px;
  font-weight: 400;
}

.breadcrumbs .voltar img {
  width: 14px;
  margin-left: 3px;
  margin-top: -2px;
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
.sidebar {
  padding: 0;
  margin: 0;
  padding-right: 20px;
  box-shadow: unset;
}

.sidebar .sidebar-title {
  padding: 0 0 0 0;
  margin: 0 0 15px 0;
  position: relative;
  color: #1F2133;
  font-size: 20px;
  font-weight: 800;
  line-height: 117.7%;
}

.sidebar .sidebar-item {
  margin-bottom: 30px;
}

.sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.sidebar .categories ul li+li {
  padding-top: 5px;
}

.sidebar .categories ul a {
  color: #1F2133;
  font-size: 12px;
  font-weight: 500;
  transition: 0.3s;
}

.sidebar .categories ul a.active, .sidebar .categories ul a:hover {
  color: #BE1823;
}

@media (max-width: 991px) {
  .sidebar { display: none; }
}


/*--------------------------------------------------------------
# Página interna
--------------------------------------------------------------*/
.page-title {
  color: #1F2133;
  font-size: 34px;
  font-weight: 800;
  line-height: 117.7%;
}

.page-subtitle {
  color: #575866;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 35px;
}

.pagina p {
  color: #575866;
  font-size: 16px;
  font-weight: 400;
  line-height: 127.7%;
}

.pagina h3 {
  color: #575866;
  font-size: 27px;
  font-weight: 700;
  line-height: 127.7%;
}

.pagina .justify {
  text-align: justify;
}

.pagina .img-sobre {
  width: 100%;
  border-radius: 20px;
}

.pagina .col-title {
  color: #BE1823;
  font-size: 20px;
  font-weight: 700;
  padding-top: 15px;
}

.pagina .col-img {
  height: 45px;
  width: auto;
}

.pagina p.red_title {
  color: #BE1823;
  font-size: 20px;
  font-weight: 800;
}

.atendimento p {
  color: #575866;
  font-size: 16px;
  font-weight: 400;
  line-height: 117.7%;
  margin-bottom: 5px
}

.atendimento h3 {
  color: #1F2133;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 15px;
  margin-top: 30px;
}

.gray_line {
  clear: both;
  height: 2px;
  background-color: #D9D9D9;
  width: 100%;
  margin: 30px 0;
}


@media (max-width: 768px) {
  .col-img { margin-top: 30px; }
}

@media (max-width: 991px) {
  .atendimento h3 { margin-top: 30px; }
}



/* About Us Section
--------------------------------*/
#about {
  padding: 80px 0;
}

#about .content h2 {
  color: #000;
  font-size: 34px;
  font-weight: 900;
  line-height: 116.298%;
  margin-bottom: 30px;
}

#about .content h2 span {
  color: #3540F4;
}

#about .content p {
  color: #4B506C;
  font-size: 18px;
  font-weight: 400;
  line-height: 124%;
  margin-bottom: 30px;
}

#about .content a {
  border-radius: 8px;
  background: #D35400;
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  padding: 10px 30px;
  transition: all 0.5s;
}

#about .content a:hover,
#about .content a:active,
#about .content a:focus {
  background: #DE7F40;
}

#about .content img {
  max-width: 100%;
}

@media (max-width: 768px) {
  #about {
    padding: 0;
  }

  #about .content h2 {
    font-size: 25px;
    margin-top: 0 !important;
  }

  #about .px-5 {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }

  #about .content p {
    font-size: 14px;
  }

  #about .content a {
    display: block;
    text-align: center;
  }

  #about .content img {
    margin-top: 20px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #444444;
  font-size: 14px;
}

#footer .footer-top {
  padding: 60px 0 10px 0;
  background: #D9D9D9;
}

#footer .footer-top .footer-logo {
  max-width: 200px;
  display: block;
}

#footer .footer-top h4 {
  color: #FFF;
  font-size: 20px;
  font-weight: 700;
  line-height: 226.2%;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  float: right;
}

#footer .footer-top .footer-links ul li {
  padding: 10px;
  display: inline-block;
}

#footer .footer-top .footer-links ul a,
#footer .footer-top .footer-links ul li,
#footer .copyright a {
  transition: 0.3s;
  text-decoration: unset;
  color: #3540F4;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

#footer .footer-top .footer-links ul a:hover,
#footer .copyright a:hover {
  text-decoration: none;
  color: #0C047D;
}

#footer hr {
  border: 0.5px solid #878CAB !important;
}

#footer .copyright p {
  color: #4B506C;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}

#footer .text-right {
  text-align: right;
}

#footer .meios-pagamento {
  display: inline-block;
  line-height: 1;
  padding: 0;
  text-align: center;
}

#footer .meios-pagamento img {
  margin-bottom: -10px;
  max-height: 75px;
}

.p_t10{
  padding-top: 15px;
  display: block;
}

@media (max-width: 768px) {
  #footer .footer-top {
    padding: 30px 0 25px 0;
  }

  #footer .footer-top .footer-logo {
    max-width: 150px;
  }

  #footer .footer-top .footer-links ul {
    float: unset;
    margin-top: 25px;
  }

  #footer .footer-top .footer-links ul li {
    display: block;
  }

  #footer .copyright p {
    color: #4B506C;
    font-size: 12px;
    font-weight: 500;
    margin: 0;
    padding-left: 10px;
  }

  #footer .text-right {
    text-align: left;
  }

  #footer .copyright a {
    font-size: 12px;
  }

}


/* --- LOADER BTN ---- */
@-webkit-keyframes ld {
  0%   { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(180deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1); }
}
@-moz-keyframes ld {
  0%   { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(180deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1); }
}
@-o-keyframes ld {
  0%   { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(180deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1); }
}
@keyframes ld {
  0%   { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(180deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1); }
}

.m-progress {
  position: relative;
  opacity: .8;
  color: transparent !important;
  text-shadow: none !important;
}

.m-progress:hover,
.m-progress:active,
.m-progress:focus {
  cursor: default;
  color: transparent;
  outline: none !important;
  box-shadow: none;
}

.m-progress:before {
  content: '';
  display: inline-block;
  position: absolute;
  background: transparent;
  border: 1px solid #fff;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  box-sizing: border-box;
  top: 50%;
  left: 50%;
  margin-top: -12px;
  margin-left: -12px;
  width: 24px;
  height: 24px;
  -webkit-animation: ld 1s ease-in-out infinite;
  -moz-animation:    ld 1s ease-in-out infinite;
  -o-animation:      ld 1s ease-in-out infinite;
  animation:         ld 1s ease-in-out infinite;
}

.shine-me {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 9;
    width:100%;
    height: 100%;
    background-color:transparent;
    -webkit-animation-name: ShineAnimation;
    -webkit-animation-duration: 5s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: cubic-bezier(.12,.89,.98,.47);
}

@-webkit-keyframes ShineAnimation{
    from {
        background-repeat:no-repeat;
        background-image:-webkit-linear-gradient(
            top left,
            rgba(204, 224, 253, 0.0) 0%,
            rgba(204, 224, 253, 0.0) 45%,
            rgba(204, 224, 253, 0.5) 48%,
            rgba(204, 224, 253, 0.8) 50%,
            rgba(204, 224, 253, 0.5) 52%,
            rgba(204, 224, 253, 0.0) 57%,
            rgba(204, 224, 253, 0.0) 100%
        );
        background-position:-250px -250px;
        background-size: 600px 600px
    }
    to {
        background-repeat:no-repeat;
        background-position:400px 400px;
    }
}




/*--------------------------------------------------------------
# MOBILE
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Serviços
--------------------------------------------------------------*/
.servicos_mobile {
  padding: 25px;
}

.servicos_mobile p span {
  color: #6B6A6A;
  font-size: 16px;
  font-weight: 400;
}

.servicos_mobile h2 {
  color: #2D2F40;
  font-size: 30px;
  font-weight: 800;
  line-height: 117.7%;
  margin-bottom: 15px;
}

.servicos_mobile p {
  color: #6B6A6A;
  font-size: 18px;
  font-weight: 400;
  line-height: 117.7%;
}

.servicos-slider .icon-box {
  text-align: center;
  padding: 30px 40px;
  transition: all ease-in-out 0.3s;
  border-radius: 15px;
  background: #E6E7F2;
  margin-bottom: 30px;
}

.servicos-slider .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.servicos-slider .icon-box h4 {
  color: #1F2133;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 117.7%;
  width: 70%;
  margin: 0 auto;
  margin-bottom: 15px;
}

.servicos-slider .icon-box p {
  color: #575866;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 117.7%;
}

.swiper-pagination-bullet-active {
  background-color: #BE1823;
}

.diferenciais-slider .swiper-slide {
  margin-bottom: 30px;
  padding: 15px;
}

.sobre_mobile {
  padding: 0 20px;
}

.sobre_mobile img {
  width: 100%;
  border-radius: 10px;
}

.sobre_mobile h2 {
  color: #1F2133;
  font-size: 22px;
  font-weight: 800;
  line-height: 117.7%;
  margin-top: 25px;
}

.sobre_mobile p {
  color: #575866;
  text-align: justify;
  font-size: 16px;
  font-weight: 400;
  line-height: 126%;
}

.detalhes_mobile {
  padding: 0 10px;
}

.detalhes_mobile h2 {
  color: #0C047D;
  font-size: 24px;
  font-weight: 900;
  line-height: 116.298%;
  margin-top: 35px;
}

.detalhes_mobile p {
  color: #4B506C;
  font-size: 15px;
  font-weight: 500;
  line-height: normal;
  margin-top: 15px;
}

.box_planos {
  border-radius: 10px;
  background: #D9D9D9;
  padding: 30px;
  margin-top: 25px;
}

.box_planos .titulo {
  text-align: center;
  color: #0C047D;
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
}

.box_planos ul {
  padding: 0;
}

.box_planos li {
  list-style: none;
  border-bottom: 0.3px solid #bfbfbf;
  padding: 12px 15px;
  position: relative;
  color: #575866;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 117.7%;
}

.box_planos a {
  display: block;
  text-align: center;
  border-radius: 100px;
  background: #D35400;
  padding: 10px 20px;
  color: #FFF !important;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}


#icon_whats_float {
  position: fixed;
  bottom: 20px;
  right: 15px;
  z-index: 9999;
}

#icon_whats_float div {
  border-radius: 50%;
  background-color: forestgreen;
  padding: 15px;
}

#icon_whats_float img {
  width: 30px;
}

#icon_whats_float .wave1:before {
    content: '';
    display: block;
    width: 70px;
    height: 70px;
    background-color: #2df12d;
    position: fixed;
    bottom: calc(20px - 5px);
    right: calc(15px - 5px);
    z-index: -1;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    -ms-border-radius: 50%;
    -webkit-animation: ping 2.5s ease-in-out .7s infinite both;
    animation: ping 2.5s ease-in-out .7s infinite both
}

#icon_whats_float .wave2:before {
    content: '';
    display: block;
    width: 70px;
    height: 70px;
    background-color: #2df12d;
    position: fixed;
    bottom: calc(20px - 5px);
    right: calc(15px - 5px);
    z-index: -1;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    -ms-border-radius: 50%;
    -webkit-animation: ping_two 2.5s ease-in-out .7s infinite both;
    animation: ping_two 2.5s ease-in-out .7s infinite both
}

#icon_whats_float .wave3:before {
    content: '';
    display: block;
    width: 70px;
    height: 70px;
    background-color: #2df12d;
    position: fixed;
    bottom: calc(20px - 5px);
    right: calc(15px - 5px);
    z-index: -1;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    -ms-border-radius: 50%;
    -webkit-animation: ping_three 2.5s ease-in-out .7s infinite both;
    animation: ping_three 2.5s ease-in-out .7s infinite both
}

@-webkit-keyframes ping {
    0% {
        -webkit-transform: scale(0.4);
        transform: scale(0.4);
        opacity:.5
    }

    100% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 0
    }
}

@-webkit-keyframes ping_two {
    0% {
        -webkit-transform: scale(0.4);
        transform: scale(0.4);
        opacity:.5
    }

    100% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
        opacity: 0
    }
}

@-webkit-keyframes ping_three {
    0% {
        -webkit-transform: scale(0.4);
        transform: scale(0.4);
        opacity:.5
    }

    100% {
        -webkit-transform: scale(1.7);
        transform: scale(1.7);
        opacity: 0
    }
}

#popup .modal-body {
  background-image: url('../img/Pop-up1.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  margin: 5px;
  padding: 15% 5%;
}

#popup button {
  position: absolute;
  top: -15px;
  right: -15px;
  z-index: 1;
  background: #fff;
  border: unset;
  border-radius: 50%;
  padding: 2px 5px;
  cursor: pointer;
}

#popup h2 {
  color: #FFF;
  font-size: 42px;
  font-weight: 700;
  line-height: 116.298%; /* 40.704px */
}

#popup p {
  color: #FFF;
  font-size: 28px;
  font-weight: 100;
  line-height: 116.298%; /* 40.704px */
  padding: 20px 0;
}

#popup a {
  border-radius: 6px;
  background: #3540F4;
  padding: 10px 20px 8px;
  color: #fff;
  font-size: 20px;
  margin-right: 7px;
  transition: all 0.5s;
}

#popup a.btn-azul {
  background: #3540F4;
}

#popup a.btn-azul:hover,
#popup a.btn-azul:active,
#popup a.btn-azul:focus {
  background: #0C047D;
}

#popup a.btn-laranja {
  background: #D35400;
}

#popup a.btn-laranja:hover,
#popup a.btn-laranja:active,
#popup a.btn-laranja:focus {
  background: #DE7F40;
}

@media (max-width: 768px) {
  #popup .modal-body {
    padding: 15% 25% 15% 5%;
    background-position: center;
  }

  #popup h2 {
    font-size: 22px;
  }

  #popup p {
    font-size: 18px;
  }

  #popup a {
    font-size: 14px;
    display: block;
    width: fit-content;
    margin-bottom: 10px;
  }
}

@media (max-width: 768px) {
  #header.menu-claro {
    background: #FFF;
    border-bottom: 1px solid #ABABAB;
  }

  #header.menu-claro .mobile-nav-toggle {
    color: #0A0D1F;
    padding: 5px;
    border-radius: 50%;
    background: rgba(53, 64, 244, 0.20);
  }

  #header.menu-claro .navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 18px;
    right: 26px;
    background: #D35400;
    border-radius: 50%;
  }

  .resumo-box a {
    padding: 10px 20px;
    font-size: 16px;
  }

  .faq {
    padding-top: 20px;
  }

  .faq h2 {
    color: #000;
    font-size: 20px;
    font-weight: 800;
    padding-left: 15px;
  }
}