/* ======================================================
  GENERAL
====================================================== */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #5f49e0;
}

body {
  margin: 0;
  font-family: "Nunito", sans-serif;
  background: #F5F5F7;
}
a{cursor: pointer;}

img {
  max-width: 100%;
}

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


button {
  cursor: pointer;
  font-family: "Nunito", sans-serif;
}

.container {
  max-width: 1320px;
  padding: 0 20px;
  margin: auto;
}

.navegacao_itens {
  display: none;
}

.hide-mobile-ib {
  display: inline-block !important;
}

.hide-mobile {
  display: block !important;
}

.hide-desktop-ib,
.hide-desktop {
  display: none !important;
}

@media (max-width: 980px) {
  .icon_logo{
    width: 75%;
  }

  .hide-mobile-ib,
  .hide-mobile {
    display: none !important;
  }
  .hide-desktop {
    display: block !important;
  }

  .hide-desktop-ib {
    display: inline-block !important;
  }
}

.icon-download {
  background-image: url(./img/icon-down.svg);
  width: 31px;
  height: 31px;
  display: inline-block;
}

.ft-65 {
  font-size: 65px;
  line-height: 70px;
}

.mb-0 {
  margin-bottom: 0;
}

.mt-1 {
  margin-top: 10px;
}

.mt-2 {
  margin-top: 20px;
}

.mt-3 {
  margin-top: 30px;
}

.mt-70 {
  margin-top: 70px;
}

.text-center {
  text-align: center;
}

.accent-color {
  color: #FF3984;
}

.accent-bg {
  background: #FF3984 !important;
}

.title-big {
  font-size: 83px;
  font-style: normal;
  font-weight: 800;
  line-height: 80px; /* 96.386% */
  letter-spacing: -3.32px;
  margin: 0;
}

.title-medium {
  color: #080808;
  text-align: center;
  font-size: 65px;
  font-style: normal;
  font-weight: 800;
  line-height: 80px; /* 123.077% */
  letter-spacing: -2.6px;
  margin: 0;
}

.btn {
  border-radius: 100px;
  background: #5F48E0;
  max-width: 415px;
  width: 100%;
  height: 102px;
  line-height: 102px;
  text-decoration: none;
  color: white;
  display: block;
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -1.12px;
  border: none;
}

.overlay {
  position: 0;
  position: fixed;
  left: 0;
  right: 0;
  top: 56px;
  bottom: 0;
  background-color: #00000028;
  pointer-events: none;
  transition: .2s all ease;
  opacity: 0;
}

body.menu-active .overlay {
  opacity: 1;
  pointer-events: all;
}

@media (max-width: 767px) {
  .btn {
    height: 60px;
    line-height: 60px;
    max-width: 280px;
    font-size: 18px;
  }

  .title-big,
  .title-medium {
    font-size: 24px;
    line-height: normal;
    letter-spacing: -0.96px;
  }
}

/* ======================================================
  /GENERAL
====================================================== */

/* ======================================================
  HEADER
====================================================== */
.main-header {
  display: flex;
  height: 75px; 
  display: flex;
  align-items: center;
  padding: 0 40px;
  position: absolute;
  left: 0;
  right: 0;
  left: 0;
  right: 0;
  justify-content: space-between;
  align-items: center;
  background-color: #7A63FF;
  border-radius: 0 0 50px 50px;
}

.main-header .box_logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.main-header .main__header__actions {
  width: 100%; 
}



.main-header .main__header__actions  a {
 color: white;
 text-decoration: none;
}




.main-header__menu-btn {
  border: none;
  background-color: transparent;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 14.4px;
  letter-spacing: 0.018px;
}


.main-header__menu-btn.active .menu__btn > span {
  transform: rotate(45deg);
}
.main-header__menu-btn.active .menu__btn > span::before {
  top: 0;
  transform: rotate(0);
}
.main-header__menu-btn.active .menu__btn > span::after {
  top: 0;
  transform: rotate(90deg);
}

.menu__btn {
  display: flex;
  align-items: center;
  position: relative;
  width: 26px;
  height: 26px;
  cursor: pointer;
  z-index: 1;
  margin: 0 auto 3px;
}

.menu__btn > span,
.menu__btn > span::before,
.menu__btn > span::after {
  display: block;
  position: absolute;

  width: 100%;
  height: 2px;

  background-color: #fff;

  transition-duration: .25s;
}
.menu__btn > span::before {
  content: '';
  top: -8px;
}
.menu__btn > span::after {
  content: '';
  top: 8px;
}

