@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600;1,700&display=swap");
@import url("https://fonts.cdnfonts.com/css/old-english-five");
/*
inicie com "sass --watch --no-source-map styles/scss:styles/css"

/* === VARIÁVEIS === */
/* === MIXIN === */
/* === GLOBAL === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.2s;
  font-weight: 500;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 28px;
}

p {
  font-weight: 400;
  letter-spacing: 0.5px;
}

button {
  font-size: 1rem;
  cursor: pointer;
  border: none;
}

input,
textarea {
  border: none;
  border-bottom: 1px solid #bdbdbd;
  background: none;
  padding: 8px;
  resize: none;
  border-radius: 2px;
}

input:focus,
textarea:focus {
  outline: none;
  border-bottom: 1px solid #37639e;
}

.button {
  background: rgb(2, 57, 112);
  color: #f2f2f2;
  display: inline-block;
  padding: 12px 28px;
  font-size: 1rem;
  border-radius: 25px;
  transition: 0.2s;
}

.button:hover {
  background: rgb(3, 69, 136);
}

.button2 {
  background: rgb(240, 212, 0);
  color: #222222;
  display: inline-block;
  padding: 12px 28px;
  font-size: 1rem;
  border-radius: 30px;
  transition: 0.2s;
}

.button2:hover {
  background: rgb(216, 185, 7);
}

.container {
  padding: 2rem 4rem;
}

#aviso-cookies {
  background: rgb(2, 57, 112);
  color: #f2f2f2;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}
#aviso-cookies .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#aviso-cookies .button {
  background: #f2f2f2;
  color: #222222;
}
#aviso-cookies .politica {
  text-decoration: underline;
}

.top-title {
  display: flex;
  justify-content: center;
  align-items: center;
  align-items: flex-end;
  text-align: center;
  background-image: url("../../images/title.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  color: #f2f2f2;
  height: 30vh;
}
.top-title .localiza a:hover {
  color: #c4ddff;
}

/* === HEADER === */
.sticky {
  position: sticky;
  top: 0;
  width: 100%;
  box-shadow: 0 4px 6px -4px rgba(30, 30, 30, 0.8);
  transition: 0.5s;
}

.header-menu.sticky {
  background: rgb(2, 57, 112);
}

.header-menu.sticky .logo {
  filter: grayscale(1) brightness(15);
}

.header-menu.sticky a,
.header-menu.sticky p {
  color: #f2f2f2;
  font-weight: 500;
}

.header-menu.sticky .login-button {
  background: rgb(240, 212, 0);
  color: #222222;
}

.header-menu.sticky .login-button:hover {
  background: rgb(216, 185, 7);
}

.header-menu {
  position: fixed;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 4rem;
  z-index: 999;
  transition: 0.5s;
  /*.header-menu-link::before {
      content: '';
      position: absolute;
      width: 100%;
      height: 1px;
      background-color: #09368a;
      bottom: 0;
      left: 0;
      transform-origin: right;
      transform: scaleX(0);
      transition: transform .3s ease-in-out;
  }

  .header-menu-link:hover::before {
      transform-origin: left;
      transform: scaleX(1);
  }*/
}
.header-menu .logo {
  width: 120px;
  transition: 1s;
}
.header-menu .dropdown-item {
  position: relative;
}
.header-menu .dropdown-link i {
  font-size: 14px;
}
.header-menu .dropdown-link:hover i {
  animation: arrow 0.6s forwards;
}
.header-menu .dropdown-content {
  background: #f2f2f2;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 10px;
  border-radius: 6px;
  position: absolute;
  top: 22px;
  left: 0;
  visibility: hidden;
  width: 18vw;
  height: 0;
  opacity: 0;
  transition: 0.6s;
  overflow: hidden;
}
.header-menu .dropdown-item:hover .dropdown-content {
  visibility: visible;
  height: auto;
  opacity: 1;
}
.header-menu .dropdown-item:hover .dropdown-content ul {
  transform: translateY(0);
  visibility: visible;
}
.header-menu .dropdown-content ul {
  display: flex;
  flex-direction: column;
  text-align: center;
  list-style: none;
  visibility: hidden;
  transition: 0.4s;
  transform: translateY(-100%);
}
.header-menu .dropdown-content ul li {
  border-top: 1px solid rgba(80, 80, 80, 0.2);
  transition: 0.3s;
}
.header-menu .dropdown-content ul li:hover {
  background: #e6e6e6;
}
.header-menu .dropdown-content ul li:first-child {
  border-radius: 6px;
}
.header-menu .dropdown-content a {
  padding: 10px;
  display: inline-block;
  width: 100%;
  color: #222222;
}
.header-menu .header-menu-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  list-style-type: none;
}
.header-menu .header-menu-link {
  color: #f2f2f2;
}
.header-menu .header-menu-link:hover {
  color: #dddddd;
}
.header-menu .login-button {
  background: rgb(240, 212, 0);
  color: #222222;
  padding: 10px 16px;
  border-radius: 25px;
  transition: 0.2s;
}
.header-menu .login-button:hover {
  background: rgb(216, 185, 7);
}
.header-menu .burger {
  display: none;
  transition: 0.3s;
}
.header-menu .burger:hover {
  cursor: pointer;
}
.header-menu .burger div {
  width: 40px;
  height: 3px;
  background: #f2f2f2;
  margin: 6px 0;
  border-radius: 2px;
}
.header-menu .mobile-menu {
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  transition: 0.5s;
  z-index: 999;
  transform: translateX(-100%);
  overflow-y: auto;
}
.header-menu .mobile-menu.active {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgb(255, 255, 255);
  backdrop-filter: blur(2px);
  height: 100%;
  transform: translateX(0);
  width: 100%;
  visibility: visible;
}
.header-menu .mobile-menu.active a {
  color: #222222;
}
.header-menu .mobile-menu.active .login-button {
  font-size: 22px;
  color: #222222;
}
.header-menu .mobile-menu ul {
  display: none;
}
.header-menu .mobile-menu.active ul {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 1rem 0;
}
.header-menu #close-header {
  font-size: 24px;
  color: rgba(51, 50, 50, 0.6);
  position: absolute;
  top: 1rem;
  right: 1rem;
}

