*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI";
}

html {
	-webkit-tap-highlight-color: transparent;
}

html, body {
  min-height: 100vh;
  background-color: #000;
  color: #fff;
  line-height: 1.6;
  z-index: -10;
}

body {
  background: 
    linear-gradient(rgba(0, 255, 0, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 0, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  animation: matrix-fall 40s linear infinite;
}

.main-content {
  flex: 1;
}

/*--------------------------------------------------------------------------------recomendamos--------------------------------------------*/

.manage-btn {
  background-color: #333;
  color: #0f0;
  border-radius: 15px;
}
.manage-btn:hover {
  background-color: #111;
}

.image-container img {
  width: 150px;
}

.ok-btn {
  background-color: #0f0;
  color: #000;
  border: none;
  padding: 10px 20px;
  border-radius: 15px;
  font-size: 14px;
  cursor: pointer;
}

.ok-btn:hover {
  box-shadow: 0px 4px 16px #0f0;
}

/*---------------------------------------------------------------------banners----------------------------------------------*/

.banner1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px;
  width: 100%;
  margin: 0 auto;
  animation: slideDown 1.5s ease-out;
  z-index: 3;
  background-color: #000;
}

.icon {
  width: 150px;
}

.inner-banners {
  display: flex;
  gap: 20px;
  width: 100%;
  z-index: 20;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.inner-banner {
  background-color: #111;
  color: white;
  padding: 20px;
  border-radius: 15px;
  width: 100%;
  width: 300px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 20;
  cursor: grab;
  border-left: 2px solid #0f0;
}

.icon {
  font-size: 3rem;
  margin-bottom: 10px;
}

.inner-banner:hover {
  box-shadow: 2px 4px 6px #0f0;
  transform: translateY(-5px);
}

.inner-banner:hover .icon {
  color: #0f0;
}

.banner2 {
  width: 100%;
  background-color: #060606;
  color: #0f0;
  text-align: center;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  margin-top: 50px;
  position: relative;
}

.banner2 .texto h2 {
  margin: 0 auto;
  margin-top: 60px;
  animation: slideDown 0.5s ease-out;
  color: #0f0;
  font-size: 50px;
  width: 660px;
}

.banner2 .texto p {
  color: #fff;
  animation: slideDown 0.5s ease-out;
  margin: 20px;
  font-size: 20px;
  padding: 50px;
}

.banner2 .cta-button {
  margin-bottom: 20px;
  padding: 8px 30px;
  background-color: #0f0;
  color: #000;
  border: none;
  cursor: pointer;
  border-radius: 15px;
  z-index: 50;
}

.cta-button:hover {
  background-color: #0f0;
  box-shadow: 0px 2px 1600px #0f0;
  transform: scale(1.05);
  filter: brightness(1.9);
}

.fade-out-on-scroll {
  transition: opacity 0.2s ease;
}

.banner4 {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  padding: 20px;
  gap: 20px;
  width: 100%;
  margin: 0 auto;
  animation: slideDown 0.5s ease-out;
  background-color: #00000004;
  z-index: 2;
}

.banner4 .conteudo h2,
.banner5 .conteudo h2,
.qxback,
.brasil {
  color: #0f0;
}

.conteudo {
  width: 400px;
}

.banner4 p {
  font-size: 18px;
  text-align: right;
}

.banner4 h2 {
  font-size: 26px;
  text-align: right;
}

.banner4 img {
  width: 100%;
  max-width: 200px;
  border-radius: 15px;
  margin: 20px;
}

.banner5 {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  padding: 20px;
  gap: 20px;
  width: 100%;
  margin: 0 auto;
  animation: slideDown 0.5s ease-out;
  background-color: #000000a0;
  z-index: 3;
}

.banner5 p {
  font-size: 18px;
  text-align: left;
}

.banner5 h2 {
  font-size: 26px;
  text-align: left;
}

.banner5 img {
  width: 100%;
  max-width: 400px;
  border-radius: 15px;
}

.conteudo2 {
  width: 400px;
}

.banner6 {
  display: flex;
  align-items: center;
  padding: 30px;
  gap: 20px;
  width: 100%;
  margin: 10px auto;
  animation: slideDown 0.5s ease-out;
  background-color: #111;
  z-index: 2;
  margin-top: 30px;
  margin-bottom: 60px;
}

.banner6 .conteudo {
  flex: 1;
  color: #fff;
}

.banner6 p {
  text-align: right;
  margin: 10px auto;
  margin-left: 60px;
}

.banner6 .imagem-direita {
  flex: 1;
}

.banner6 .imagem-direita img {
  margin: 10px auto;
  width: 180px;
}

.banner5 .conteudo .brasil,
.banner5 .conteudo .qxback {
  color: #0f0;
}

@keyframes slideDown {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  animation: slideDown 0.5s ease-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #0f0;
}

@media (max-width: 956px) {
  .navbar ul {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .hamburguer-menu {
    display: flex;
  }

  .navbar.active ul {
    display: block;
    position: absolute;
    background-color: #000;
    width: 180px;
    right: 50px;
    top: 32px;
    text-align: right;
    z-index: 11;
    border-radius: 10px;
    padding: 0px;
    gap: 10px;
  }

  .navbar ul li {
    padding: 10px 20px;
    margin-bottom: 5px;
    text-align: right;
    font-size: 16px;
    color: #fff;
  }

  .banner2,
  .banner4,
  .banner5,
  .banner6 {
    width: 100%;
    flex-direction: column;
    text-align: center;
  }

  .banner2 {
    padding: 2px;
  }

  .banner2 .cta-button {
    margin-top: 14px;
    padding: 10px 20px;
  }

  .banner5 h2 {
    margin-bottom: 20px;
    text-align: center;
  }

  .inner-banners {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .inner-banner {
    width: 90%;
  }

  .banner1 p {
    font-size: 16px;
  }

  .banner6 p {
    text-align: center;
    margin: 10px auto;
  }

  .banner6 .imagem-direita img {
    border-radius: 15px;
    margin: 10px auto;
    width: 180px;
    left: 0px;
  }
}

@media (max-width: 768px) {
  .banner2 .texto h2 {
    font-size: 28px;
    width: 100%;
  }

  .banner2 .texto p {
    font-size: 16px;
  }
}

@media (max-width: 460px) {
  .navbar ul {
    display: none;
  }

  .hamburguer-menu {
    display: flex;
  }

  .conteudo {
    width: 100%;
  }
  .conteudo2 {
    width: 100%;
  }

  .banner2,
  .banner4,
  .banner5,
  .banner6 {
    width: 100%;
    flex-direction: column;
    text-align: center;
  }

  .banner2 .texto h2 {
    font-size: 20px;
  }

  .banner2 .texto p {
    margin: 0px auto;
    font-size: 14px;
  }

  .banner2 .cta-button {
    margin-top: 10px;
    padding: 10px 20px;
  }

  .inner-banners {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .banner1 p {
    font-size: 14px;
  }

  .banner6 p {
    text-align: center;
    margin: 10px auto;
  }

  .banner6 .imagem-direita img {
    border-radius: 15px;
    margin: 10px auto;
    width: 180px;
    left: 0px;
  }

  .banner4 h2 {
    font-size: 20px;
    text-align: center;
  }

  .banner4 p {
    text-align: center;
    font-size: 14px;
  }

  .banner5 p {
    text-align: center;
    font-size: 14px;
  }
}

/*-----codigo novo------*/

.logout-btn {
  background-color: #0f0;
  color: #000;
  padding: 10px 30px;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  margin: 8px auto;
  margin-left: 24px;
}

.logout-btn:hover {
  background-color: #19b419f0;
}

.referral-banner {
  background: #000;
  padding: 2rem 1rem;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid rgba(0, 255, 0, 0.1);
}

.referral-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 255, 0, 0.05) 1px,
    transparent 1px
  );
  background-size: 100% 4px;
  pointer-events: none;
  animation: matrix-fall 60s linear infinite;
}

.referral-content {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 50px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.referral-content p {
  font-size: 18px;
  
}

.referral-banner h2 {
  font-size: 50px;
  letter-spacing: -1px;
  margin-bottom: -10px;
  text-align: center;
  color: #0f0;
  text-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

.bonus-highlight {
  color: #0f0;
  font-weight: 700;
  text-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
}

.perks-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.perk-card {
  background: rgba(0, 0, 0, 0.7);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid #0f0;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(0, 255, 0, 0.1);
  cursor: grab;
}

.perk-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(0, 255, 0, 0.3);
  background: rgba(0, 255, 0, 0.05);
}

.perk-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #0f0;
  filter: drop-shadow(0 0 5px #0f0);
}

.perk-card h3 {
  color: #0f0;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  text-shadow: 0 0 8px rgba(0, 255, 0, 0.3);
}

.main-cta {
  display: flex;
  justify-content: center;
  padding: 1rem 2.5rem;
  background: rgba(0, 255, 0, 0.1);
  color: #0f0;
  border: 2px solid #0f0;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 1rem auto 0;
  position: relative;
  overflow: hidden;
  width: max-content;
  backdrop-filter: blur(5px);
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.2);
  }
  50% {
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.4);
  }
}

