/*--------------------------------------------------------------
# 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;
  cursor: pointer;
}

.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: 26px;
  bottom: -105px;
  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: 105px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  .scroll-top {
    display: none !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: 10px;
  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/banner-novo.jpeg");
  background-position: top center;
  background-size: cover;        /* DESKTOP: preenche a tela */
}

/* gradiente por cima da imagem */
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.25) 50%,
    rgba(0,0,0,0.05) 100%
  );
  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, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(32px, 6.4vw, 56px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;

  background: linear-gradient(90deg, #ffffff 0%, #e3e3e3 80%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

/* Tablet / telas menores */
@media (max-width: 991px) {
  .hero .main-heading h1 {
    font-size: 36px;
  }
}

/* Ajuste fino p/ mobile, mas só no texto */
@media (max-width: 575px) {
  .hero .main-heading h1 {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .hero {
    background-size: contain;
    /* desce a imagem pra fora da barra do menu */
    background-position: center 25%;   /* pode testar 20%, 25% ou 30% */
    background-repeat: no-repeat;
    background-color: #000;
  }

  .hero .main-heading h1 {
    font-size: 3rem;
  }

  .hero .content {
    padding-top: 60px;
    padding-bottom: 40px;
  }
}
/* Ajuste do texto no mobile (descer conteúdo) */
@media (max-width: 767px) {
  .hero .content {
    padding-top: 180px !important; /* Aumente/diminua conforme necessário */
  }
}

/* Extra para telas bem pequenas (ex: 360px) */
@media (max-width: 480px) {
  .hero .content {
    padding-top: 210px !important;
  }
}



/* Mobile bem pequeno */
@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: 700;
  text-transform: uppercase;
}

.plano-card .plano-header p span {
  font-weight: 400;
}

.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 {
  position: relative; /* garante referência pro absolute do selo */
}

.plano-card.plano-recomendado .label-recomendado {
  width: 40%;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);   /* centraliza no meio do card */
  border-radius: 5px;
  background: linear-gradient(90deg, #6222E1 0%, #E05928 100%);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  text-align: center;
  letter-spacing: .06em;
  padding: 6px 8px;
  box-shadow: 0 6px 16px rgba(124, 58, 237, .35);
}



.plano-card .plano-pricing .price-ano {
    font-size: 18px;
    color: #666;
    margin-top: 5px;
    display: block;
}



@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;
}

.formulario h1 {
  color: #FFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-align: center;
  margin-bottom: 30px;
}

.formulario p {
  color: #FFF;
  font-size: 16px;
  font-weight: 700;
}

#progressbar {
  margin-bottom: 60px;
  overflow: hidden;
  padding: 0;
  position: relative;
}

#progressbar li {
    list-style-type: none;
    width: 25%;
    float: left;
    position: relative;
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-align: center;
}

#progressbar #account:before {
    content: "01"
}

#progressbar #personal:before {
    content: "02"
}

#progressbar #payment:before {
    content: "03"
}

#progressbar #confirm:before {
    content: "04"
}

#progressbar li:before {
    width: 50px;
    height: 50px;
    line-height: 47px;
    display: block;
    font-size: 20px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.20);
    background: rgb(64 64 64);
    backdrop-filter: blur(12.5px);
    border: unset;
    border-radius: 50%;
    margin: 0 auto 10px auto;
    padding: 2px
}

#progressbar:after {
    content: '';
    width: 100%;
    height: 2px;
    background: rgb(64 64 64);
    position: absolute;
    left: 0;
    top: 25px;
    z-index: -1
}

#progressbar:before {
    content: '';
    width: 25%;
    height: 2px;
    background: linear-gradient(136deg, rgba(98, 40, 225) 15.93%, rgba(224, 89, 40) 84.14%);
    position: absolute;
    left: 0;
    top: 25px;
    z-index: 0
}

#progressbar li.active:after {
  background: linear-gradient(136deg, rgba(98, 40, 225) 15.93%, rgba(224, 89, 40) 84.14%);
}

#progressbar li.active:before {
  background: linear-gradient(136deg, rgb(98, 40, 225) 15.93%, rgb(224, 89, 40) 84.14%);
}

.progress {
    height: 20px
}

.progress-bar {
    background-color: #673AB7
}

.fit-image {
    width: 100%;
    object-fit: cover
}

.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;
  margin-top: 10px;
}