#login-modal {
  display: none;
  justify-content: center;
  align-items: center;
  padding: 2rem 4rem;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}
#login-modal .modal-content {
  background-color: #f2f2f2;
  border-radius: 2px;
  padding: 1rem;
  width: 50%;
  position: relative;
}
#login-modal h3 {
  color: #222222;
  text-align: center;
}
#login-modal .close {
  color: #222222;
  position: absolute;
  top: 1px;
  right: 6px;
  cursor: pointer;
}
#login-modal .options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 1rem 0;
  text-align: center;
}
#login-modal .options a {
  background: #f2f2f2;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  border-radius: 2px;
  padding: 1rem;
  transition: 0.3s;
}
#login-modal .options a:hover {
  background: #dbe2f7;
}
#login-modal .options img {
  width: 150px;
}

/* === HOME === */
#home #banner-home {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100vh;
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.8) 100%), url("../../images/home01.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
#home #banner-home img {
  width: 300px;
}
#home #banner-home p {
  color: #f2f2f2;
  font-size: 22px;
}
#home #banner-home .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
}
#home #banner-home .button2 {
  font-size: 24px;
  font-weight: 600;
}
#home #options .options-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 180px;
  gap: 1rem;
  margin-top: -80px;
}
#home #options .options-cards .card {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
  background: #f2f2f2;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 10px;
  text-align: center;
  padding: 1rem;
  border-radius: 2px;
  transition: 0.3s;
}
#home #options .options-cards .card:hover {
  background: #dbe2f7;
}
#home #options i {
  color: rgb(2, 57, 112);
  font-size: 3rem;
}
#home #options p {
  font-size: 20px;
  font-weight: 500;
}
#home #antecipacao {
  background: #f2f2f2;
  color: #222222;
  text-align: center;
}
#home #antecipacao h2::after {
  content: "";
  width: 80px;
  height: 3px;
  background: rgb(240, 212, 0);
  display: block;
  margin: 10px 0px;
}
#home #antecipacao h2::after {
  margin: 10px auto;
}
#home #antecipacao .antecipacao-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}
#home #antecipacao .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
#home #antecipacao .card div {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  padding: 10px;
  border: 1px solid #d8d8d8;
  border-radius: 50%;
}
#home #antecipacao .card div i {
  font-size: 28px;
}
#home #antecipacao .button {
  margin-top: 1rem;
}
#home #servicos-home {
  background: rgb(2, 57, 112);
  color: #f2f2f2;
}
#home #servicos-home h2::after {
  content: "";
  width: 80px;
  height: 3px;
  background: rgb(240, 212, 0);
  display: block;
  margin: 10px 0px;
}
#home #servicos-home .container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#home #servicos-home .banners {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
#home #servicos-home .banners img {
  width: 100%;
}
#home #slide-parcerias {
  background: #f2f2f2;
  color: #222222;
}
#home #slide-parcerias h2::after {
  content: "";
  width: 80px;
  height: 3px;
  background: rgb(240, 212, 0);
  display: block;
  margin: 10px 0px;
}
#home #slide-parcerias img {
  width: 150px;
}
#home #slide-parcerias .splide {
  margin-top: 1rem;
}
#home #slide-parcerias .splide__slide {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 10px;
  padding: 10px;
}
#home #home-contato {
  color: #222222;
}
#home #home-contato h2::after {
  content: "";
  width: 80px;
  height: 3px;
  background: rgb(240, 212, 0);
  display: block;
  margin: 10px 0px;
}
#home #home-contato .container {
  display: flex;
  gap: 1rem;
}
#home #home-contato form {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#home #home-contato form input,
#home #home-contato form textarea {
  width: 100%;
}
#home #home-contato .politica-cbx {
  width: auto;
}
#home #home-contato .mapa {
  width: 50%;
}

