/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  font-family: "Inter";
  background: #000;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  text-decoration: none;
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .header-container {
  border-radius: 150px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(20, 20, 22, 0.50);
  backdrop-filter: blur(10px);
  padding: 10px 25px;
}

.header .logo img {
  height: 50px;
}

.header .btn-login,
.header .btn-login:focus {
  color: #FFF;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 20px;
  margin: 0;
  border-radius: 150px;
  transition: all 0.3s;
}

.header .btn-login img {
  width: 17px;
  margin-right: 7px;
}

.header .btn-login:hover,
.header .btn-login:focus:hover {
  color: #FFF;
  background: rgba(255, 255, 255, 0.10);
}

.header .btn-cadastro,
.header .btn-cadastro:focus {
  border-radius: 150px;
  background: #6228E1;
  border: 1px solid #6228E1;
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  padding: 8px 20px;
  margin: 0 0 0 10px;
  transition: all 0.3s;
}

.header .btn-cadastro:hover,
.header .btn-cadastro:focus:hover {
  color: #FFF;
  border: 1px solid rgba(255, 255, 255, 0.50);
  background: #6228E1;
  box-shadow: 0 0 10px 0 #6228E1;
}

@media (max-width: 1200px) {
  .header {
    padding-top: 10px;
  }

  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 5px 10px 15px;
  }

  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 10px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #FFF;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: all 0.3s;
    border-radius: 150px;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    background: rgba(255, 255, 255, 0.10);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: #FFF;
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 80px 0 20px 0;
    padding: 10px 0;
    margin: 0;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    background: rgba(20, 20, 22, 0.60);
    backdrop-filter: blur(10px);
  }

  .navmenu a,
  .navmenu a:focus {
    color: #FFF;
    font-size: 14px;
    font-weight: 400;
    padding: 15px 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    transition: 0.3s;
  }

  .header .btn-cadastro, .header .btn-cadastro:focus {
    margin: 10px;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
    top: 0;
    bottom: 0;
    height: 100vh;
    left: 0;
    right: 0;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  background: rgba(255, 255, 255, 0.08);
  padding: 20px;
}

.footer .links a {
  color: #FFF;
  font-size: 12px;
  font-weight: 400;
  padding-right: 20px;
  transition: all 0.5s;
}

.footer .links a:hover {
  color: #FFF;
  text-decoration: underline;
}

.footer .copyright {
  border-radius: 150px;
  background: rgba(255, 255, 255, 0.00);
  color: #FFF;
  font-size: 12px;
  font-weight: 400;
  text-align: right;
}



/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #000;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: #6228E1 transparent #6228E1 transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: #E05928;
  border: 1px solid #E05928;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #FFF;
  line-height: 0;
}

.scroll-top:hover {
  border-radius: 150px;
  background: #E05928;
  box-shadow: 0 0 16.6px 0 #E05928;
  color: #FFF;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0px, rgba(255, 255, 255, 0.05) 1px, transparent 1px, transparent 10px);
  z-index: 1;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  background: linear-gradient(90deg, #FFF 0%, rgba(255, 255, 255, 0.60) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.section-title p {
  color: #FFF;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
}

/*--------------------------------------------------------------
# BANNER
--------------------------------------------------------------*/
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0;
  background-image: url("../img/topo-background.jpg");
  background-position: center;
  background-size: cover;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.70);
  z-index: 1;
}

.hero .container,
.hero .container-fluid {
  position: relative;
  z-index: 2;
}

.hero .content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 3rem;
}

@media (max-width: 991px) {
  .hero .content-col {
    padding-right: 15px;
    margin-bottom: 3rem;
  }
}

.hero .main-heading {
  margin-bottom: 2rem;
}

