@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,300;1,500&display=swap");

* {
    margin: 0;
    padding: 0;
    font-family: Poppins, Arial, Helvetica, sans-serif;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none
}

.dash-logo {
    max-width: 224px
}

.login-form {
    width: 400px !important;
    max-width: 400px !important
}

.login body,
.recovery body {
    background-color: #f3f4f6;
    font-family: Arial, sans-serif;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100vh;
    margin: 0
}

.login .container,
.recovery .container {
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100vh;
    overflow: hidden
}

.login .left-section,
.recovery .left-section,
.registro .container .left-section {
    display: none;
    width: auto;
    background-color: #074246;
    position: relative;
    overflow: hidden;
    /* se estiver usando background-image na própria section */
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

.login .bg-image,
.recovery .bg-image,
.registro .container .left-section .bg-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease;
}

/* garantir altura da coluna esquerda para preencher a viewport em desktop */
@media (min-width: 1024px) {
  .login .left-section,
  .recovery .left-section,
  .registro .container .left-section {
    height: 100vh;
    display: block;
  }
}

/* Responsividade para diferentes tamanhos de monitor */

/* Mobile Portrait - até 480px */
@media (max-width: 480px) {
  .login .bg-image,
  .recovery .bg-image,
  .registro .container .left-section .bg-image {
    object-fit: cover;
    object-position: center top;
  }
}

/* Mobile Landscape e Tablets Portrait - 481px a 768px */
@media (min-width: 481px) and (max-width: 768px) {
  .login .bg-image,
  .recovery .bg-image,
  .registro .container .left-section .bg-image {
    object-fit: cover;
    object-position: center;
  }
}

/* Tablets Landscape - 769px a 1023px */
@media (min-width: 769px) and (max-width: 1023px) {
  .login .left-section,
  .recovery .left-section,
  .registro .container .left-section {
    display: block;
    height: 40vh;
  }
  
  .login .bg-image,
  .recovery .bg-image,
  .registro .container .left-section .bg-image {
    object-fit: cover;
    object-position: center;
  }
}

/* Desktop pequeno - 1024px a 1366px */
@media (min-width: 1024px) and (max-width: 1366px) {
  .login .bg-image,
  .recovery .bg-image,
  .registro .container .left-section .bg-image {
    object-fit: cover;
    object-position: center;
  }
}

/* Desktop médio - 1367px a 1920px */
@media (min-width: 1367px) and (max-width: 1920px) {
  .login .bg-image,
  .recovery .bg-image,
  .registro .container .left-section .bg-image {
    object-fit: cover;
    object-position: center;
  }
}

/* Monitores 2K - 1921px a 2560px */
@media (min-width: 1921px) and (max-width: 2560px) {
  .login .bg-image,
  .recovery .bg-image,
  .registro .container .left-section .bg-image {
    object-fit: cover;
    object-position: center;
    transform: scale(1.05);
  }
}

/* Monitores 4K+ - acima de 2561px */
@media (min-width: 2561px) {
  .login .bg-image,
  .recovery .bg-image,
  .registro .container .left-section .bg-image {
    object-fit: cover;
    object-position: center;
    transform: scale(1.1);
  }
}

/* Monitores ultrawide */
@media (min-aspect-ratio: 21/9) {
  .login .bg-image,
  .recovery .bg-image,
  .registro .container .left-section .bg-image {
    object-fit: cover;
    object-position: center;
  }
}

.login .right-section,
.recovery .right-section,
.registro .container .right-section {
    width: 100%;
    max-width: 480px;
    margin: auto;
    padding: 20px;
    background: #fff;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center
}

.login .form-container,
.recovery .form-container {
    width: 50%
}

.login .logo img,
.recovery .logo img {
    width: 196px
}

.login .title,
.recovery .title {
    font-size: 24px;
    font-weight: bold;
    margin-top: 20px
}

.login .input-group,
.recovery .input-group {
    margin-top: 15px
}

.login .input-group label,
.recovery .input-group label {
    display: block;
    font-weight: 400;
    color: #074246
}

.login .input-group input,
.login .input-group select,
.recovery .input-group input,
.recovery .input-group select {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #e5e7eb;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out
}

.login .input-group input:focus,
.login .input-group select:focus,
.recovery .input-group input:focus,
.recovery .input-group select:focus {
    border-color: #074246;
    background-color: white;
    outline: none
}

.login .text-right,
.recovery .text-right {
    text-align: right;
    margin-top: 10px
}

.login .forgot-password,
.recovery .forgot-password {
    font-size: 14px;
    color: #074246;
    text-decoration: none
}

.login .forgot-password:hover,
.recovery .forgot-password:hover {
    color: #074246
}

.login .btn,
.recovery .btn {
    width: 100%;
    background-color: #074246;
    color: white;
    font-weight: 500;
    border: none;
    padding: 10px;
    margin-top: 20px;
    border-radius: 5px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out
}

.login .btn:hover,
.recovery .btn:hover {
    opacity: 0.7
}

.login .btn.waiting,
.recovery .btn.waiting {
    cursor: default;
    pointer-events: none;
    opacity: 0.6
}

.login hr,
.recovery hr {
    margin: 20px 0;
    border: 1px solid #d1d5db
}

.login .register,
.recovery .register {
    text-align: center
}

.login .register .register-link,
.recovery .register .register-link {
    color: #074246;
    font-weight: bold;
    text-decoration: none
}

.login .register .register-link:hover,
.recovery .register .register-link:hover {
    opacity: 0.7
}

.login .footer,
.recovery .footer {
    text-align: center;
    font-size: 12px;
    color: #6b7280;
    margin-top: 20px
}

.registro .container {
    display: -ms-flexbox;
    display: flex;
    height: 100vh
}

.registro .container .left-section {
    width: 50%;
    background: #074246;
    position: relative;
    overflow: hidden;
}

.registro .container .left-section .bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease;
}

.registro .container .right-section {
    width: 50%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    background: #fff
}

.registro .container .right-section .form-container {
    width: 100%;
    max-width: 612px;
    text-align: center
}

.registro .container .right-section .form-container .logo {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.registro .container .right-section .form-container .logo img {
    width: 180px
}

.registro .container .right-section .form-container .title {
    font-size: 24px;
    font-weight: bold;
    margin: 20px 0;
    text-align: left
}

.registro .container .right-section .form-container form {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column
}

.registro .container .right-section .form-container form>span {
    display: -ms-flexbox;
    display: flex;
    width: calc(100% - 8px);
    margin-bottom: 16px
}

.registro .container .right-section .form-container form .input-group {
    text-align: left;
    width: 50%
}

.registro .container .right-section .form-container form .input-group:first-of-type {
    margin-right: 16px
}

.registro .container .right-section .form-container form .input-group label {
    display: block;
    font-size: 14px;
    color: #333;
    margin-bottom: 5px
}

.registro .container .right-section .form-container form .input-group input,
.registro .container .right-section .form-container form .input-group select {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 14px
}

.registro .container .right-section .form-container form .input-group input:focus,
.registro .container .right-section .form-container form .input-group select:focus {
    border-color: #074246;
    outline: none
}

.registro .container .right-section .form-container form .input-group select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%0A%3Csvg width='16' height='10' viewBox='0 0 16 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.233847 0.692482C-0.0779488 1.01639 -0.0779488 1.54089 0.233847 1.86397L6.8447 8.71397C7.46909 9.36179 8.48202 9.36179 9.10641 8.71397L15.766 1.81436C16.0746 1.49376 16.0786 0.975812 15.774 0.651076C15.463 0.319716 14.9506 0.315699 14.6348 0.642091L8.54119 6.95694C8.22859 7.28084 7.72252 7.28084 7.40992 6.95694L1.3643 0.692482C1.05251 0.36857 0.546441 0.36857 0.233847 0.692482Z' fill='black'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-size: 12px;
    background-position: 94% 16px
}

.registro .container .right-section .form-container form .btn {
    width: 100%;
    background: #074246;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    padding: 12px;
    border-radius: 5px;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border: none
}

.registro .container .right-section .form-container form .btn:hover {
    background: #021618
}

.registro .container .right-section .form-container hr {
    margin: 20px 0;
    border: none;
    height: 1px;
    background: #ccc
}

.registro .container .right-section .form-container .register {
    font-size: 14px;
    color: #333
}

.registro .container .right-section .form-container .register .register-link {
    color: #074246;
    font-weight: bold;
    text-decoration: none
}

.registro .container .right-section .form-container .register .register-link:hover {
    text-decoration: underline
}

.registro .container .right-section .form-container .footer {
    font-size: 12px;
    color: #999;
    margin-top: 20px
}

.home-empresas .top {
    position: relative;
    width: 100%;
    height: 730px;
    background-image: url("https://antifraudebrasil.com/empresa/img/bg-empresa.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-bottom: 144px
}

.home-empresas .top:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2)
}

.home-empresas .header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    position: relative;
    z-index: 2
}

.home-empresas .header .content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    padding: 32px 0
}

.home-empresas .header .content>h1 img {
    position: relative;
    top: 2px;
    width: 184px;
    height: auto
}

.home-empresas .header .content .menu span {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.home-empresas .header .content .menu span a {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    font-size: 15px;
    color: #fff;
    text-decoration: none;
    margin: 0 32px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s
}

.home-empresas .header .content .menu span a:after {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: -1px;
    opacity: 0;
    background: rgba(255, 255, 255, 0.4);
    -webkit-transition: all 0.4s;
    transition: all 0.4s
}

.home-empresas .header .content .menu span a:hover:after {
    opacity: 1
}

.home-empresas .header .content .menu span a img {
    margin-right: 6px
}

.home-empresas .header .content>a {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    width: 184px;
    height: 56px;
    font-weight: 400;
    padding: 0;
    font-size: 15px;
    color: #fff;
    background: #2ac3cd;
    text-decoration: none;
    color: #fff;
    border-radius: 4px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s
}

.home-empresas .header .content>a img {
    margin-right: 8px
}

.home-empresas .header .content>a:hover {
    opacity: 0.8
}

.home-empresas .topContent {
    position: relative;
    z-index: 2;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    max-width: 1200px;
    height: 630px;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 auto
}

.home-empresas .topContent .content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 430px
}

.home-empresas .topContent .content h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 52px;
    color: #fff
}

.home-empresas .topContent .content h2 span {
    color: #2ac3cd
}

.home-empresas .topContent .content p {
    font-size: 16px;
    color: #fff;
    line-height: 32px;
    padding: 12px 0
}