.formulario label > span {
  color: #D62F2E;
  font-size: 16px;
  font-weight: 700;
  padding: 0;
}

.formulario span,
.formulario span a {
  color: #FFF;
  font-size: 10px;
  font-weight: 400;
  padding: 10px;
}

.formulario input,
.formulario select {
  color: rgb(250, 250, 250);
  font-size: 14px;
  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 option {
  background-color: #000;
  color: #FFF;
  padding: 10px;
}

.btn-next {
  border-radius: 150px;
  background: #6228E1;
  padding: 10px 40px;
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  border: 1px solid transparent;
  text-align: center;
  margin-top: 25px;
  width: fit-content;
  transition: all 0.5s;
  display: inline-block;
}

.btn-next:hover {
  border: 1px solid rgba(255, 255, 255, 0.50);
  background: #6228E1;
  box-shadow: 0 0 16.6px 0 #6228E1;
}

.btn-next.d-block {
  width: 100%;
}

.formulario .btn-prev {
  border-radius: 150px;
  background: transparent;
  padding: 10px 40px;
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  border: unset;
  text-align: center;
  margin-top: 25px;
  width: fit-content;
  margin-left: 10px;
  transition: all 0.5s;
}

.formulario .btn-prev:hover {
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.50);
}

.formulario .btn-apply {
  border-radius: 150px;
  padding: 10px;
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  display: block;
  width: 100%;
  transition: all 0.5s;
  border: 1px solid rgba(255, 255, 255, 0.50);
  background: rgba(255, 255, 255, 0.10);
}

.formulario .btn-apply:hover {
  border: 1px solid rgba(255, 255, 255, 0.50);
  background: #FFF;
  color: #000;
}

.formulario .btn-back {
  border-radius: 150px;
  padding: 10px 40px;
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  margin-top: 25px;
  transition: all 0.5s;
  border: 1px solid rgba(255, 255, 255, 0.50);
  background: rgba(255, 255, 255, 0.10);
  display: inline-block;
}

.formulario .btn-back:hover {
  border: 1px solid rgba(255, 255, 255, 0.50);
  background: #FFF;
  color: #000;
}


/*-------- 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;

}

.login-form .logo {
  height: 100px;
  width: auto;
  margin-bottom: 30px;
}

.login-form .resposta {
  color: red;
  padding-top: 10px;
  text-align: right;
}

.login-form h2 {
  color: #FFF;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 40px;
}

.login-form a {
  color: rgba(255, 255, 255, 0.60);
  font-size: 13px;
  transition: all 0.5s;
}

.login-form a:hover {
  color: rgba(255, 255, 255, 1);
  text-decoration: underline;
}

.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-planos {
  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-planos .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-planos .nav-link.active,
.nav-planos .nav-link:hover.active {
  background: #E05928;
}

.nav-planos .nav-link:hover {
  background: rgba(224, 89, 40, 0.10);
}




.nav-banner {
  width: fit-content;
}

.nav-banner .nav-link {
  text-align: left;
  border-radius: unset;
  margin: 0 10px;
  border-bottom: 1px solid #5C5C5C;
}

.nav-banner .nav-link span {
  font-size: 20px;
  font-weight: 700;
  margin: 0 10px;
  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;
}

.nav-banner .nav-link.active,
.nav-banner .nav-link:hover.active,
.nav-banner .nav-link:hover {
  background: rgba(255, 255, 255, 0.05);
}

.clear {clear: both;}

.resposta_cupom, .resposta, .txt-resposta {
   font-size: 12px !important; 
   margin-top: -8px; 
   margin-bottom: 8px;
   font-weight: 300;
}

/*--------------------------------------------------------------
# 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;
  }

  .resposta_cupom, .resposta, .txt-resposta {
     font-size: 10px; 
     margin: 10px 0; 
  }
}





.modal-header {
  align-items: baseline;
  justify-content: space-between;
  border: unset;
  padding: 20px 30px;
  padding-bottom: 0;
}

.modal-title {
  color: #0A1D3D;
  font-size: 22px;
  font-weight: 700;
  margin: 0;
}

.modal-header button {
  border: unset;
  background: unset;
  float: right;
}

.modal-body {
  padding: 20px 30px;
}

.modal-body p {
  color: #0A1D3D;
  font-size: 16px;
  font-weight: 300;
}

.cookies_bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(98, 40, 225, 0.7);
  padding: 20px 40px;
  z-index: 9998;
}

.cookies_bar p {
  color: #FFF;
  margin: 0;
}

.cookies_bar a {
  color: #FFF;
  text-decoration: underline !important;
  cursor: pointer;
}

.cookies_bar a.btn-cookies {
  background: #E05928;
  color: #FFF;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  border-radius: 5px;
  padding: 10px;
  display: block;
  margin-top: 5px;
  border-radius: 150px;
  border: 1px solid transparent;
  transition: all 0.5s;
  text-decoration: unset !important;
}

.cookies_bar a.btn-cookies:hover {
  border: 1px solid rgba(255, 255, 255, 0.50);
  background: #E05928;
  box-shadow: 0 0 16.6px 0 #E05928;
}

@media (max-width: 768px) {
  .cookies_bar a.btn-cookies { margin-top: 20px; }
}

#modalPolitica { z-index: 9999; }

/* --- LOADER BTN ---- */
@-webkit-keyframes ld {
  0%   { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(180deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1); }
}
@-moz-keyframes ld {
  0%   { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(180deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1); }
}
@-o-keyframes ld {
  0%   { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(180deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1); }
}
@keyframes ld {
  0%   { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(180deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1); }
}