/* === INSTITUCIONAL === */
#quem-somos {
  color: #222222;
  text-align: justify;
}
#quem-somos h2::after {
  content: "";
  width: 80px;
  height: 3px;
  background: rgb(240, 212, 0);
  display: block;
  margin: 10px 0px;
}
#quem-somos .container {
  display: flex;
  align-items: center;
  gap: 2rem;
}
#quem-somos h2 {
  margin-bottom: 1rem;
}
#quem-somos img {
  width: 50%;
}

#missao {
  background: #f2f2f2;
  color: #222222;
  text-align: center;
}
#missao .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
#missao i {
  font-size: 5rem;
}
#missao .missao,
#missao .valores,
#missao .visao {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#historia {
  background-image: linear-gradient(0deg, rgba(0, 23, 46, 0.9) 0%, rgba(0, 23, 46, 0.9) 100%), url("../../images/historia/fundo2.jpg");
  background-size: cover;
  background-attachment: fixed;
  color: #f2f2f2;
}
#historia h2::after {
  content: "";
  width: 80px;
  height: 3px;
  background: rgb(240, 212, 0);
  display: block;
  margin: 10px 0;
}
#historia p {
  text-align: justify;
  line-height: 30px;
}
#historia img {
  max-width: 100%;
}
#historia .highlight {
  font-size: 20px;
}
#historia .slide1 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}
#historia .slide1 .second {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
#historia .slide2 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
#historia .slide3 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}
#historia .slide3 .first,
#historia .slide3 .second {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
#historia .slide4 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
#historia .slide4 .first {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#historia .slide4 .second {
  display: flex;
  justify-content: center;
  align-items: center;
}
#historia .slide5 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}
#historia .slide5 .second {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
#historia .slide6 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
#historia .slide7 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}
#historia .slide7 .first {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
#historia .slide7 .first img {
  width: 120%;
}
#historia .slide7 .second {
  justify-self: flex-end;
  align-self: flex-start;
}

#equipe {
  color: #222222;
}
#equipe h2::after {
  content: "";
  width: 80px;
  height: 3px;
  background: rgb(240, 212, 0);
  display: block;
  margin: 10px 0px;
}
#equipe .splide {
  background: #f2f2f2;
  margin-top: 1rem;
  padding: 1rem;
}
#equipe .splide__slide {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 10px;
  padding: 10px;
  border-radius: 2px;
}
#equipe .splide__slide img {
  width: 100%;
}
#equipe .info {
  margin-top: 1rem;
}

/* === NOTÍCIAS === */
#noticias {
  color: #222222;
}
#noticias .row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
#noticias img {
  max-width: 100%;
  height: 200px;
  border-radius: 2px;
}
#noticias .nl_profile {
  height: 100%;
  display: flex;
  align-items: stretch !important;
  text-align: center;
}
#noticias .nl_subtitulo {
  color: #757575;
  font-size: 1rem;
  font-weight: 400;
}
#noticias .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  background: #f2f2f2;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 10px;
}
#noticias .btn-primary {
  background: rgb(2, 57, 112);
  color: #f2f2f2;
  display: inline-block;
  padding: 12px 28px;
  font-size: 1rem;
  border-radius: 2px;
  transition: 0.2s;
}
#noticias .btn-primary:hover {
  background: rgb(3, 69, 136);
}

