/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: 'Ruda', sans-serif;
  color: #444444;
}

a {
  color: #3498db;
  text-decoration: none;
}

b, strong {
    font-weight: 900;
}

a:hover {
  color: #5faee3;
  text-decoration: none;
}

.mobile { display: none; }

@media (max-width: 768px) {
  .desktop { display: none !important; }
  .mobile { display: block; }
}

/*--------------------------------------------------------------
# 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;
  }

  #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%;
  }
}

/*--------------------------------------------------------------
# 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 !important;
  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 #fff;
}

.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: 15px;
  right: 15px;
  background: #BE1823;
  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: 16px 20px;
  color: #384046;
  text-align: center;
  color: #03051A;
  margin: 0 10px;
  font-size: 12px;
  font-weight: 500;
  display: block;
}

.navbar-mobile .btn {
  border-radius: 5px;
  background: #BE1823;
  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 {
  border-radius: 5px;
  background: #FBDADC;
  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: 80px; }

.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) {
  .dropdown_perfil, .btn_login, .nav_botoes {
    display: none !important;
  }
}

.btn_comprar {
  border-radius: 5px;
  border: 1px solid #FFF;
  background: transparent;
  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: #ffffff3d;
  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;
  }

  .menu-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #ABABAB;
    z-index: 99;
  }

  .menu-mobile ul {
    display: flex;
  }

  .menu-mobile ul li a {
    color: #4B506C;
    font-size: 10px;
    font-weight: 600;
    display: block;
    text-align: center;
  }

  .menu-mobile ul li a:hover,
  .menu-mobile ul li a:active,
  .menu-mobile ul li a:focus,
  .menu-mobile ul li a.active {
    color: #0C047D;
    font-size: 10px;
    font-weight: 600;
    display: block;
    text-align: center;
  }

  .menu-mobile ul li a img {
    display: block;
    margin: 0 auto;
    max-height: 28px;
    padding-bottom: 5px;
  }

  .form .btn-azul,
  .form .btn-branco,
  .form .btn-orange {
    width: 100%;
    margin: 0 !important;
    margin-bottom: 10px !important;
    text-align: center;
  }
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}

.blue-title {
  color: #0C047D;
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 20px;
}

.blue-title a {
  color: #3540F4;
  font-size: 14px;
  font-weight: 400;
  display: block;
  float: right;
  padding-top: 10px;
}

.blue-title a img {
  height: 20px;
}

.subtitle-blue {
  color: #0C047D;
  font-size: 20px;
  font-weight: 900;
}

.subtitle-black {
  color: #0A0D1F;
  font-size: 21px;
  font-weight: 900;
}

.text-gray {
  color: #4B506C;
  font-size: 15px;
  font-weight: 500;
}

.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; }

.btn-laranja {
  border-radius: 5px;
  background: #D35400;
  border: 1px solid #D35400;
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  padding: 10px 20px;
  transition: all 0.5s;
  display: block;
  width: 100%;
}

.btn-laranja:hover, .btn-laranja:active, .btn-laranja:focus {
    background: #DE7F40;
}

@media (max-width: 768px) {
  section {
    padding: 40px 0;
  }

  .blue-title {
    font-size: 20px;
  }
}



/*--------------------------------------------------------------
# LOGIN
--------------------------------------------------------------*/
.login {
  background-image: url('../img/BackgroundIMG.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
}

.login-box {
  padding: 55px 110px;
  border-radius: 5px;
  background: #FFF;
  box-shadow: 0px 0px 30px 0px rgba(12, 4, 125, 0.20);
}

.login-box h2 {
  color: #0C047D;
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 15px;
}

.formulario label {
  color: #0A0D1F;
  font-size: 14px;
  font-weight: 700;
  display: block;
  margin-bottom: 5px;
}

.formulario input {
  border-radius: 6px;
  border: 1px solid #9C9C9C;
  background: #FFF;
  display: block;
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
}

.formulario .btn_blue {
  border: unset;
  border-radius: 6px;
  background: #3540F4;
  display: block;
  width: 100%;
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  padding: 12px;
  margin: 0;
  transition: all 0.5s;
}

.formulario .btn_blue:hover,
.formulario .btn_blue:active,
.formulario .btn_blue:focus {
  background: #0C047D;
  color: #FFF;
  text-decoration: unset;
}

.formulario a {
  color: #3540F4;
  font-size: 12px;
  font-weight: 400;
  text-align: center;
  margin: 15px 0;
  display: block;
  width: 100%;
}

.formulario a:hover,
.formulario a:active,
.formulario a:focus {
  text-decoration: underline;
}

.resposta {
  font-size: 16px !important;
  font-weight: 400 !important;
  color: #BE1823 !important;
  padding: 10px 0 !important;
  text-align: center !important;
}

.resposta_cupom {
  font-size: 16px !important;
  font-weight: 400 !important;
  color: #BE1823 !important;
  padding: 10px 10px !important;
  /*text-align: center;*/
}

.green-important {
  color: green !important;
}

@media (max-width: 768px) {
  .login-box {
    padding: 35px 30px;
  }

  .formulario a {
    margin: 0;
  }
}

/*--------------------------------------------------------------
# MENU INTERNO
--------------------------------------------------------------*/
.menu-interno {
  border: 1px solid #D9D9D9;
  background: #F0F1FA;
  padding: 10px 0;
  position: sticky;
  top: 100px;
  z-index: 999;
}

.menu-interno a {
  color: #3540F4;
  font-size: 16px;
  font-weight: 400;
  padding-top: 5px;
  padding-bottom: 5px;
}

.menu-interno a:hover,
.menu-interno a:active,
.menu-interno a:focus,
.menu-interno .nav-link.active {
  color: #3540F4 !important;
  border-bottom: 1px solid #3540F4 !important;
}

.btn_logout img {
  height: 30px;
  margin-right: 8px;
  margin-top: -2px;
}



/*--------------------------------------------------------------
# BLOCOS HOME
--------------------------------------------------------------*/
.box-home {
  border-radius: 6px;
  padding: 15px 30px;
  height: 100%;
  border-radius: 6px;
  border: 1px solid #9C9C9C;
  background: #FFF;
}

.box-home-gray {
  background: #DDDFF9;
  border: unset;
}

.box-home p {
  color: #0A0D1F;
  font-size: 20px;
  font-weight: 700;
}

.box-home p img {
  height: 25px;
  float: right;
}

.box-home p.badge-green {
  color: #27AE60;
  font-size: 10px;
  font-weight: 400;
  padding: 4px 10px;
  border-radius: 33px;
  background: rgba(39, 174, 96, 0.30);
  width: fit-content;
}

.box-home p.badge-red {
  color: #E2393B;
  font-size: 10px;
  font-weight: 400;
  padding: 4px 10px;
  border-radius: 33px;
  background: rgba(201, 45, 45, 0.3);
  width: fit-content;
}

.box-home p.badge-orange {
  color: #D35400;
  font-size: 10px;
  font-weight: 400;
  padding: 4px 10px;
  border-radius: 33px;
  background: rgba(190, 88, 29, 0.3);
  width: fit-content;
}

.box-home p.badge-yellow {
  color: #E2B93B;
  font-size: 10px;
  font-weight: 400;
  padding: 4px 10px;
  border-radius: 33px;
  background: #F8EDCE;
  width: fit-content;
}

.box-home h2 {
  color: #4B506C;
  font-size: 50px;
  font-weight: 900;
  margin-bottom: 30px;
}

.box-home h2.valor {
  color: #0C047D;
  font-size: 55px;
  font-weight: 900;
  margin-bottom: 30px;
}

.box-home h2.text {
  color: #4B506C;
  font-size: 24px;
  font-weight: 900;
  margin: 40px 0;
}

.box-home a {
  border-radius: 5px;
  border: 1px solid #3540F4;
  padding: 10px 20px;
  color: #3540F4;
  font-size: 16px;
  font-weight: 400;
  transition: all 0.5s;
  display: block;
  width: fit-content;
  float: left;
  height: 45px;
}

.box-home a:hover,
.box-home a:focus,
.box-home a:active {
  border: 1px solid #0C047D;
  color: #0C047D;
}

.box-home p.situacao_plano {
  border-radius: 33px;
  background: #F8EDCE;
  padding: 5px 15px;
  color: #E2B93B;
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
  width: fit-content;
}

.box-home a.btn-laranja {
  border-radius: 5px;
  background: #D35400;
  border: 1px solid #D35400;
  color: #FFF !important;
  font-size: 16px;
  font-weight: 400;
  padding: 10px 20px;
  transition: all 0.5s;
  display: block;
  width: fit-content;
  float: left;
  height: 45px;
  margin-right: 10px;
}

.btn-laranja:hover, .btn-laranja:active, .btn-laranja:focus {
    background: #DE7F40;
}


@media (max-width: 768px) {
  .box-home {
    padding: 15px;
    height: auto;
    margin-bottom: 20px;
  }

  .box-home p {
    font-size: 12px;
  }

  .box-home a, .box-home a.btn-laranja {
    font-size: 14px;
    padding: 8px 15px;
    height: 39px;
  }
}

/*--------------------------------------------------------------
# Frequently Asked Questions Section
--------------------------------------------------------------*/
.faq {
  padding-top: 0px;
}

.faq .accordion-item {
  border: 0;
  margin-bottom: -1px;
}

.faq h2 {
  color: #0A0D1F;
  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);
  color: #0A0D1F !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: rgba(53, 64, 244, 0.15);
  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;
  border-top: 0;
  border-left: 1px solid rgba(135, 140, 171, 0.63);
  border-right: 1px solid rgba(135, 140, 171, 0.63);
  border-bottom: 1px solid rgba(135, 140, 171, 0.63);
  background: rgba(53, 64, 244, 0.15);
  color: #606060;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}

.faq .accordion-button::after {
  background-image: url('../img/Mais_Azul.png') !important;
}

.faq .accordion-button:not(.collapsed)::after {
  background-image: url('../img/Menos_Azul.png') !important;
}

@media (max-width: 768px) {

  .faq .accordion-button {
    padding: 20px;
    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;
  }
}

.pagamentos {
  padding-top: 0;
}

.box-plano-gray {
  border-radius: 10px;
  border: 1px solid #DBDBE6;
  background: #DDDFF9;
  padding: 30px 35px 60px;
}

.box-plano-gray h3 {
  color: #0A0D1F;
  font-size: 21px;
  font-weight: 900;
  float: left;
}

.col-border {
  border-left: 1px solid #878CAB;
  border-right: 1px solid #878CAB;
}

.box-plano-gray .btn-alterar {
  background: transparent;
  border-radius: 5px;
  border: 1px solid #3540F4;
  padding: 10px 20px;
  color: #3540F4;
  font-size: 16px;
  font-weight: 400;
  transition: all 0.5s;
  display: block;
  width: fit-content;
  float: right;
  text-decoration: unset;
}

.box-plano-gray .btn-alterar:hover,
.box-plano-gray .btn-alterar:focus,
.box-plano-gray .btn-alterar:active {
  border: 1px solid #0C047D;
  color: #0C047D;
}

.box-plano-gray button {
  color: #4B506C;
  font-size: 14px;
  font-weight: 400;
  display: block;
  padding-top: 10px;
  text-decoration: underline;
  border: unset;
  padding: 0;
  background: unset;
}

.box-plano-gray button:hover,
.box-plano-gray button:active,
.box-plano-gray button:focus {
  color: #0C047D;
}

.box-plano-gray .txt-pagamento {
  color: #0C047D;
  font-size: 16px;
  font-weight: 800;
}

#modalPlano .modal-header {
  border: unset;
}

