* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
}

.contato-container {
  display: flex;
  flex-wrap: wrap;
  min-height: 100vh;
}

.form-box {
  background-color: #2c3e3e;
  color: #fff;
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-box label {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.form-box p {
  margin-bottom: 30px;
  line-height: 1.6;
}

.input-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.input-row input {
  flex: 1;
  padding: 12px;
  background-color: #3e4f4f;
  color: #fff;
  border: none;
  border-radius: 5px;
  margin-bottom: 15px;
}

textarea {
  width: 100%;
  padding: 12px;
  background-color: #3e4f4f;
  color: #fff;
  border: none;
  border-radius: 5px;
  margin-bottom: 20px;
  resize: vertical;
  min-height: 120px;
}

button {
  padding: 12px 24px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

.image-box {
  flex: 1;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

  .form-box,
  .image-box {
    width: 100%;
    padding: 20px;
  }

  .input-row {
    flex-direction: column;
  }

  .input-row input {
    width: 100%;
  }

  .image-box img {
    height: auto;
  }
}
/* Mapa sem margens */
.mapa-container {
  width: 100vw;
  margin: 0;
  padding: 0;
  line-height: 0; /* Remove espaço extra abaixo do iframe */
}
/* Esconde no mobile */
.esconder-mobile {
  display: block;
}
@media (max-width: 767px) {
  .esconder-mobile {
    display: none;
  }
}

/* Esconde no desktop */
.esconder-desktop {
  display: none;
}
@media (max-width: 767px) {
  .esconder-desktop {
    display: block;
  }
}