body {
  font-family:
    Inter,
    Arial,
    sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  background: radial-gradient(circle at top, #1b130d 0%, #080808 45%);

}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  opacity: .03;
  pointer-events: none;
  background-image:
    radial-gradient(#ffffff 1px, transparent 1px);
  background-size: 24px 24px;

}

#clearButton {
  display: none;
}

.bloquear-scroll {
  overflow: hidden;
}

.btn-primary,
.buy-button {
  position: relative;
  overflow: hidden;

}

.btn-primary {
  margin-bottom: 30px;

}

.buy-button {
  width: 100%;
  margin-top: 25px;

}

.btn-primary::before,
.buy-button::before {
  content: "";
  position: absolute;
  left: -120%;
  top: 0;
  width: 60%;
  height: 100%;
  background:
    linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, .5),
      transparent);

}

.btn-primary:hover::before,
.buy-button:hover::before {
  left: 180%;
  transition: .8s;

}

.container {
  align-items: center;
  margin: auto;
  padding: 0 20px;

}

.container h2 {
  width: 100%;
  text-align: center;

}



.linha-bottom {
  width: 90%;
  height: 10px;
  background-color: #1d1510b6;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  align-items: center;
  justify-items: center;
  margin: 0 auto;

}

h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 1.05;

}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 60px;

}

p {
  color: var(--text-secondary);
  line-height: 1.8;

}

.comment-p {
  line-height: 0.7;

}

.background-glow {
  position: fixed;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  opacity: .18;

}

.glow-1 {
  top: -200px;
  left: -120px;
  background: #c58f52;

}

.glow-2 {
  right: -180px;
  bottom: -180px;
  background: #6b3e1d;

}

#cursor-glow {
  position: fixed;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background:
    radial-gradient(circle,
      rgba(212, 163, 115, .18),
      transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  filter: blur(45px);
  z-index: -1;
  transition:
    left .08s linear,
    top .08s linear;

}

.particles {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: -2;

}

.particles span {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(212, 163, 115, .55);
  animation: particle 18s linear infinite;

}

.particles span:nth-child(1) {
  left: 8%;
  animation-delay: 0s;

}

.particles span:nth-child(2) {
  left: 26%;
  animation-delay: 3s;

}

.particles span:nth-child(3) {
  left: 43%;
  animation-delay: 6s;

}

.particles span:nth-child(4) {
  left: 61%;
  animation-delay: 9s;

}

.particles span:nth-child(5) {
  left: 80%;
  animation-delay: 12s;
}

.particles span:nth-child(6) {
  left: 92%;
  animation-delay: 15s;

}


.stats .container {
  display: flex;
  justify-content: space-around;
  gap: 40px;
  text-align: center;

}

.stat h2 {
  font-size: 4rem;
  color: var(--primary);
  margin-bottom: 10px;

}

#loader {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #080808;
  z-index: 700;
  transition: .7s;

}

.loader-logo {
  font-size: 2rem;
  font-weight: 700;

}

.loader-logo span {
  color: var(--primary);

}

.announcement {
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(90deg,
      #6d4627,
      #d4a373,
      #6d4627);
  font-size: .92rem;
  color: #fff;
  font-weight: 600;

}

.stars {
  color: #FFD84D;
  margin: 8px 0 18px;
  letter-spacing: 3px;

}

.cta {
  padding: 40px 20px;
  width: 100%;

}

.cta .container {
  display: flex;
  text-align: center;
  flex-direction: column;


}

.cta .container h2 {
  font-size: 3rem;
  margin-bottom: 20px;

}

.cta p {
  margin-bottom: 40px;
  color: #ffffff;

}



html {
  scroll-padding-top: 100px;

}

* {
  -webkit-tap-highlight-color: transparent;

}