#modalPlano .modal-header h5 {
  color: #0A0D1F;
  font-size: 21px;
  font-weight: 900;
}

#modalPlano .modal-header button {
  background: unset;
  border: unset;
}

#modalPlano .modal-body .plano-box {
  border-radius: 5px;
  border: 1px solid #9C9C9C;
  background: rgba(217, 217, 217, 0.60);
  padding: 20px 30px;
  transition: all ease-in-out 0.3s;
  width: 100%;
}

#modalPlano .modal-body .plano-box img {
  max-width: 120px;
  float: left;
}

#modalPlano .modal-body .plano-box p {
  color: #4B506C;
  font-size: 12px;
  font-weight: 500;
  margin: 0;
}

#modalPlano .modal-body .plano-box p.valor {
  color: #0C047D;
  font-size: 26px;
  font-weight: 800;
  line-height: normal;
  margin: 0;
  padding-top: 5px;
}

#modalPlano .modal-footer {
  border: unset;
}

#modalPlano .modal-footer .btn-laranja {
  border-radius: 3px;
  background: #D35400;
  color: #FFF;
  font-size: 12px;
  font-weight: 400;
  padding: 13px 20px 10px;
  line-height: 1;
  transition: all 0.5s;
}

#modalPlano .modal-footer .btn-laranja:hover,
#modalPlano .modal-footer .btn-laranja:active,
#modalPlano .modal-footer .btn-laranja:focus {
  background: #DE7F40;
  color: #FFF;
}

