
/* Reset de margens e espaçamentos */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Corpo e background */
body {
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #0077b6, #00b4d8);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
}

/* Ícone da logo */
.logo {
  margin-bottom: 20px; /* Espaço abaixo da logo */
}

.logo-icon {
  width: 100px; /* Largura da logo (ajuste conforme necessário) */
  height: auto; /* Mantém a proporção da imagem */
}

/* Container central */
.construction-container {
  text-align: center;
  padding: 20px;
  max-width: 600px;
  animation: fadeIn 2s ease-in-out;
}

/* Animação de texto */
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 300;
  color: #90e0ef;
}

p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.5;
}

/* Ícone de música animado */
.icon {
  font-size: 4rem;
  margin-bottom: 20px;
  animation: pulse 1.5s infinite;
  color: #fff;
}

/* Botão de contato */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  font-size: 1rem;
  color: #0077b6;
  background-color: #fff;
  border-radius: 25px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #e0e0e0;
}

/* Ícone do WhatsApp */
.whatsapp-icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

/* Número de contato com fonte Arial Black */
.contact-number {
  font-family: 'Arial Black', sans-serif;
  font-weight: bold;
  color: #25D366; /* Cor verde do WhatsApp */
}

/* Animações */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Responsividade */
@media (max-width: 600px) {
  h2 {
    font-size: 1.5rem;
  }
  p {
    font-size: 1rem;
  }
  .icon {
    font-size: 3rem;
  }
}
/* Estilo para o rodapé */
.footer {
  position: fixed;
  bottom: 0;
  left: 0;  /* Alinhamento à esquerda */
  width: 100%;
  background-color: #0077b6;
  color: #ffffff;
  text-align: center;  /* Alinha o texto ao centro */
  padding: 10px 20px;
  font-size: 0.9rem;  /* Tamanho padrão */
  font-family: Arial, sans-serif;
  line-height: 1.4;
}

.footer p {
  margin: 0;
}

.footer a {
  color: #ffffff;
  text-decoration: none; /* Remove o sublinhado */
  font-weight: normal;   /* Mantém a mesma aparência */
}

.footer a:hover {
  text-decoration: underline; /* Sublinha apenas ao passar o mouse */
}

/* Responsividade para telas menores */
@media (max-width: 600px) {
  .footer {
    font-size: 0.65rem; /* Reduz o tamanho da fonte ainda mais */
    padding: 8px 15px;  /* Ajusta o espaçamento */
  }
}

