#contact {
  width: 100%;
  height: auto;
  background-color: var(--bg-color);
  scroll-margin: 100px;

  padding-bottom: 50px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  color: var(--font-color);
}

.contact--form-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

.contact--form form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 0px;
}

.contact--form form label {
  padding: 0 10px 10px 0;
}

.contact--form form input,
.contact--form form textarea,
.contact--form form button {
  width: 100%;
  background-color: transparent;
  border-radius: 5px;
  padding: 10px;
  border: 1px var(--inverted-bg-color) solid;
  font-size: 12px;
  color: var(--font-color);
}

.contact--form form input {
  margin-bottom: 15px;
}

.contact--form form label {
  border: none;
  font-size: 18px;
  font-weight: 800;
}

.contact--form form textarea {
  height: 150px;
  resize: none;
  margin-bottom: 25px;
  font-family: "custom";
  font-size: 14px;
}

.contact--form form button {
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  transition: background-color 0.5s ease,
  color 0.5s ease;
}
.contact--form form button:hover {
  background-color: var(--azul-intenso);
  color: var(--inverted-font-color);
}

/* Name lastname */

#contact--form-name-lastname {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: center;
  gap: 0;
}

#contact--form-name-lastname label {
  width: fit-content;
}

#contact--form-name-lastname input:nth-child(2) {
  margin-right: 10px;
}

.contact--info ul {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 50px;
}

.contact--info ul li {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 30px;
  cursor: pointer;
}

.contact--info ul li a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 30px;
  text-decoration: none;
  color: inherit;
}

.contact--info ul li a p,
.contact--info ul li p {
  position: relative;
  font-size:20px;
}

.contact--info ul li svg {
  width: 40px;
  height: 40px;
  color: var(--font-color);
}

.contact--info ul li p::after {
  position: absolute;
  content: '';
  width: 0;
  height: 2px;
  top: 25px;
  left: 0;
  background-color: var(--azul-intenso);
  transition: width 0.5s ease;
}
.contact--info ul li:hover p::after {
  width: 100%;
}