body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Montserrat', sans-serif;
  background: #222;
  overflow: hidden;
}

.background-image {
  background: url('./imagens/background.jpg') no-repeat center center fixed;
  background-size: cover;
  height: 100%;
  width: 100%;
  position: absolute;
  animation: pulse 60s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.master {
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 1;
}

.overlay {
  background: url('./imagens/overlay.png') repeat;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content {
  text-align: center;
  max-width: 85%;
  margin: 0 auto;
}

.logo {
  width: 100%;
  max-width: 450px;
  filter: drop-shadow(4px 4px 2px rgba(0, 0, 0, 0.7));
  margin-bottom: 50px;
}

p {
  font-weight: 500;
  font-size: 26px;
  color: white;
  text-shadow: 3px 3px 2px rgba(0, 0, 0, 0.7);
  line-height: 165%;
  max-width: 1000px;
}

p:last-child {
  margin-bottom: 120px;
}

.social-icons {
  margin-top: 120px;
  display: flex;
  justify-content: center;
  gap: calc(50px + 60px); /* Duplicando o valor do gap */
}

.social-icons a {
  transition: transform 0.3s;
  display: block;
}

.social-icons a:hover {
  transform: scale(1.2);
}

.social-icons img {
  width: 100%;
  max-width: 100px;
  filter: drop-shadow(4px 4px 0 rgba(0, 0, 0, 0.5));
  display: block;
}


/* Regras CSS para dispositivos com largura menor que 1920px */
@media (max-width: 1920px) {
  .logo {
    max-width: 350px;
    margin-bottom: 20px;
  }

  p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 800px;
  }

  p:last-child {
    margin-bottom: 90px;
  }

  .social-icons {
    margin-top: 60px;
  }

  .social-icons img {
    max-width: 80px;
  }
}

/* Regras CSS para dispositivos móveis */
@media (max-width: 960px) {


@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.12);
  }
  100% {
    transform: scale(1);
  }
}

  .logo {
    max-width: 250px;
    margin-bottom: 30px;
  }

  p {
    font-size: 17px;
    margin-bottom: 30px;
  }

  p:last-child {
    margin-bottom: 70px;
  }

  .social-icons {
    margin-top: 60px;
    gap: calc(20px + 60px);
  }

  .social-icons img {
    max-width: 60px;
  }
}