* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
}

p:last-child, li:last-child {
  margin: 0;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
}

.banner {
  background: url(../img/bg-banner.webp) no-repeat center center;
  background-size: cover;
  color: #fff;
  padding: 50px 0;
}
.banner img {
  width: 56px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .banner img {
    margin: 0 auto 40px auto;
    display: block;
  }
}
.banner__title {
  width: 350px;
  max-width: 100%;
  float: right;
}
.banner__title h1 {
  font-weight: bold;
  font-size: 66px;
  border-bottom: solid 1px white;
  text-align: center;
  padding-bottom: 10px;
  margin: 0 0 20px 0;
}
@media (max-width: 768px) {
  .banner__title h1 {
    font-size: 16vw;
  }
}
.banner__title p {
  font-size: 19px;
  text-align: justify;
}
@media (max-width: 768px) {
  .banner__title p {
    text-align: center;
  }
}
.banner__title a {
  display: block;
  width: 100%;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  padding: 17px;
  text-align: center;
  border-radius: 3px;
  line-height: 1;
  margin-top: 40px;
}
.banner__title a, .banner__title a:active, .banner__title a:focus, .banner__title a:visited {
  color: black;
  background: #FFC600;
}
.banner__title a:hover {
  background: white;
  color: black;
}

.condicoes {
  color: white;
  background: black;
  text-align: center;
  padding: 50px;
}
.condicoes h2 {
  font-size: 34px;
  margin-bottom: 40px;
}
.condicoes__link {
  display: block;
  color: rgb(218, 218, 218);
  text-decoration: none;
  font-size: 16px;
}
.condicoes__link:hover, .condicoes__link:active, .condicoes__link:focus, .condicoes__link:visited {
  color: rgb(218, 218, 218);
}
.condicoes__link:hover {
  text-decoration: underline;
}
.condicoes__botao {
  display: block;
  width: 320px;
  max-width: 100%;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  padding: 17px;
  text-align: center;
  border-radius: 3px;
  line-height: 1;
  margin: 40px auto 0 auto;
}
.condicoes__botao, .condicoes__botao:active, .condicoes__botao:focus, .condicoes__botao:visited {
  color: black;
  background: white;
}
.condicoes__botao:hover {
  background: #FFC600;
  color: black;
}
.condicoes__cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  width: 100%;
}
@media (max-width: 768px) {
  .condicoes__cards {
    flex-wrap: wrap;
  }
}
.condicoes__cards__item {
  border: solid 1px white;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 270px;
  max-width: 100%;
  border-radius: 5px;
  box-shadow: rgba(255, 255, 255, 0.16) 5px 5px 32px 5px;
  margin-bottom: 25px;
}
.condicoes__cards__item h3 {
  line-height: 1.4;
}
.condicoes__cards__item h3 strong, .condicoes__cards__item h3 span {
  display: block;
}
.condicoes__cards__item:first-child h3 {
  font-size: 17px;
  font-weight: 300;
}
.condicoes__cards__item:first-child h3 strong {
  font-weight: bold;
  font-size: 27px;
}
.condicoes__cards__item:first-child h3 strong span {
  font-size: 86px;
  line-height: 1;
  color: #FFC600;
}
.condicoes__cards__item:first-child h3 small {
  font-size: 13px;
  color: #FFC600;
}
.condicoes__cards__item:last-child h3 {
  font-size: 22px;
  font-weight: 300;
}
.condicoes__cards__item:last-child h3 span {
  display: inline;
  font-weight: bold;
}
.condicoes__cards__item:last-child h3 strong {
  color: #FFC600;
  font-size: 38px;
  line-height: 1;
  text-align: left;
  font-weight: bold;
}
.condicoes__cards__item:last-child h3 small {
  font-size: 13px;
  color: #FFC600;
}
.condicoes__cards__item:last-child p {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  text-align: left;
  font-weight: 300;
}
.condicoes__cards__item:last-child p strong {
  font-size: 66px;
  line-height: 1;
  color: #FFC600;
  border-bottom: solid 5px #FFC600;
  font-weight: bold;
}
.condicoes__popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  background: rgba(0, 0, 0, 0.7);
  overflow: scroll;
}
.condicoes__popup::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background-color: transparent;
}
.condicoes__popup::-webkit-scrollbar-corner {
  background-color: rgba(183, 197, 212, 0.7);
}
.condicoes__popup::-webkit-scrollbar-thumb {
  box-shadow: none;
  border-radius: 8px;
  background-color: rgba(183, 197, 212, 0.7);
}
.condicoes__popup::-webkit-scrollbar-track {
  box-shadow: none;
  border-radius: 8px;
  background-color: transparent;
}
.condicoes__popup__center {
  background: white;
  margin: 50px auto;
  width: calc(100% - 30px);
  max-width: 890px;
  border-radius: 5px;
  padding: 30px;
  color: black;
  position: relative;
}
.condicoes__popup__center > a {
  position: absolute;
  top: -10px;
  right: 0px;
}
.condicoes__popup__center small {
  font-weight: bold;
}
.condicoes__popup__center ul {
  color: #121212;
}
.condicoes__popup__center ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .condicoes__popup__center ul li {
    flex-wrap: wrap;
  }
}
.condicoes__popup__center ul li h4 {
  width: 220px;
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: solid 1px #ccc;
  line-height: 1.2;
  font-size: 18px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .condicoes__popup__center ul li h4 {
    width: 100%;
    border-right: none;
  }
}
.condicoes__popup__center ul li h4 strong {
  color: #FFC600;
  font-size: 64px;
  display: block;
  line-height: 1;
  font-weight: bold;
}
.condicoes__popup__center ul li h4 small {
  font-size: 11px;
  font-weight: bold;
}
.condicoes__popup__center ul li p {
  width: calc(100% - 250px);
  font-size: 11px;
  text-align: left;
}
@media (max-width: 768px) {
  .condicoes__popup__center ul li p {
    width: 100%;
  }
}
.condicoes__popup__center ul li:last-child h4 {
  font-size: 16px;
}
.condicoes__popup__center ul li:last-child h4 strong {
  font-size: 34px;
  margin-bottom: 5px;
}
.condicoes__popup__center ul li:last-child h4 small {
  line-height: 1.5;
}