.home-empresas .topContent .content a {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    width: 264px;
    height: 56px;
    font-weight: 400;
    padding: 0;
    font-size: 15px;
    color: #fff;
    background: #2ac3cd;
    text-decoration: none;
    color: #fff;
    margin-top: 8px;
    border-radius: 4px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s
}

.home-empresas .topContent .content a:hover {
    opacity: 0.8
}

.home-empresas .how {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 72px
}

.home-empresas .how>p {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    opacity: 0.7;
    padding-bottom: 12px
}

.home-empresas .how>strong {
    font-size: 24px;
    font-weight: 700;
    color: #0a0a18;
    opacity: 0.8;
    text-align: center;
    max-width: 822px
}

.home-empresas .how>div {
    display: -ms-flexbox;
    display: flex;
    margin-top: 40px
}

.home-empresas .how>div>div {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-direction: column;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.1);
    width: 960px;
    padding: 30px 40px;
    border-radius: 4px
}

.home-empresas .how>div>div>p {
    font-size: 24px;
    font-weight: 700;
    color: #484851;
    text-align: center
}

.home-empresas .how>div>div>span {
    font-size: 16px;
    line-height: 24px;
    width: 360px;
    color: #000;
    max-width: 400px;
    text-align: center;
    padding: 12px 0 16px
}

.home-empresas .how>div>div>div {
    padding-bottom: 32px
}

.home-empresas .how>div>div>div>span {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 12px
}

.home-empresas .how>div>div>div>span:first-of-type {
    padding-top: 0
}

.home-empresas .how>div>div>div>span svg {
    width: 16px;
    height: 16px;
    margin-right: 8px
}

.home-empresas .how>div>div>div>span svg path {
    stroke: #2ac3cd
}

.home-empresas .how>div>div>a {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    width: 264px;
    height: 56px;
    font-weight: 400;
    padding: 0;
    font-size: 15px;
    color: #fff;
    background: #2ac3cd;
    text-decoration: none;
    color: #fff;
    border-radius: 4px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    margin-bottom: -56px
}

.home-empresas .how>div>div>a img {
    margin-right: 8px
}

.home-empresas .how>div>div>a:hover {
    opacity: 0.8
}

.home-empresas .footerStamps {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    max-width: 800px;
    margin: 48px auto 72px;
    justify-content: space-between;
    align-items: center;
    height: 130px;
    padding: 0 54px;
    border: 1px solid #eee;
    margin-top: 80px
}

.home-empresas .footerStamps img {
    max-width: 144px;
    height: auto
}

.home-empresas .dash {
    width: 100%;
    height: 480px;
    background: #FAFBFB;
    margin-top: 144px
}

.home-empresas .dash .content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    max-width: 1160px;
    margin: 0 auto
}

.home-empresas .dash .content img {
    position: relative;
    width: 620px;
    top: -140px
}

.home-empresas .dash .content .texts {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 412px
}

.home-empresas .dash .content .texts strong {
    font-size: 32px;
    font-weight: 600;
    color: #484851;
    margin-top: -24px
}

.home-empresas .dash .content .texts p {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
    opacity: 0.7;
    padding: 16px 0
}

.home-empresas .dash .content .texts>a {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    width: 184px;
    height: 56px;
    font-weight: 400;
    padding: 0;
    font-size: 15px;
    color: #fff;
    background: #2ac3cd;
    text-decoration: none;
    color: #fff;
    border-radius: 4px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s
}

.home-empresas .dash .content .texts>a img {
    margin-right: 8px
}

.home-empresas .dash .content .texts>a:hover {
    opacity: 0.8
}

.home-empresas .segmentos {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 104px
}

.home-empresas .segmentos>h2 {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    opacity: 0.8;
    text-align: center
}

.home-empresas .segmentos>p {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    opacity: 0.6;
    text-align: center;
    padding-top: 6px
}

.home-empresas .segmentos>div {
    display: -ms-flexbox;
    display: flex;
    margin-top: 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    max-width: 800px
}

.home-empresas .segmentos>div span {
    width: 25%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 48px
}

.home-empresas .segmentos>div span i {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    width: 64px;
    height: 64px;
    border-radius: 100%;
    background: #0b3c40
}

.home-empresas .segmentos>div span i svg {
    width: 32px
}

.home-empresas .segmentos>div span p {
    font-size: 15px;
    padding-top: 6px
}

.home-empresas .segmentos>a {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    width: 264px;
    height: 56px;
    font-weight: 500;
    padding: 0;
    font-size: 15px;
    color: #fff;
    background: #2ac3cd;
    text-decoration: none;
    color: #fff;
    border-radius: 4px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    margin-top: 56px
}

.home-empresas .segmentos>a img {
    margin-right: 8px
}

.home-empresas .segmentos>a:hover {
    opacity: 0.8
}

.footer-hpe {
    width: 100%;
    background: #074246
}

.footer-hpe>div {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    padding: 40px 0 64px 0;
    margin: 148px auto 0
}

.footer-hpe>div p {
    font-size: 12px;
    color: #fff;
    opacity: 0.8;
    padding-top: 12px
}

.como-funciona {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    margin: 120px auto 48px;
    font-family: 'Poppins', sans-serif;
    color: #333;
    width: 100%;
    max-width: 1200px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-direction: column;
    flex-direction: column
}

.como-funciona h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 52px;
    color: #333
}

.como-funciona h2 span {
    color: #2ac3cd
}

.como-funciona ol {
    margin-top: 32px;
    margin-bottom: 16px
}

.como-funciona ol li {
    margin-bottom: 10px;
    line-height: 1.4
}

.como-funciona p {
    font-weight: bold;
    color: #074246;
    margin: 0
}

.como-funciona a {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    width: 264px;
    height: 56px;
    font-weight: 500;
    padding: 0;
    font-size: 15px;
    color: #fff;
    background: #2ac3cd;
    text-decoration: none;
    color: #fff;
    border-radius: 4px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    margin-top: 56px
}

.como-funciona a img {
    margin-right: 8px
}

.como-funciona a:hover {
    opacity: 0.8
}

.empresa-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 72px;
    background-color: #fff;
    border-bottom: 1px solid #eee;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999999
}

.empresa-header>div {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 80px;
    max-width: 1200px
}

.empresa-header>div h1 img {
    position: relative;
    top: 4px;
    width: 164px;
    height: auto;
    opacity: 0.9
}

.empresa-header>div .header-menu a {
    font-size: 15px;
    color: #000;
    opacity: 0.7;
    text-decoration: none;
    margin: 0 16px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s
}

.empresa-header>div .header-menu a:hover {
    opacity: 1
}

.empresa-header>div .options {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center
}

.empresa-header>div .options a {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 40px;
    padding: 0 32px;
    border-radius: 20px;
    background: #f5f5f5;
    font-size: 15px;
    font-weight: 400;
    color: #000;
    text-decoration: none;
    -webkit-transition: all 0.4s;
    transition: all 0.4s
}

.empresa-header>div .options a:hover {
    opacity: 0.7
}

.empresa-header>div .options a.black {
    background: #0b3c40;
    color: #fff;
    margin-left: 16px
}

.topSection {
    width: 100%;
    height: 624px;
    background-color: #EBF8FD;
    background-image: url("https://antifraudebrasil.com/empresa/img/dash-v.png");
    background-position: center 264px;
    background-repeat: no-repeat;
    background-attachment: fixed;
    margin-top: 72px
}

.topSection>div {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 64px
}

.topSection>div h2 {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    opacity: 0.8;
    text-align: center
}

.topSection>div p {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    opacity: 0.6;
    text-align: center;
    padding-top: 6px
}

.solutionsTitle {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column
}

.solutionsTitle>h2 {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    opacity: 0.8;
    text-align: center;
    padding-top: 104px
}

.solutionsTitle>p {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    opacity: 0.6;
    text-align: center;
    padding-top: 6px
}

.solutionsSection {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 100%;
    max-width: 1200px;
    margin: 32px auto 0
}

.solutionsSection .card {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 32%
}

.solutionsSection .card>img {
    width: 100%;
    height: auto;
    border-radius: 4px
}

.solutionsSection .card>strong {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-top: 12px
}

.solutionsSection .card>div {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column
}

.solutionsSection .card>div>span {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 12px
}

.solutionsSection .card>div>span i {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    width: 32px;
    height: 32px;
    border-radius: 2px;
    background: #ebf8fd;
    margin-right: 12px
}

.solutionsSection .card>div>span p {
    font-size: 15px;
    color: #000;
    width: calc(100% - 48px)
}

.ourPlans {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    background: #EBF8FD;
    padding: 96px 0 112px;
    margin: 0 auto
}

.ourPlans .content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    max-width: 1024px;
    margin: 0 auto
}

.ourPlans .content>h2 {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    opacity: 0.8;
    text-align: center
}

.ourPlans .content>p {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    opacity: 0.6;
    text-align: center;
    padding-top: 6px
}

.ourPlans .content .plansOptions {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 100%;
    margin-top: 48px
}

.ourPlans .content .plansOptions .planOption {
    background: #fff;
    border-radius: 6px;
    width: 32%;
    padding: 24px;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.04);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.04)
}

.ourPlans .content .plansOptions .planOption .title {
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee
}

.ourPlans .content .plansOptions .planOption .title>div {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column
}

.ourPlans .content .plansOptions .planOption .title>div>strong {
    font-size: 18px;
    font-weight: 500;
    opacity: 0.7;
    color: #000
}

.ourPlans .content .plansOptions .planOption .title>div>p {
    font-size: 12px;
    font-weight: 500;
    opacity: 0.6
}

.ourPlans .content .plansOptions .planOption .title>span {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    background: #F0F5FE;
    font-size: 17px;
    font-weight: 500;
    color: #333;
    padding: 8px 12px;
    border-radius: 6px
}

.ourPlans .content .plansOptions .planOption .benefits {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 12px
}

.ourPlans .content .plansOptions .planOption .benefits>span {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 12px
}

.ourPlans .content .plansOptions .planOption .benefits>span i {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    width: 18px;
    height: 18px;
    border-radius: 2px;
    background: #0b3c40;
    border-radius: 100%;
    margin-right: 8px
}

.ourPlans .content .plansOptions .planOption .benefits>span i svg {
    width: 9px;
    height: auto
}

.ourPlans .content .plansOptions .planOption .benefits>span p {
    font-size: 15px;
    color: #000;
    width: calc(100% - 24px);
    line-height: 20px
}