#noticia-detalhe {
  color: #222222;
}
#noticia-detalhe h1 {
  font-size: 28px;
  text-align: center;
}
#noticia-detalhe ul {
  list-style-type: none;
  text-align: center;
}
#noticia-detalhe .container {
  padding: 0rem 2rem 2rem 2rem;
}
#noticia-detalhe .row:first-child img {
  width: 100%;
}
#noticia-detalhe .row:last-child {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}
#noticia-detalhe .row:last-child .col-sm-12 {
  grid-column: span 4;
}
#noticia-detalhe .row:last-child img {
  max-width: 100%;
  height: 200px;
  border-radius: 2px;
}
#noticia-detalhe .row:last-child .nl_titulo {
  font-size: 1rem;
  font-weight: 400;
}
#noticia-detalhe .nl_subtitulo {
  color: #757575;
  font-size: 1rem;
  font-weight: 400;
}
#noticia-detalhe .nl_profile {
  height: 100%;
  display: flex;
  align-items: stretch !important;
  text-align: center;
}
#noticia-detalhe .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  background: #f2f2f2;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 10px;
}
#noticia-detalhe .btn-primary {
  background: rgb(2, 57, 112);
  color: #f2f2f2;
  display: inline-block;
  padding: 12px 28px;
  font-size: 1rem;
  border-radius: 2px;
  transition: 0.2s;
}
#noticia-detalhe .btn-primary:hover {
  background: rgb(3, 69, 136);
}

/* === NOSSOS SERVIÇOS === */
#nossos-servicos {
  color: #222222;
}
#nossos-servicos h2::after {
  content: "";
  width: 80px;
  height: 3px;
  background: rgb(240, 212, 0);
  display: block;
  margin: 10px 0px;
}
#nossos-servicos #oq-fazemos .servicos-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
#nossos-servicos #oq-fazemos .servicos-cards .card {
  background: #f2f2f2;
  padding: 2rem 1rem;
  border-radius: 2px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 10px;
  text-align: center;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}
#nossos-servicos #oq-fazemos ul {
  list-style-type: none;
}
#nossos-servicos #oq-fazemos i {
  font-size: 28px;
  color: rgb(2, 57, 112);
}
#nossos-servicos #steps {
  display: flex;
  background: #f2f2f2;
}
#nossos-servicos #steps ul {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
  list-style-type: none;
}
#nossos-servicos #steps li {
  display: flex;
  align-items: center;
}
#nossos-servicos #steps .step-number {
  color: rgb(2, 57, 112);
  border: 2px solid rgb(2, 57, 112);
  font-weight: 700;
  border-radius: 100%;
  padding: 10px 16px;
  margin-right: 1rem;
}
#nossos-servicos #steps .first {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 50%;
}
#nossos-servicos #steps .second {
  display: flex;
  align-items: center;
  width: 50%;
}
#nossos-servicos #steps .second img {
  width: 100%;
}
#nossos-servicos #steps .steps-modal {
  display: none;
  justify-content: flex-end;
  position: fixed;
  z-index: 999;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}
#nossos-servicos #steps .steps-modal .modal-content {
  display: flex;
  background-color: #fefefe;
  width: 60%;
  position: relative;
  overflow-y: auto;
}
#nossos-servicos #steps .steps-modal .close-steps {
  color: #222222;
  opacity: 0.6;
  position: absolute;
  top: 2px;
  right: 8px;
  cursor: pointer;
}
#nossos-servicos #steps .steps-modal h3 {
  font-weight: 600;
  text-align: center;
}
#nossos-servicos #steps .steps-modal .text {
  background: rgb(2, 57, 112);
  color: #f2f2f2;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  width: 50%;
}
#nossos-servicos #steps .steps-modal .text a {
  color: #c4ddff;
}
#nossos-servicos #steps .steps-modal .text a:hover {
  color: #b3cef3;
}
#nossos-servicos #steps .steps-modal .como-contratar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
#nossos-servicos #steps .steps-modal .form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
  width: 50%;
}
#nossos-servicos #steps .steps-modal .form a:hover {
  color: rgb(3, 69, 136);
}
#nossos-servicos #steps .steps-modal .button {
  align-self: flex-start;
}
#nossos-servicos #antecipacao {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: #222222;
}
#nossos-servicos #antecipacao i {
  color: rgb(2, 57, 112);
}
#nossos-servicos #antecipacao .cheque-cards,
#nossos-servicos #antecipacao .duplicata-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}
#nossos-servicos #antecipacao .card {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  gap: 10px;
  background: #f2f2f2;
  color: #222222;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 10px;
  border-radius: 2px;
  padding: 2rem;
}
#nossos-servicos #antecipacao .card i {
  font-size: 28px;
}
#nossos-servicos #antecipacao .duplicatas {
  margin-top: 1rem;
}
#nossos-servicos #comparacao {
  background: #f2f2f2;
  color: #222222;
}
#nossos-servicos #comparacao .comparacao-itens {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 1rem;
}
#nossos-servicos #comparacao .button {
  margin-top: 1rem;
}
#nossos-servicos #comparacao img {
  width: 100%;
}
#nossos-servicos #comparacao .comparacao-itens ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style-type: none;
  margin-top: 1rem;
  text-align: center;
}
#nossos-servicos #comparacao .comparacao-itens li {
  display: flex;
}
#nossos-servicos #comparacao .comparacao-itens i {
  width: 1rem;
}
#nossos-servicos #comparacao .comparacao-itens p {
  margin-left: 10px;
}