.beneficios {
  background: url(../img/bg-real.png) no-repeat left top;
  background-size: cover;
  padding: 50px 0;
}
.beneficios h2 {
  font-weight: 900;
  font-size: 38px;
}
@media (max-width: 768px) {
  .beneficios h2 {
    margin-bottom: 30px;
    text-align: center;
  }
}
.beneficios ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.beneficios ul li {
  width: calc(50% - 30px);
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .beneficios ul li {
    width: calc(50% - 15px);
    text-align: center;
  }
}
.beneficios ul li span {
  color: black;
  display: block;
  font-weight: bold;
  font-size: 16px;
  padding: 0 5px;
  line-height: 1.1;
  background: #FFC600;
  width: 90%;
}
.beneficios ul li img {
  margin: 25px 0;
  height: 70px;
}
.beneficios ul li p {
  font-size: 14px;
  color: rgb(87, 87, 87);
}
.beneficios ul li p a, .beneficios ul li p a:active, .beneficios ul li p a:focus, .beneficios ul li p a:hover, .beneficios ul li p a:visited {
  color: rgb(87, 87, 87);
}
.beneficios ul li p strong {
  color: black;
}

.cdb {
  color: white;
  padding: 100px 0;
  background: black url(../img/line-x.png) no-repeat top center;
  background-size: 68%;
}
.cdb .container {
  position: relative;
}
.cdb__grafismo {
  position: relative;
}
.cdb__grafismo::before {
  content: "";
  display: block;
  position: absolute;
  top: -60px;
  width: 100%;
  height: 300px;
  background: url(../img/graphism.png) no-repeat center center;
  background-size: contain;
}
@media (max-width: 768px) {
  .cdb__grafismo::before {
    right: 0;
  }
}
.cdb__tag {
  position: absolute;
  top: -100px;
  height: 70px;
  background: #FFC600;
  z-index: 2;
  right: 120px;
  padding: 35px 5px 5px 5px;
  font-weight: bold;
  font-size: 16px;
}
@media (max-width: 768px) {
  .cdb__tag {
    right: 30px;
  }
}
.cdb p {
  color: #FFC600;
  font-size: 15px;
}
.cdb small {
  font-size: 12px;
  color: #929292;
  display: block;
}
@media (max-width: 768px) {
  .cdb small {
    margin-bottom: 40px;
  }
}
.cdb h2 {
  font-size: 44px;
  line-height: 1;
  margin-bottom: 50px;
}
.cdb h2 strong {
  color: #FFC600;
  font-size: 122px;
  display: block;
  line-height: 1;
}
.cdb h2 small {
  font-size: 18px;
  color: white;
  font-weight: 300;
  padding-right: 0;
}
.cdb ul li {
  margin-bottom: 15px;
  font-size: 16px;
  padding-left: 35px;
  position: relative;
}
.cdb ul li::before {
  content: "";
  display: block;
  left: 0;
  width: 22px;
  height: 22px;
  background: url(../img/check-round.webp) no-repeat center center;
  background-size: contain;
  position: absolute;
  left: 0;
}
.cdb a {
  display: block;
  padding-left: 35px;
}
.cdb a, .cdb a:hover, .cdb a:focus, .cdb a:visited, .cdb a:active {
  color: white;
}
.cdb h4 {
  color: #FFC600;
  font-size: 26px;
  margin: 50px 0 0 0;
  font-weight: normal;
}