.ourPlans .content .plansOptions .planOption a {
    width: 100%;
    height: 48px;
    background: #4ACBD3;
    border-radius: 4px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    margin-top: 24px;
    margin-bottom: 8px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s
}

.ourPlans .content .plansOptions .planOption a:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
}

.ourPlans .content .plansOptions .planOption.black {
    background: #0b3c40
}

.ourPlans .content .plansOptions .planOption.black .title>div strong {
    color: #fff;
    opacity: 0.98
}

.ourPlans .content .plansOptions .planOption.black .title>div p {
    color: #fff;
    opacity: 0.98
}

.ourPlans .content .plansOptions .planOption.black .title>span {
    background: #175257;
    color: #fff
}

.ourPlans .content .plansOptions .planOption.black .benefits>span i {
    background: #fff
}

.ourPlans .content .plansOptions .planOption.black .benefits>span i svg path {
    stroke: #0b3c40 !important
}

.ourPlans .content .plansOptions .planOption.black .benefits>span p {
    color: #fff
}

.footer {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    background: #f9f9f9;
    color: #0b3c40;
    font-family: sans-serif;
    padding: 2rem;
    margin-top: 124px
}

.footer a {
    color: #333;
    text-decoration: none;
    margin: 0.25rem 0;
    display: block;
    font-size: 0.9rem
}

.footer h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem
}

.footer .footer__top {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    gap: 2rem;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 1000px
}

.footer .footer__columns {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%
}

.footer .footer__columns .footer__column {
    width: 25%
}

.footer .footer__columns .footer__column img {
    max-width: 164px !important;
    opacity: 0.9
}

.footer .footer__bottom {
    margin-top: 2rem;
    font-size: 0.8rem
}

.footer .footer__bottom .footer__desc {
    margin-bottom: 1rem
}

.footer .footer__bottom .footer__links {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem
}

.footer .footer__bottom p {
    margin: 0.25rem 0
}

.consulta-tabela {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 800px;
    border: 1px solid #ccc;
    border-radius: 12px;
    overflow: hidden;
    font-family: Arial, sans-serif;
    margin: 72px auto 0
}

.consulta-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background: #0b3c40;
    padding: 14px 18px;
    color: #fff;
    font-weight: 500;
    font-size: 16px
}

.consulta-linha {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 12px 18px;
    border-top: 1px solid #eee;
    font-size: 15px
}

.consulta-linha div {
    padding: 0 4px
}

.consulta-linha:nth-child(even) {
    background: #fafafa
}

.como-funciona>h2 {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    opacity: 0.8;
    text-align: center
}

.como-funciona>p {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    opacity: 0.6;
    text-align: center;
    padding-top: 6px
}

.como-funciona .cf-content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 56px
}

.como-funciona .cf-content>img {
    max-width: 512px;
    height: auto
}

.como-funciona .cf-content .list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 48px
}

.como-funciona .cf-content .list>span {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-bottom: 24px
}

.como-funciona .cf-content .list>span i {
    width: 40px;
    height: 40px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    font-size: 24px;
    font-weight: 400;
    background: #0b3c40;
    border-radius: 100%;
    text-decoration: none
}

.como-funciona .cf-content .list>span p {
    width: calc(100% - 56px);
    font-size: 16px;
    font-weight: 500;
    color: #000;
    opacity: 0.8
}

.faqBg {
    background: #EBF8FD;
    padding: 96px 0
}

.faq {
    max-width: 700px;
    margin: 40px auto
}

.faq>h2 {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    opacity: 0.8;
    text-align: center
}

.faq>p {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    opacity: 0.6;
    text-align: center;
    padding-top: 6px;
    margin-bottom: 32px
}

.faq .faq-item {
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden
}

.faq .faq-item .faq-question {
    background: #fff;
    padding: 15px 20px;
    cursor: pointer;
    font-weight: 400;
    -webkit-transition: background 0.3s;
    transition: background 0.3s;
    border-bottom: 1px solid #ddd
}

.faq .faq-item .faq-question:hover {
    background: #f1f1f1
}

.faq .faq-item .faq-answer {
    display: none;
    padding: 15px 20px;
    font-size: 14px;
    background: #fff;
    border-top: 1px solid #eee
}

.faq .faq-footer {
    text-align: center;
    margin-top: 30px;
    font-style: italic;
    color: #666
}

.dash {
    background: #F4F6FA
}

.dash .topBar {
    position: fixed;
    width: 100%;
    height: 64px;
    background: #fff;
    border-bottom: 1px solid #f1f1f1;
    top: 0;
    left: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: end;
    justify-content: flex-end;
    z-index: 99999999999999;
    padding-right: 32px
}

.dash .topBar .menu-mobile {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: #F4F6FA;
    border-radius: 100%
}

.dash .topBar .menu-mobile svg {
    width: 24px
}

.dash .topBar>span {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: right;
    padding-right: 16px
}

.dash .topBar>span p {
    font-size: 15px;
    color: #0A0A18
}

.dash .topBar>span p strong {
    font-weight: 600
}

.dash .topBar>span a {
    font-size: 13px;
    text-decoration: underline;
    color: #000;
    opacity: 0.8;
    line-height: 13px
}

.dash .topBar img {
    width: 40px;
    height: auto;
    border-radius: 100%;
    margin-right: 8px
}

.dash .topBar img.mobile {
    width: 140px;
    border-radius: 0
}

.dash .topBar .logout-btn {
    width: 48px;
    height: 48px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 48px
}

.dash .topBar .logout-btn:hover {
    opacity: 0.8
}

.dash .topBar .logout-btn svg {
    width: 32px;
    height: 32px
}

.dash .topBar .logout-btn svg path {
    fill: #0A0A18
}

.dash .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    z-index: 999999999999;
    display: none
}

.dash .overlay.active {
    display: block
}

.dash .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    width: 300px;
    min-height: 100%;
    border-right: 1px solid #F1F1F1;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    z-index: 9999999999999
}

.dash .sidebar>span {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px 16px 20px 24px
}

.dash .sidebar>span img {
    width: 180px;
    height: auto
}

.dash .sidebar>div {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    max-height: calc(100vh - 80px);
    overflow-y: auto
}

.dash .sidebar>div.sb-admisn {
    overflow: none
}

.dash .sidebar>div>span {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 16px 16px 20px 24px;
    border-bottom: 1px solid #F1F1F1
}

.dash .sidebar>div>span:first-of-type {
    padding-bottom: 16px;
    border-bottom: 1px solid #F1F1F1
}

.dash .sidebar>div>span>h4 {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.7;
    margin-bottom: 10px
}

.dash .sidebar>div>span>a {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    padding: 8px 0
}

.dash .sidebar>div>span>a.unavailable {
    opacity: 0.4
}

.dash .sidebar>div>span>a svg {
    width: 20px;
    height: auto;
    margin-right: 12px;
    opacity: 0.7
}

.dash .sidebar>div>span>a>p {
    font-size: 14px;
    text-decoration: none;
    color: #0A0A18
}

.dash .sidebar>div>span>a:hover svg {
    opacity: 1
}

/* Estilo customizado para scrollbar do sidebar */
.dash .sidebar>div::-webkit-scrollbar {
    width: 6px
}

.dash .sidebar>div::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px
}

.dash .sidebar>div::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px
}

.dash .sidebar>div::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8
}

.dash .content {
    margin-left: 360px;
    padding-top: 80px
}

.dash .breadcrumb {
    display: -ms-flexbox;
    display: flex
}

.dash .breadcrumb a {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    color: #000;
    font-size: 14px;
    color: #000
}

.dash .breadcrumb a svg {
    width: 16px;
    margin-right: 4px
}

.dash .breadcrumb a:after {
    content: ">";
    margin: 0 6px
}

.dash .breadcrumb a:last-of-type {
    color: #417DF8
}

.dash .breadcrumb a:last-of-type:after {
    content: ""
}

.dash .topInfos {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.dash .topInfos .info {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    background: #fff;
    border: 1px solid #f1f1f1;
    width: 280px;
    height: 80px;
    border-radius: 12px;
    padding-left: 24px;
    margin-right: 12px
}

.dash .topInfos .info i {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background-color: #F6FAFD;
    margin-right: 12px
}

.dash .topInfos .info svg {
    width: 24px;
    height: auto
}

.dash .topInfos .info>span strong {
    font-size: 24px;
    line-height: 16px;
    opacity: 0.9;
    font-weight: 600
}

.dash .topInfos .info>span p {
    font-size: 14px;
    margin-top: -2px
}

.dash .recentInfos {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    padding-top: 32px
}

.dash .recentInfos>p {
    font-size: 16px;
    font-weight: 500
}

.dash .recentInfos>span {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 100%
}

.dash .recentInfos .emptyRecents {
    font-size: 14px;
    opacity: 0.7;
    padding-top: 8px
}

.dash .recentInfos .recent {
    background: #fff;
    width: 100%;
    border-radius: 8px;
    border: 1px solid #f1f1f1;
    margin-top: 16px;
    padding: 16px;
    margin-right: 24px
}

.dash .recentInfos .recent>li {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    border-bottom: 1px solid #f1f1f1;
    padding: 12px 0
}

.dash .recentInfos .recent>li:last-of-type {
    border: none
}

.dash .recentInfos .recent>li i {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background: #f6f6f6;
    margin-right: 12px
}

.dash .recentInfos .recent>li i svg {
    width: 24px;
    height: auto
}

.dash .recentInfos .recent>li>span {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column
}

.dash .recentInfos .recent>li>span p {
    font-size: 15px
}

.dash .recentInfos .recent>li>span small {
    font-size: 13px;
    opacity: 0.8
}

.dash .recentInfos .recent>li .status {
    position: absolute;
    right: 0;
    font-size: 12px;
    padding: 4px 6px;
    color: #3EA16E;
    background: #DCF7E8;
    border-radius: 4px
}

.dash .recentInfos .recent>li .status.status-0 {
    color: #CD974A;
    background: #FFF8EF
}

.dash .recentInfos .recent .see-more {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    width: 100%;
    height: 40px;
    background: #417DF8;
    margin-top: 12px
}

.dash .recentInfos .recent .see-more:hover {
    opacity: 0.8
}

.dash.admin.home .recentInfos {
    margin-bottom: 72px
}

.dash.admin.empresas .recentInfos {
    margin-bottom: 72px
}

.dash.admin .consumoContainer {
    min-width: 960px;
    margin-bottom: 72px
}

.dash.admin .sidebar {
    background: #13111D
}

.dash.admin .sidebar>span>img {
    -webkit-filter: grayscale(0);
    filter: grayscale(0)
}

.dash.admin .sidebar>div>span {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2)
}

