@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("parts/responsive.css");
@import url("parts/single.css");

html,
body {
  font-family: "Montserrat", sans-serif;
  scroll-behavior: smooth;
  height: 100%;
  overflow-x: hidden; /* Bloqueia scroll lateral */
}

body.home {
  scroll-snap-type: y mandatory;
}

/* Seções com snapping, só na home */
body.home #section,
body.home .section {
  min-height: 100vh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

/* Outras páginas não têm snapping nem height fixo */
body:not(.home) #section,
body:not(.home) .section {
  min-height: auto;
  scroll-snap-align: none;
  scroll-snap-stop: normal;
}

/* Define a largura da barra de rolagem */

/* Scrollbar personalizada - TODAS AS PÁGINAS */

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #180101;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: #ef7d45;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #45a049;
}

:root {
  --primary-color: #ef7d45;
  --secondary-color: #244e49;
  --tertiary-color: #e4dcdce0;
  --wpp-color: #25d366;
  --wpp-color-hover: #04ad42;
  --white: #ffffff;
  --gray: #b7aeae;

  --e-global-color-primary: #244e49;
  --e-global-color-secondary: #f7922d;
  --e-global-color-text: #656565;
  --e-global-color-accent: #f86823;
  --e-global-color-white: #ffffff;
  --e-global-color-light-white: #d6d8e2;
  --e-global-color-very-dark-mostly-black-blue: #244e49;
  --e-button-gradient-1: #fa6220;
  --e-button-gradient-2: #ef8b33;
  --e-global-color-desaturated-blue: #353956;
  --e-global-color-bright-orange: #f68a49;
  --e-global-color-very-pale-orange: #fff7f4;
  --e-global-color-very-light-gray-mostly-white: #f9f9f9;
}

/* 
    constantes
*/

.autoShow {
  animation: autoShowAnimation both;
  animation-timeline: view(40% auto);
}

