.contato-section {
  display: flex;
  flex-direction: column;
  background: #010a18;
    color: #fff;
}

.contato-info {
  display: flex;
  justify-content: center;
  align-items: center;


}

.contato-info h2 {
  font-size: 2rem;
  font-weight: 700;
 

}

.contato-info p {
  font-size: 0.97rem;
  color: #bdbdbd;
}

.contato-form {
  width: 100%;
  max-width: 440px;
  display: flex;
  flex-direction: column;
}

.contato-form label {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  font-size: 1rem;
}

.contato-form input,
.contato-form textarea {
  background: #0a1322;
  border: 1px solid #222;
  border-radius: 6px;
  padding: 16px 14px;
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition: border 0.2s;
}

.contato-form textarea {
  min-height: 120px;
}

.contato-form input:focus,
.contato-form textarea:focus {
  border-color: #5ce164;
}

.contato-form button {
  background: #5ce164;
  color: #010a18;
  border: none;
  border-radius: 6px;
  padding: 12px 0;
  font-size: 1.05rem;
  font-weight: bold;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s;
}

.contato-form button:hover {
  background: #3fae6c;
}

/* RESPONSIVIDADE */
@media (max-width: 900px) {
  .contato-section {
    padding: 30px 16px;
  }
  .contato-info {
    max-width: 100%;
    margin-bottom: 24px;
  }
  .contato-form {
    max-width: 100%;
  }
}
