* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Poppins, sans-serif;
}

body {
  background: url(assets/Mask\ group.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #0d4d4d;
}

.conteudo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
  padding: 40px 15px;
}

.logo {
  width: 15rem;
}

.btn-constr {
  border: 2px solid;
  border-color: #23d1d1;
  width: 13rem;
  background: none;
  color: white;
  border-radius: 20px;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.loader-icon {
  animation: rotate 2s linear infinite;
  margin-right: 5px;
}

.conteudo-texto {
  margin-top: 50px;
  width: 50rem;
  background-color: #23d1d126;
  border-radius: 50px;
  height: 17vh;
  color: #ffffff;
  display: flex;
  align-items: center;
  padding-left: 50px;
  justify-content: space-between;
}

.container {
  font-size: 16px;
}

.btn-contato {
  margin-right: 8%;
  border: none;
  border-radius: 25px;
  width: 19rem;
  text-align: center;
  padding: 15px;
  background-color: #ffffff;
  cursor: pointer;
  transition: 0.2s;
  color: #000000;
  text-decoration: none;
}

.btn-contato:hover {
  background-color: #ffffffd3;
}

.linha-azul {
  background-image: linear-gradient(to right, #0d4d4d, #23d1d1, #31a2a2);
  width: 70%;
  height: 1px;
}

.rodape {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-weight: 400;
  flex-direction: column;
  padding: 20px;
}

.texto-copyright {
  padding-top: 40px;
  padding-bottom: 10px;
}

@media screen and (max-width: 1024px) {
  .conteudo-texto {
    width: 90%;
    padding: 20px;
  }

  .btn-contato {
    width: 16rem;
  }
}

@media screen and (max-width: 768px) {
  .conteudo-texto {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
    min-height: 12rem;
    width: 90%;
    gap: 20px;
    border: #23d1d1 1px solid;
    border-radius: 15px;
    text-align: center;
    padding: 20px;
  }

  .btn-contato {
    width: 80%;
    max-width: 24rem;
    margin-right: 0;
  }

  .container {
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  .logo {
    width: 12rem;
  }

  .btn-constr {
    width: 14rem;
    font-size: 14px;
  }

  .conteudo-texto {
    padding: 15px;
  }

  .container {
    font-size: 13px;
  }

  .btn-contato {
    font-size: 14px;
    padding: 12px;
  }
}