/* DESKTOP -------------------------------------------- */
@media (min-width: 764px) {
  .main-header {
    height: 124px;
    max-width: 1280px;
    margin: auto;
    padding: 0 72px 0 50px;
    gap: 150px;
    z-index: 9999;
  }

  .menu__btn {
    display: none;
  }

  .main-header .main__header__actions .main__header__actions__list {
    display: flex;
    justify-content: space-around;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 39px; /* 177.273% */
    letter-spacing: -0.88px;
  }

  .main-header .main__header__actions  a { 
    padding: 0 30px;
    white-space: nowrap;
  }
}
/* /DESKTOP -------------------------------------------- */

/* MOBILE -------------------------------------------- */

@media (max-width: 763px) {
  .main-header {
    height: 56px;
    border-radius: 0px 0px 12px 12px;
  }

  .main-header .main__header__actions {
    pointer-events: none;
    opacity: 0;
    transition: .2s all ease;
  }

  body.menu-active .main-header .main__header__actions {
    pointer-events: all;
    opacity: 1;
  }

  .main-header .main__header__actions .main__header__actions__list {
    width: 200px;
    position: fixed;
    top: 56px;
    left: 40px;
    background-color: #fff;
    border-radius: 4px;
    padding: 8px 0;
    z-index: 99;
  }

  .main-header .main__header__actions  a {
    color: #1D1B20;
    display: flex;
    width: 100%;
    align-items: center;
    padding: 0 12px;
    height: 56px;
  }
  .main-header .main__header__actions  a:hover {
    background-color: #EEE9FB;
    font-weight: 700;
  }
}
/* /MOBILE -------------------------------------------- */


/* ======================================================
  /HEADER
====================================================== */

/* ======================================================
  MAIN BOX
====================================================== */

.main-box {
  background: #5F48E0;
  padding-top: 90px;
  padding-bottom: 30px;
}


.main-box .main-box__text {
  color: white;
}

/* MOBILE -------------------------------------------- */
@media (max-width: 980px) {
  .main-box {
    padding-top: 160px;
  }

  .main-box .main-box__text .main-box__text__title {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    line-height: 34px;
    letter-spacing: -1.12px;
  }
  
  .main-box__text__description {
    font-size: 16px;
    letter-spacing: -0.64px;
    text-align: center;
  }

  .main-box .main-box__text .btn {
    position: relative;
    max-width: 415px;
    margin: auto;
    margin-top: -50px;
    height: 60px;
    line-height: 60px;
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .main-box {
    padding-top: 80px;
  }
}
/* /MOBILE -------------------------------------------- */

/* DESKTOP -------------------------------------------- */
@media (min-width: 981px) {
  .main-box {
    padding-top: 210px;
    padding-bottom: 68px;
  }

  .main-box .container {
    display: grid;
    justify-content: center;
    grid-template-columns: 490px 1fr;
    gap: 10px;
  }

  .main-box .main-box__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    max-width: 490px;
  }

  .main-box .main-box__figure {
    margin-right: -70px;
  }

  .main-box .main-box__text .main-box__text__description {
    font-size: 25px;
    line-height: 32px; /* 128% */
    text-align: left;
    margin-bottom: 20px;
  }

}
/* /DESKTOP -------------------------------------------- */

/* ======================================================
  /MAIN BOX
====================================================== */

/* ======================================================
  PROMO VIDEO
====================================================== */
.promo-video {
  background-image: url(./img/deubrown_pattern.png);
  background-color: #FF3985;
  padding: 16px 0;
}

.promo-video .promo-video__wrap-video {
  padding-bottom: 37.65641%;
  position: relative;
  margin: auto;
  max-width: 780px;
}

.promo-video .promo-video__wrap-video iframe { 
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* DESKTOP -------------------------------------------- */
@media (min-width: 981px) {
  .promo-video {
    padding: 45px 0;
  }
}
/* /DESKTOP -------------------------------------------- */

/* MOBILE -------------------------------------------- */
@media (max-width: 768px) {
  
}
/* /MOBILE -------------------------------------------- */

/* ======================================================
  /PROMO VIDEO
====================================================== */

/* ======================================================
  COUPON
====================================================== */

.coupon {
  padding: 60px 0 40px;
}

.coupon .coupon__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 29px;
  padding: 0 60px;
}

.coupon .coupon__list .coupon__list__card {
  overflow: hidden;
  border-radius: 50px;
  border: 1px solid #D5D5D5;
  background-color: #fff;
}



.coupon .coupon__list .coupon__list__card .coupon__list__card__header {
  background-color: #5F48E0;
  padding: 42px 0;
  text-align: center;
  color: white;
  line-height: 54px; /* 108% */
  letter-spacing: -2px;
}

