.principal {
  margin: 7em 0;
}

.formulario_contato {
  min-width: 750px;
  border-radius: 8px 8px 0 0;
  padding: 3rem;
  font-weight: 400; 
}
.formulario_contato > h1 {
  font-weight: 700; 
  font-size: 2.5em;

}
.btn_contato {
  background: linear-gradient(45deg, rgb(86, 159, 255), rgb(66, 125, 202));
  color: white;
  font-size: 1em;
  font-weight: 700;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  margin-top: 1rem;
  transition: background 0.3s ease;

}

.btn-text {
  opacity: 0;
  transform: translateX(-20px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}


.btn_contato:hover {
  background: linear-gradient(45deg, rgb(66, 125, 202), rgb(86, 159, 255));
  color: white;
}

.contato-botoes {
  min-width: 320px;
  display: flex;
  padding: 50px;
  align-items: center;
  justify-content: space-around;
  gap: 1.5rem;
  height: 100%;
  box-sizing: border-box;
  border-radius: 0 0 8px 8px;
}

.contato-botao {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  cursor: pointer;
  text-decoration: none;

}

.contato-botao .bola {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);

}

.contato-botao:hover .bola {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.contato-botao span {
  font-weight: bold;
  font-size: 1.3rem;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  user-select: none;
}


.facebook-text {
  background: linear-gradient(45deg, rgb(0, 140, 255), rgb(0, 0, 255));
}

.instagram-text {
  background: linear-gradient(45deg, #ff00bf, #FF421F);
}