.dash.admin .sidebar>div>span>h4 {
    color: #fff
}

.dash.admin .sidebar>div>span>a svg {
    -webkit-filter: invert(1);
    filter: invert(1)
}

.dash.admin .sidebar>div>span>a>p {
    color: #fff !important
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5)
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: white;
    padding: 40px 24px;
    border-radius: 5px;
    text-align: center;
    z-index: 2
}

.close {
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    position: absolute;
    right: 10px;
    top: 5px
}

.close svg {
    width: 20px;
    height: auto;
    margin: 8px
}

.consultasTypes {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    padding-top: 48px;
    margin-bottom: 120px
}

.consultasTypes>p {
    font-size: 16px;
    font-weight: 500
}

.consultasTypes>div {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: calc(100vw - 412px)
}

.consultasTypes>div>a {
    background: #fff;
    border: 1px solid #F1F1F1;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    width: 260px;
    margin-top: 24px;
    margin-right: 16px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s
}

.consultasTypes>div>a.unavailable {
    opacity: 0.4
}

.consultasTypes>div>a:hover {
    opacity: 0.8
}

.consultasTypes>div>a>img {
    width: 100%;
    height: auto
}

.consultasTypes>div>a>p {
    text-align: center;
    font-size: 14px;
    color: #0A0A18;
    font-weight: 400;
    padding: 6px 16px 12px
}

.content .consultasTypes {
    margin-top: 32px
}

.empresas .recentInfos .recent {
    width: 100% !important
}

.empresas .recentInfos .recent>li {
    display: -ms-flexbox;
    display: flex
}

.empresas .recentInfos .recent>li>span p {
    font-weight: 500;
    opacity: 0.9
}

.empresas .recentInfos .recent>li .actions {
    position: absolute;
    right: 12px;
    padding: 8px
}

.empresas .recentInfos .recent>li .actions svg {
    width: 24px
}

.empresas .recentInfos .recent>li .actions:hover {
    opacity: 0.7
}

.empresas #editFormModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999999999999
}

.empresas #editFormModal>div {
    background: #fff;
    padding: 24px;
    max-width: 500px;
    margin: 60px auto;
    border-radius: 8px;
    border: 1px solid #eee;
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.empresas #editFormModal>div>h2 {
    font-size: 20px;
    font-weight: 600;
    opacity: 0.9;
    padding-bottom: 8px
}

.empresas #closeModal {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    background: #fff;
    border: none;
    padding: 4px 8px;
    cursor: pointer;
    border-radius: 4px
}

.empresas #closeModal:hover {
    background: #ddd
}

.empresas #editForm {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px;
    max-height: calc(100vh - 300px);
    overflow-y: scroll
}

.empresas #editForm label {
    font-size: 14px;
    color: #555
}

.empresas #editForm input {
    padding: 8px;
    border: 1px solid #eee;
    border-radius: 4px;
    font-size: 14px;
    background: #fafafa
}

.empresas #editForm input:focus {
    outline: none;
    border-color: #ccc;
    background: #fff
}

.empresas #editForm button[type="submit"] {
    margin-top: 12px;
    padding: 10px;
    background: #13111D;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer
}

.empresas #editForm button[type="submit"]:hover {
    opacity: 0.7
}

.empresas .filtersRecords {
    background: #fff;
    width: 340px;
    border-radius: 8px;
    border: 1px solid #f1f1f1;
    margin-top: 16px;
    padding: 16px;
    margin-right: 24px
}

.empresas .filtersRecords>div>span {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.empresas .filtersRecords>div>span input {
    border: none;
    background: transparent;
    font-size: 16px;
    border-bottom: 1px solid #ddd;
    height: 48px
}

.empresas .filtersRecords>div>span button {
    width: 48px;
    height: 48px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
    background: #13111D;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 8px
}

.empresas .filtersRecords>div>span button:hover {
    opacity: 0.8
}

#configForm {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 16px;
    max-height: calc(100vh - 300px);
    overflow-y: auto
}

#configForm .form-group {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column
}

#configForm .form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 4px
}

#configForm .form-group input {
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    background: #f9f9f9;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease
}

#configForm .form-group input:focus {
    outline: none;
    border-color: #888;
    background: #fff;
    -webkit-box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05)
}

#configForm button[type="submit"] {
    grid-column: span 2;
    margin-top: 8px;
    padding: 10px 20px;
    background: #13111D;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    -webkit-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease
}

#configForm button[type="submit"]:hover {
    opacity: 0.8
}

.unavailableTexts {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 24px
}

.unavailableTexts>span {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.unavailableTexts>span svg {
    width: 40px;
    height: auto;
    opacity: 0.7
}

.unavailableTexts>span strong {
    font-size: 18px;
    font-weight: 500;
    opacity: 0.8;
    padding-left: 12px
}

.unavailableTexts>p {
    font-size: 13px;
    opacity: 0.8;
    padding-top: 8px;
    padding-bottom: 48px
}

.consultaContainer {
    background: #fff;
    border: 1px solid #f1f1f1;
    padding: 48px;
    border-radius: 8px
}

.consultaContainer.waiting form {
    display: none !important
}

.consultaContainer.waiting .loadingContainer {
    display: -ms-flexbox !important;
    display: flex !important
}

.consultaContainer.unavailable {
    position: relative;
    opacity: 0.4;
    cursor: blocked;
    pointer-events: none
}

.consultaContainer .consultaTitle {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid #f1f1f1;
    padding-bottom: 16px;
    margin-bottom: 24px;
    margin-top: -16px
}

.consultaContainer .consultaTitle i {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    background: #F6FAFD
}

.consultaContainer .consultaTitle i svg {
    width: 24px
}

.consultaContainer .consultaTitle p {
    font-size: 16px;
    padding-left: 12px
}

.consultaContainer form {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: end;
    align-items: flex-end
}

.consultaContainer form>span {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: start;
    align-items: flex-start
}

.consultaContainer form>span:first-of-type {
    width: 320px;
    margin-right: 16px
}

.consultaContainer form>span:last-of-type {
    width: 320px
}

.consultaContainer form>span label {
    font-size: 20px;
    font-weight: 400
}

.consultaContainer form>span input {
    width: 100%;
    height: 56px;
    font-size: 18px;
    font-weight: 400;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 16px;
    border-radius: 6px;
    background: #FFF;
    border: 1px solid #ddd;
    margin-top: 4px
}

.consultaContainer form>span input[name="placa"] {
    text-transform: uppercase
}

.consultaContainer form>span input[name="nomecompleto"] {
    font-size: 14px
}

.consultaContainer form>button {
    width: 240px;
    height: 56px;
    font-size: 20px;
    font-weight: 400;
    color: #FFF;
    border-radius: 6px;
    background: #074246;
    border: none;
    cursor: pointer;
    margin-left: 0px
}

.consultaContainer form>button.disabled {
    opacity: 0.6 !important;
    cursor: default
}

.consultaContainer form>button.waiting {
    opacity: 0.6;
    pointer-events: none;
    cursor: default
}

.consultaContainer form>button:hover {
    opacity: 0.9
}

.scoreText {
    padding: 12px;
    font-size: 11px;
    max-width: 712px;
    margin: 12px 0;
    border: 1px solid #a4afbd;
    color: #5e93c7
}

.scoreTexts {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    background: #f9f9f9;
    width: 100%;
    margin-top: 32px;
    padding: 24px
}

.scoreTexts>h4 {
    font-size: 14px;
    margin-top: 24px
}

.scoreTexts>span {
    font-size: 12px
}

.minicards {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center
}

.minicards .infocard {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
       -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    width: 200px;
    height: 104px;
    border-radius: 4px;
    background: #319BDB
}

.minicards .infocard-title {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px
}

.minicards .infocard-info {
    color: #0D5C47;
    background: #DEF7EC;
    font-size: 15px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 4px
}

.minicards .infocard-info.c {
    color: #7F1D1D;
    background: #FEE2E2;
    font-size: 0 !important
}

.minicards .infocard-info.c:after {
    content: "Risco Encontrado";
    font-size: 14px !important
}

.dash .infoCard {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 24px
}

.dash .infoCard .infoCard__title {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.dash .infoCard .infoCard__title.download {
    padding: 48px 0
}

.dash .infoCard .infoCard__title.download svg {
    width: 104px
}

.dash .infoCard .infoCard__title.download>span {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 8px
}

.dash .infoCard .infoCard__title.download>span span {
    font-size: 13px;
    opacity: 0.7
}

.dash .infoCard .infoCard__title.download>span a {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    width: 240px;
    height: 56px;
    font-size: 18px;
    font-weight: 400;
    color: #FFF;
    border-radius: 6px;
    background: #074246;
    border: none;
    cursor: pointer;
    margin-left: 0px;
    margin-top: 12px
}

.dash .infoCard .infoCard__title.download>span a:hover {
    opacity: 0.7
}

.dash .infoCard .infoCard__title svg {
    width: 48px;
    height: auto
}

.dash .infoCard .infoCard__title svg path {
    fill: #1a3c4c
}

.emitir-direct .infoCard .infoCard__title h2 {
    font-size: 15px;
    font-weight: 400
}

.dash .infoCard .infoCard__description {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    background: rgba(74, 203, 211, 0.2);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 32px 32px 16px;
    max-width: 700px
}

.dash .infoCard .infoCard__description span {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-bottom: 16px
}

.dash .infoCard .infoCard__description span ul {
    padding-top: 4px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 4px 12px 12px;
    border: 1px dashed #1a3c4c
}

.dash .infoCard .infoCard__description span ul li {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    list-style: none
}

.dash .infoCard .infoCard__description span ul li p {
    margin-top: 8px;
    margin-bottom: 4px
}

.dash .infoCard .infoCard__description span span {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-bottom: 16px
}

.dash .infoCard .infoCard__description span span label {
    font-size: 15px;
    color: #232323;
    padding-bottom: 4px
}

.dash .infoCard .infoCard__description span span strong {
    font-size: 16px;
    color: #232323
}

.resultadoDash {
    background: #fff;
    border: 1px solid #f1f1f1;
    padding: 24px 48px;
    border-radius: 8px;
    margin-bottom: 48px;
    width: calc(100vw - 612px)
}

.dash .caption {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 24px;
    border: 1px dashed #074246
}

.dash .caption small {
    margin-bottom: 6px
}

.dash .caption p {
    font-size: 14px
}

.resumeResultado {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid #f1f1f1;
    padding-bottom: 32px;
    margin-bottom: 24px
}

.resumeResultado>p {
    font-size: 17px
}

.resumeResultado>small {
    font-size: 13px;
    opacity: 0.8
}

.resumeCredits {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 48px
}

.resumeCredits p {
    font-size: 14px;
    opacity: 0.8
}

.resumeCredits p:last-of-type {
    padding-top: 8px
}

.loadingContainer {
    display: none;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center
}

.lds-hourglass,
.lds-hourglass:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.lds-hourglass {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px
}

.lds-hourglass:after {
    content: " ";
    display: block;
    border-radius: 50%;
    width: 0;
    height: 0;
    margin: 8px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 32px solid #074246;
    border-color: #074246 transparent #074246 transparent;
    -webkit-animation: lds-hourglass 1.2s infinite;
    animation: lds-hourglass 1.2s infinite
}

@-webkit-keyframes lds-hourglass {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
    }

    50% {
        -webkit-transform: rotate(900deg);
        transform: rotate(900deg);
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
    }

    100% {
        -webkit-transform: rotate(1800deg);
        transform: rotate(1800deg)
    }
}

@keyframes lds-hourglass {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
    }

    50% {
        -webkit-transform: rotate(900deg);
        transform: rotate(900deg);
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
    }

    100% {
        -webkit-transform: rotate(1800deg);
        transform: rotate(1800deg)
    }
}