#modalPlano .modal-footer .btn-cancelar {
  color: #3540F4;
  font-size: 14px;
  font-weight: 400;
  margin-left: 10px;
}

#modalPlano .modal-footer .btn-cancelar:hover,
#modalPlano .modal-footer .btn-cancelar:active,
#modalPlano .modal-footer .btn-cancelar:focus {
  color: #0C047D;
}


@media (max-width: 768px) {
  .box-plano-gray {
    border-radius: 6px;
    border: 1px solid #DBDBE6;
    background: #FFF;
    padding: 30px 20px;
  }

  .box-plano-gray h3 {
    color: #0C047D;
    font-size: 16px;
    font-weight: 900;
  }

  .col-border {
    border: unset;
    padding: 0 15px !important;
  }

  .pm-0 { padding: 15px !important; }

  .box-plano-gray a {
    display: block;
    float: unset;
    padding-top: 10px;
  }

  .btn-alterar.btn-mobile {
    width: 100%;
  }

  #modalPlano .modal-footer .btn-laranja,
  #modalPlano .modal-footer .btn-cancelar {
    display: block;
    text-align: center;
    width: 100%;
  }
}





.tabela-azul thead tr th {
  background: rgba(53, 64, 244, 0.20);
  color: #0C047D;
  font-size: 14px;
  font-weight: 800;
  padding: 10px 30px;
}

