* {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

body, html {
  height: 100%;
}

/* FUNDO */
.background {
  background: url('assets/fundo-galpao.jpg') no-repeat center center/cover;
  position: fixed;
  width: 100%;
  height: 100%;
  filter: blur(6px);
  transition: 0.4s;
}

/* POPUP */
.popup {
  position: fixed;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup-content {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  width: 90%;
  max-width: 400px;
}

.logo {
  width: 200px;
  margin-bottom: 20px;
}

.close {
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 25px;
  cursor: pointer;
}

/* SOCIAL */
.social a {
  display: block;
  margin: 10px 0;
  color: #00aa55;
  text-decoration: none;
}

/* WHATSAPP */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  padding: 15px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}