.m-progress {
  position: relative;
  opacity: .8;
  color: transparent !important;
  text-shadow: none !important;
}

.m-progress:hover,
.m-progress:active,
.m-progress:focus {
  cursor: default;
  color: transparent;
  outline: none !important;
  box-shadow: none;
}

.m-progress:before {
  content: '';  
  display: inline-block;   
  position: absolute;
  background: transparent;
  border: 1px solid #fff;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;    
  box-sizing: border-box;   
  top: 50%;
  left: 50%;
  margin-top: -12px;
  margin-left: -12px;    
  width: 24px;
  height: 24px;
  -webkit-animation: ld 1s ease-in-out infinite;
  -moz-animation:    ld 1s ease-in-out infinite;
  -o-animation:      ld 1s ease-in-out infinite;
  animation:         ld 1s ease-in-out infinite;
}

.m-black:before {
  content: '';  
  display: inline-block;   
  position: absolute;
  background: transparent;
  border: 1px solid #000;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;    
  box-sizing: border-box;   
  top: 50%;
  left: 50%;
  margin-top: -12px;
  margin-left: -12px;    
  width: 24px;
  height: 24px;
  -webkit-animation: ld 1s ease-in-out infinite;
  -moz-animation:    ld 1s ease-in-out infinite;
  -o-animation:      ld 1s ease-in-out infinite;
  animation:         ld 1s ease-in-out infinite;
}

.m-progress.btn_black:hover {
  background: #000 !important;
}


.btn-default.m-progress:before {
  border-left-color: #333333;
  border-right-color: #333333;
}

.btn-lg.m-progress:before {
  margin-top: -16px;
  margin-left: -16px;
  width: 32px;
  height: 32px;
}

.btn-sm.m-progress:before {
  margin-top: -9px;
  margin-left: -9px;
  width: 18px;
  height: 18px;
}

.btn-xs.m-progress:before {
  margin-top: -7px;
  margin-left: -7px;
  width: 14px;
  height: 14px;
}

.text-link-expirado {
  font-size: 20px;
  color: #FFF;
  font-weight: 400;
  margin-bottom: 40px;
}

.green {
  color: lawngreen !important;
}

.yellow {
  color: yellow !important;
}

.video .video-wrapper video { object-fit: cover; }

.vid-btn{
  position:absolute;
  right:12px;
  padding:8px 10px;
  border-radius:999px;
  border:none;
  background:rgba(0,0,0,.45);
  color:#fff;
  font-size:18px;
  line-height:1;
  cursor:pointer;
  backdrop-filter: blur(2px);
}
.vid-mute{ top:12px; }
.vid-pause{ top:56px; }
.vid-btn:hover{ background:rgba(0,0,0,.65); }

/* 1) Mata QUALQUER vinheta/máscara só no bloco #plataforma */
/* remova só o BEFORE (vinheta) e não mexa no AFTER */
section#plataforma .video-wrapper::before{
  content: none !important;
  display: none !important;
  background: none !important;
  box-shadow: none !important;
}

/* 2) Se o tema usa mask-image, desativa aqui */
section#plataforma.section.video,
section#plataforma.section.video *{
  -webkit-mask-image: none !important;
  mask-image: none !important;
}