.vantagens {
  padding: 80px 0;
}
.vantagens h2 {
  text-align: right;
  font-weight: bold;
  font-size: 58px;
  color: black;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 0;
  margin-right: 30px;
  margin-top: -10px;
}
@media (max-width: 768px) {
  .vantagens h2 {
    font-size: 50px;
    margin-bottom: 30px;
    text-align: center;
  }
}
.vantagens h2::after {
  content: "";
  display: block;
  position: absolute;
  width: 70px;
  border-bottom: solid 5px #FFC600;
  top: 100%;
  right: 0;
}
@media (max-width: 768px) {
  .vantagens h2::after {
    margin: 0 auto;
    left: 0;
  }
}
.vantagens p {
  font-size: 16px;
  margin-bottom: 20px;
}
.vantagens p strong {
  color: black;
}
.vantagens a {
  font-size: 16px;
  text-decoration: underline;
}
.vantagens a, .vantagens a:active, .vantagens a:focus, .vantagens a:visited, .vantagens a:hover {
  color: black;
}

.torcida {
  background: url(../img/banner.png) no-repeat center center;
  background-attachment: fixed;
  background-size: cover;
  padding: 50px 0;
  color: white;
}
.torcida h2 {
  font-size: 32px;
  font-weight: 300;
}
.torcida h2 img {
  margin-top: 20px;
}
@media (max-width: 768px) {
  .torcida h2 {
    margin-bottom: 40px;
  }
}
.torcida ul {
  margin-left: 30px;
}
.torcida ul li {
  margin-bottom: 12px;
  font-size: 19px;
  padding-left: 35px;
  font-weight: bold;
  position: relative;
}
.torcida ul li::before {
  content: "";
  display: block;
  top: 2px;
  width: 22px;
  height: 22px;
  background: url(../img/check-round.webp) no-repeat center center;
  background-size: contain;
  position: absolute;
  left: 0;
}
.torcida p {
  margin-left: 30px;
  font-size: 17px;
  margin-top: 30px;
}
.torcida p a {
  text-decoration: underline;
}
.torcida p a, .torcida p a:active, .torcida p a:focus, .torcida p a:visited {
  color: white;
}