.tabela-azul tbody tr td {
  color: #606060;
  font-size: 12px;
  font-weight: 400;
  padding: 10px 30px;
}

.badge-green {
  border-radius: 100px;
  background: #27AE60;
  color: #FFF;
  font-size: 10px;
  font-weight: 400;
  padding: 4px 20px;
  width: fit-content;
}

.badge-red {
  border-radius: 100px;
  background: #E2393B;
  color: #FFF;
  font-size: 10px;
  font-weight: 400;
  padding: 4px 20px;
  width: fit-content;
}

.badge-orange {
  border-radius: 100px;
  background: #D35400;
  color: #FFF;
  font-size: 10px;
  font-weight: 400;
  padding: 4px 20px;
  width: fit-content;
}

@media (max-width: 768px) {
  .tabela-mobile {
    border-radius: 6px;
    background: #DBDBE6;
    margin: 10px 0;
    padding: 20px 15px;
  }

  .tabela-mobile p {
    margin: 0;
  }

  .tabela-mobile .plano {
    color: #0A0D1F;
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
  }

  .tabela-mobile .valor {
    color: #606060;
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
    padding-top: 5px;
  }

  .tabela-mobile .data {
    color: #606060;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
  }

  .tabela-mobile .badge span {
    font-size: 8px !important;
    line-height: 1;
  }

  .tabela-mobile .badge {
    padding: 0;
  }

  .tabela-mobile .seta {
    padding: 0;
    float: right;
    padding-top: 7px;
  }

  .tabela-mobile .pagamento-status {
    text-align: end;
  }
}

/*--------------------------------------------------------------
# PLANOS
--------------------------------------------------------------*/
.plano-box {
  border-radius: 6px;
  border: 1px solid rgba(75, 80, 108, 0.50);
  background: #FFF;
  padding: 30px;
  transition: all ease-in-out 0.3s;
  text-align: center;
  width: 100%;
}

.plano-box p {
  color: #0A0D1F;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 15px;
}

.plano-box p.valor {
  color: #0C047D;
  font-size: 34px;
  font-weight: 800;
  line-height: normal;
  margin: 25px 0;
}