/* 4) Se o tema aplicou um gradiente por classe genérica .section::before */
.section.video#plataforma::before,
.section.video#plataforma::after{
  content: none !important;
  display: none !important;
}

/* mata qualquer vinheta aplicada pelo tema nesse bloco */
.section.no-mask::before,
.section.no-mask::after,
.section.no-mask .container::before,
.section.no-mask .container::after{
  content: none !important;
  display: none !important;
  background: transparent !important;
  box-shadow: none !important;
}
.section.no-mask,
.section.no-mask *{
  -webkit-mask-image: none !important;
  mask-image: none !important;
}
.section.no-mask .video-wrapper{ background: transparent !important; position: relative; z-index: 5; }
.section.no-mask video{ position: relative; z-index: 6; object-fit: cover; }

/* mantém o corte bonito */
.video .video-wrapper video { object-fit: cover; }

/* ícone de play sobre o poster (não bloqueia clique) */
.video .video-wrapper::after{
  content: "▶";
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 64px; color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,.6);
  pointer-events: none;              /* não impede o clique no vídeo */
  transition: opacity .2s ease;
}
.video .video-wrapper.playing::after{ opacity: 0; }

/* Ícone de play sobre o poster */
#plataforma .video-wrapper{ position:relative; z-index:5; }
#plataforma .video-wrapper video{ object-fit:cover; z-index:6; position:relative; }

/* (re)cria o AFTER com mais prioridade e acima do vídeo */
#plataforma .video-wrapper::after{
  content:"\25B6" !important;     /* ▶ */
  position:absolute; inset:0;
  display:flex !important;
  align-items:center; justify-content:center;
  font-size:64px; color:#fff;
  text-shadow:0 2px 12px rgba(0,0,0,.6);
  pointer-events:none;
  transition:opacity .2s ease;
  z-index:10;                     /* acima do vídeo */
}

/* some quando estiver tocando */
#plataforma .video-wrapper.playing::after{ opacity:0; }


/* ------------------------------
   RESET MOBILE GUTTERS
---------------------------------*/
@media (max-width: 576px){
  .container,
  .container-fluid,
  .container-xl{
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

/* ------------------------------
   HERO (banner principal)
---------------------------------*/
.hero.section{
  padding-top: clamp(72px, 9vw, 120px);
  padding-bottom: clamp(40px, 7vw, 80px);
}
.hero .main-heading h1{
  /* 32px a 56px, fluido */
  font-size: clamp(32px, 6.4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.hero .description p{
  font-size: clamp(16px, 3.6vw, 20px);
  line-height: 1.45;
  max-width: 56ch;
  margin-top: 12px;
}
/* reforça contraste da copy sobre o fundo */
.hero .content{
  text-shadow: 0 2px 18px rgba(0,0,0,.45);
}

/* CTA grande e confortável para toque */
.hero .cta-button .btn{
  font-size: clamp(16px, 3.8vw, 18px);
  padding: clamp(12px, 2.8vw, 14px) clamp(22px, 5.4vw, 28px);
  border-radius: 999px;
}

/* Mantém o bloco de texto com largura boa no phone */
@media (max-width: 576px){
  .hero .content-col{ max-width: 780px; }
}

/* ------------------------------
   SEÇÃO "SUA TV..." (vídeo)
---------------------------------*/
.video.section{
  padding-top: clamp(36px, 7vw, 64px);
  padding-bottom: clamp(36px, 7vw, 64px);
}
#plataforma .section-title h2{
  font-size: clamp(22px, 5.5vw, 36px);
  line-height: 1.15;
}
#plataforma .section-title p{
  font-size: clamp(14px, 3.6vw, 18px);
  line-height: 1.45;
  max-width: 60ch;
  margin: 8px auto 0;
}
#plataforma .video-wrapper{ border-radius: 18px; }

/* ------------------------------
   "CAMPEONATOS" GRID
---------------------------------*/
/* título/subtítulo da seção */
.catalogo.section{
  padding-top: clamp(40px, 7vw, 72px);
  padding-bottom: clamp(40px, 7vw, 72px);
}
#catalogo .section-title h2{
  font-size: clamp(24px, 6vw, 40px);
  line-height: 1.12;
}
#catalogo .section-title p{
  font-size: clamp(15px, 3.8vw, 18px);
  line-height: 1.45;
  margin-top: 10px;
  max-width: 60ch;
}

