/* Importação da fonte Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Garante que o corpo ocupa sempre a totalidade do ecrã */
html, body {
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url('../img/45417726-7461112.jpg') no-repeat center center fixed;
  background-size: cover;
  font-family: 'Poppins', sans-serif;
  color: #003047;
  text-align: center;
}

/* Caixa de conteúdo centralizada */
.content-box {
  background: rgba(255, 255, 255, 0.9);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  max-width: 600px;
  width: 90%;
  text-align: center;
  position: relative;
}

/* Ajuste para dispositivos móveis - manter a caixa sempre centrada */
@media (max-width: 768px) {
  .content-box {
    width: 90%;
    max-width: 90%;
  }
}

/* Logotipo ajustável à largura da caixa */
.logo-container {
  width: 100%;
  margin-bottom: 20px;
}

.logo {
  width: 100%;
  height: auto;
  max-width: 400px;
}

/* Estilo do título principal */
.cover-heading {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

/* Texto principal */
.cover-copy {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Informações de contato */
.contact-info {
  text-align: left;
  font-size: 1rem; /* Aumentado */
  color: #222;
  margin-top: 15px;
}

.contact-info p {
  display: flex;
  align-items: center;
  margin: 8px 0;
}

.contact-info i {
  margin-right: 10px;
  color: #003047;
  font-size: 1.1rem;
}

/* Remover sublinhado de todos os links */
a {
  text-decoration: none;
  color: inherit; /* Mantém a cor original */
}

/* Links do WhatsApp */
.whatsapp-link {
  color: #25D366;
  font-weight: 600;
}

.whatsapp-link i {
  margin-right: 5px;
}

/* Melhor disposição dos números de WhatsApp em ecrãs pequenos */
@media (max-width: 480px) {
  .whatsapp-link {
    display: block;
    margin-top: 5px;
  }
}

/* Assinatura com espaçamento */
.signature {
  margin-top: 30px;
  font-size: 0.9rem;
  color: #003047;
  font-weight: 400;
  text-align: center;
}