.dash.resultado .infoCard .infoCard__title {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.dash.resultado .infoCard .infoCard__title svg {
    width: 48px;
    height: auto
}

.dash.resultado .infoCard .infoCard__title svg path {
    fill: #1a3c4c
}

.dash.resultado .infoCard__found {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 8px;
    width: 100%
}

.dash.resultado .infoCard__found>span {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    background: rgba(74, 203, 211, 0.2);
    width: 25%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 12px !important;
    margin-top: 16px;
    margin-right: 16px;
    border-radius: 4px;
    border: 1px dashed #003337
}

.dash.resultado .infoCard__found>span>span {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 4px
}

.dash.resultado .infoCard__found>span>span * {
    font-size: 14px
}

.checkout main {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto
}

.checkout .creditosContainer {
    background: #fff;
    border: 1px solid #f1f1f1;
    padding: 48px;
    max-width: 960px;
    border-radius: 8px;
    margin-bottom: 12px
}

.checkout .creditosContainer.waiting form {
    display: none !important
}

.checkout .creditosContainer.waiting .loadingContainer {
    display: -ms-flexbox !important;
    display: flex !important
}

.checkout .intro {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column
}

.checkout .intro p {
    font-size: 24px;
    font-weight: 400;
    color: #1b2123
}

.checkout .intro span {
    font-size: 14px;
    font-weight: 400;
    color: #1b2123;
    opacity: 0.8;
    padding-top: 6px
}

.checkout .creditsAvailable {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 144px;
    max-width: 100%;
    background: #F6FAFD;
    border-radius: 8px;
    margin: 24px 0 48px
}

.checkout .creditsAvailable strong {
    font-size: 64px;
    font-weight: 700;
    color: #1b2123;
    line-height: 64px
}

.checkout .creditsAvailable p {
    font-size: 14px;
    font-weight: 400;
    color: #1b2123
}

.checkout .overCredits {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column
}

.checkout .overCredits p {
    font-size: 20px;
    font-weight: 500;
    color: #1b2123
}

.checkout .overCredits span {
    font-size: 14px;
    font-weight: 400;
    color: #1b2123;
    opacity: 0.6;
    padding-top: 6px;
    max-width: 480px;
    line-height: 26px
}

.checkout .checkoutCredits {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 512px
}

.checkout .checkoutCredits>strong {
    font-size: 20px;
    font-weight: 600;
    color: #1b2123
}

.checkout .checkoutCredits>p {
    font-size: 12px;
    font-weight: 400;
    color: #1b2123;
    opacity: 0.6;
    max-width: 300px;
    padding-top: 6px;
    line-height: 18px
}

.checkout .checkoutCredits .options {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column
}

.checkout .checkoutCredits .options .creditOption {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 96px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0 16px;
    margin-top: 30px;
    opacity: 0.9;
    cursor: pointer;
    -webkit-transition: all 0.4s;
    transition: all 0.4s
}

.checkout .checkoutCredits .options .creditOption:hover {
    opacity: 1;
    -webkit-transform: scale(1.04);
    transform: scale(1.04)
}

.checkout .checkoutCredits .options .creditOption>span {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    width: 50%
}

.checkout .checkoutCredits .options .creditOption>span:first-of-type {
    border-right: 1px solid #ddd;
    font-size: 16px;
    color: #1b2123
}

.checkout .checkoutCredits .options .creditOption>span:first-of-type i {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background-color: #F6FAFD;
    margin-right: 12px
}

.checkout .checkoutCredits .options .creditOption>span:first-of-type svg {
    width: 24px;
    height: auto
}

.checkout .checkoutCredits .options .creditOption>span:last-of-type {
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center
}

.checkout .checkoutCredits .options .creditOption>span:last-of-type .listPrice {
    font-size: 10px;
    font-weight: 600;
    color: #1b2123;
    opacity: 0.4;
    text-decoration: line-through
}

.checkout .checkoutCredits .options .creditOption>span:last-of-type .bestPrice {
    font-size: 18px;
    font-weight: 700;
    color: #1b2123
}

.checkout .checkoutCredits .options .creditOption.selected.popular:before {
    content: "MAIS POPULAR" !important
}

.checkout .checkoutCredits .options .creditOption.selected {
    position: relative;
    border: 3px solid #28CCE4;
    opacity: 1
}

.checkout .checkoutCredits .options .creditOption.selected:before {
    content: "SELECIONADO";
    width: 132px;
    height: 24px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    background: #28CCE4;
    position: absolute;
    top: -12px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border-radius: 4px
}

.checkout .checkoutCredits .options .creditOption.selected:after {
    position: absolute;
    bottom: -8px;
    right: -8px;
    content: "";
    width: 24px;
    height: 24px;
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #28CCE4;
    border-radius: 100%
}

.checkoutchat {
    width: 100%;
    max-width: 970px;
    padding: 32px 0;
    margin: 0 auto
}

.checkoutchat>.value {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: start;
    align-items: flex-start
}

.checkoutchat>.value p {
    font-size: 16px;
    font-weight: 500;
    color: #363636;
    background: #F8F8F8;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 12px;
    border-radius: 8px
}

.checkoutchat>.value img {
    position: relative;
    top: 2px;
    width: 140px;
    height: auto;
    margin-left: 16px
}

.checkoutchat .step28 {
    margin-top: 24px
}

.checkoutchat .step28 .fieldmessage.dsc>span {
    text-decoration: line-through
}

.checkoutchat .step28 .fieldmessage.dscn {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column
}

.checkoutchat .step28 .fieldmessage.dscn .countdown {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 6px
}

.checkoutchat .step28 .fieldmessage.dscn .countdown__divisor {
    font-size: 26px;
    font-weight: 700;
    padding: 0 16px
}

.checkoutchat .step28 .fieldmessage.dscn .countdown>div {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center
}

.checkoutchat .step28 .fieldmessage.dscn .countdown>div>span {
    font-size: 32px;
    font-weight: 600;
    color: #363636
}

.checkoutchat .step28 .fieldmessage.dscn .countdown>div>p {
    font-size: 10px;
    line-height: 10px;
    font-weight: 500;
    margin-top: 6px
}

.checkoutchat .step28 .fieldmessage>img {
    display: block;
    width: 64%
}

.checkoutchat .step28>img {
    display: none !important
}

.checkoutchat .step28 .loading-payment,
.checkoutchat .step28 .loading-pix {
    display: none !important;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 9999999
}

.checkoutchat .step28 .loading-payment.active,
.checkoutchat .step28 .loading-pix.active {
    display: -ms-flexbox !important;
    display: flex !important
}

.checkoutchat .step28 .loading-payment:after,
.checkoutchat .step28 .loading-pix:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6)
}

.checkoutchat .step28 .loading-payment .loading-content,
.checkoutchat .step28 .loading-pix .loading-content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center;
    width: 596px;
    height: auto;
    background: #FFF;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 24px;
    -webkit-box-shadow: 0px 12px 15px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 12px 15px rgba(0, 0, 0, 0.25);
    z-index: 9999999
}

.checkoutchat .step28 .loading-payment .loading-content h4,
.checkoutchat .step28 .loading-pix .loading-content h4 {
    font-size: 18px;
    color: #363636;
    padding-top: 16px;
    text-align: center
}

.checkoutchat .step28 .loading-payment .loading-content .lds-roller,
.checkoutchat .step28 .loading-pix .loading-content .lds-roller {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px
}

.checkoutchat .step28 .loading-payment .loading-content .lds-roller div,
.checkoutchat .step28 .loading-pix .loading-content .lds-roller div {
    -webkit-animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    -webkit-transform-origin: 40px 40px;
    transform-origin: 40px 40px
}

.checkoutchat .step28 .loading-payment .loading-content .lds-roller div:after,
.checkoutchat .step28 .loading-pix .loading-content .lds-roller div:after {
    content: " ";
    display: block;
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #33D6EF;
    margin: -4px 0 0 -4px
}

.checkoutchat .step28 .loading-payment .loading-content .lds-roller div:nth-child(1),
.checkoutchat .step28 .loading-pix .loading-content .lds-roller div:nth-child(1) {
    -webkit-animation-delay: -0.036s;
    animation-delay: -0.036s
}

.checkoutchat .step28 .loading-payment .loading-content .lds-roller div:nth-child(1):after,
.checkoutchat .step28 .loading-pix .loading-content .lds-roller div:nth-child(1):after {
    top: 63px;
    left: 63px
}

.checkoutchat .step28 .loading-payment .loading-content .lds-roller div:nth-child(2),
.checkoutchat .step28 .loading-pix .loading-content .lds-roller div:nth-child(2) {
    -webkit-animation-delay: -0.072s;
    animation-delay: -0.072s
}

.checkoutchat .step28 .loading-payment .loading-content .lds-roller div:nth-child(2):after,
.checkoutchat .step28 .loading-pix .loading-content .lds-roller div:nth-child(2):after {
    top: 68px;
    left: 56px
}

.checkoutchat .step28 .loading-payment .loading-content .lds-roller div:nth-child(3),
.checkoutchat .step28 .loading-pix .loading-content .lds-roller div:nth-child(3) {
    -webkit-animation-delay: -0.108s;
    animation-delay: -0.108s
}