/* cards mais robustos no mobile */
.campeonato-card{
}

/* ------------------------------
   PROVEDORES (canais) – cartão mais legível no phone
---------------------------------*/
.provedores .section-title h2{
  font-size: clamp(22px, 5.5vw, 36px);
}
.provedores .section-title p{
  font-size: clamp(14px, 3.6vw, 18px);
}
.canais-card{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: clamp(10px, 3vw, 14px);
  display: grid; place-items: center;
}
.canais-card img{ max-height: clamp(22px, 5.5vw, 36px); width: auto; }

/* ------------------------------
   BLOCO "CONTEÚDOS" (ícones + textos)
---------------------------------*/
.section.conteudos{
  padding-top: clamp(36px, 7vw, 64px);
  padding-bottom: clamp(36px, 7vw, 64px);
}
.section.conteudos h4{
  font-size: clamp(16px, 4.6vw, 20px);
  line-height: 1.25;
}
.section.conteudos p{
  font-size: clamp(13px, 3.6vw, 16px);
  line-height: 1.35;
}

/* ------------------------------
   HEADER compact no phone
---------------------------------*/
@media (max-width: 576px){
  .header-container{ gap: 10px; }
  .header .btn-login,
  .header .btn-cadastro{ font-size: 14px; padding: 8px 14px; }
}

/* ------------------------------
   AJUSTES GERAIS
---------------------------------*/
.section-title h2{ letter-spacing: -0.01em; }
.section-title p{ opacity: .95; }

/* dá um respiro vertical entre blocos em telas pequenas */
@media (max-width: 576px){
  .section + .section{ margin-top: 18px; }
}

/* === CAMPEONATOS: grid & cards === */
.campeonato-card{
  position: relative;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255, 0.4);
  background: rgba(0, 0, 0, 0.1);
  box-shadow: 0 6px 18px rgba(0,0,0,.25) inset;
  backdrop-filter: blur(10px);
  place-items: center;
  overflow: hidden;
  height: 100%;
}

.campeonato-card img{
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Hover só no desktop */
@media (hover:hover){
  .campeonato-card:hover{
    transform: translateY(-2px);
    transition: transform .2s ease;
  }
}


/* Aparência das abas */
.nav-banner .nav-link{
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,.12);
  margin-bottom: 10px;
  padding: 12px 14px;
  font-weight: 600;
}
.nav-banner .nav-link.active{
  background: linear-gradient(135deg, #7C3AED, #6D28D9);
  border-color: transparent;
}

/* Mobile: empilha e evita sobreposição */
@media (max-width: 767.98px){
  .nav-banner{
    width: 100%;
  }
  /* Se preferir carrossel horizontal, troque por:
     display: flex; overflow-x: auto; gap: 10px; white-space: nowrap;
     .nav-banner .nav-link{ min-width: 170px; margin: 0; } */
  .tab-content img{
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
  }
}

/* Aparência das abas */
.nav-banner .nav-link{
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,.12);
  margin-bottom: 10px;
  padding: 12px 14px;
  font-weight: 600;
}
.nav-banner .nav-link span{ display:inline-block; transform: translateY(1px); }
.nav-banner .nav-link.active{
  background: linear-gradient(135deg,#7C3AED,#6D28D9);
  border-color: transparent;
  color: #fff;
}

/* Mobile: empilha e evita a imagem sobrepor o menu */
@media (max-width: 991.98px){
  #categorias .row{ row-gap: 16px; }
}
@media (max-width: 767.98px){
  .nav-banner{ width: 100%; }
  .nav-banner .nav-link{ padding: 13px 14px; font-size: 15px; }
  #categorias .tab-content img{
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
  }
}

/* === Grade responsiva de canais (igual visual do bloco anterior) === */
.provedores .canais-grid{
  display:grid;
  grid-template-columns: repeat(6, minmax(0,1fr));
  gap: 24px;
}

/* Card quadrado com canto arredondado e borda sutil */
.provedores .canal-card{
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 20px;
  aspect-ratio: 1 / 1;          /* mantém quadrado sem gambiarras */
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 2px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
  transition: transform .15s ease, border-color .15s ease, background-color .15s ease;
}

