.contact-wrapper {
    display: flex;
    gap: 40px;
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 20px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.contact-image {
    flex: 1;
    min-width: 300px;
}

.contact-img {
    width: 100%;
    max-width: 500px;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    background-color: #ffffffdd;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.form-title {
    margin-bottom: 25px;
    color: #00002e;
    font-weight: bold;
    font-size: 22px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.input {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 16px;
    background-color: #f9f9f9;
    transition: border 0.3s;
}

.input:focus {
    outline: none;
    border-color: #fa7900;
    background-color: #fff;
}

/* Responsivo */
@media (max-width: 992px) {
    .contact-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .contact-form {
        width: 100%;
    }

    .contact-img {
        max-width: 100%;
    }
}


#enviar {
  font-family: inherit;
  font-size: 20px;
  background: #fa7900;
  color: white;
  padding: 0.7em 1em;
  padding-left: 0.9em;
  display: flex;
  align-items: center;
  border: none;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.2s;
  cursor: pointer;
  color: rgb(0, 0, 46);
}

#enviar span {
  display: block;
  margin-left: 0.3em;
  transition: all 0.3s ease-in-out;
}

#enviar svg {
  display: block;
  transform-origin: center center;
  transition: transform 0.3s ease-in-out;
}

#enviar:hover .svg-wrapper {
  animation: fly-1 0.6s ease-in-out infinite alternate;
}

#enviar:hover svg {
  transform: translateX(1.2em) rotate(45deg) scale(1.1);
}

#enviar:hover span {
  transform: translateX(5em);
}

#enviar:active {
  transform: scale(0.95);
}

@keyframes fly-1 {
  from {
    transform: translateY(0.1em);
  }

  to {
    transform: translateY(-0.1em);
  }
}
.centralizar {
  display: flex;
  flex-direction: column;
  align-items: center;
}