.checkoutchat .step28 .loading-payment .loading-content .lds-roller div:nth-child(3):after,
.checkoutchat .step28 .loading-pix .loading-content .lds-roller div:nth-child(3):after {
    top: 71px;
    left: 48px
}

.checkoutchat .step28 .loading-payment .loading-content .lds-roller div:nth-child(4),
.checkoutchat .step28 .loading-pix .loading-content .lds-roller div:nth-child(4) {
    -webkit-animation-delay: -0.144s;
    animation-delay: -0.144s
}

.checkoutchat .step28 .loading-payment .loading-content .lds-roller div:nth-child(4):after,
.checkoutchat .step28 .loading-pix .loading-content .lds-roller div:nth-child(4):after {
    top: 72px;
    left: 40px
}

.checkoutchat .step28 .loading-payment .loading-content .lds-roller div:nth-child(5),
.checkoutchat .step28 .loading-pix .loading-content .lds-roller div:nth-child(5) {
    -webkit-animation-delay: -0.18s;
    animation-delay: -0.18s
}

.checkoutchat .step28 .loading-payment .loading-content .lds-roller div:nth-child(5):after,
.checkoutchat .step28 .loading-pix .loading-content .lds-roller div:nth-child(5):after {
    top: 71px;
    left: 32px
}

.checkoutchat .step28 .loading-payment .loading-content .lds-roller div:nth-child(6),
.checkoutchat .step28 .loading-pix .loading-content .lds-roller div:nth-child(6) {
    -webkit-animation-delay: -0.216s;
    animation-delay: -0.216s
}

.checkoutchat .step28 .loading-payment .loading-content .lds-roller div:nth-child(6):after,
.checkoutchat .step28 .loading-pix .loading-content .lds-roller div:nth-child(6):after {
    top: 68px;
    left: 24px
}

.checkoutchat .step28 .loading-payment .loading-content .lds-roller div:nth-child(7),
.checkoutchat .step28 .loading-pix .loading-content .lds-roller div:nth-child(7) {
    -webkit-animation-delay: -0.252s;
    animation-delay: -0.252s
}

.checkoutchat .step28 .loading-payment .loading-content .lds-roller div:nth-child(7):after,
.checkoutchat .step28 .loading-pix .loading-content .lds-roller div:nth-child(7):after {
    top: 63px;
    left: 17px
}

.checkoutchat .step28 .loading-payment .loading-content .lds-roller div:nth-child(8),
.checkoutchat .step28 .loading-pix .loading-content .lds-roller div:nth-child(8) {
    -webkit-animation-delay: -0.288s;
    animation-delay: -0.288s
}

.checkoutchat .step28 .loading-payment .loading-content .lds-roller div:nth-child(8):after,
.checkoutchat .step28 .loading-pix .loading-content .lds-roller div:nth-child(8):after {
    top: 56px;
    left: 12px
}

@-webkit-keyframes lds-roller {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes lds-roller {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

.checkoutchat .step28 .payment>span {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 12px
}

.checkoutchat .step28 .payment>span svg {
    width: 24px;
    height: 24px;
    margin-right: 10px
}

.checkoutchat .step28 .payment>span p {
    font-size: 16px;
    font-weight: 500;
    color: #363636
}

.checkoutchat .step28 .payment .pay {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: start;
    align-items: flex-start
}

.checkoutchat .step28 .payment .pay__options {
    display: none;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 214px;
    padding-top: 24px
}

.checkoutchat .step28 .payment .pay__options>span {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    height: 48px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 8px;
    border: 1px solid #F1F1F1;
    border-top: none;
    cursor: pointer
}

.checkoutchat .step28 .payment .pay__options>span:first-of-type {
    border-top: 1px solid #F1F1F1
}

.checkoutchat .step28 .payment .pay__options>span svg {
    margin-right: 12px
}

.checkoutchat .step28 .payment .pay__options>span p {
    position: relative;
    top: 2px;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.4
}

.checkoutchat .step28 .payment .pay__options>span.selected p {
    font-size: 16px;
    color: #363636;
    opacity: 1
}

.checkoutchat .step28 .payment .pay__pix {
    display: none;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    width: calc(100% - 214px);
    border: 1px solid #F1F1F1;
    border-radius: 4px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 32px 48px
}

.checkoutchat .step28 .payment .pay__pix .cvalue {
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    text-align: left;
    color: #363636;
    margin-top: 24px;
    margin-bottom: 24px
}

.checkoutchat .step28 .payment .pay__pix-modal {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 999999
}

.checkoutchat .step28 .payment .pay__pix-modal.active {
    display: -ms-flexbox;
    display: flex
}

.checkoutchat .step28 .payment .pay__pix-modal:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6)
}

.checkoutchat .step28 .payment .pay__pix-modal--content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center;
    width: 596px;
    height: auto;
    background: #FFF;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 24px;
    -webkit-box-shadow: 0px 12px 15px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 12px 15px rgba(0, 0, 0, 0.25);
    z-index: 9999999
}

.checkoutchat .step28 .payment .pay__pix-modal--content>svg {
    width: 100%;
    max-width: 180px;
    height: auto;
    margin-top: 8px
}

.checkoutchat .step28 .payment .pay__pix-modal--content>strong {
    font-size: 16px;
    color: #363636;
    margin: 32px 0 0
}

.checkoutchat .step28 .payment .pay__pix-modal--content>img {
    width: 240px;
    height: auto;
    margin: -24px 0;
    z-index: -2
}

.checkoutchat .step28 .payment .pay__pix-modal--content .pixcopy {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 0
}

.checkoutchat .step28 .payment .pay__pix-modal--content .pixcopy p {
    font-size: 14px;
    line-height: 24px;
    color: #363636;
    width: 100%;
    text-align: left;
    margin-bottom: 8px
}

.checkoutchat .step28 .payment .pay__pix-modal--content .pixcopy input {
    color: #000;
    width: 100%;
    height: 48px;
    border-radius: 4px;
    border: 1px solid #CCC;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 12px
}

.checkoutchat .step28 .payment .pay__pix-modal--content .pixcopy button {
    font-size: 16px;
    color: #fff;
    height: 48px;
    background-color: #2EBCCF;
    font-weight: 600;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 16px;
    border-radius: 4px;
    border: none;
    text-decoration: none;
    margin-top: 8px;
    cursor: pointer
}

.checkoutchat .step28 .payment .pay__pix>svg {
    width: 100%;
    max-width: 196px;
    height: auto
}

.checkoutchat .step28 .payment .pay__pix>p {
    font-size: 14px;
    color: #363636;
    text-align: center;
    width: 100%;
    margin-top: 16px
}

.checkoutchat .step28 .payment .pay__pix>button {
    border: none;
    background: none;
    float: right;
    width: 264px;
    height: 48px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #FFF;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: #2EBCCF;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 16px
}

.checkoutchat .step28 .payment .pay__pix>button:hover {
    opacity: 0.8
}

.checkoutchat .step28 .payment .pay__pix .contentbottom .backsite {
    font-size: 14px;
    font-weight: 500;
    color: #1b2123;
    background: none;
    border: none;
    cursor: pointer;
    margin: 16px 0 24px
}

.checkoutchat .step28 .payment .pay__card {
    display: none;
    width: calc(100% - 214px);
    border: 1px solid #F1F1F1;
    border-radius: 4px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 18px 18px
}

.checkoutchat .step28 .payment .pay__card .carderror {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 999999
}

.checkoutchat .step28 .payment .pay__card .carderror.active {
    display: -ms-flexbox;
    display: flex
}

.checkoutchat .step28 .payment .pay__card .carderror:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6)
}

.checkoutchat .step28 .payment .pay__card .carderror__content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center;
    width: 596px;
    height: auto;
    background: #F23D4E;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 24px;
    -webkit-box-shadow: 0px 12px 15px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 12px 15px rgba(0, 0, 0, 0.25);
    z-index: 9999999
}

.checkoutchat .step28 .payment .pay__card .carderror__content>svg {
    width: 100%;
    max-width: 104px;
    height: auto;
    margin-top: 8px
}

.checkoutchat .step28 .payment .pay__card .carderror__content>h4 {
    font-size: 20px;
    font-weight: 600;
    color: #FFF;
    text-align: center;
    margin: 16px 0 0
}

.checkoutchat .step28 .payment .pay__card .carderror__content>p {
    width: 100%;
    color: #FFF;
    text-align: center
}

.checkoutchat .step28 .payment .pay__card .carderror__content>a {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 16px 32px;
    color: #F23D4E;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    background: #FFF;
    border-radius: 4px;
    margin: 12px 0 32px
}

.checkoutchat .step28 .payment .pay__card #form-checkout {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%
}

.checkoutchat .step28 .payment .pay__card #form-checkout>p {
    font-family: Arial;
    font-size: 14px;
    color: #363636;
    margin-top: 16px;
    margin-bottom: 4px
}

.checkoutchat .step28 .payment .pay__card .container {
    height: 40px;
    display: inline-block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 16px;
    padding: 0 12px;
    border: 1px solid #CCC;
    border-radius: 4px
}

.checkoutchat .step28 .payment .pay__card .container#form-checkout__cardNumber {
    width: 72% !important
}

.checkoutchat .step28 .payment .pay__card .container#form-checkout__expirationDate {
    width: 144px !important
}

.checkoutchat .step28 .payment .pay__card .container#form-checkout__securityCode {
    width: 204px !important
}

.checkoutchat .step28 .payment .pay__card input {
    font-family: Arial;
    width: 100%;
    height: 40px;
    font-size: 16px;
    color: #737373;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 12px;
    border: 1px solid #CCC
}

.checkoutchat .step28 .payment .pay__card select {
    font-family: Arial;
    width: 100%;
    height: 40px;
    font-size: 16px;
    color: #737373;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 12px;
    border: 1px solid #CCC;
    border-radius: 4px
}

.checkoutchat .step28 .payment .pay__card #form-checkout__submit {
    border: none;
    background: none;
    float: right;
    width: 264px;
    height: 48px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #FFF;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: #2EBCCF;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 16px;
    margin-left: 0
}

.checkoutchat .step28 .payment .pay__card #form-checkout__submit:hover {
    opacity: 0.8
}

.checkoutchat .step28 .payment .pay__card .progress-bar {
    display: none
}

.checkoutchat .step28 .payment>span>p {
    position: relative;
    top: 1px
}

.checkoutchat .step28 .payment.wait>span svg {
    opacity: 0.8
}

.checkoutchat .step28 .payment.wait>span p {
    color: #8c8c8c
}