.plano-box li {
  color: #4B506C;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}


@media (max-width: 991px) {
  .plano-box h4 {
    font-size: 21px;
    width: 100%;
  }

  .plano-box {
    padding: 30px 10px;
  }
}

.plano-selecionado-box {
  border-radius: 6px;
  border: 1px solid #9C9C9C;
  background: #FFF;
  padding: 30px;
  transition: all ease-in-out 0.3s;
  width: 100%;
}

.plano-selecionado-box img {
  max-width: 90%;
  float: left;
}

.plano-selecionado-box p {
  color: #0A0D1F;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 5px;
}

.plano-selecionado-box p.valor {
  color: #0C047D;
  font-size: 20px;
  font-weight: 800;
  line-height: normal;
  margin: 0;
}

.btn_orange {
  border: unset;
  border-radius: 6px;
  background: #D35400;
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  padding: 10px;
  display: block;
  width: 100%;
  text-align: center;
  transition: all 0.5s;
}

.btn_orange:hover,
.btn_orange:active,
.btn_orange:focus {
  background: #DE7F40;
  color: #FFF;
}



/*--------------------------------------------------------------
# PERFIL
--------------------------------------------------------------*/
.nav-perfil .nav-link {
  color: #4B506C;
  font-size: 20px;
  font-weight: 600;
  padding: 15px 30px 10px;
}

.nav-perfil .nav-link:focus,
.nav-perfil .nav-link:hover,
.nav-perfil .nav-link.active {
  color: #0C047D;
  font-size: 20px;
  font-weight: 600;
  padding: 15px 30px 10px;
  border-radius: 10px 10px 0px 0px;
  border-top: 1px solid #DBDBE6;
  border-right: 1px solid #DBDBE6;
  border-left: 1px solid #DBDBE6;
  background: #FFF;
}

.tab-content {
  padding: 40px;
  border-radius: 0px 10px 10px 10px;
  border: 1px solid #DBDBE6;
  border-top: unset;
  background: #FFF;
}

.formulario .btn_editar {
  border: unset;
  border-radius: 3px;
  background: rgba(211, 84, 0, 0.20);
  color: #D35400;
  font-size: 14px;
  font-weight: 400;
  width: fit-content;
  height: fit-content;
  padding: 5px 10px;
  transition: all 0.5s;
}

.formulario .btn_editar:hover {
  background: #D35400;
  color: #FFF;
  text-decoration: unset;
}

.formulario .btn_editar img {
  height: 20px;
  margin-right: 5px;
}

.formulario .btn_salvar {
  background: rgba(39, 174, 96, 0.30);
  color: #27ae60;
}

.formulario .btn_salvar:hover {
  background: #27ae60;
  color: #FFF;
  text-decoration: unset;
}

.btn_excluir {
  padding: 10px;
  color: #3540F4;
  font-size: 14px;
  font-weight: 400;
}

.btn_excluir:hover {
  color: #3540F4;
  text-decoration: underline;
}

.formulario .btn_cep {
  padding: 10px;
  color: #4B506C;
  font-size: 14px;
  font-weight: 400;
  text-align: left;
}

.formulario .btn_cep:hover {
  color: #4B506C;
  text-decoration: underline;
}

.formulario input[disabled],
.formulario select[disabled] {
  background: rgba(135, 140, 171, 0.35);
}

.cartao-box {
  border-radius: 5px;
  border: 1px solid #C7C7CC;
  background: #F0F1FA;
  padding: 25px 35px;
}

.cartao-box p {
  color: #1F2133;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 0;
  padding-top: 5px;
}

.cartao-box p.card_number {
  font-weight: 300;
  margin-bottom: 15px;
}

.cartao-box i {
  font-size: 55px;
  float: left;
  margin-right: 20px;
  line-height: 1.1;
}

.cartao-box button {
  padding: 10px 0;
  color: #3540F4;
  font-size: 12px;
  font-weight: 400;
  transition: all 0.5s;
  border: unset;
  background: unset;
}

.cartao-box button:hover,
.cartao-box button:active,
.cartao-box button:focus {
  color: #0C047D;
  text-decoration: underline;
}

.btn_novo_cartao {
  color: #3540F4;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.5s;
}

.btn_novo_cartao img {
  border-radius: 50%;
  background-color: rgba(53, 64, 244, 0.50);
  width: 50px;
  padding: 10px;
  margin-right: 10px;
}

.btn_novo_cartao:hover,
.btn_novo_cartao:active,
.btn_novo_cartao:focus {
  color: #0C047D;
  text-decoration: underline;
}


@media (max-width: 768px) {
  .formulario .btn_editar {
    display: block;
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #444444;
  font-size: 14px;
}

#footer .footer-top {
  padding: 20px 0;
  border-top: 0.5px solid #878CAB;
  background: #F0F1FA;
}

#footer .footer-top .footer-logo {
  max-width: 150px;
  display: block;
}


#footer p {
  color: #4B506C;
  font-size: 12px;
  font-weight: 500;
  text-align: right;
  margin: 0;
  padding-top: 5px;
}


@media (max-width: 768px) {
  #footer .footer-top .footer-logo img {
    display: none;
  }

  #footer .footer-top {
    padding: 30px 0;
  }

  #footer .footer-top h4 {
    text-align: center;
    margin-bottom: 0;
    margin-top: 15px;
  }

  #footer .footer-top .footer-links ul a, #footer .footer-top .footer-links ul li {
    display: block;
    text-align: center;
  }

  #footer .footer-top .footer-links {
    margin-bottom: 0;
  }

  #footer .footer-social-links {
    display: block;
  }

  .copy_footer { display: grid; }

  .copy_footer .meios-pagamento {
    width: 100%;
    order: -1;
    padding-bottom: 15px !important;
  }
}


