/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: #0f1729;
  color: #fff;
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  z-index: 999;
  transition: all 0.3s ease;
}

.navbar.transparent {
  background: transparent;
}

.navbar.scrolled {
  background: #0f1729;
  backdrop-filter: blur(10px);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo {
  font-size: 20px;
  font-weight: 800;
}

.logo .dev {
  color: #5fd100;
}

.logo .club {
  color: #722eaf;
}

/* NAV LINKS */
.nav-links {
  display: none;
  gap: 25px;
}

.nav-links a {
  color: #aaa;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #fff;
}

.nav-link.active {
  color: #2bcc00;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

/* BOTÕES */
.btn-primary {
  background: #2bcc00;
  color: #000;
  padding: 14px 24px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(43, 204, 0, 0.5);
}

.btn-secondary {
  padding: 14px 24px;
  border: 1px solid #1e2e3e;
  background: #182732;
  backdrop-filter: blur(50px);
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  letter-spacing: 0.5px;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}

.btn-secondary:hover {
  border: 1px solid #2bcc00;
}

.cta-benefits {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 1.5rem;
}

.benefit {
  font-size: 18px;
}

.benefit span {
  color: #8290a4;
  font-size: 14px;
}
/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 20px 80px;
  overflow: hidden;
}

.grid {
  display: grid;
  gap: 40px;
}

@media (min-width: 1024px) {
  .grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* GLOW */
.bg-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
}

.glow-green {
  background: rgba(43, 204, 0, 0.2);
  top: 20%;
  left: 20%;
  z-index: -1;
}

.glow-purple {
  background: rgba(114, 46, 175, 0.2);
  bottom: 20%;
  right: 20%;
}

/* TEXT */
h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
}

h2 {
  font-size: 32px;
  font-weight: 800;
}

.gradient {
  background: linear-gradient(90deg, #2bcc00, #722eaf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

p {
  color: #aaa;
  font-size: 18px;
  margin-bottom: 30px;
}

/* BUTTON GROUP */
.buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* RIGHT */
.right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

/* SALARY CARD */
.salary-card {
  background: #0f172923;
  width: 600px;
  padding: 20px;
  padding-right: 5rem;
  border-radius: 14px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 40px rgba(43, 204, 0, 0.15);
  max-width: 320px;
}

.salary-card p {
  font-size: 14px;
  color: #d3d4d4;
  margin-bottom: 5px;
}

.salary-card h2 {
  color: #2bcc00;
  font-size: 32px;
  margin-bottom: 5px;
}

/* IMAGE */
.image-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 10px;
  border-radius: 16px;
}

.image-card img {
  width: 100%;
  border-radius: 12px;
}

/* SECTIONS */
section {
  padding: 80px 20px;
}

/* MARKET */
.market {
  position: relative;
}

.market-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 255, 255, 0.03),
    transparent
  );
}

.market-container {
  position: relative;
  z-index: 1;
}

.market-header {
  text-align: center;
  margin-bottom: 50px;
}

.badge {
  margin-bottom: 1rem;
  max-width: 300px;
  border-radius: 20px;
  padding: 10px;
  box-shadow:
    inset 0 0 10px #722eaf,
    0 0 7px #722eaf;
}
.badge .numVagas {
  color: #2bcc00;
}

.market-badge {
  color: #ff4d4d;
  font-weight: bold;
  font-size: 14px;
}

.market-header p {
  margin-top: 15px;
}

/* GRIDS */
.market-grid,
.testimonials-grid,
.why-grid {
  display: grid;
  gap: 20px;
}
.testimonials-header {
  text-align: center;
}
.market-grid p {
  font-size: 14px;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .market-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .market-grid,
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* CARDS */
.why-card,
.testimonial-card,
.stat-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border: solid 1px #1d2d3d;
  border-radius: 12px;
  transition: 0.3s;
}

.why-card:hover,
.testimonial-card:hover {
  border: solid 0.5px #2ccc00a1;
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(43, 204, 0, 0.3);
}

.testimonial-card:hover .stars span {
  animation: starWave 3s ease-in-out infinite;
}

