*,
*::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;
}

.fade-out-on-scroll {
  transition: opacity 0.2s ease;
}

@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;
}

.qxback {
  color: #0f0;
}

.ppp {
  font-size: 28px;
  font-weight: bold;
  text-shadow: 0px 0px 2px #0f0;
  cursor: grab;
}

/*-----codigo novo------*/

.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: 70px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding-top: 50px;
}

.referral-content p {
  font-size: 24px;
  text-align: center;
  font-weight: normal;
}

.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: 20px;
  position: relative;
  overflow: hidden;
}

.qref-card {
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid #0f0;
  border-radius: 15px;
  padding: 50px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 255, 0, 0.1);
  width: 70%;
  margin: 0 auto;
  text-align: center;
}

.qref-card-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.qref-visual {
  flex: 1;
  padding: 1rem;
  text-align: center;
}

.qref-icon {
  font-size: 6rem;
  color: #0f0;
  filter: drop-shadow(0 0 10px #0f0);
}

.qref-content {
  flex: 2;
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  width: 90%;
  margin: 0 auto;
}

.qref-titleeee {
  color: #0f0;
  font-size: 40px;
  margin-bottom: 10px;
  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;
}

.ata {
  width: 50%;
  align-content: center;
}

.qref-grid {
  width: 90%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 0 auto;
}

.qref-service {
  padding: 50px;
  border-radius: 10px;
  text-align: center;
  width: 90%;
  margin: 0 auto;
  background-color: rgba(0, 23, 0, 0.668);
  border-left: 4px solid #0f0;
}

.qref-service:hover {
  cursor: pointer;
  filter: brightness(1.1);
  box-shadow: 0px 0px 10px #0f0;
  border-left: 4px solid #0f0;
  background-color: #000;
}

.qref-service i {
  font-size: 20px;
  color: #0f0;
  margin-bottom: 10px;
  display: block;
}

.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%; }
}

@media (max-width: 768px) {
  .qref-card-inner {
    flex-direction: column;
  }
  
  .qref-grid {
    grid-template-columns: 2fr;
  }
  
  .qref-title {
    font-size: 1.5rem;
  }
  
  .qref-icon {
    font-size: 4rem;
  }

  .qref-card {
    width: 90%;
  }
}

.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);
}
