
.box {
  width: 40%;
  margin: 0 auto;
  background: rgba(255,255,255,0.6);
  padding: 35px;
  border: 2px solid #fff;
  border-radius: 20px/50px;
  background-clip: padding-box;
  text-align: center;
}

.contacts {
  position: fixed;
  top: 10px;
  right: 30px;
  width: 5%;
  height: 5%;
  margin: 0 0;
  background: rgba(0,0,0,0);
  padding: 0px;
  border: 0px transparent #fff;
  border-radius: 0px/0px;
  text-align: center;
  vertical-align: middle;
 }

.button {
  position: absolute;
  top: 25px;
  z-index: 10;
  padding-top: 0px;
  right: 5%;
  padding: 0px;
  width: 30%;
  color: #fff;
  border: 2px transparent #FFFFFF;
  border-radius: 0px/0px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-out;
  text-align: center;
  vertical-align: middle;
}

.caixa-postal {
	width:25px;
	height:16px;
	border:0;
}
.button:hover {
  //background: #FFFFFF;
}

.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.4);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
}
.overlay:target {
  visibility: visible;
  opacity: 0.8;
}

.popup {
  padding-top: 25px;
  padding-left: 50px;
  padding-bottom: 30px;
  background: #fff;
  border-radius: 0px;
  width: 30%;
  position: fixed;
  left: 0;
  bottom: 0;
  min-width: 300px;
  max-width: 400px;
  transition: all 5s ease-in-out;
}

.popup h1 {
  margin-top: 5px;
  color: #000000;
  font-family: 'Playfair Display', serif;
  letter-spacing: 1.2px;
  line-height: 1.2em;
  width: 50%;
  line-height: 10px;
  font-size: 12px;
  white-space:nowrap;
  margin-bottom: 20px;
}

.popup h2 {
  margin-top: 0px;
  color: #666666;
  font-family: 'Playfair Display', serif;
  letter-spacing: 1.2px;
  line-height: 1.2em;
  width: 50%;
  line-height: 10px;
  font-size: 12px;
  white-space:nowrap;
}

.popup h4 {
  margin-top: 5px;
  color: #000000;
  font-family: 'Playfair Display', serif;
  letter-spacing: 1.2px;
  width: 50%;
  line-height: 1.2em;
  white-space:nowrap;
  margin-bottom: 20px;
  font-size: 0.9vw;
  line-height: 1.0em;
  margin-bottom: 20px;
}
.popup h5 {
  margin-top: 0px;
  color: #666666;
  font-family: 'Playfair Display', serif;
  letter-spacing: 1.2px;
  line-height: 1.2em;
  width: 50%;
  white-space:nowrap;
  font-size: 0.8vw;
  line-height: 1.0em;
}

.popup .close {
  position: absolute;
  top: 20px;
  right: 20px;
  transition: all 200ms;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}
.popup .close:hover {
  color: #06D85F;
}
.popup .content {
  max-height: 30%;
  overflow: auto;
}

@media screen and (max-width: 700px){
  .box{
    width: 100%;
  }
  .popup{
    width: 100%;
  }
}