/* --- 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;
    }
}



/*--------------------------------------------------------------
# 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: 35px 0;
  padding: 15px 25px;
  text-align: left;
}

.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: 12px;
  margin: 0;
}

.plano-box-valor .text-right {
  text-align: right;
}

.plano-lista {
  text-align: left;
}

.plano-lista p {
  color: #0A0D1F;
  font-size: 14px;
  font-weight: 700;
  padding-left: 15px;
}

.plano-lista .list-group .list-group-item {
  border: unset;
  color: #4B506C;
  font-size: 12px;
  font-weight: 500;
  padding-bottom: 20px;
}

.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: 12px;
  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: 15px 30px;
  color: #FFF;
  font-size: 16px;
  font-weight: 300;
  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;
}


/*--------------------------------------------------------------
# HELPDESK
--------------------------------------------------------------*/
.chamados-title {
  color: #0A0D1F;
  font-size: 22px;
  font-weight: 800;
}

.chamados-title p {
  color: #4B506C;
  font-size: 16px;
  font-weight: 400;
  padding-top: 5px;
}

.table-icons a {
  padding: 0 5px;
  cursor: pointer;
}

.table-icons img {
  height: 22px !important;
}

.tabela-azul .label {
  color: #FFF;
  font-size: 8px;
  font-weight: 400;
  padding: 3px 10px 2px;
  border-radius: 100px;
  width: fit-content;
}

.tabela-azul .label.bg-green {
  background: #27AE60;
}

.tabela-azul .label.bg-orange {
  background: #E2B93B;
}

.tabela-azul .label.bg-red {
  background: #E2393B;
}

.btn-novo-azul {
  color: #3540F4;
  font-size: 14px;
  font-weight: 400;
  float: right;
}

.btn-novo-azul img {
  width: 45px;
  padding: 10px;
  border-radius: 50%;
  background-color: #a6a6fe;
  margin-right: 5px;
}

.form label {
  color: #0A0D1F;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 5px;
  display: block;
}

.form input,
.form select,
.form textarea,
.file-preview {
  border-radius: 6px;
  border: 1px solid #9C9C9C !important;
  background: #FFF;
  display: block;
  width: 100%;
  padding: 10px 15px;
  margin-bottom: 15px;
}

.form input[disabled] {
  background: rgba(135, 140, 171, 0.35);
}

.file-caption-name {
  margin-bottom: 0 !important;
}

.btn-buscar {
  border-radius: 0px 5px 5px 0px;
  background: #3540F4;
  height: 46px;
  padding: 12px 20px 0;
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  transition: all 0.5s;
}

.pad_card {
  padding: 25px 35px;
}

.btn-azul {
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  border-radius: 5px;
  background: #3540F4;
  padding: 10px 20px;
  border: unset;
  transition: all 0.5s;
  height: 45px;
  display: inline-block;
  border: 1px solid #3540F4;
}

.btn-azul:hover {
  background: #0C047D;
  border: 1px solid #0C047D;
  color: #FFF;
  text-decoration: unset;
}

.btn-branco {
  color: #3540F4;
  font-size: 16px;
  font-weight: 400;
  border-radius: 5px;
  background: #FFF;
  padding: 10px 20px;
  border: 1px solid #3540F4;
  transition: all 0.5s;
  height: 45px;
  display: inline-block;
  cursor: pointer;
}

.btn-branco:hover {
  border: 1px solid #0C047D;
  color: #0C047D;
  text-decoration: unset;
}

.btn-orange {
  color: #D35400;
  font-size: 16px;
  font-weight: 400;
  border-radius: 5px;
  background: #FFF;
  padding: 10px 20px;
  border: 1px solid #D35400;
  transition: all 0.5s;
  height: 45px;
  display: inline-block;
  cursor: pointer;
}

.btn-orange:hover {
  border: 1px solid rgba(211, 84, 0, 0.71);
  color: rgba(211, 84, 0, 0.71);
  text-decoration: unset;
}

.blue-row {
  border-top: 1px solid #D3D3D3;
  border-bottom: 1px solid #D3D3D3;
  background: rgba(53, 64, 244, 0.20);
  padding: 15px 35px;
}

.blue-row p {
  color: #0A0D1F;
  font-size: 14px;
  font-weight: 800;
  margin: 0;
  float: left;
  margin-right: 45px;
}

.blue-row span {
  color: #0C047D;
}

.anexos {
  color: #0A0D1F;
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}

.anexos img {
  height: 40px;
  margin-left: 10px;
  background: #F0F1FA;
  padding: 3px;
}

.discussion {
  padding: 0 40px;
  list-style: none;
  margin: 0;
}