/* === CONTA ESCROW === */
#conta-escrow {
  color: #222222;
}
#conta-escrow #steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#conta-escrow #steps .title h2::after {
  content: "";
  width: 80px;
  height: 3px;
  background: rgb(240, 212, 0);
  display: block;
  margin: 10px 0px;
}
#conta-escrow #steps .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
#conta-escrow #steps ul {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
  list-style-type: none;
}
#conta-escrow #steps li {
  display: flex;
  align-items: center;
}
#conta-escrow #steps .step-number {
  color: rgb(2, 57, 112);
  border: 2px solid rgb(2, 57, 112);
  font-weight: 700;
  border-radius: 100%;
  padding: 10px 16px;
  margin-right: 1rem;
}
#conta-escrow #steps .first img {
  width: 100%;
}
#conta-escrow #steps .first {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 50%;
}
#conta-escrow #steps .second {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 50%;
}
#conta-escrow #servicos-escrow {
  background: #f2f2f2;
}
#conta-escrow #servicos-escrow p.title::after {
  content: "";
  width: 80px;
  height: 3px;
  background: rgb(240, 212, 0);
  display: block;
  margin: 10px 0;
}
#conta-escrow #servicos-escrow .servicos-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
#conta-escrow #servicos-escrow .card {
  background: #ffffff;
  color: #222222;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  border-radius: 2px;
  text-align: center;
  padding: 2rem;
}
#conta-escrow #servicos-escrow i {
  color: rgb(2, 57, 112);
  font-size: 28px;
}
#conta-escrow #conta-safe {
  display: flex;
  align-items: center;
  gap: 1rem;
}
#conta-escrow #conta-safe .title p::after {
  content: "";
  width: 80px;
  height: 3px;
  background: rgb(240, 212, 0);
  display: block;
  margin: 10px 0;
}
#conta-escrow #conta-safe .first {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
  width: 50%;
}
#conta-escrow #conta-safe .button {
  margin-top: 2rem;
}
#conta-escrow #conta-safe .second {
  width: 50%;
}
#conta-escrow #conta-safe .second img {
  width: 100%;
}

/* === CRÉDITO IDEAL === */
#credito-ideal {
  color: #222222;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  transition: 0.5s;
}
#credito-ideal h2::after {
  content: "";
  width: 80px;
  height: 3px;
  background: rgb(240, 212, 0);
  display: block;
  margin: 10px 0;
}
#credito-ideal img {
  width: 100%;
}
#credito-ideal .para-voce,
#credito-ideal .para-empresa {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.para-voce-modal,
.para-empresa-modal {
  display: none;
  justify-content: flex-end;
  position: fixed;
  z-index: 999;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}
.para-voce-modal .modal-content,
.para-empresa-modal .modal-content {
  display: flex;
  background-color: #fefefe;
  width: 60%;
  position: relative;
  overflow-y: auto;
}
.para-voce-modal .close-ideal,
.para-empresa-modal .close-ideal {
  color: #222222;
  opacity: 0.6;
  position: absolute;
  top: 2px;
  right: 8px;
  cursor: pointer;
}
.para-voce-modal h3,
.para-empresa-modal h3 {
  font-weight: 600;
  text-align: center;
}
.para-voce-modal small a,
.para-empresa-modal small a {
  text-decoration: underline;
}
.para-voce-modal .text,
.para-empresa-modal .text {
  background: rgb(2, 57, 112);
  color: #f2f2f2;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  width: 50%;
}
.para-voce-modal .text a,
.para-empresa-modal .text a {
  color: #c4ddff;
}
.para-voce-modal .text a:hover,
.para-empresa-modal .text a:hover {
  color: #b3cef3;
}
.para-voce-modal .form,
.para-empresa-modal .form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
  width: 50%;
}
.para-voce-modal .form a:hover,
.para-empresa-modal .form a:hover {
  color: rgb(3, 69, 136);
}
.para-voce-modal .button,
.para-empresa-modal .button {
  align-self: flex-start;
}
.para-voce-modal .para-voce-cards,
.para-empresa-modal .para-voce-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1rem;
}
.para-voce-modal .card,
.para-empresa-modal .card {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  background: #f2f2f2;
  color: #222222;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 10px;
  padding: 1rem;
  border-radius: 2px;
}
.para-voce-modal .para-empresa-list,
.para-empresa-modal .para-empresa-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-left: 1rem;
  margin-top: 10px;
}