.checkoutchat .step28 .payment.wait:after {
    content: "Aguardando o preenchimento do e-mail";
    font-size: 14px;
    color: #8c8c8c;
    margin-top: 12px
}

.checkoutchat .step28 .payment.opened {
    width: 100%
}

.checkoutchat .step28 .payment.opened .pay__card.active,
.checkoutchat .step28 .payment.opened .pay__pix.active {
    display: -ms-flexbox;
    display: flex
}

.checkoutchat .step28 .payment.opened .pay__card.active {
    -ms-flex-direction: column;
    flex-direction: column
}

.checkoutchat .step28 .payment.opened .pay__card.active .pay__card-value {
    font-size: 16px;
    font-weight: 400;
    color: #363636;
    line-height: 16px;
    padding-top: 24px;
    padding-bottom: 12px
}

.checkoutchat .step28 .payment.opened .pay__options {
    display: -ms-flexbox;
    display: flex
}

.consumo .consumoContainer {
    background: #fff;
    width: calc(100vw - 800px);
    min-width: 1000px;
    border: 1px solid #f1f1f1;
    padding: 48px;
    border-radius: 8px
}

.consumo .consumoContainer .consultaTitle {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 16px;
    margin-bottom: 24px;
    margin-top: -16px
}

.consumo .consumoContainer .consultaTitle i {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    background: #F6FAFD
}

.consumo .consumoContainer .consultaTitle i svg {
    width: 24px
}

.consumo .consumoContainer .consultaTitle p {
    font-size: 16px;
    padding-left: 12px
}

.consumo .consumoContainer .extrato__head {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 64px;
    background: #f9f9f9;
    border-radius: 8px;
    padding: 0 24px
}

.consumo .consumoContainer .extrato__head span {
    width: 240px
}

.consumo .consumoContainer .extrato__head span:nth-of-type(2) {
    width: 140px
}

.consumo .consumoContainer .extrato {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 100%;
    margin: auto
}

.consumo .consumoContainer .extrato-item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 64px;
    padding: 0 24px;
    border-radius: 8px
}

.consumo .consumoContainer .extrato-item>span {
    width: 240px
}

.consumo .consumoContainer .extrato-item.historico-item {
    text-decoration: none;
    border: 1px dashed #ddd;
    position: relative;
    cursor: pointer
}

.consumo .consumoContainer .extrato-item.historico-item:hover {
    opacity: 0.7
}

.consumo .consumoContainer .extrato-item.historico-item>i {
    position: absolute;
    top: 16px;
    right: -16px;
    width: 40px;
    height: 40px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    background: #074246;
    border-radius: 100%
}

.consumo .consumoContainer .extrato-item.historico-item>i svg {
    width: 20px;
    height: 20px
}

.consumo .consumoContainer .extrato-item.par {
    background: #fff
}

.consumo .consumoContainer .extrato-item.impar {
    background: #F6FAFD
}

.consumo .consumoContainer .extrato-item span {
    font-size: 14px;
    color: #333;
    white-space: nowrap
}

.consumo .consumoContainer .extrato-item span:nth-of-type(2) {
    width: 140px
}

.consumo .consumoContainer .extrato-item .status {
    font-size: 12px;
    padding: 4px 6px;
    color: #3EA16E;
    background: #DCF7E8;
    border-radius: 4px
}

.consumo .consumoContainer .extrato-item .status.status-0 {
    color: #CD974A;
    background: #FFF8EF
}

.consumo .consumoContainer .extrato-item strong {
    width: 140px !important
}

.consumo .filter {
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px solid #f1f1f1;
    padding-bottom: 24px;
    margin-bottom: 24px;
    -ms-flex-align: center;
    align-items: center
}

.consumo .filter>p {
    font-size: 14px
}

.consumo .filter>span {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column
}

.consumo .filter>span:first-of-type {
    margin-right: 24px
}

.consumo .filter>span label {
    font-size: 15px;
    opacity: 0.7
}

.consumo .filter>span input {
    height: 48px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0 12px;
    cursor: pointer
}

.consumo .filter>span input[type="email"] {
    width: 280px
}

.consumo #paginacao {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center
}

.consumo #paginacao button {
    width: 32px;
    height: 32px;
    font-size: 16px;
    border: 1px solid #074246;
    background-color: #fff;
    margin: 32px 4px 12px 4px;
    border-radius: 4px
}

.consumo #paginacao button.ativo {
    background: #074246;
    color: #fff
}

.consumo #paginacao button:hover {
    background: #074246;
    color: #fff;
    cursor: pointer
}

.transacoes .consumoContainer .extrato-item span:first-of-type {
    width: 50px
}

.btn-consulta {
    padding: 4px 12px;
    background: #074246;
    color: #fff;
    border-radius: 4px;
    margin-left: 4px;
    text-decoration: none
}

.btn-consulta:hover {
    opacity: 0.8
}

/* Uniformizar responsividade de login e registro */
.login .left-section,
.recovery .left-section,
.registro .container .left-section {
    display: none;
    width: auto;
    background-color: #074246;
}

/* Mesma regra para as áreas direitas (form) */
.login .right-section,
.recovery .right-section,
.registro .container .right-section {
    width: 100%;
    max-width: 480px;
    margin: auto;
    padding: 20px;
    background: #fff;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
}

/* Desktop: mostrar left-section e dividir 50/50 */
@media (min-width: 1024px) {
    .login .left-section,
    .recovery .left-section,
    .registro .container .left-section {
        display: block;
    }

    .login .right-section,
    .recovery .right-section,
    .registro .container .right-section {
        width: 50%;
        max-width: none;
    }
}

/* Mobile: garantir que o comportamento seja idêntico para ambos */
@media (max-width: 1023px) {
    .login .left-section,
    .recovery .left-section,
    .registro .container .left-section {
        display: none !important;
    }

    .login .right-section,
    .recovery .right-section,
    .registro .container .right-section {
        width: 100%;
        padding: 48px 24px;
        max-width: none;
    }

    .registro .container .right-section .form-container,
    .login .right-section .form-container,
    .recovery .right-section .form-container {
        padding: 48px 0;
        width: calc(100% - 72px);
    }
}

@media screen and (min-width: 1024px) and (max-width: 1200px) {
    .mobile {
        display: none !important
    }
}

@media (min-width: 1024px) {

    .login .left-section,
    .recovery .left-section,
    .registro .container .left-section {
        display: block
    }
}

