.contato {
  margin: 4rem auto;
  padding: 0 1rem;
}

.contato a {
  color: #333;
  text-decoration: none;
}

.contato-title {
  font-size: 3.6rem;
  color: #333;
  margin-bottom: 10px;
  font-weight: 500;
  letter-spacing: -2px;
  line-height: 1;
}

.contato-subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
}

hr {
  border: none;
  border-bottom: 1px solid #dcdcdc;
  margin: 15px 0;
  width: 100%;
}

.contato .row {
  display: flex;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  margin-bottom: 40px;
  flex-direction: column;
}

.contato .row.header .flex {
  display: flex;
  gap: 30px;
  align-items: center;
}

.contato .row .flex {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contato .row .flex.center {
  justify-content: center;
}

.contato .row .flex .column {
  border: 1px solid #dcdcdc;
  border-radius: 20px;
  padding: 70px 20px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  /*  min-height: 512px;
  height: 32vw; */
}

.contato .row .flex .column.full {
  min-height: auto;
  height: auto;
  background-color: #f9f9f9;
}

.contato .row .flex .column.right {
  width: 50%;
  margin-bottom: 50px;
  background-color: #f9f9f9;
}

.contato .row .flex .column.left {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: baseline;
}

#login-form {
  width: 100%;
}

#form-contato {
  margin-top: 2em;
}

.column.left #form-contato {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 70px;
}

.column.left #form-contato img {
  margin-top: 2rem;
}

#form-contato .form-row.column-two {
  display: flex;
  gap: 15px;
}

#form-contato .form-row.column-two .form-group {
  width: 100%;
}

#form-contato .form-row .form-group {
  position: relative;
}

#form-contato .form-row {
  margin-bottom: 2em;
}

#form-contato label {
  margin-left: 16px;
}

#form-contato a {
  float: right;
  margin-top: 15px;
  color: #333;
}

#form-contato input,
#form-contato textarea {
  border: none;
  background-color: #fff;
  border: 1px solid #dcdcdc;
  font-size: 1rem;
  color: #7d7975;
  width: 100%;
  padding: 15px 15px 15px 20px;
  border-radius: 50px;
  outline: none;
  transition: border-color 0.3s;
  box-sizing: border-box;
  margin: 10px 0;
  margin-top: 5px;
  display: block;
}

#form-contato textarea {
  border-radius: 10px;
  height: 180px;
}

#form-contato input[type="submit"],
#form-contato button {
  background-color: #3c3a3a;
  padding: 10px 30px;
  border: 1px solid #dcdcdc;
  border-radius: 20px;
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  float: left;
  margin-right: 10px;
}

#form-contato input[type="submit"]:hover,
#form-contato button:hover {
  background-color: #dcdcdc;
  color: #3c3a3a;
}

.column.left .icons img {
  filter: brightness(0%);
  padding: 5px;
  margin-right: 2px;
}

/* Estilos do Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.modal.show {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background-color: white;
  margin: auto;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
  max-width: 400px;
  width: 90%;
  text-align: center;
  transform: scale(0.7);
  transition: transform 0.3s ease;
}

.modal.show .modal-content {
  transform: scale(1);
}

.modal-icon {
  font-size: 50px;
  margin-bottom: 20px;
}

.modal-icon.error {
  color: #f44336;
}

.modal-title {
  font-size: 24px;
  margin-bottom: 10px;
  color: #333;
}

.modal-message {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.5;
}

.modal-button {
  background-color: #4caf50;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.modal-button:hover {
  background-color: #45a049;
}

.modal-button.cancel {
  background-color: #da190b;
}

.modal-button.error {
  background-color: #f44336;
}

.modal-button.error:hover {
  background-color: #da190b;
}

@media screen and (max-width: 991px) {
  .contato-title {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 768px) {
  .contato .row .flex {
    flex-direction: column;
  }

  .contato .row .flex .column.right,
  .contato .row .flex .column.left {
    width: 100%;
  }
}