.cartao {
  background: #FFC600;
  color: black;
  padding: 80px 0;
}
.cartao .container {
  position: relative;
}
.cartao .container::before {
  content: "";
  display: block;
  position: absolute;
  right: -5%;
  top: -40px;
  width: 45%;
  height: 100%;
  background: url(../img/cards-credits.png) no-repeat top right;
  background-size: contain;
}
@media (max-width: 768px) {
  .cartao .container::before {
    top: 0;
    right: 0;
    width: 100%;
    position: relative;
    height: 200px;
    left: 0;
    margin: -40px auto 20px auto;
    background-position-x: center;
  }
}
.cartao .container .row {
  z-index: 2;
  position: relative;
}
.cartao__tag {
  position: absolute;
  top: -80px;
  height: 70px;
  background: white;
  z-index: 2;
  right: 260px;
  padding: 35px 5px 5px 5px;
  font-weight: bold;
  font-size: 16px;
  color: black;
}
@media (max-width: 768px) {
  .cartao__tag {
    right: 30px;
    top: -40px;
  }
}
.cartao h3 {
  color: white;
  font-size: 22px;
  font-weight: normal;
  margin: 25px 0 40px 0;
}
.cartao h3 strong {
  font-weight: bold;
}
.cartao p {
  font-size: 15px;
}
.cartao ul {
  font-size: 15px;
  margin-bottom: 10px;
}
.cartao ul li {
  position: relative;
  margin-bottom: 7px;
  padding-left: 20px;
}
.cartao ul li::before {
  content: "";
  display: block;
  top: 2px;
  width: 14px;
  height: 14px;
  background: url(../img/check.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  left: 0;
}
.cartao small {
  font-size: 14px;
}
.cartao h2 {
  font-size: 30px;
  font-weight: bold;
  position: relative;
}
.cartao h2 img {
  width: 350px;
  max-width: 100%;
  display: block;
  margin: 5px 0 20px 0;
}
.cartao h2 span {
  font-size: 34px;
  font-weight: bold;
  position: relative;
}
.cartao h2 span::after {
  content: "";
  display: block;
  position: absolute;
  right: -15px;
  bottom: -19px;
  width: 80px;
  height: 80px;
  background: url(../img/icon-money-02.png) no-repeat center center;
  background-size: cover;
  z-index: -1;
}
.cartao h2 small {
  margin-top: 5px;
  font-size: 15px;
  display: block;
  font-weight: normal;
}
.cartao h4 {
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: bold;
}
.cartao small.cartao__disclaimer {
  font-size: 12px;
  text-align: center;
  display: block;
}
.cartao__cashback {
  background: white;
  color: black;
  margin: 60px 0 40px 0;
  position: relative;
  padding: 15px 30px 30px 30px;
}
.cartao__cashback h5 {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 15px;
  padding-left: 40px;
  position: relative;
}
.cartao__cashback h5::before {
  content: "";
  display: block;
  position: absolute;
  width: 80px;
  height: 80px;
  bottom: -5px;
  left: 0;
  margin-left: -50px;
  border-radius: 50%;
  background: #FFC600 url(../img/icon-money-03.png) no-repeat center center;
  background-size: 85% auto;
}
.cartao__cashback p {
  font-size: 18px;
}
.cartao__solicitar {
  background: white;
  color: black;
  padding: 30px 50px;
  border-radius: 50px 0 50px 0;
  margin-bottom: 30px;
}
.cartao__solicitar ul li {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 15px;
}
.cartao__solicitar ul li strong {
  position: absolute;
  left: 0;
  top: -8px;
  font-size: 26px;
  color: #FFC600;
}
.cartao__solicitar ul li::before {
  display: none;
}
.cartao__solicitar p {
  font-size: 12px;
  padding-left: 20px;
}
.cartao__solicitar p a, .cartao__solicitar p a:active, .cartao__solicitar p a:focus, .cartao__solicitar p a:visited, .cartao__solicitar p a:hover {
  color: black;
}

.conheca {
  padding: 60px 0;
}
.conheca h2 {
  text-align: right;
  font-weight: bold;
  font-size: 36px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .conheca h2 {
    text-align: center;
  }
}
.conheca h3 {
  text-align: right;
  font-weight: bold;
  font-size: 30px;
  margin-top: 30px;
  color: #FFC600;
}
@media (max-width: 768px) {
  .conheca h3 {
    text-align: center;
  }
}
.conheca__lista {
  padding: 20px 20px 20px 34px;
  display: flex;
  justify-content: space-between;
  background: rgb(242, 242, 242);
  position: relative;
}
@media (max-width: 768px) {
  .conheca__lista {
    padding: 20px;
    flex-wrap: wrap;
  }
}
.conheca__lista::before {
  content: "";
  width: 30%;
  height: 100%;
  position: absolute;
  display: block;
  right: 100%;
  top: 0;
  background: rgb(242, 242, 242);
}
@media (max-width: 768px) {
  .conheca__lista::before {
    display: none;
  }
}
.conheca ul {
  width: calc(50% - 15px);
}
@media (max-width: 768px) {
  .conheca ul {
    width: 100%;
  }
  .conheca ul:not(:last-child) {
    margin-bottom: 15px;
  }
}
.conheca ul li {
  font-size: 15px;
  font-weight: 300;
  position: relative;
  padding-left: 30px;
  padding-right: 5px;
}
.conheca ul li::before {
  content: "";
  display: block;
  top: 2px;
  width: 18px;
  height: 18px;
  background: url(../img/check.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  left: 0;
}
.conheca ul li strong {
  display: block;
  font-weight: bold;
}
.conheca ul li:not(:last-child) {
  margin-bottom: 18px;
}
.conheca img {
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}

.assessoria {
  padding: 80px 0;
  background: black;
  color: white;
}
.assessoria h2 {
  font-weight: 300;
  font-size: 28px;
}
.assessoria h2 strong {
  display: block;
  margin-top: 5px;
  font-weight: bold;
  color: #FFC600;
  font-size: 48px;
  line-height: 1;
}
.assessoria h2 strong span {
  color: white;
  display: block;
}
@media (max-width: 768px) {
  .assessoria h2 {
    font-size: 22px;
  }
  .assessoria h2 strong {
    font-size: 40px;
  }
}
.assessoria small {
  font-size: 12px;
}
.assessoria p {
  font-size: 18px;
  font-weight: 300;
}
.assessoria p strong {
  font-weight: bold;
}
@media (max-width: 768px) {
  .assessoria p {
    margin-top: 40px;
  }
}
.assessoria h3 {
  font-size: 26px;
  margin-top: 35px;
  color: #FFC600;
}
.assessoria__destaque {
  border-right: solid 1px white;
}
@media (max-width: 768px) {
  .assessoria__destaque {
    border: none;
  }
}
.assessoria__descricao {
  padding-left: 40px;
}
@media (max-width: 768px) {
  .assessoria__descricao {
    padding-left: 15px;
  }
}

footer {
  background: rgb(17, 17, 17);
  padding: 80px 0;
}
footer img {
  width: 56px;
}
@media (max-width: 768px) {
  footer img {
    margin-bottom: 40px;
  }
}
footer ul li {
  font-size: 14px;
  line-height: 1.2;
  color: rgb(87, 87, 87);
}
footer ul li strong {
  color: white;
  font-weight: bold;
  font-size: 16px;
  display: block;
  margin-top: 5px;
  line-height: 1.4;
}
footer ul li:not(:last-child) {
  margin-bottom: 20px;
}/*# sourceMappingURL=style.css.map */