.welcome-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 20px;
  background: #0c0c0c;
  color: white;
}

.welcome-content {
  max-width: 400px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.welcome-logo {
  width: 32px;
  height: 24px;
}

.welcome-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 32px;
  font-weight: 500;
  color: white;
}

.welcome-card {
  width: 100%;
  background: transparent;
  border: 1px solid #3b3b3b;
  border-radius: 8px;
  padding: 32px;
  margin-top: 24px;
  position: relative;
}

.new-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
}

.welcome-text {
  text-align: center;
  margin-bottom: 48px;
}

.welcome-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.button {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  line-height: 20.58px;
  letter-spacing: 0.14px;
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
}

.button-primary {
  background: white;
  color: black;
}

.button-primary:hover {
  filter: brightness(0.8);
}

.button-secondary {
  background: #565656;
  color: white;
}

.button-secondary:hover {
  filter: brightness(0.8);
}

.welcome-faq {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 32px;
}

.faq-item {
  width: 100%;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #a8a8a8;
  cursor: pointer;
  text-align: left;
  font-family: "Space Grotesk", sans-serif;
  transition: color 0.2s ease;
}

.faq-item:hover {
  color: white;
}

.arrow-icon {
  transition: transform 0.3s ease;
}

.faq-item.active .arrow-icon {
  transform: rotate(180deg);
}

/* Conteúdo do FAQ */
.faq-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 16px;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Wrapper para o texto do FAQ */
.faq-text {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 16px 0;
}

.faq-item.active + .faq-content {
  max-height: 300px; /* Valor maior que o necessário para garantir espaço */
}

.faq-item.active + .faq-content .faq-text {
  opacity: 1;
  transform: translateY(0);
}