@media screen and (max-width: 1023px) {
    .desktop {
        display: none !important
    }

    .registro .container .right-section .form-container {
        padding: 48px 0;
        width: calc(100% - 72px)
    }

    .registro .container .right-section .form-container form>span {
        -ms-flex-direction: column;
        flex-direction: column
    }

    .registro .container .right-section .form-container form .input-group {
        width: 100%
    }

    .registro .container .right-section .form-container form .input-group:first-of-type {
        margin-bottom: 16px
    }

    .home-empresas .top {
        padding-bottom: 64px
    }

    .home-empresas .top {
        height: auto
    }

    .home-empresas .header {
        padding: 0 24px;
        height: 72px
    }

    .home-empresas .header .content>h1 img {
        width: 144px
    }

    .home-empresas .header .content .menu {
        display: none
    }

    .home-empresas .header .content>a {
        display: none
    }

    .home-empresas .topContent {
        padding-top: 48px;
        height: auto
    }

    .home-empresas .topContent .content {
        width: 100%;
        padding: 0 24px
    }

    .home-empresas .topContent .content h2 {
        font-size: 24px;
        line-height: 40px
    }

    .home-empresas .how {
        padding: 64px 24px 0
    }

    .home-empresas .how>p {
        font-size: 16px;
        text-align: center
    }

    .home-empresas .how>strong {
        font-size: 18px;
        text-align: center
    }

    .home-empresas .how>div {
        width: 100%;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 0 24px
    }

    .home-empresas .how>div>div {
        width: 100%
    }

    .home-empresas .how>div>div:first-of-type {
        margin-right: 0
    }

    .home-empresas .footerStamps {
        width: calc(100% - 32px);
        height: 88px
    }

    .home-empresas .footerStamps {
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 0 24px;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .home-empresas .footerStamps img {
        width: 88px
    }

    .home-empresas .dash .content {
        -ms-flex-direction: column;
        flex-direction: column
    }

    .home-empresas .dash .content img {
        width: 100%
    }

    .home-empresas .dash .content .texts {
        width: 100%
    }

    .home-empresas .segmentos {
        padding-top: 64px
    }

    .home-empresas .segmentos>h2 {
        font-size: 32px
    }

    .home-empresas .segmentos>div {
        width: 50%
    }

    .home-empresas .segmentos>div span {
        width: 50%;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-align: center;
        align-items: center;
        padding-top: 24px
    }

    .home-empresas .segmentos>div span i {
        width: 48px;
        height: 48px
    }

    .home-empresas .segmentos>div span p {
        font-size: 16px;
        padding-top: 8px
    }

    .como-funciona {
        -ms-flex-direction: column;
        flex-direction: column
    }

    .como-funciona h2 {
        font-size: 24px;
        line-height: 40px
    }

    .empresa-header>div {
        padding: 0 24px
    }

    .empresa-header>div .header-menu {
        display: none
    }

    .empresa-header>div .options a.black {
        display: none
    }

    .topSection {
        height: 404px;
        background-attachment: initial;
        background-size: 400px;
        background-position: center 204px
    }

    .topSection>div {
        padding-top: 40px
    }

    .topSection>div h2 {
        font-size: 24px
    }

    .solutionsTitle>h2 {
        padding-top: 64px;
        font-size: 32px
    }

    .solutionsSection {
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 0 24px
    }

    .solutionsSection .card {
        width: 100%;
        margin-bottom: 32px
    }

    .solutionsSection .card:last-of-type {
        margin-bottom: 0
    }

    .ourPlans {
        padding: 48px 24px
    }

    .ourPlans .content>h2 {
        font-size: 32px
    }

    .ourPlans .content .plansOptions {
        -ms-flex-direction: column;
        flex-direction: column
    }

    .ourPlans .content .plansOptions .planOption {
        width: 100%;
        margin-bottom: 32px
    }

    .ourPlans .content .plansOptions .planOption:last-of-type {
        margin-bottom: 0
    }

    .footer .footer__columns .footer__column {
        margin-bottom: 32px;
        width: 100%
    }

    .footer .footer__columns {
        -ms-flex-direction: column;
        flex-direction: column
    }

    .como-funciona>h2 {
        font-size: 32px;
        padding: 0 24px
    }

    .como-funciona .cf-content {
        -ms-flex-direction: column;
        flex-direction: column
    }

    .como-funciona .cf-content>img {
        width: 100%;
        height: auto
    }

    .como-funciona .cf-content .list {
        padding: 48px 0 0
    }

    .faq {
        padding: 0 24px
    }

    .faq>h2 {
        font-size: 32px
    }

    .dash .topBar {
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 0 24px
    }

    .dash .topBar>span p {
        font-size: 14px
    }

    .dash .topBar>span a {
        font-size: 11px
    }

    .dash .topBar .logout-btn {
        margin-right: 0;
        display: none
    }

    .dash .sidebar {
        left: -110%
    }

    .dash .sidebar.active {
        left: 0
    }

    .dash .sidebar>div {
        max-height: calc(100vh - 90px);
        overflow-y: scroll
    }

    .dash .content {
        width: 100%;
        padding-left: 0;
        margin-left: 0;
        padding: 88px 16px 0
    }

    .dash .topInfos {
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-align: start;
        align-items: flex-start;
        width: 100%
    }

    .dash .topInfos .info {
        width: 100%;
        margin-top: 8px;
        margin-right: 0
    }

    .dash .topInfos .info:first-of-type {
        margin-top: 0
    }

    .dash .recentInfos>span {
        -ms-flex-direction: column;
        flex-direction: column
    }

    .dash .recentInfos .recent {
        width: 100%
    }

    .dash.admin .consumoContainer {
        min-width: initial
    }

    .consultasTypes {
        overflow: hidden
    }

    .consultasTypes>div {
        display: inline-block;
        width: 100%;
        white-space: nowrap;
        overflow-x: scroll;
        position: relative;
        right: -16px
    }

    .consultasTypes>div>a {
        display: inline-block
    }

    .consultaContainer {
        padding: 48px 24px
    }

    .consultaContainer form {
        -ms-flex-direction: column;
        flex-direction: column
    }

    .consultaContainer form>span:first-of-type {
        width: 100%;
        margin-right: 0
    }

    .consultaContainer form>span:last-of-type {
        width: 100%
    }

    .consultaContainer form>span label {
        font-size: 16px
    }

    .consultaContainer form>span input {
        width: 100%
    }

    .consultaContainer form>button {
        width: 100%;
        margin-top: 16px
    }

    .minicards {
        -ms-flex-direction: column;
        flex-direction: column
    }

    .minicards .infocard {
        margin-top: 24px;
        width: 100%
    }

    .minicards .infocard:first-of-type {
        margin-top: 0
    }

    .dash .infoCard .infoCard__title.download>span a {
        width: 100%;
        margin-top: 16px
    }

    .resultadoDash {
        width: 100%;
        padding: 24px
    }

    .dash.resultado .infoCard__found>span {
        width: calc(50% - 4px);
        margin-right: 0px
    }

    .dash.resultado .infoCard__found>span:nth-of-type(odd) {
        margin-right: 8px
    }

    .dash.resultado .infoCard__found>span>span {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .dash.resultado .infoCard__found>span>span strong {
        font-size: 13px
    }

    .checkout>main .content {
        width: 100%
    }

    .checkout .creditosContainer {
        padding: 48px 0
    }

    .checkout .intro {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        padding: 24px 16px 0 16px
    }

    .checkout .creditsAvailable {
        width: calc(100% - 32px);
        margin: 24px auto
    }

    .checkout .overCredits {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        padding: 8px 16px 0 16px
    }

    .checkout .checkoutCredits {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        padding: 32px 16px 0 16px
    }

    .checkout .checkoutCredits .options .creditOption {
        width: 100%
    }

    .checkoutchat {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        padding: 24px
    }

    .checkoutchat .step28 .fieldmessage.dscn .countdown__divisor {
        font-size: 20px;
        padding: 0 10px
    }

    .checkoutchat .step28 .fieldmessage.dscn .countdown>div>span {
        font-size: 28px
    }

    .checkoutchat .step28 .fieldmessage>img {
        width: 64%
    }

    .checkoutchat .step28>img {
        display: none !important
    }

    .checkoutchat .step28 .loading-payment .loading-content,
    .checkoutchat .step28 .loading-pix .loading-content {
        width: calc(100vw - 48px)
    }

    .checkoutchat .step28 .payment .pay {
        -ms-flex-direction: column;
        flex-direction: column
    }

    .checkoutchat .step28 .payment .pay__options {
        width: 100%;
        padding-top: 12px;
        margin-bottom: 8px
    }

    .checkoutchat .step28 .payment .pay__pix {
        width: 100%
    }

    .checkoutchat .step28 .payment .pay__pix-modal--content {
        width: calc(100vw - 48px)
    }

    .checkoutchat .step28 .payment .pay__pix-modal--content>img {
        width: 200px
    }

    .checkoutchat .step28 .payment .pay__pix>button {
        width: 100%;
        max-width: 264px
    }

    .checkoutchat .step28 .payment .pay__card {
        width: 100%
    }

    .checkoutchat .step28 .payment .pay__card .carderror__content {
        width: calc(100vw - 48px)
    }

    .checkoutchat .step28 .payment .pay__card .carderror__content>h4 {
        font-size: 18px
    }

    .checkoutchat .step28 .payment .pay__card .container#form-checkout__cardNumber {
        width: 100% !important
    }

    .checkoutchat .step28 .payment .pay__card #form-checkout__submit {
        width: 100%;
        max-width: 264px;
        margin-left: 0
    }

    .checkoutchat .step28 .payment.opened {
        width: 100%;
        margin-left: 0
    }

    .consumo .consumoContainer {
        width: 100%;
        padding: 48px 24px;
        min-width: auto
    }

    .consumo .consumoContainer .extrato-item {
        -ms-flex-direction: column;
        flex-direction: column;
        height: auto;
        border: 1px solid #ddd;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
        padding: 12px 24px
    }

    .consumo .filter {
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -ms-flex-align: start;
        align-items: flex-start
    }

    .consumo .filter>p {
        padding-bottom: 12px;
        margin-top: -12px;
        display: none
    }
}

/* Responsividade para tabelas de compras */
@media (max-width: 480px) {
  .consumo .consumoContainer .extrato__head.compra,
  .consumo .consumoContainer .extrato-item.compra {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    padding: 12px !important;
  }

  .consumo .consumoContainer .extrato__head.compra span,
  .consumo .consumoContainer .extrato-item.compra span {
    width: 100% !important;
    font-size: 12px !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .consumo .consumoContainer .extrato__head.compra,
  .consumo .consumoContainer .extrato-item.compra {
    display: grid !important;
    grid-template-columns: 1.5fr 1fr 0.8fr 1fr 0.8fr !important;
    gap: 8px !important;
    padding: 0 16px !important;
  }

  .consumo .consumoContainer .extrato__head.compra span,
  .consumo .consumoContainer .extrato-item.compra span {
    width: 100% !important;
    font-size: 13px !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .consumo .consumoContainer .extrato__head.compra,
  .consumo .consumoContainer .extrato-item.compra {
    display: grid !important;
    grid-template-columns: 2fr 1fr 0.9fr 1fr 0.8fr !important;
    gap: 10px !important;
    padding: 0 20px !important;
  }

  .consumo .consumoContainer .extrato__head.compra span,
  .consumo .consumoContainer .extrato-item.compra span {
    width: 100% !important;
    font-size: 14px !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
  }
}

@media (min-width: 1024px) {
  .consumo .consumoContainer .extrato__head.compra,
  .consumo .consumoContainer .extrato-item.compra {
    display: grid !important;
    grid-template-columns: 2fr 1fr 0.9fr 1fr 0.8fr !important;
    gap: 12px !important;
    padding: 0 24px !important;
    align-items: center !important;
  }

  .consumo .consumoContainer .extrato__head.compra span,
  .consumo .consumoContainer .extrato-item.compra span {
    width: 100% !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    padding: 6px 4px !important;
    display: block !important;
  }
}

/* Responsividade para tabelas de consultas */
@media (max-width: 480px) {
  .consumo .consumoContainer .extrato__head.consultas,
  .consumo .consumoContainer .extrato-item.consultas {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    padding: 12px !important;
  }

  .consumo .consumoContainer .extrato__head.consultas span,
  .consumo .consumoContainer .extrato-item.consultas span {
    width: 100% !important;
    font-size: 12px !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .consumo .consumoContainer .extrato__head.consultas,
  .consumo .consumoContainer .extrato-item.consultas {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1.5fr 1.2fr 0.8fr !important;
    gap: 8px !important;
    padding: 0 16px !important;
  }

  .consumo .consumoContainer .extrato__head.consultas span,
  .consumo .consumoContainer .extrato-item.consultas span {
    width: 100% !important;
    font-size: 13px !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .consumo .consumoContainer .extrato__head.consultas,
  .consumo .consumoContainer .extrato-item.consultas {
    display: grid !important;
    grid-template-columns: 1fr 1fr 2fr 1.5fr 0.8fr !important;
    gap: 10px !important;
    padding: 0 20px !important;
  }

  .consumo .consumoContainer .extrato__head.consultas span,
  .consumo .consumoContainer .extrato-item.consultas span {
    width: 100% !important;
    font-size: 14px !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
  }
}

@media (min-width: 1024px) {
  .consumo .consumoContainer .extrato__head.consultas,
  .consumo .consumoContainer .extrato-item.consultas {
    display: grid !important;
    grid-template-columns: 1fr 1fr 2fr 1.5fr 0.8fr !important;
    gap: 12px !important;
    padding: 0 24px !important;
    align-items: center !important;
  }

  .consumo .consumoContainer .extrato__head.consultas span,
  .consumo .consumoContainer .extrato-item.consultas span {
    width: 100% !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    padding: 6px 4px !important;
    display: block !important;
  }
}

/* Estilo para o botão de visualização */
.consumo .consumoContainer .extrato-item .btn-consulta {
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
  padding: 6px 12px !important;
  background: #074246 !important;
  color: white !important;
  text-decoration: none !important;
  border-radius: 4px !important;
  font-size: 12px !important;
  transition: background 0.3s ease !important;
  white-space: nowrap !important;
}

.consumo .consumoContainer .extrato-item .btn-consulta:hover {
  background: #0a5a5f !important;
}

.consumo .consumoContainer .extrato-item .btn-consulta svg {
  width: 16px !important;
  height: 16px !important;
}

.consumo .consumoContainer .extrato-item .btn-consulta svg path {
  stroke: white !important;
}