.para-empresa-modal .text {
  gap: 2rem;
}

/* === EMPRÉSTIMO CONSIGNADO === */
#consignado {
  color: #222222;
}
#consignado .title p::after {
  content: "";
  width: 80px;
  height: 3px;
  background: rgb(240, 212, 0);
  display: block;
  margin: 10px 0;
}
#consignado .vantagens {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
#consignado .vantagens .first,
#consignado .vantagens .second {
  width: 50%;
}
#consignado .vantagens img {
  width: 100%;
}
#consignado .vantagens .first {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}
#consignado .vantagens .first .vantagens-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
#consignado .vantagens .first .card {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f2f2f2;
  padding: 2rem;
  border-radius: 2px;
}

#consignado-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #f2f2f2;
  color: #222222;
}
#consignado-steps .steps-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
#consignado-steps .card {
  background: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  padding: 2rem;
  border-radius: 2px;
  text-align: center;
}
#consignado-steps .card i {
  color: rgb(2, 57, 112);
  font-size: 28px;
}
#consignado-steps .button {
  align-self: flex-start;
}

.emprestimo-modal {
  display: none;
  justify-content: flex-end;
  position: fixed;
  z-index: 999;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}
.emprestimo-modal .modal-content {
  display: flex;
  background-color: #fefefe;
  width: 60%;
  position: relative;
  overflow-y: auto;
}
.emprestimo-modal .close-ideal {
  color: #222222;
  opacity: 0.6;
  position: absolute;
  top: 2px;
  right: 8px;
  cursor: pointer;
}
.emprestimo-modal h3 {
  font-weight: 600;
  text-align: center;
}
.emprestimo-modal .text {
  background: rgb(2, 57, 112);
  color: #f2f2f2;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  width: 50%;
}
.emprestimo-modal .text a {
  color: #c4ddff;
}
.emprestimo-modal .text a:hover {
  color: #b3cef3;
}
.emprestimo-modal .form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
  width: 50%;
}
.emprestimo-modal .form a:hover {
  color: rgb(3, 69, 136);
}
.emprestimo-modal .button {
  align-self: flex-start;
}
.emprestimo-modal .emprestimo-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1rem;
}
.emprestimo-modal .card {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  background: #f2f2f2;
  color: #222222;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 10px;
  padding: 1rem;
  border-radius: 2px;
}

.cartao-modal {
  display: none;
  justify-content: flex-end;
  position: fixed;
  z-index: 999;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}
.cartao-modal .modal-content {
  display: flex;
  background-color: #fefefe;
  width: 60%;
  position: relative;
  overflow-y: auto;
}
.cartao-modal .close-ideal {
  color: #222222;
  opacity: 0.6;
  position: absolute;
  top: 2px;
  right: 8px;
  cursor: pointer;
}
.cartao-modal h3 {
  font-weight: 600;
  text-align: center;
}
.cartao-modal .text {
  background: rgb(2, 57, 112);
  color: #f2f2f2;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  width: 50%;
}
.cartao-modal .text a {
  color: #c4ddff;
}
.cartao-modal .text a:hover {
  color: #b3cef3;
}
.cartao-modal .form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
  width: 50%;
}
.cartao-modal .form a:hover {
  color: rgb(3, 69, 136);
}
.cartao-modal .button {
  align-self: flex-start;
}
.cartao-modal .cartao-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1rem;
}
.cartao-modal .card {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  background: #f2f2f2;
  color: #222222;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 10px;
  padding: 1rem;
  border-radius: 2px;
}