@keyframes autoShowAnimation {
  from {
    opacity: 0;
    transform: translateX(200px) scale(0.3);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.autoShow2 {
  animation: autoShowAnimation both;
  animation-timeline: view(40% auto);
}

@keyframes autoShowAnimation {
  from {
    opacity: 0;
    transform: translateX(300px) scale(0.1);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.btn-success {
  background-color: var(--primary-color);
  border: none;
  padding: 15px;
  border-radius: 25px;
  /* font-weight: bold; */
}

.btn-info {
  background-color: var(--white);
  color: var(--primary-color);
  border: none;
  padding: 15px;
  border-radius: 25px;
  font-weight: bold;
}

/*  Buttons */

.btn-primary {
  background-color: var(--primary-color);
  border: none;
  font-weight: bold;
}

.btn-secondary {
  background-color: #25d366;
  border: none;
  font-weight: bold;
}

/*  */

.navbar .container {
  background-color: rgba(255, 255, 255, 0.636);
  /* background: rgba(255,255,255,0); */
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0);
  border-radius: 25px;
  margin-top: 25px;
  z-index: 2;
}

.navbar .navbar-brand {
  width: 250px;

  border-radius: 25px;
  display: flex;
  margin-left: -10px;
}

.navbar .navbar-brand img {
  max-width: 85%;
  height: auto;
  padding: 12px;
  align-items: center;
  margin: 0 auto;
}

.navbar-expand-lg .navbar-collapse {
  justify-content: flex-end;
}

.main-header .navbar-nav .nav-link {
  color: var(--secondary-color);
  font-weight: bold;
  margin-right: 15px;
  text-transform: uppercase;
}

.main-header .navbar-nav .nav-link:hover {
  color: var(--primary-color);
}

.no-video-header {
  position: static !important;
  height: auto !important;
  min-height: auto !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  background: none !important; /* Se tiver background da home */
}

.no-video-header .container {
  margin-top: 0 !important;
  border: none !important;
  backdrop-filter: none !important;
  background: #fff !important; /* Ou outra cor sólida */
}

.main-header {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  scroll-snap-align: start;
}

.main-header video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.main-header .video-buttons {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  white-space: nowrap;
}

.main-header .video-buttons .btn {
  margin-left: 0;
  /* Remove o deslocamento lateral */
  width: auto;
  /* Ajusta a largura dos botões automaticamente */
  width: 100%;
}

/* 
    MAIN HERO
*/

.main_hero {
  max-width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.main_hero video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.main_hero header {
  text-align: center;
  /* width: 60%; */
  margin: 0 auto;
  color: var(--white);
  padding: 50px 0;
}

.main_hero header h1 {
  font-size: 3.5rem;
  font-weight: bolder;
}

.main_hero header p {
  font-size: 1rem;
}

.main_hero header .p {
  margin-bottom: 40px;
}

.main_hero .imgs {
  position: relative;
}

.main_hero .imgs .tela1 {
  text-align: center;
  position: relative;
  width: 100%;
  /* Ajuste para o tamanho da sua imagem */
  height: auto;
  /* Ajuste para o tamanho da sua imagem */
  overflow: hidden;
  /* Para ocultar qualquer conteúdo que exceda o tamanho do contêiner */
}

.main_hero .imgs .tela1 .video {
  position: absolute;
  top: 40%;
  /* Centraliza verticalmente */
  left: 50%;
  /* Centraliza horizontalmente */
  width: 66%;
  /* Cobrirá toda a largura */
  height: auto;
  /* Mantém a proporção do vídeo */
  object-fit: cover;
  /* Faz o crop do vídeo */
  transform: translate(-50%, -50%);
  /* Centraliza o vídeo */
  z-index: 0;
  /* Coloca o vídeo abaixo da imagem */
}

.main_hero .imgs .tela1 .notebook-image {
  position: relative;
  z-index: 1;
  /* Coloca a imagem acima do vídeo */
  width: 100%;
  height: auto;
}

/* 
    CARDS PLANOS
*/

.main_cards_planos {
  width: 100%;
  height: 100vh;
  background-image: url("../img/bg1.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}

.main_cards_planos .row {
  justify-content: flex-end !important;
}

.main_cards_planos header {
  color: var(--white);
}

.main_cards_planos header h1 {
  text-shadow: 0px 4px 6px rgb(23, 9, 1);
  border-left: 6px solid var(--primary-color);
  padding-left: 6px;
}

.main_cards_planos header h2 {
  padding: 10px;
  font-size: 18px;
}

.main_cards_planos .card {
  border: none;
  border-radius: 7px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  text-align: center;
  background: #f5f1f1;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px,
    rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px,
    rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.main_cards_planos .card .card-title {
  font-size: 1rem;
  font-weight: bold;
  color: var(--secondary-color);
}

.main_cards_planos .card .preco {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: -15px;
}

.main_cards_planos .card .preco .meses {
  background-color: #d4d3d2;
  padding: 7px 15px;
  margin-top: -30px;
  margin-bottom: 25px;
  color: var(--secondary-color);
  font-weight: bold;
  border-radius: 7px;
  text-transform: uppercase;
}

.card .preco .info {
  line-height: 16px;
  text-align: end;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card .preco .valor {
  font-size: 4rem;
  font-weight: bold;
  color: var(--primary-color);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.389);
}

.card .preco .valor span {
  font-size: 1rem;
}

.card .vemjunto {
  padding-bottom: 30px;
}

.card .vemjunto p {
  width: 100%;
  line-height: 8px;
  color: var(--secondary-color);
}

.card .vemjunto i {
  color: var(--primary-color) !important;
}

.card .vemjunto .naovem p {
  width: 100%;
  line-height: 8px;
  color: var(--gray);
}

.card .vemjunto .naovem i {
  color: var(--gray) !important;
}

/*  */

/*  */

.main_streamings {
  background-color: #eee;
  display: flex;
  align-items: center;
}

.main_streamings header h1 {
  color: var(--secondary-color);
  font-weight: bolder;
  /* text-shadow: 1px 1px 2px rgb(0, 0, 0); */
}

.main_streamings header h2 {
  font-size: 1.5rem;
  color: #333;
}

.main_streamings header p {
  color: #333;
}

/* .main_streamings .tela {
  position: relative;
  overflow: hidden;
}

.main_streamings .tela img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 3;
  justify-content: center;
} */

.main_streamings .tela .video {
  /* position: absolute;
  top: 50%;
  left: 33%; */
  width: 93%;
  height: 100%;
  object-fit: cover;
  /* transform: translate(-50%, -50%); */
  z-index: 2;
  /* Coloca o vídeo acima da imagem */
  pointer-events: none;
  /* Impede interação com o vídeo */
}

.main_streamings .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center !important;
  justify-content: space-around !important;
}

.main_streamings .btns {
  margin: 25px 0;
}

.main_streamings .streamings {
  width: 100%;
  text-align: center;
}

.main_streamings .streamings img {
  max-width: 80%;
  /* filter: brightness(0) invert(1); */
}

/* 


*/

/* 


*/

.indique-clube {
  /* background: #000; */
  background: linear-gradient(
    -318deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(4, 71, 143, 1) 46%,
    rgba(240, 120, 0, 1) 100%
  );
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
}

.indique-clube img {
  display: flex;
  align-items: center;
  margin: 0 auto;
  max-width: 90%;
  border-radius: 7px;
}

.indique-clube .texto h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary-color);
  /* text-shadow: 1px 1px 2px rgb(0, 0, 0); */
}

.indique-clube .texto h3 {
  font-size: 1.5rem;
  color: var(--white);
}

.indique-clube .texto {
  color: var(--gray);
}

.indique-clube .lojas {
  position: relative;
}

.indique-clube .lojas .swiper {
  height: 100%;
  width: 100%;
}

.indique-clube .lojas .swiper-slide {
  text-align: center;
  font-size: 18px;
  /* background: #444; */
  display: flex;
  justify-content: center;
  align-items: center;
}

.indique-clube .lojas .swiper .swiper-slide img {
  display: block;
  /* width: 100%;
      height: 100%; */
  object-fit: cover;
}

/* 
    RECEBA
*/

.main_receba1 {
  /* background-color: rgb(0, 255, 34); */
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  background-image: url("../img/whatsappfundo.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
  z-index: 2;

  &::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);

    z-index: -1;
  }
}

.main_receba1 h1 {
  margin: 0 auto;
  color: #fff;
  font-size: 2rem;
  text-align: center;
  max-width: 80%;
  font-weight: 700;
  line-height: 1.1;
  text-shadow: 1px 1px 2px black;
  text-align: center;
}

.main_receba1 img {
  width: 70%;
  display: flex;
  margin: 0 auto;
  padding-bottom: 25px;
}

.main_receba1 i {
  color: var(--bg-whatsapp);
}

.main_receba1 form {
  padding: 100px;
  border-radius: 7px;
  margin: 0 auto;
  position: relative;
  z-index: 4;
  /* From https://css.glass */
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.main_receba1 form input {
  width: 100%;
  border: none;
  padding: 10px 20px;
  border-radius: 7px;
  margin-bottom: 20px;
  margin-top: 10px;
  background-color: #fff;
}

.main_receba1 button {
  background-color: #03c800 !important;
  padding: 15px 0;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  text-shadow: 1px 1px 2px black;
  border: none;
  border-radius: 25px;
  font-size: 1.2rem;
}

/* 
    FOOTER SECTION 
*/
.main_footer {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  background-image: linear-gradient(
    to right,
    var(--e-button-gradient-1) 0%,
    var(--e-button-gradient-2) 100%
  );
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  color: white;
  padding: 60px 30px;
}

.main_footer::before {
  content: "";
  width: 85%;
  height: 100%;
  border-radius: 0 0 600px 0;
  position: absolute;
  background: var(--e-global-color-very-dark-mostly-black-blue);
  top: 0;
  left: 0;
  z-index: 1;
}

.main_footer .row {
  z-index: 2;
  position: relative;
}

.main_footer .logo {
  width: 80%;
  padding: 25px 0;
}

.main_footer .logo img {
  max-width: 100%;
}

.main_footer .desc p {
  font-size: 15px;
  color: var(--branco);
  padding: 25px 0;
  line-height: 1.8;
}

.main_footer h3 {
  font-size: 20px;
  margin-bottom: 15px;
  text-align: center;
  color: var(--branco);
  text-transform: uppercase;
  font-weight: 600;
}

.main_footer ul li {
  list-style: none;
  text-align: center;
}

.main_footer ul li a {
  font-size: 14px;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--branco);
  font-weight: 500;
  line-height: 28px;
  transition: 0.3s ease;
}

.main_footer ul li a:hover {
  color: var(--cinza1);
}

.main_footer .contatofooter {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 25px;
}

.main_footer .contatofooter a {
  font-size: 14px;
  color: var(--branco);
  width: 100%;
}

/*   mais internet  */

.mais_internet {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  background-image: linear-gradient(
    to bottom,
    #244e49,
    #214a45,
    #1d4742,
    #1a433e,
    #16403b,
    #143b36,
    #113532,
    #0f302d,
    #0e2826,
    #0d201f,
    #091918,
    #031110
  );
}

.mais_internet header h1 {
  font-size: 2.5rem;
  padding-bottom: 10px;
}

.mais_internet .texto {
  text-align: center;
  padding: 25px 0;
}

.mais_internet img {
  max-width: 100%;
  margin: 0 auto;
}

.mais_internet .btns {
  display: inline-block;
}