.main-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 25%,
    rgba(0, 255, 0, 0.1) 50%,
    transparent 75%
  );
  transform: rotate(45deg);
  animation: cyber-shine 4s infinite linear;
}

@keyframes cyber-shine {
  0% {
    transform: rotate(45deg) translate(-30%, -30%);
  }
  100% {
    transform: rotate(45deg) translate(70%, 70%);
  }
}

.main-cta:hover {
  background: #0f0;
  color: #000;
  animation: hover-vibration 0.3s ease-in-out;
  transform: scale(1.05) rotate(0.5deg);
  box-shadow: 0 0 40px rgba(0, 255, 0, 0.8);
}

@keyframes hover-vibration {
  0%,
  100% {
    transform: scale(1.05) rotate(0.5deg);
  }
  25% {
    transform: scale(1.06) rotate(-0.5deg);
  }
  50% {
    transform: scale(1.07) rotate(0.7deg);
  }
  75% {
    transform: scale(1.06) rotate(-0.7deg);
  }
}

.main-cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid transparent;
  border-radius: 50px;
  animation: border-flicker 1.5s infinite;
}

@keyframes border-flicker {
  0%,
  100% {
    border-color: rgba(0, 255, 0, 0.3);
  }
  50% {
    border-color: rgba(0, 255, 0, 0.8);
  }
}

