@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: #fff;
  overflow-x: hidden;
  background: #000;
  position: relative;
  min-height: 100vh;
}

    /* ===== SCROLLBAR (DESKTOP) ===== */
    @media (hover: hover) {
      ::-webkit-scrollbar {
        width: 10px;
      }

      ::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
      }

      ::-webkit-scrollbar-thumb {
        background: linear-gradient(180deg, #ffd90086, #ffa6008d);
        border-radius: 10px;
        box-shadow: 0 0 10px 2px rgba(255, 215, 0, 0.6);
        transition: 0.3s;
      }

      ::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(180deg, #FFE44D, #FFB300);
        box-shadow: 0 0 15px 4px rgba(255, 215, 0, 0.8);
      }
    }

html, body {
  direction: ltr !important; /* força o scroll à direita */
  unicode-bidi: embed; /* evita herança de rtl */
}



/* === BACKGROUND COM IMAGEM, GRID E BRILHOS === */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)),
    url("https://images.unsplash.com/photo-1671726203430-7b9185e69f52?auto=format&fit=crop&w=2000&q=80");
  background-size: cover;
  background-position: center;
  z-index: -4;
  direction: ltr !important;
}

/* GRID LEVE */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: -3;
}

/* === BRILHOS AZUIS SUAVES === */
body::before,
body::after {
  pointer-events: none;
}

body::before {
  background-blend-mode: overlay;
}

body::after {
  background-blend-mode: overlay;
}

/* Criando os brilhos com pseudo-elementos extras */
body::before {
  position: fixed;
}

body::after {
  position: fixed;
}

/* Brilho vindo de cima e de baixo */
body::before,
body::after {
  content: "";
  position: fixed;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

body::before {
  top: 0;
  background: radial-gradient(
    ellipse at top,
    rgba(0, 119, 255, 0.18),
    transparent 70%
  );
  z-index: -2;
}

body::after {
  bottom: 0;
  background: radial-gradient(
    ellipse at bottom,
    rgba(0, 119, 255, 0.15),
    transparent 50%
  );
  z-index: -1;
}

/* === CANVAS DE PARTÍCULAS === */
#particles,
#dollars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* Partículas de fogo (ouro) */
#particles {
  opacity: 0.25;
}

/* Cifrões caindo */
#dollars {
  opacity: 0.10;
}

/* === NAVBAR VIDRO === */
.navbar {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 30px;
  backdrop-filter: blur(15px) saturate(180%);
  background-color: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
  height: 40px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.4));
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

/* === GALERIA === */
.gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding-left: 35%;
  padding-right: 35%;
  padding-top: 0%;
}

.gallery img {
  width: 100%;
  max-width: 900px;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
/* === FEEDBACKS === */
.feedbacks {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding-left: 40%;
  padding-right: 40%;
  padding-bottom: 5%;
}

.feedbacks img {
  width: 100%;
  max-width: 900px;
  border-radius: 12px;
}

    :root {
      --gold: #d4af37;
      --text-dark: #333;
      --text-muted: #666;
      --white: #fff;
    }

    .container {
      max-width: 800px;
      margin: auto;
      padding: 20px;
    }

    .faq-item {
      margin-bottom: 25px;
    }

    .faq-question {
      border: 2px solid var(--gold);
      color: var(--gold);
      font-weight: 600;
      font-size: 1.1em;
      padding: 15px 20px;
      border-radius: 8px;
      cursor: pointer;
      position: relative;
      transition: all 0.4s ease;
      overflow: hidden;
    }

    .faq-question::before {
      content: '';
      position: absolute;
      top: 0;
      left: -75%;
      width: 50%;
      height: 100%;
      background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
      transform: skewX(-20deg);
    }

    .faq-question:hover::before {
      animation: shine 1s ease forwards;
    }

    @keyframes shine {
      0% { left: -75%; }
      100% { left: 125%; }
    }

    .faq-question:hover {
      background-color: var(--gold);
      color: var(--white);
    }

    .faq-answer {
      margin-top: 10px;
      font-size: 1em;
      color: var(--white);
      line-height: 1.6;
      display: none;
      animation: fadeIn 0.4s ease-in-out;
      padding-left: 10px;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(-5px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @media (max-width: 600px) {
      h1 {
        font-size: 2em;
      }

      .faq-question {
        font-size: 1em;
        padding: 12px 16px;
      }
    }
/* === FOOTER === */
footer {
  text-align: center;
  padding: 40px 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #aaa;
  background: rgba(0, 0, 0, 0.5);
  font-size: 0.9rem;
  backdrop-filter: blur(5px);
}
    /* ======== ANIMAÇÃO DE ENTRADA ======== */
    .animado {
      opacity: 0;
      transform: translateX(-80px);
      transition: all 0.8s ease-out;
    }

    .animado.visivel {
      opacity: 1;
      transform: translateX(0);
    }
    /* ===== SCROLLBAR DOURADA ===== */
    ::-webkit-scrollbar {
      width: 10px;
    }

    ::-webkit-scrollbar-track {
      background: rgba(255, 255, 255, 0.05);
    }

    ::-webkit-scrollbar-thumb {
      background: linear-gradient(180deg, #FFD700, #FFA500);
      border-radius: 10px;
      box-shadow: 0 0 10px 2px rgba(255, 215, 0, 0.6);
      transition: 0.3s;
    }

    ::-webkit-scrollbar-thumb:hover {
      background: linear-gradient(180deg, #FFE44D, #FFB300);
      box-shadow: 0 0 15px 4px rgba(255, 215, 0, 0.8);
    }


/* === RESPONSIVIDADE === */
@media (max-width: 768px) {
  .logo {
    height: 34px;
  }
  .gallery {
    gap: 25px;
    padding: 0px 15px 0px
  }
/* === FEEDBACKS === */
.feedbacks {
  gap: 25px;
  padding: 0px 50px 60px;
}
/* Remove completamente a scrollbar no corpo da página */
html, body {
  overflow-y: scroll; /* mantém rolagem ativa */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE e Edge antigo */
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none; /* Chrome, Safari e Opera */
}

/* Se quiser aplicar também a containers específicos */
.container {
  overflow-y: scroll;
  scrollbar-width: none;
}

.container::-webkit-scrollbar {
  display: none;
}

}

