.contato-include {
  padding-block: 80px;
}

.contato-include h2 {
  color: #121212;
  text-align: center;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: -1.44px;
}

.contato-include .paragraph {
  color: #424242;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  margin-top: 32px;
}

.contato-include .contato-info-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.contato-include .box-contato {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 384px;
  height: 217px;
  padding: 32px 0;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  border-radius: 4px;
  background: #f4f4f4;
  text-decoration: none;
  transition: box-shadow 0.25s ease, background-color 0.25s ease;
}

.contato-include .box-contato:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  background-color: #ffffff;
}

.contato-include .box-contato .title {
  color: #0c0c0d;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
}

.contato-include .box-contato .info {
  color: #1e1e1e;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.select-wrapper {
  position: relative;
  width: 100%;
}

.select-wrapper .svg {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  display: flex;
  align-items: center;
}

.mapa-form-container {
  display: flex;
  width: 100%;
  margin-top: 80px;
}

.mapa-form-container .mapa-google {
  width: 50%;
  max-width: 800px;
  height: auto;
}

.mapa-form-container form {
  display: flex;
  width: 50%;
  max-width: 800px;
  padding: 64px 64px;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
  background: #fff;
  box-shadow: 0 0 30.9px 0 rgba(0, 0, 0, 0.05);
}

.mapa-form-container form h3 {
  color: #424242;
  text-align: center;
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 48px;
  letter-spacing: -1.08px;
}

.mapa-form-container form p {
  color: #424242;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  margin-top: 32px;
}

.mapa-form-container .form-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 30px;
  width: 100%;
}

.mapa-form-container .input-flex-container {
  display: flex;
  gap: 16px;
  width: 100%;
}

.mapa-form-container .label-input-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.mapa-form-container label {
  color: #424242;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}

.mapa-form-container .star {
  color: #bb2115;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}

.mapa-form-container input {
  display: flex;
  height: 48px;
  padding: 0 16px;
  width: 100%;
  align-items: center;
  gap: 16px;
  align-self: stretch;
  border: 1px solid #cbcbcb;
  background: #fff;
}

.mapa-form-container select {
  display: flex;
  height: 48px;
  width: 100%;
  padding: 0 16px;
  align-items: center;
  gap: 16px;
  align-self: stretch;
  border: 1px solid #cbcbcb;
  background: #fff;
  appearance: none;
}

.mapa-form-container textarea {
  display: flex;
  height: 200px;
  padding: 12px;
  align-items: flex-start;
  align-self: stretch;
  border: 1px solid #cbcbcb;
  resize: none;
}

.mapa-form-container textarea::placeholder {
  color: #c3c3c3;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.64px;
}

.mapa-form-container button {
  display: flex;
  height: 56px;
  width: 209px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 150px;
  background: #022f40;
  border: none;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  transition: background-color 0.3s ease;
}

.mapa-form-container button:hover {
  background: #0f526a;
  cursor: pointer;
}

@media (max-width: 1200px) {
  .contato-include .contato-info-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .contato-include .contato-info-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .mapa-form-container {
    flex-direction: column;
  }

  .mapa-form-container form,
  .mapa-form-container .mapa-google {
    width: 100%;
  }

  .mapa-form-container .input-flex-container {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .contato-include .contato-info-container {
    grid-template-columns: 1fr;
  }

  .contato-include .box-contato {
    max-width: 100%;
  }

  .contato-include h2 {
    font-size: 32px;
    line-height: normal;
  }

  .mapa-form-container form {
    padding: 52px 16px;
  }

  .mapa-form-container form h3 {
    font-size: 24px;
    line-height: normal;
  }

  .mapa-form-container form p {
    font-size: 16px;
    line-height: normal;
  }
}