/* === PARCERIAS === */
/*
#parcerias {
    color: $text-color-dark;
    @include h2-after(0px);

    .parceiros-cards {
        margin-top: 1rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .card {
        @include flex-center;
        background: #f2f2f2;
        padding: 1rem;
        border-radius: 2px;
        box-shadow: $shadow;
        width: 30%;
        transition: 0.2s;
    }

    .card:hover {
        background: #dbe2f7;
    }

    .card img {
        width: 180px;
    }

    .splide {
        margin-top: 1rem;
    }

    .splide__slide {
        @include flex-center;
        background: #fff;
        box-shadow: $shadow;
        padding: 10px;
    }
}
*/
/* === TRABALHE CONOSCO === */
#trabalhe-conosco {
  color: #222222;
}
#trabalhe-conosco h2::after {
  content: "";
  width: 80px;
  height: 3px;
  background: rgb(240, 212, 0);
  display: block;
  margin: 10px 0;
}
#trabalhe-conosco .carreira-container {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}
#trabalhe-conosco .carreira-container .first {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  width: 50%;
}
#trabalhe-conosco .carreira-container .second {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
}
#trabalhe-conosco .carreira-container img {
  max-width: 100%;
}
#trabalhe-conosco .form-carreira {
  display: flex;
  margin-top: 1rem;
}
#trabalhe-conosco .form-carreira .first {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: rgb(2, 57, 112);
  color: #f2f2f2;
  width: 50%;
  padding: 2rem 4rem;
}
#trabalhe-conosco .form-carreira i {
  font-size: 28px;
  color: rgb(2, 57, 112);
}
#trabalhe-conosco .form-carreira .carreira-cards {
  color: #f2f2f2;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}
#trabalhe-conosco .form-carreira .card {
  background: #f2f2f2;
  color: #222222;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 10px;
  border-radius: 2px;
  text-align: center;
  padding: 1rem;
}
#trabalhe-conosco .form-carreira form {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: 2rem 4rem;
}
#trabalhe-conosco .form-carreira form input {
  width: 100%;
}

/* === FRANQUEADO === */
#pq-franqueado {
  color: #222222;
  display: flex;
  gap: 1rem;
}
#pq-franqueado h2::after {
  content: "";
  width: 80px;
  height: 3px;
  background: rgb(240, 212, 0);
  display: block;
  margin: 10px 0;
}
#pq-franqueado .first {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 1rem;
  width: 50%;
}
#pq-franqueado .second {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
}
#pq-franqueado .second img {
  max-width: 100%;
}
#pq-franqueado .franquia-modal {
  display: none;
  justify-content: flex-end;
  position: fixed;
  z-index: 999;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}
#pq-franqueado .franquia-modal .modal-content {
  display: flex;
  background-color: #fefefe;
  width: 60%;
  position: relative;
  overflow-y: auto;
}
#pq-franqueado .franquia-modal .close-franquia {
  color: #222222;
  opacity: 0.6;
  position: absolute;
  top: 2px;
  right: 8px;
  cursor: pointer;
}
#pq-franqueado .franquia-modal h3 {
  font-weight: 600;
  text-align: center;
}
#pq-franqueado .franquia-modal .text {
  background: rgb(2, 57, 112);
  color: #f2f2f2;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  width: 50%;
  text-align: center;
}
#pq-franqueado .franquia-modal .form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
  width: 50%;
}
#pq-franqueado .franquia-modal .form a:hover {
  color: rgb(3, 69, 136);
}
#pq-franqueado .franquia-modal .button {
  align-self: flex-start;
}
#pq-franqueado .franquia-modal .franquia-modal-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1rem;
}
#pq-franqueado .franquia-modal .card {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}
#pq-franqueado .franquia-modal .card i {
  font-size: 28px;
  color: rgb(240, 212, 0);
}

#franquia-passos {
  background: rgb(2, 57, 112);
  color: #f2f2f2;
}
#franquia-passos .title {
  text-align: center;
}
#franquia-passos .title p::after {
  content: "";
  width: 80px;
  height: 3px;
  background: rgb(240, 212, 0);
  display: block;
  margin: 10px auto;
}
#franquia-passos .container-passos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}
#franquia-passos .passo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}
#franquia-passos .passo img {
  max-width: 100%;
}
#franquia-passos .passo i {
  font-size: 45px;
}
#franquia-passos .arrow-hidden {
  display: none;
}
#franquia-passos .span-5 {
  grid-column: 5;
}

/* === INVESTIMENTOS === */
#investimentos {
  color: #222222;
  display: flex;
  gap: 1rem;
}
#investimentos h2::after {
  content: "";
  width: 80px;
  height: 3px;
  background: rgb(240, 212, 0);
  display: block;
  margin: 10px 0;
}
#investimentos .first {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  width: 50%;
}
#investimentos .first .button {
  align-self: flex-start;
}
#investimentos .second {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
}
#investimentos .second img {
  max-width: 100%;
}
#investimentos .investir-modal {
  display: none;
  justify-content: flex-end;
  position: fixed;
  z-index: 999;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}