/* Logo sempre legível e centralizado */
.provedores .canal-card img{
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 1px 6px rgba(0,0,0,.55));
  image-rendering: -webkit-optimize-contrast;
}

/* Hover no desktop (leve destaque) */
@media (hover:hover){
  .provedores .canal-card:hover{
    transform: translateY(-2px);
    border-color: rgba(255,255,255,0.28);
    background: rgba(255,255,255,0.07);
  }
}

/* Breakpoints – deixa GIGANTE no mobile (2 colunas), crescendo até 6 colunas */
@media (max-width: 576px){
  .provedores .canais-grid{ grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .provedores .canal-card{ border-radius: 16px; padding: 16px; }
  .provedores .canal-card img{ max-width: 76%; max-height: 76%; }
}
@media (min-width: 577px) and (max-width: 768px){
  .provedores .canais-grid{ grid-template-columns: repeat(3, 1fr); gap: 18px; }
}
@media (min-width: 769px) and (max-width: 992px){
  .provedores .canais-grid{ grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 993px) and (max-width: 1200px){
  .provedores .canais-grid{ grid-template-columns: repeat(5, 1fr); }
}
/* >=1200px fica 6 colunas (default) */
/* ===== PLANOS – layout base */
#planos .planos-grid { row-gap: 2rem; }

#planos .plano-card{
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  padding: 40px 18px 30px;
  color:#fff;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  backdrop-filter: blur(6px);
  display:flex; flex-direction: column;
}


/* Preço */
#planos .plano-card .plano-pricing{ margin: 2px 0 8px; }
#planos .price{
  display:flex; align-items: baseline; gap: 8px; flex-wrap: wrap;
}
#planos .price .currency{
  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;
  font-size: 20px;
  font-weight: 700;
  transform: translateY(-8px);
}
#planos .price .amount{
  font-weight: 800;
  font-size: clamp(32px, 11vw, 56px);
  line-height: 1;
}
#planos .price .period{
  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;
  font-size: 20px;
  font-weight: 400;
  transform: translateY(-8px);
}

/* Lista de features */
#planos .plano-features { margin-top: 8px; }
#planos .plano-features .descricao{
  font-size: clamp(12px, 3.4vw, 14px);
  color:#D1D5DB; margin-bottom: 8px;
}
#planos .plano-features ul{
  list-style:none; margin:0; padding:0; display: grid; gap:10px;
}
#planos .plano-features li{
  display:flex; align-items:center; gap:10px;
  font-size: clamp(13px, 3.8vw, 15px);
  padding:10px 12px;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.06);
  border-radius:12px;
}
#planos .plano-features li img{ width:16px; height:16px; opacity:.9; }

/* Botão */
#planos .btn-assinar{
  margin-top:auto;
  display:block; width:100%;
  border-radius: 999px;
  text-align:center; font-weight: 700;
  padding: 14px 18px;
  background: linear-gradient(90deg, #6D28D9, #9333EA);
  color:#fff; text-decoration:none;
  box-shadow: 0 10px 24px rgba(109,40,217,.35);
  transition: transform .08s ease, box-shadow .2s;
}
#planos .btn-assinar:hover{ transform: translateY(-1px); }
#planos .btn-assinar:active{ transform: translateY(1px); }

/* Card “recomendado” ganha borda/halo */
#planos .plano-recomendado{
  border: 1px solid rgba(255, 255, 255, 0.50);
  background: linear-gradient(143deg, rgba(98, 40, 225, 0.50) 2.75%, rgba(224, 89, 40, 0.50) 99.18%);
  backdrop-filter: blur(25px);
}

/* ===== Responsivo */

/* Mobile: 1 por linha + espaçamentos maiores e “carrossel” com snap opcional */
@media (max-width: 575.98px){
  #planos .planos-grid{
    --gap: 18px;
    display: grid !important;
    grid-template-columns: 1fr;
    gap: var(--gap);
  }
  /* modo snap (descomente se quiser scroll horizontal dos cards)
  #planos .planos-grid{
    display:flex !important; overflow-x:auto; scroll-snap-type: x mandatory; gap: 14px; padding-bottom: 6px;
  }
  #planos .planos-grid > [class*="col-"]{ min-width: 88%; flex: 0 0 auto; scroll-snap-align: start; }
  */
}

/* Tablet: 2 colunas */
@media (min-width: 576px) and (max-width: 991.98px){
  #planos .planos-grid{
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 24px;
  }
  #planos .plano-card{ padding: 22px; }
}