.hero .main-heading h1 {
  font-family: Inter;
  font-size: 55px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
  background: linear-gradient(90deg, #6228E1 0%, #E05928 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 1200px) {
  .hero .main-heading h1 {
    font-size: 4rem;
  }
}

@media (max-width: 767px) {
  .hero .main-heading h1 {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  .hero .main-heading h1 {
    font-size: 2.5rem;
  }
}

.hero .description {
  margin-bottom: 2.5rem;
}

.hero .description p {
  color: #FFF;
  font-family: Inter;
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  margin: 0;
}

.cta-button .btn {
  color: #FFF;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  border-radius: 150px;
  background: #E05928;
  border: 1px solid #E05928;
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.cta-button .btn:hover {
  color: #FFF;
  border: 1px solid rgba(255, 255, 255, 0.50);
  box-shadow: 0 0 16.6px 0 #E05928;
}


/*--------------------------------------------------------------
# VIDEO
--------------------------------------------------------------*/
.video {
  padding-top: 60px;
  padding-bottom: 60px;
}

/*--------------------------------------------------------------
# CAMPEONATOS
--------------------------------------------------------------*/
.catalogo {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0;
  background-image: url("../img/back-campeonatos.png");
  background-position: center;
  background-size: cover;
}

.campeonato-card {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.50);
  background: rgba(217, 217, 217, 0.05);
  backdrop-filter: blur(10px);
  padding: 20px 40px;
  margin-bottom: 20px;
}

.campeonato-card img {
  display: block;
  margin: 0 auto;
  height: 70px;
  max-width: 100%;
}


/*--------------------------------------------------------------
# CANAIS
--------------------------------------------------------------*/
.canais-card {
  border-radius: 20px;
  background: rgba(217, 217, 217, 0.05);
  padding: 20px;
  margin-bottom: 20px;
}

.canais-card img {
  display: block;
  margin: 0 auto;
  height: 100px;
  max-width: 100%;
}

.provedores h3 {
  margin: 20px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  background: linear-gradient(90deg, #6228E1 0%, #E05928 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


/*--------------------------------------------------------------
# CONTEÚDOS
--------------------------------------------------------------*/
.conteudos img {
  display: block;
  margin: 0 auto;
  height: 40px;
  max-width: 100%;
}

.conteudos h4 {
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  margin: 30px 0 10px;
}

.conteudos p {
  color: rgba(255, 255, 255, 0.80);
  text-align: center;
  font-size: 13px;
  font-weight: 400;
}

/*--------------------------------------------------------------
# PLANOS
--------------------------------------------------------------*/
.plano-card {
  height: 100%;
  position: relative;
  transition: all 0.4s;
  margin-bottom: 30px;
  border-radius: 35px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(25px);
  padding: 20px 30px;
}

.plano-card .plano-header p {
  color: #FFF;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 3.36px;
  text-transform: uppercase;
}

.plano-card .plano-pricing {
  text-align: center;
  padding: 0;
  position: relative;
  leading-trim: both;
  text-edge: cap;
  background: linear-gradient(90deg, #FFF 0%, rgba(255, 255, 255, 0.60) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 20px;
}

.plano-card .plano-pricing .price {
  display: flex;
  justify-content: center;
  align-items: center;
}

.plano-card .plano-pricing .currency {
  font-size: 20px;
  font-weight: 700;
}

.plano-card .plano-pricing .amount {
  font-size: 60px;
  font-weight: 700;
  padding: 0 10px;
}

.plano-card .plano-pricing .period {
  font-size: 20px;
  font-weight: 400;
}

.plano-card .plano-features .descricao {
  color: #FFF;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
}

.plano-card .plano-features {
  padding: 20px 30px;
  flex: 1;
}

.plano-card .plano-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plano-card .plano-features ul li {
  padding: 12px 0;
  font-size: 15px;
  display: flex;
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.plano-card .plano-features ul li img {
  height: 20px;
  margin: 0 10px;
}

.plano-card .btn-plano {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 14px 32px;
  border-radius: 150px;
  background: #6228E1;
  border: 1px solid #6228E1;
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s;
}

.plano-card .btn-plano:hover {
  border: 1px solid rgba(255, 255, 255, 0.50);
  background: #6228E1;
  box-shadow: 0 0 16.6px 0 #6228E1;
}

.plano-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 1);
}

.plano-card.plano-recomendado {
  background: linear-gradient(147deg, rgba(98, 40, 225, 0.10) 2.64%, rgba(224, 89, 40, 0.10) 96.11%);
  backdrop-filter: blur(25px);
}

.plano-card.plano-recomendado:hover {
  border: 1px solid #FFF;
  background: linear-gradient(147deg, rgba(98, 40, 225, 0.20) 2.64%, rgba(224, 89, 40, 0.20) 96.11%);
}

.plano-card.plano-recomendado .label-recomendado {
  border-radius: 5px;
  background: linear-gradient(90deg, #6228E1 0%, #E05928 100%);
  color: #FFF;
  font-size: 10px;
  font-weight: 600;
  margin: 0;
  padding: 5px 15px;
  position: absolute;
  top: -13px;
  left: 37%;
}

@media (max-width: 992px) {
}

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

/*--------------------------------------------------------------
# FAQ
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
  position: relative;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
}

.faq .faq-container .faq-item h3 {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.10);
  padding: 15px;
  color: #FFF;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 2px;
  cursor: pointer;
}

.faq .faq-container .faq-item.faq-active h3 {
  border-radius: 10px 10px 0 0;
}

.faq .faq-container .faq-item .faq-content {
  border-radius: 0 0 10px 10px;
  background: rgba(255, 255, 255, 0.10);
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  height: 0;
  transition: all 1s;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  padding: 20px 45px;
}

.faq .faq-container .faq-item .faq-content ul {
  margin-bottom: 0;
  padding: 0px 45px 20px 65px;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
  color: #FFF;
}

.faq .faq-container .faq-active .faq-content {
  height: auto;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: #FFF;
}



/*--------------------------------------------------------------
# PÁGINAS INTERNAS
--------------------------------------------------------------*/
.btn-inicio {
  border-radius: 150px;
  background: rgba(255, 255, 255, 0.00);
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  padding: 8px 20px;
  margin: 0 0 0 10px;
  transition: all 0.3s;
}

.btn-inicio:hover {
  background: rgba(255, 255, 255, 0.10);
}

.btn-acesso {
  border-radius: 150px;
  background: #E05928;
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  padding: 8px 20px;
  margin: 0 0 0 10px;
  transition: all 0.3s;
  border: 1px solid #E05928;
}

.btn-acesso img {
  width: 17px;
  margin-right: 7px;
  margin-top: -3px;
}

.btn-acesso:hover {
  border: 1px solid rgba(255, 255, 255, 0.50);
  background: #E05928;
  box-shadow: 0 0 10px 0 #E05928;
}

.planos-interna {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 150px 0;
  background-image: url("../img/back-planos.png");
  background-position: center;
  background-size: cover;
}

.planos-interna .main-heading h1 {
  font-size: 40px;
  font-weight: 800;
  background: linear-gradient(90deg, #6228E1 0%, #E05928 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  margin-bottom: 25px;
}

.planos-interna .description {
  color: #FFF;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}

.planos-interna .plano-card.plano-recomendado {
  background: rgba(255, 255, 255, 0.01) !important;
}





/*--------  CADASTRO ---------*/
.cadastro {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 150px 0;
  background-image: url("../img/back-planos.png");
  background-position: center;
  background-size: cover;
}

.cadastro .main-heading h1 {
  font-size: 40px;
  font-weight: 800;
  background: linear-gradient(90deg, #6228E1 0%, #E05928 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cadastro .description {
  color: #FFF;
  font-size: 20px;
  font-weight: 600;
}


.formulario {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(12.5px);
  padding: 40px 90px;
}

.box-plano {
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  background: linear-gradient(91deg, rgba(98, 40, 225, 0.15) 2.57%, rgba(224, 89, 40, 0.15) 99.72%);
  padding: 28px 20px;
  margin-bottom: 20px;
}

.formulario label {
  color: #FFF;
  font-size: 16px;
  font-weight: 700;
  display: block;
  width: 100%;
  margin-bottom: 5px;
}

.formulario label span {
  color: #D62F2E;
}

.formulario input {
  color: rgba(255, 255, 255, 0.60);
  font-size: 13px;
  font-weight: 400;
  border-radius: 150px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  background: rgba(255, 255, 255, 0.05);
  padding: 10px 20px;
  display: block;
  width: 100%;
  margin-bottom: 13px;
}

.formulario button {
  border-radius: 150px;
  background: #6228E1;
  padding: 10px;
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  border: unset;
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 25px;
}

.box-plano .plano {
  color: rgba(255, 255, 255, 0.60);
  font-size: 13px;
  font-weight: 400;
}

.box-plano .preco {
  color: rgba(255, 255, 255, 0.60);
  font-size: 18px;
  font-weight: 700;
  float: right;
}

.box-plano a img {
  height: 17px;
  margin-left: 15px;
}


/*-------- LOGIN ---------*/
.login-page {
  position: relative;
}

.login-page .login-back {
  background-image: url("../img/back-planos.png");
  background-position: left;
  background-size: cover;
  width: 60%;
  float: left;
  min-height: 100vh;
  position: fixed;
}

.login-page .login-form {
  width: 40%;
  float: right;
  padding: 5%;
  min-height: 100vh;
  display: grid;
  align-content: center;
  margin-bottom: 100px;

}

.login-form .logo {
  height: 100px;
  width: auto;
  margin-bottom: 30px;
}

.login-form h2 {
  color: #FFF;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 40px;
}

.formulario-login label {
  color: #FFF;
  font-size: 16px;
  font-weight: 700;
  display: block;
  width: 100%;
  margin-bottom: 5px;
}

.formulario-login input {
  color: rgba(255, 255, 255, 0.60);
  font-size: 13px;
  font-weight: 400;
  border-radius: 150px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  background: rgba(255, 255, 255, 0.05);
  padding: 10px 20px;
  display: block;
  width: 100%;
  margin-bottom: 13px;
}

.formulario-login button {
  border-radius: 150px;
  background: #6228E1;
  padding: 10px;
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  border: unset;
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 25px;
}

.line {
  position: relative;
  margin-top: 30px;
}

.line:after {
  content: "";
  border-bottom: 1px solid rgba(255, 255, 255, 0.20);
  width: 100%;
  display: block;
  position: absolute;
  top: 9px;
  z-index: 0;
}

.line-text {
  color: #FFF;
  font-size: 12px;
  font-weight: 400;
  width: fit-content;
  background: #000;
  padding: 0 10px;
  margin: 0 auto;
  z-index: 1;
  position: relative;
}

.qrcode {
  display: block;
  margin: 0 auto;
  width: 120px;
  margin-top: 30px;
}

.nav-pills {
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  background: rgba(0, 0, 0, 0.10);
  backdrop-filter: blur(10px);
  width: fit-content;
  margin: 0 auto 50px;
  padding: 10px;
}

.nav-pills .nav-link {
  color: #FFF;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  border-radius: 5px;
  background: rgba(224, 89, 40, 0.00);
  margin: 0 10px;
}

.nav-pills .nav-link.active,
.nav-pills .nav-link:hover.active {
  background: #E05928;
}

.nav-pills .nav-link:hover {
  background: rgba(224, 89, 40, 0.10);
}




/*--------------------------------------------------------------
# RESPONSIVO
--------------------------------------------------------------*/
.mobile { display: none !important; }

.provedores .col,
.conteudos .col {
  flex: 0 0 auto;
  width: 20% !important;
}

.nav-mobile { display: none !important; }

@media (max-width: 1200px) {
  .mobile { display: block !important; }
  .desktop { display: none !important; }

  .hero .main-heading h1,
  .hero .description p {
    text-align: center;
  }

  .cta-button .btn {
    display: block;
    margin: 20px;
    text-align: center;
  }

  .provedores .col {
    flex: 0 0 auto;
    width: 33.33333333% !important;
  }

  .conteudos .col {
    flex: 0 0 auto;
    width: 100% !important;
    margin-bottom: 30px;
  }

  .canais-card img {
    height: auto;
  }

  .canais-card {
    padding: 15px 10px;
  }

  .conteudos .col,
  .footer .col {
    flex: 0 0 auto;
    width: 100% !important;
  }

  .footer .links a {
    display: block;
    width: 100%;
    margin-bottom: 20px;
  }

  .footer .copyright {
    text-align: left;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
    border-radius: unset;
  }

  .planos-interna,
  .cadastro {
    background-attachment: fixed;
  }

  .cadastro .main-heading h1,
  .cadastro .description {
    text-align: center;
  }

  .formulario {
    padding: 40px 30px;
  }

  .login-back { display: none; }

  .login-form {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 150px 0;
    background-image: url("../img/back-planos.png");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
  }

  .login-page .login-form {
    width: 100%;
    float: unset;
  }
}