#investimentos .investir-modal .modal-content {
  display: flex;
  background-color: #fefefe;
  width: 60%;
  position: relative;
  overflow-y: auto;
}
#investimentos .investir-modal .close-investir {
  color: #222222;
  opacity: 0.6;
  position: absolute;
  top: 2px;
  right: 8px;
  cursor: pointer;
}
#investimentos .investir-modal h3 {
  font-weight: 600;
  text-align: center;
}
#investimentos .investir-modal .text {
  background: rgb(2, 57, 112);
  color: #f2f2f2;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  width: 50%;
  text-align: center;
}
#investimentos .investir-modal .form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
  width: 50%;
}
#investimentos .investir-modal .form a:hover {
  color: rgb(3, 69, 136);
}
#investimentos .investir-modal .button {
  align-self: flex-start;
}
#investimentos .investir-modal i {
  font-size: 28px;
}

/* === CONTATO === */
.contato {
  color: #222222;
}
.contato h2::after {
  content: "";
  width: 80px;
  height: 3px;
  background: rgb(240, 212, 0);
  display: block;
  margin: 10px auto;
}
.contato .first {
  text-align: center;
}
.contato .contato-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}
.contato .contato-cards i {
  font-size: 28px;
  margin-bottom: 10px;
  color: rgb(2, 57, 112);
}
.contato .contato-cards .card {
  background: #f1f5f9;
  color: #0f172a;
  padding: 1rem;
  border-radius: 2px;
  transition-property: color, background-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 250ms;
}
.contato .contato-cards .card:hover {
  background: #e2e8f0;
}
.contato .contato-cards .card:first-child div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.contato .second {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}
.contato form {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contato form input,
.contato form textarea {
  width: 100%;
}
.contato .politica-cbx {
  width: auto;
}
.contato .mapa {
  width: 50%;
}

/* === Área do Cliente === */
#area-do-cliente {
  color: #222222;
}
#area-do-cliente h2::after {
  content: "";
  width: 80px;
  height: 3px;
  background: rgb(240, 212, 0);
  display: block;
  margin: 10px 0;
}
#area-do-cliente .options-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}
#area-do-cliente .card {
  background: #f2f2f2;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 10px;
  border-radius: 2px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem;
  height: 100%;
  transition: 0.2s;
  text-align: center;
}
#area-do-cliente .card img {
  width: 40%;
}
#area-do-cliente .card p {
  font-size: 26px;
}
#area-do-cliente .card:hover {
  background: #dbe2f7;
}
#area-do-cliente .operacoes img {
  width: 25%;
}

#video {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #222222;
}
#video h2::after {
  content: "";
  width: 80px;
  height: 3px;
  background: rgb(240, 212, 0);
  display: block;
  margin: 10px auto;
}
#video iframe {
  box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 10px;
  margin-top: 1rem;
  width: min(80%, 1024px);
  aspect-ratio: 16/9;
  border-radius: 2px;
}

/* === POLÍTICA DE PRIVACIDADE === */
#politica {
  color: #222222;
}
#politica ol {
  list-style-position: inside;
  padding-left: 10px;
}

/* === FOOTER === */
.footer {
  background: rgb(1, 35, 70);
  color: #f2f2f2;
}
.footer h3::after {
  content: "";
  width: 80px;
  height: 3px;
  background: rgb(240, 212, 0);
  display: block;
  margin: 1rem 0;
}
.footer img {
  width: 150px;
}
.footer ul {
  list-style-type: none;
}
.footer a,
.footer p {
  font-weight: 400;
}
.footer .highlight {
  color: rgb(240, 212, 0);
}
.footer .container:first-child {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.footer .footer-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer .footer-section ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer .footer-section i {
  margin-right: 6px;
}
.footer .footer-section:first-child > p {
  margin-bottom: auto;
}
.footer .apps {
  display: block;
}
.footer .apps img {
  width: 60%;
  transition: 0.3s;
}
.footer .apps img:hover {
  opacity: 0.8;
}
.footer .container:last-child {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  border-top: 1px solid rgba(66, 103, 151, 0.4);
}
.footer .social-media {
  display: flex;
  gap: 1rem;
}
.footer .social-media i {
  font-size: 24px;
  transition: 0.3s;
}
.footer .social-media i:hover,
.footer a:hover {
  color: #dddddd;
}

@keyframes arrow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.radio-form-container {
  display: flex;
  flex-wrap: wrap;
}

.radio-form-container div {
  position: relative;
}

.radio-form-container label {
  padding: 1rem 0.5rem 1rem 1.75rem;
  display: block;
  line-height: 1;
}

.radio-form-container input {
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0.5rem;
}

div:has(> p + .radio-form-container) {
  padding-inline: 0.5rem;
}

.lista-cartao {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 2rem 1rem;
}

.banner-home-small {
  font-size: 0.75rem;
  color: #aab6d1;
  font-weight: 600;
  display: block;
}