.coupon .coupon__list .coupon__list__card .coupon__list__card__header .coupon__list__card__header__title {
  font-size: 50px;
  margin: 0;
  font-weight: 700;
}

.coupon .coupon__list .coupon__list__card .coupon__list__card__body {
  padding: 50px 80px 16px;
  text-align: center;
  font-size: 50px;
  line-height: 54px;
  letter-spacing: -2px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.coupon__list__card__body__description {
  margin: 0;
  margin-bottom: 35px;
}

.coupon .coupon__list .coupon__list__card .coupon__list__card__body .coupon__see-more {
  text-align: center;
  font-size: 26px;
  font-style: normal;
  font-weight: 800;
  line-height: 39px; /* 150% */
  letter-spacing: -1.04px;
  text-decoration: none;
  color: #5F48E0;
  margin-top: 18px;
}

/* DESKTOP -------------------------------------------- */
@media (min-width: 981px) {
 
}
/* /DESKTOP -------------------------------------------- */

/* MOBILE -------------------------------------------- */
@media (max-width: 768px) {
  .coupon {
    padding: 16px 0;
  }

  .coupon .coupon__list .coupon__list__card .coupon__list__card__body {
    padding: 16px;
  }

  .coupon__list__card__body__description {
    font-size: 20px;
    line-height: normal;
    margin-bottom: 16px;
  }

  .coupon .coupon__list .coupon__list__card .coupon__list__card__header .coupon__list__card__header__title {
    font-size: 24px;
    line-height: 48px;
  }

  .coupon .coupon__list .coupon__list__card .coupon__list__card__header {
    padding: 4px 0;
  }

  .coupon .coupon__list {
    flex-direction: column;
    display: flex;
    padding: 0;
  }

  .coupon .coupon__list .coupon__list__card .coupon__list__card__body .coupon__see-more {
    font-size: 18px;
  }
  
}
/* /MOBILE -------------------------------------------- */
/* ======================================================
  /COUPON
====================================================== */

/* ======================================================
  REGISTER
====================================================== */

.register .register__description {
  color: #080808;
  text-align: center;
  font-size: 26px;
  font-weight: 400;
  line-height: 39px; /* 150% */
  letter-spacing: -1.04px;
}

.register .register__form {
  max-width: 654px;
  width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.register .register__form .register__form__group {
  width: 100%;
}


.register .register__form input {
  border-radius: 100px;
  border: 1px solid #D5D5D5;
  background: #FFF;
  width: 100%;
  height: 75px;
  line-height: 75px;
  text-decoration: none;
  color: #080808;
  display: block;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -1.12px;
  margin-bottom: 20px;
  font-weight: 300;
  padding: 0 40px;
  font-family: "Nunito", sans-serif;
  transition: .2s all ease;
}

.register .register__form input:focus {
  outline: none;
  border-color: #5f48e0;
}

.register .register__form input::placeholder {
  color: #A9A9A9;
}

.register .btn {
  margin-top: 45px;
}


.register .register__form .btn .btn__loading {
  display: none;
}

.register .register__form .btn.loading .btn__text {
  display: none;
}

.register .register__form .btn.loading .btn__loading {
  display: block;
}

/* DESKTOP -------------------------------------------- */
@media (min-width: 981px) {
 
}
/* /DESKTOP -------------------------------------------- */

/* MOBILE -------------------------------------------- */
@media (max-width: 768px) {
  .register .register__description {
    margin: 16px 0;
    font-size: 16px;
    line-height: normal;
  }

  

  .register .register__form input {
    font-size: 16px;
    height: 58px;
  }

  .register .btn {
    margin-top: 16px;
  }
  
}
/* /MOBILE -------------------------------------------- */
/* ======================================================
  /REGISTER
====================================================== */

/* ======================================================
  PARTNERS
====================================================== */

.partners {
  padding: 100px 0;
}

.partners .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}

.partners .partners__text__description {
  color: #080808;
  font-size: 27px;
  font-weight: 400;
  line-height: 39px; /* 144.444% */
  letter-spacing: -1.08px;
}

/* MOBILE -------------------------------------------- */
@media (max-width: 768px) {
  .partners {
    padding: 16px 0;
    text-align: center;
  }

  .partners .container {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .partners .partners__text__description {
    font-size: 16px;
    line-height: normal;
    margin: 0;
    margin-top: 10px;
  }
}
/* /MOBILE -------------------------------------------- */


/* ======================================================
  /PARTNERS
====================================================== */

/* ======================================================
  BETSUL CONSCIOUS
====================================================== */

.betsul-conscious {
  text-align: center;
  
}

.betsul-conscious__text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.betsul-conscious .betsul-conscious__text__description {
  color: #080808;
  text-align: center;
  font-size: 27px;
  font-style: normal;
  font-weight: 400;
  line-height: 39px; /* 144.444% */
  letter-spacing: -1.08px;
  margin-bottom: 40px;
}


/* MOBILE -------------------------------------------- */
@media (max-width: 768px) {
  .betsul-conscious .betsul-conscious__text__description {
    font-size: 16px;
    line-height: normal;
  }
}
/* /MOBILE -------------------------------------------- */


/* ======================================================
  /BETSUL CONSCIOUS
====================================================== */


/* ======================================================
  FAQ
====================================================== */

.faq {
  text-align: center;
  padding-bottom: 20px;
  line-height: 24.5px; /* 136.111% */
  letter-spacing: -0.72px;
  font-size: 18px;
  margin-top: 15px;
  padding-top: 80px;
}

.faq .btn-register {
  border-radius: 100px;
  background: #5F48E0;
  max-width: 415px;
  height: 102px;
  line-height: 102px;
  text-decoration: none;
  color: white;
  display: block;
  margin: auto;
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -1.12px;
}


.faq .faq__betsul-seal-container {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin-top: 38px;
}

.faq .faq__betsul-seal-container .fap__betsul-partner {
  max-width: 280px;
}

@media (max-width: 980px) {

  .faq {
    padding: 16px 0;
  }

  .faq .faq__list {
    max-width: 293px;
    margin: auto;
    margin-bottom: 50px;
  }

  .faq .faq__betsul-seal-container {
    margin: 0;
  }

  .faq .faq__list .faq__list__item {
    margin-bottom: 25px;
  }

  .faq .faq__list .faq__list__item:last-of-type {
    margin-bottom: 0;
  }

  .faq .faq__betsul-seal-container {
    flex-direction: column;
  }

  .faq .faq__list .faq__list__item .faq__list__item__title {
    text-align: left;
  }

  .faq .faq__list .faq__list__item .faq__list__item__icon img {
    height: 45px;
  }

  .faq .faq__list .faq__list__item .faq__list__item__title:before {
    content: '';
    background-image: url(./img/icon-checked.svg);
    background-size: contain;
    height: 21px;
    width: 21px;
    display: inline-block;
    margin-right: 10px;
    vertical-align: top;
  }

  .faq .btn-register {
    font-size: 21px;
    height: 48px;
    line-height: 48px;
    font-weight: 800;
    letter-spacing: -0.84px;
    max-width: 273px;
  }
}

/* DESKTOP -------------------------------------------- */
@media (min-width: 981px) {
  .faq {
    font-size: 26px;
    line-height: 39px;
    letter-spacing: -1.04px;
    text-align: center;
    padding-bottom: 60px;
  }

  .faq .faq__list {
    display: flex;
    gap: 36px;
    justify-content: space-between;
    margin-bottom: 96px;
  }
  
  .faq .faq__list .faq__list__item {
    border-radius: 50px;
    border: 1px solid #D5D5D5;
    background: #FFF;
    box-shadow: 10px 13px #5f49e0;
    width: 100%;
    height: 430px;
  
    text-align: center;
    font-size: 45px;
    font-weight: 800;
    line-height: 42px; /* 93.333% */
    letter-spacing: -1.8px;
  }

  .faq .faq__list .faq__list__item .faq__list__item__icon {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
/* /DESKTOP -------------------------------------------- */
/* ======================================================
  /FAQ
====================================================== */

/* ======================================================
  FOOTER
====================================================== */
.nosso_site {
  text-align: center;
  background: #f5f5f5;
  padding: 1px;
}

.nosso_site > p {
  color: #212121;
  font-weight: 300;
  font-size: 20px;
  line-height: 14px;
  font-family: "Nunito", sans-serif;
}

.footer_betsul_redes {
  display: block;
  text-align: center;
  width: 100%;
  max-width: 1280px;
  margin: auto;
}

.footer_betsul_redes > div {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  justify-content: center;
}

.footer_betsul_redes > div > div > p {
  color: #212121;
  font-weight: 600;
  font-size: 14px;
  line-height: 14px;
  font-family: "Nunito", sans-serif;
}

.footer_betsul {
  display: block;
  align-self: center;
}

.footer__ra {
  display: block;
  text-align: center;
}

.footer_social-network__list {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
  gap: 32px;
}

.footer_social-network__list a {
  transition: .2s all ease;
}

.footer_social-network__list a:hover {
  opacity: 0.6;
}

.up-18 {
  color: #000;
  text-align: center;
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
  margin-bottom: 16px;
}


/* MOBILE -------------------------------------------- */
@media (max-width: 980px) {
  .footer_betsul_redes > div {
    display: inline-block;
  }

  .footer_betsul_redes > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: center;
  }

  .footer_social-network {
    width: 100vw;
  }
}
/* /MOBILE -------------------------------------------- */

/* ======================================================
  /FOOTER
====================================================== */

@media (max-width: 1260px) {
  .box_diversao {
    grid-template-columns: 1fr 1fr;
  }

  .box_games {
    gap: 10px;
  }
}

@media (max-width: 980px) {
  

  #frame_form_afiliados {
    height: 2150px;
    padding: 0px;
  }

  .box-personagem {
    display: none;
  }

  .box_jogo_do_bem {
    display: none;
  }

  .box_parceiros_topo {
    display: block;
    text-align: center;
  }

  .box_certificado {
    display: grid;
    grid-column-end: none;
    margin-right: 25px;
  }

  .box_certificado > img {
    margin-right: 0;
  }

  .icon_certificado {
    margin: 5px;
  }

  .box_diversao {
    margin-top: 14px;
    display: block;
  }

  .box_informacoes {
    margin-left: 0;
  }

 

  .box_informacoes_description_white {
    text-align: center;
  }

  .box_informacoes_description_white > b {
    display: block;
    text-align: center;
  }

  .card_modalidades {
    width: 328px;
    margin: 0 auto;
    display: none;
  }

  .card_modalidades .deposito {
    margin: 0 auto;
    padding: 0;
  }

  .card_modalidades.active {
    display: block;
    margin: 0 auto 15px 0;
    width: 100%;
  }

  .box_games {
    max-width: 288px;
    margin: auto;
  }

  .box_games img {
    display: none;
  }

  .box_games img.active {
    display: block;
  }

  .box-personagem {
    display: none;
  }

  .box_button_resgatar_bonus {
    display: block;
    text-align: center;
    margin: 15px 15px 0;
  }

  .box_gestao_titulo {
    font-size: 28px;
  }

  .bet_img {
    margin-top: 5px;
  }

  .box_beto {
    display: flex;
    flex-direction: column-reverse;
    padding: 0;
  }

  .curiosidades {
    display: block;
    text-align: center;
    margin: 16px auto;
    max-width: 328px;
  }

  .curiosidades_descricao {
    width: 296px;
    margin: 0 auto;
  }

  .curiosidades_descricao > p {
    justify-content: center;
  }

  .box_passos {
    margin: 16px auto;
  }

  .passos_betsul {
    display: block;
    padding: 1px;
  }

  nav {
    display: block;
    text-align: center;
    padding: 14px;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #8B76FF;
    margin: 10px auto 0;
    max-width: 328px;
  }

  .navegacao_itens {
    display: inline-flex;
    grid-gap: 8px;
    margin: 0;
    padding: 0;
  }

  .navegacao_itens > li {
    border: 1px solid #ffffff;
    border-radius: 16px;
    list-style: none;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    width: 90px;
    padding: 14px;
    color: #ffffff;
    position: relative;
    cursor: pointer;
  }

  .navegacao_itens > li.active {
    border: 1px solid #ffffff;
    border-radius: 16px;
    display: block;
    background-color: #ffffff;
    color: #5f48e0;
  }

  .navegacao_itens > li.active::before {
    content: '';
    position: absolute;
    bottom: -17px;
    height: 4px;
    width: 100%;
    left: 0;
    background: #B5A5F0;
  }

  .navegacao_itens > li.active::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #B5A5F0;
    font-size: 0;
    line-height: 0;
    left: 50%;
    transform: translateX(-50%);
    bottom: -27px;
  }

  .esportes {
    width: 333px;
  }

  .cassino {
    width: 339px;
  }

  .loterias {
    width: 342px;
  }
}

#frame_form_afiliados {
  width: 100%;
  border: none;
  height: 2020px;
  padding: 50px;
  padding-top: 0;
}

@media (max-width: 1120px) {
  #frame_form_afiliados {
    height: 2020px;
    padding: 0px;
  }
}

@media (max-width: 980px) {
  #frame_form_afiliados {
    height: 2750px;
    padding: 0px;
  }
}

@media (max-width: 430px) {
  #frame_form_afiliados {
    height: 2850px;
    padding: 0px;
  }
}