.discussion li {
  overflow: hidden;
  padding: 5px 5px 10px;
}

.discussion .messages {
  border-bottom-right-radius: 0;
  width: 60%;
  padding: 2% 5%;
  font-size: 16px;
  font-weight: 800;
}

.discussion .messages .time {
  font-size: 12px;
  font-weight: 500;
}

.discussion .self .messages {
  margin-right: 10px;
  margin-left: auto;
  background: #3540F4;
  color: #ffffff;
}

.discussion .self .messages:after {
  -moz-border-bottom-colors: none;
  -moz-border-left-colors: none;
  -moz-border-right-colors: none;
  -moz-border-top-colors: none;
  border-color: #3540f4 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #3540f4;
  border-image: none;
  border-style: solid;
  border-width: 5px;
  top: 0;
  content: "";
  height: 0;
  right: -9px;
  position: absolute;
  width: 0;
}

.discussion .other .messages {
  margin-right: auto;
  margin-left: 10px;
  background: rgba(53, 64, 244, 0.20);
  color: #606060;
}

.discussion .other .messages:after {
  -moz-border-bottom-colors: none;
  -moz-border-left-colors: none;
  -moz-border-right-colors: none;
  -moz-border-top-colors: none;
  border-color: rgba(53, 64, 244, 0.20)  rgba(53, 64, 244, 0.20) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) ;
  border-image: none;
  border-style: solid;
  border-width: 5px;
  top: 0;
  content: "";
  height: 0;
  left: -10px;
  position: absolute;
  width: 0;
}

.messages {
  border-radius: 2px 2px 2px 2px;
  padding: 10px;
  position: relative;
  margin-top: 10px;
}


@media (max-width: 768px) {
  .chamados-title {
    font-size: 16px;
  }

  .chamados-title p {
    font-size: 12px;
    padding-top: 10px;
    margin: 0;
  }

  .tabela-mobile-chamados {
    border-radius: 6px;
    background: #DBDBE6;
    margin: 10px 0;
    padding: 15px 10px;
  }

  .tabela-mobile-chamados p {
    margin: 0;
  }

  .tabela-mobile-chamados p.chamado {
    color: #0A0D1F;
    font-size: 12px;
    font-weight: 800;
  }

  .tabela-mobile-chamados p.tipo {
    color: #606060;
    font-size: 12px;
    font-weight: 400;
  }

  .tabela-mobile-chamados .data {
    color: #606060;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
  }

  .tabela-mobile-chamados .badge span {
    font-size: 8px !important;
    line-height: 1;
  }

  .tabela-mobile-chamados .badge {
    padding: 0;
  }

  .tabela-mobile-chamados .seta {
    padding: 0;
    float: right;
  }

  .card-m-none .card-body,
  .card-m-none .pad_card,
  .card-m-none .p-m-0 {
    padding: 0;
  }

  .card-m-none {
    border: unset;
  }

  .discussion {
    padding: 0 10px;
  }

  .discussion .messages {
    width: 80%;
  }
}



/*--------------------------------------------------------------
# PAGAMENTO
--------------------------------------------------------------*/
.txt-cartao {
  color: #0A0D1F;
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1px solid #8E93B0;
  padding-bottom: 3px;
}

.txt-cartao span {
  border-bottom: 2px solid #0C047D;
  padding-bottom: 3px;
}

.box-title {
  color: #0A0D1F;
  font-size: 16px;
  font-weight: 800;
}

.resumo-box {
  padding: 30px;
  transition: all ease-in-out 0.3s;
  width: 100%;
  border-radius: 6px;
  border: 1px solid #9C9C9C;
  background: #F0F1FA;
  margin-bottom: 10px;
}

.resumo-box img {
  max-width: 120px;
}

.resumo-box h4 {
  color: #0A0D1F;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 5px;
}

.resumo-box p {
  color: #4B506C;
  font-size: 14px;
  font-weight: 500;
}

.resumo-box p.valor {
  color: #0C047D;
  font-size: 21px;
  font-weight: 800;
  line-height: normal;
  margin: 0;
}

.btn_outline {
  border-radius: 5px;
  border: 1px solid #3540F4;
  color: #3540F4;
  font-size: 16px;
  font-weight: 400;
  height: 46px;
  width: 100%;
}

.subtotal-box {
  padding: 5px 35px;
}

.subtotal-box p {
  color: #0A0D1F;
  font-size: 14px;
  font-weight: 700;
  line-height: 121.864%;
  margin-bottom: 5px;
}

