* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  /* background: linear-gradient(120deg, #2096ff, #000ecc); */ 
  background: linear-gradient(120deg, #9f9aff, #4c51ff);
  color: #333;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  padding: 20px;
}
body:before{
  content:"";
  position: absolute;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  opacity: 10%;
  background-image: url('../imagens/fundo-construcao.jpg');
  background-position: center center;
  background-size: cover;
  filter:grayscale(90%);
}
.contato{
  font-size: 1.2em;
  color: #000;
  font-weight: 800;
}
.contato small{
  color: #626262;
  font-weight: 300;
}

.container {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgb(0 0 0 / 32%);
  max-width: 500px;
  width: 100%;
  animation: fadeIn 1.2s ease-in-out;
}

.icon {
  font-size: 64px;
  margin-bottom: 20px;
  animation: bounce 1.5s infinite;
}

h1 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #000000;
}

p {
  font-size: 16px;
  margin-bottom: 25px;
  color: #626262;
}

.btn {
  display: inline-block;
  background-color: #00b046;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s;
  font-weight: 600;
}

.btn i{
  margin-right: 10px;
}

.btn:hover {
  background-color: #008635;
}

footer {
  position: absolute;
  bottom: 20px;
  font-size: 14px;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Animações */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
