.projetos-futuros-home {
  display: flex;
  align-items: center;
  gap: 5rem;
  max-width: 1000px;
  margin: 60px auto 0;
  padding: 4rem 2rem;
  display: flex;
  flex-wrap: wrap;
}

.projetos-futuros-home > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.projetos-futuros-home span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #e8ff47;
}

.projetos-futuros-home h1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--azul-principal);
}

.projetos-futuros-home p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
}

.projetos-futuros-home > div:first-child > a {
  align-self: flex-start;
  font-size: 13px;
  font-weight: 500;
  color: #1a1a2e;
  text-decoration: none;
  border: 1.5px solid #1a1a2e;
  padding: 8px 18px;
  border-radius: 100px;
  background: #e8ff47;
  transition: background 0.2s, color 0.2s;
}

.projetos-futuros-home > div:first-child > a:hover {
  background: #1a1a2e;
  color: #e8ff47;
}

.envioDados {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: white;
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(26,26,46,0.08);
  width: 350px;
  flex-shrink: 0;
}

.input-inscricao {
  width: 100%;
  border: 1.5px solid #e0dfd8;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 14px;
  color: #1a1a2e;
  background: #fafaf8;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.input-inscricao:focus {
  border-color: #7b61ff;
  background: white;
}

.envioDados .btn-inscricao {
  width: 100%;
  background: var(--azul-principal);
  color: #1a1a2e;
  border: none;
  border-radius: 10px;
  padding: 12px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.1s;
}

.envioDados .btn-inscricao:hover { opacity: 0.88; }
.envioDados .btn-inscricao:active { transform: scale(0.98); }

#olho-senha, #olho-confirma {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 16px;
  opacity: 0.4;
}