.testimonial-card:hover .stars span:nth-child(1) {
  animation-delay: 0s;
}

.testimonial-card:hover .stars span:nth-child(2) {
  animation-delay: 0.25s;
}

.testimonial-card:hover .stars span:nth-child(3) {
  animation-delay: 0.5s;
}

.testimonial-card:hover .stars span:nth-child(4) {
  animation-delay: 0.75s;
}

.testimonial-card:hover .stars span:nth-child(5) {
  animation-delay: 1s;
}

.why-card .icon,
.stat-card .icon {
  font-size: 28px;
  margin-bottom: 10px;
}

.why-header {
  text-align: center;
}

.why-card h3 {
  margin-bottom: 1rem;
}

.why-card p {
  font-size: 16px;
  color: #8290a4;
  line-height: 1.6;
  font-weight: 600;
}

.vagas,
.exterior,
.crescimento {
  color: #2bcc00;
}

.salarios,
.tempoMedio,
.homeOffice {
  color: #722eaf;
}

/* TESTIMONIAL */
.quote {
  font-size: 3rem;
  color: #722eaf;
  margin-bottom: 0;
}

.text {
  font-size: 16px;
  margin: 0 0 15px 0;
  font-weight: 500;
  color: #cececed8;
}

.stars {
  /* color: #ffd700; */
  margin-bottom: 10px;
}
.stars span {
  display: inline-block;
  font-size: 20px;
  font-weight: 900;
  margin-right: 2.5px;
  color: #2bcc00;
  text-shadow: 1px 2px 5px #000000c2;
  transform-origin: center;
  transform-style: preserve-3d;
  will-change: transform;
  transition: 0.3s;
}
.name {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 0;
}

.role {
  font-size: 12px;
  color: #aaa;
}

/* STATS */
.stat-card h3 {
  font-size: 28px;
  font-weight: 800;
}

/* FAQ */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  background: none;
  border: none;
  color: white;
  text-align: left;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: "▾";
  margin-left: 10px;
  font-size: 20px;
  transition: 0.3s;
  color: #fff;
}

.faq-item.active .faq-question::after {
  transform: rotate(180deg);
  color: #2bcc00;
}

.faq-question:hover::after {
  color: #2bcc00;
}
.faq-question span {
  text-decoration: none;
  transition: 0.3s;
}

.faq-question:hover span {
  color: #2bcc00;
  text-decoration: underline;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  font-weight: 500;
  font-size: 14.5px;
  line-height: 1.5;
  color: #8290a4;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 5px 20px 15px;
}

@keyframes starWave {
  0% {
    transform: translateY(0) rotateY(0deg);
    color: #2bcc00;
  }

  /* SUBINDO + 1 VOLTA */
  25% {
    transform: translateY(-14px) rotateY(360deg);
    color: #722eaf;
  }

  /* DESCENDO + 1 VOLTA */
  50% {
    transform: translateY(0) rotateY(720deg);
    color: #2bcc00;
  }

  /* PAUSA */
  100% {
    transform: translateY(0) rotateY(720deg);
    color: #2bcc00;
  }
}

/* CTA */
.cta {
  text-align: center;
  position: relative;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(43, 204, 0, 0.05),
    transparent
  );
}

.cta-container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 0, 0, 0.1);
  border: 1px solid rgba(255, 0, 0, 0.2);
  margin-bottom: 20px;
  font-weight: bold;
  color: #ff4d4d;
}

.cta-content h2 {
  padding: 1rem;
  font-size: 3rem;
  line-height: 1;
}

.cta-badgeText {
  margin: 1rem 3rem;
  margin-bottom: 3rem;
}

/* FOOTER */
.footer {
  padding: 40px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

/* ANIMAÇÃO BASE */
.animate {
  opacity: 0;
  transition:
    transform 1.4s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* DIREÇÕES */
.animate-left {
  transform: translateX(-30px);
}

.animate-right {
  transform: translateX(30px);
}

.animate-bottom {
  transform: translateY(30px);
}

.animate-top {
  transform: translateY(-30px);
}

/* QUANDO APARECE */
.animate.show {
  opacity: 1;
  transform: translate(0, 0);
}