/* Desktop: 3 colunas (como já está), só garante altura coesa */
@media (min-width: 992px){
  #planos .plano-card{ min-height: 360px; }
}

/* Pílulas dos tabs (“Pagar por mês/ano”) maiores no mobile */
#planos .nav-planos .nav-link{
  border-radius: 999px; padding: 10px 16px; font-weight: 600;
}
#planos .nav-planos .nav-link.active{
  background: linear-gradient(90deg,#6D28D9,#9333EA); color:#fff;
}

.btn-canais {
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  padding: 10px 25px;
  display: block;
  margin: 0 auto;
  width: fit-content;
  margin-bottom: 15px;
  cursor: pointer;
  transition: all 0.5s;
  border-radius: 150px;
}

.btn-canais:hover {
  background: rgba(255, 255, 255, 0.10);
}

.modal-black .modal-content {
  border-radius: 20px;
  border: 1.5px solid rgba(255, 255, 255, 0.20);
  background: rgba(0, 0, 0, 0.60);
  backdrop-filter: blur(10px);
}

.modal-black .modal-content .modal-title {
  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;
}

.modal-black .modal-content .modal-header {
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.20);
}

.modal-black .modal-content .modal-header button {
  border-radius: 150px;
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  color: #FFF;
}

.modal-black .modal-content .modal-header button:hover {
  opacity: 0.6;
}

.modal-black ::-webkit-scrollbar {
  width: 5px;
}

.modal-black ::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px rgba(255, 255, 255, 0.1); 
  border-radius: 10px;
}
 
.modal-black ::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2); 
  border-radius: 10px;
}

.modal-black ::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3); 
}


/* --- CAMPEONATOS / ESPORTES --- */

/* texto extra abaixo do parágrafo principal */
.catalogo-copy-extra {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  margin-top: 10px;
}

/* “pílulas” de categorias (futebol BR, internacional, etc.) */
.sports-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sports-pill {
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.05);
  color: #FFF;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  letter-spacing: .02em;
}

/* grupo de campeonatos (título + grid) */
.sports-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.sports-group-title {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,0.75);
  margin-bottom: 8px;
}

/* ajusta os cards pra esse bloco ficar bem alinhado */
.catalogo .campeonato-card {
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(10px);
  padding: 14px;
  display: grid;
  place-items: center;
  height: 100%;
}

.catalogo .campeonato-card img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
}

/* hover só no desktop */
@media (hover:hover) {
  .catalogo .campeonato-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255,255,255,0.6);
    transition: transform .18s ease, border-color .18s ease;
  }
}

/* responsivo: empilha melhor no mobile */
@media (max-width: 991.98px) {
  .catalogo .section-title h2,
  .catalogo .section-title p {
    text-align: center;
  }
  .catalogo-copy-extra,
  .sports-tags {
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  .sports-grid {
    gap: 16px;
  }
  .sports-group-title {
    text-align: center;
  }
}

/* MOBILE: 3 colunas (ou mude pra 2 se quiser) */
@media screen and (max-width: 768px){
  .campeonato-card{
    border-radius: 12px;
  }
  .catalogo .campeonato-card img {
    max-width: 100%;
    max-height: 80px;
  }

  #provedores {
    padding-top: 0;
  }

  .formulario .btn-prev, .btn-next {
    padding: 10px 30px;
  }

  .cadastro {
    padding: 0;
  }
}

/* --- GRID DOS CANAIS --- */
.modal-black .modal-body {
  padding: 25px;
}

/* DESKTOP: 5 por linha, cards quadrados */
.modal-black .channels-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px; /* espaço entre os cards */
}

.modal-black .channel-card {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;   /* mantém quadrado */
  height: auto;          /* NÃO força altura fixa */
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.25);
  transition: 0.2s;
}

.modal-black .channel-card:hover {
  background: rgba(255, 255, 255, 0.20);
  transform: translateY(-2px);
}

/* logo bem grande dentro do card */
.modal-black .channel-card img {
  width: 82%;
  height: 82%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* ===== RESPONSIVO ===== */

/* Tablet: 4 por linha */
@media (max-width: 991.98px) {
  .modal-black .channels-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
  }

  .modal-black .channel-card {
    padding: 6px;
  }

  .modal-black .channel-card img {
    width: 84%;
    height: 84%;
  }
}