.subtotal-box .text-right {
  text-align: right;
  color: #4B506C;
  font-size: 14px;
  font-weight: 500;
  line-height: 121.864%;
  margin-bottom: 5px;
}

.subtotal-box .text-right-total {
  text-align: right;
  color: #0C047D;
  font-size: 21px;
  font-weight: 700;
  line-height: 121.864%;
}

.box_cartoes {
  border-radius: 5px;
  border: 1px solid #959595;
  background: #FFF;
  padding: 20px;
  position: relative;
  margin-bottom: 15px !important;
}

.box_cartoes p {
  color: #1F2133;
  font-size: 16px;
  font-weight: 400;
  margin: 0;
}

.box_cartoes p img {
  height: 20px;
}

.box_cartoes input[type="radio"] {
  position: absolute;
  top: 23px;
  right: 20px;
  width: auto;
}

.box_cartoes p.checked {
  color: #0C047D;
  font-weight: 700;
}

.formulario-cupom label {
  color: #0A0D1F;
  font-size: 14px;
  font-weight: 700;
}

.formulario-cupom input {
  border-radius: 6px;
  border: 1px solid #9C9C9C;
  background: #FFF;
  display: block;
  width: 100%;
  padding: 15px;
}

@media (max-width: 768px) {
  .planos .titulo p {
    font-size: 12px;
  }

  .planos .titulo h2 {
    font-size: 20px;
  }

  .plano-box {
    border-radius: unset;
    border: unset;
    background: #FFF;
    padding: 0 10px;
  }

  .plano-box .modalidade-title {
    font-size: 12px;
    text-align: left;
    margin-bottom: 8px;
  }

  .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);
    border: unset;
    margin: 0;
  }

  .subtotal-box {
    padding: 5px 15px;
  }
}



#modalCartao .modal-header {
  border: unset;
  padding: 35px 40px 0;
}

#modalCartao .modal-header h5 {
  color: #0C047D;
  font-size: 21px;
  font-weight: 900;
}

#modalCartao .modal-header button {
  background: unset;
  border: unset;
  position: absolute;
  top: 15px;
  right: 20px;
}


#modalCartao .modal-body  {
  padding: 20px 40px 35px 40px;
}

#modalCartao .btn-laranja {
  border-radius: 3px;
  background: #D35400;
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  padding: 13px 20px 10px;
  line-height: 1;
  transition: all 0.5s;
  display: block;
  text-align: center;
  border: unset;
  width: 100%;
}

#modalCartao .modal-footer .btn-laranja:hover,
#modalCartao .modal-footer .btn-laranja:active,
#modalCartao .modal-footer .btn-laranja:focus {
  background: #DE7F40;
  color: #FFF;
}

.cliente-title {
  color: #0A0D1F;
  font-size: 16px;
  font-weight: 800;
}

.cliente-title span {
  color: #0C047D;
}

.conta_links {
  padding: 0;
  margin: 0;
  list-style: none;
}

.conta_links li {
  border-radius: 6px;
  background: #DBDBE6;
  padding: 10px 15px;
  margin-bottom: 5px;
}

.conta_links li a {
  color: #4B506C;
  font-size: 16px;
  font-weight: 600;
}

.conta_links li a img {
  max-height: 22px;
  padding-right: 10px;
  vertical-align: text-bottom;
}

.conta_links li a img.seta {
  float: right;
}

.alert .close {
  background: transparent;
  border: unset;
}

/*--------------------------------------------------------------
# VISUALIZAR SENHA
--------------------------------------------------------------*/
.password-wrapper {
  position: relative;
  width: 100%;
}

#senha {
  width: 100%;
  padding-right: 30px; /* Adiciona espaço para o ícone */
}

#senha2 {
  width: 100%;
  padding-right: 30px; /* Adiciona espaço para o ícone */
}

.eye-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 18px; /* Tamanho do ícone */
}

.eye-icon i {
  color: #555; /* Cor do ícone */
}


/*--------------------------------------------------------------
# WHATSSAP
--------------------------------------------------------------*/

#icon_whats_float {
  position: fixed;
  bottom: 20px;
  right: 15px;
  z-index: 9999;
}

#icon_whats_float div {
  border-radius: 50%;
  background-color: forestgreen;
  padding: 15px;
  color: #fff;
}

#icon_whats_float img {
  width: 30px;
}

#icon_whats_float .wave1:before {
    content: '';
    display: block;
    width: 70px;
    height: 70px;
    background-color: forestgreen;
    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: forestgreen;
    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: forestgreen;
    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
}