/* =====================================================
   🎨 VARIÁVEIS DE CORES - IDENTIDADE AGÊNCIA70
===================================================== */

:root {
  --citrino: #fbf3e3;      /* Fundo principal */
  --roxo: #511361;         /* Cor primária */
  --amarelo: #fbdb5c;      /* Cor de destaque / CTA */
  --ramalhete: #a47ca1;    /* Cor secundária */
}


/* =====================================================
   🔄 RESET E PADRONIZAÇÃO GLOBAL
===================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}


/* =====================================================
   🖥️ ESTRUTURA BASE DA PÁGINA
===================================================== */

body {
  background: var(--citrino);
  color: var(--roxo);
  min-height: 100vh;

  /* Mantém footer no final da página */
  display: flex;
  flex-direction: column;
}


/* =====================================================
   📦 CONTEÚDO PRINCIPAL
===================================================== */

.main {
  flex: 1;

  display: flex;
  justify-content: center;
  align-items: flex-start;

  text-align: center;

  /* Espaçamento superior equilibrado */
  padding: 60px 20px 20px;
}

.container {
  max-width: 520px;
  width: 100%;
}


/* =====================================================
   💡 LOGO / FAVICON
===================================================== */

.favicon {
  margin-bottom: 28px;
}

.favicon img {
  width: 170px;
  height: auto;
}


/* =====================================================
   📝 TIPOGRAFIA
===================================================== */

/* Título principal */
h1 {
  font-size: 28px;
  margin-bottom: 18px;
  line-height: 1.2;
}

/* Mantém título em linha única no desktop */
@media (min-width: 768px) {
  h1 {
    white-space: nowrap;
  }
}

/* Texto descritivo */
p {
  font-size: 17px;
  color: var(--ramalhete);
  margin-bottom: 38px;
  line-height: 1.6;
}


/* =====================================================
   🚀 BOTÃO CTA
===================================================== */

.btn {
  display: inline-block;

  padding: 18px 40px;

  background: var(--amarelo);
  color: var(--roxo);

  text-decoration: none;
  font-size: 18px;
  font-weight: 700;

  border-radius: 12px;

  box-shadow: 0 10px 25px rgba(81, 19, 97, 0.15);

  transition: all 0.3s ease;
}

/* Efeito ao passar o mouse */
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(81, 19, 97, 0.25);
}


/* =====================================================
   🧾 RODAPÉ
===================================================== */

footer {
  text-align: center;
  padding: 24px 20px;

  font-size: 0.9rem;
  color: var(--ramalhete);

  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

footer a {
  color: var(--roxo);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}


/* =====================================================
   📱 RESPONSIVIDADE - MOBILE
===================================================== */

@media (max-width: 480px) {
  .main {
    padding-top: 40px;
  }

  .favicon img {
    width: 135px;
  }

  h1 {
    font-size: 22px;
  }

  p {
    font-size: 15px;
  }

  .btn {
    font-size: 16px;
    padding: 16px 28px;
  }
}