@keyframes matrix-fall {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 100vh;
  }
}

@keyframes btn-glow {
  0% {
    transform: rotate(45deg) translate(-50%, -50%);
  }
  100% {
    transform: rotate(45deg) translate(50%, 50%);
  }
}

.main-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(0, 255, 0, 0.5);
}

@media (max-width: 768px) {
  .perks-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .referral-banner h2 {
    font-size: 2rem;
  }

  .main-cta {
    width: 100%;
    justify-content: center;
  }
}



@keyframes matrix-fall {
  from { background-position: 0 0; }
  to { background-position: 0 100vh; }
}

.qref-container {
  display: grid;
  gap: 2rem;
  padding: 4rem 1rem;
  position: relative;
  overflow: hidden;
}

.qref-card {
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid #0f0;
  border-radius: 15px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 255, 0, 0.1);
  width: 90%;
  margin: 0 auto;
  text-align: center;
}

.qref-card-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Ícones e Visual */
.qref-visual {
  flex: 1;
  padding: 1rem;
  text-align: center;
}

.qref-icon {
  font-size: 6rem;
  color: #0f0;
  filter: drop-shadow(0 0 10px #0f0);
}

/* Conteúdo */
.qref-content {
  flex: 2;
  text-align: left;
  font-weight: bold;
  font-size: 20px;
}

.ata {
  width: 260px;
  align-content: center;
}

.qref-title {
  color: #0f0;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
  text-align: left;
}

.qref-titleeee {
  color: #0f0;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
  text-align: center;
}

.qref-contenteee {
  flex: 2;
  text-align: center;
  font-weight: bold;
  font-size: 20px;
}

.qref-list {
  list-style: none;
  padding: 0;
}

.qref-item {
  color: #fff;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(0, 255, 0, 0.1);
  position: relative;
}

.qref-item i {
  color: #0f0;
  margin-right: 10px;
}

/* Grid de Serviços */
.qref-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.qref-service {
  background: rgba(0, 255, 0, 0.05);
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(0, 255, 0, 0.2);
  border-left: 2px solid #0f0;
  width: 90%;
  margin: 0 auto;
}

.qref-service i {
  font-size: 2.5rem;
  color: #0f0;
  margin-bottom: 1rem;
  display: block;
}

/* Progress Bar Animada */
.qref-progress {
  height: 8px;
  background: rgba(0, 255, 0, 0.1);
  border-radius: 4px;
  margin: 1.5rem 0;
  position: relative;
  overflow: hidden;
}

.qref-progress::after {
  content: '';
  position: absolute;
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg, 
    #0f0,
    rgba(0, 255, 0, 0.5)
  );
  animation: progress-move 3s infinite linear;
}

@keyframes progress-move {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Responsivo */
@media (max-width: 768px) {
  .qref-card-inner {
    flex-direction: column;
  }
  
  .qref-grid {
    grid-template-columns: 1fr;
  }
  
  .qref-title {
    font-size: 1.5rem;
  }
  
  .qref-icon {
    font-size: 4rem;
  }
}

/* Botão CTA Estático */
.main-cta {
  display: flex;
  justify-content: center;
  padding: 1rem 2.5rem;
  background: rgba(0, 255, 0, 0.1);
  color: #0f0;
  border: 2px solid #0f0;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  margin: 2rem auto 0;
  width: max-content;
  transition: filter 0.3s ease;
}

.main-cta:hover {
  filter: brightness(1.2);
}