/* Mobile: 3 por linha, logo bem grandão */
@media (max-width: 575.98px) {
    .modal-black .channels-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px; /* menor espaçamento */
    }

    .modal-black .channel-card {
        padding: 8px;
        border-radius: 10px;
        height: 95px; /* Aumenta a área útil */
    }

    .modal-black .channel-card img {
        max-width: 95%;
        max-height: 80px; /* AUMENTA O LIMITE REAL */
        width: 95%;
        height: auto;
    }
}



.tabela-planos h3 {
  font-size: 20px;
  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: 30px;
  padding: 0;
}

.tabela-planos table {
  width: 50%;
  float: left;
  margin: 0;
}

.tabela-planos table thead tr th {
  font-size: 20px;
  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;
  line-height: 1;
}

.tabela-planos table thead tr th span {
  font-size: 16px;
  font-weight: 400;
}

.tabela-planos table thead tr.currency {
  margin: 15px 0;
  display: block;
}

.tabela-planos table thead tr.currency th {
  font-size: 22px;
  font-weight: 700;
  background: linear-gradient(90deg, #6228E1 0%, #E05928 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tabela-planos table tbody tr td {
  color: #FFF;
  font-size: 13px;
  font-weight: 400;
}

.tabela-planos table tbody tr td img {
  width: 10px;
  margin-right: 5px;
}

.tabela-planos table tbody tr {
  padding: 10px;
  display: block;
}

.tabela-planos table tbody tr:nth-child(odd) {
  background: rgba(217, 217, 217, 0.10);
  backdrop-filter: blur(10px);
}


@media screen and (max-width: 768px) {
  .tabela-planos table {
    width: 70%;
    float: unset;
    margin: 0 auto;
    margin-bottom: 35px;
  }
}



.options {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    overflow: hidden;
    width: 100%;
    height: 450px;
}

.options .option {
  position: relative;
  overflow: hidden;
  min-width: 120px;
  width: calc((100% / 6) - 20px);
  margin: 10px;
  background-size: auto 120%;
  background-position: center;
  cursor: pointer;
  transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
  border-radius: 10px;
  box-shadow: #fff 0 0 2px 0px;
}

.options .option.active {
  width: calc(((100% / 6) - 20px) * 2);
  margin: 10px 0px;
  background-size: auto 100%;
}

.options .option.active .shadow {
  background: linear-gradient(227deg, rgba(224, 89, 40, 0.20) 19.52%, rgba(98, 40, 225, 0.20) 99.27%), linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0.12%, rgba(0, 0, 0, 0.30) 99.84%);
}

.options .option.active .label {
}

.options .option.active .label .info>div {
  opacity: 1;
}

.options .option:not(.active) .shadow {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.30) 0%, rgba(0, 0, 0, 0.60) 80%);
}

.options .option:not(.active) .label .info>div {
  opacity: 0;
}

.options .option .shadow {
  position: absolute;
  top: 0;
  bottom: 0px;
  left: 0px;
  right: 0px;
  transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}

.options .option .label {
  display: flex;
  position: absolute;
  right: 0px;
  bottom: 0px;
  left: 0px;
  padding: 30px 15px;
  transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
  background: linear-gradient(180deg, rgb(0 0 0 / 0%) 0%, rgba(0, 0, 0, 0.50) 30%);
}

.options .option .label .info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 10px;
  white-space: pre;
}

.options .option .label .info>div {
  position: relative;
  transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95), opacity 0.5s ease-out;
}

.options .option .label .info .main {
  font-size: 20px;
  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;
}

.options .option .label .info .sub {
  font-size: 16px;
  font-weight: 400;
  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;
  transition-delay: 0.1s;
}

#carouselCards {
  display: none;
}

@media screen and (max-width: 768px) {
    .options {
      display: none;
    }

    #carouselCards {
      display: block;
    }
}

#carouselCards .carousel-inner .carousel-item h5 {
  font-size: 20px;
  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;
  text-transform: uppercase;
}

#carouselCards .carousel-inner .carousel-item .carousel-caption {
  right: 0;
  bottom: 0;
  left: 0;
  padding: 40px 20px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #000 80%);
}


.whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 996;
  background: #88E700;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  transition: all 0.4s;
}

.whatsapp i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
  padding: 10px;
}

.whatsapp:hover {
  background: #6fc02c;
  color: #fff;
}