/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* FUNDO */
body {
  min-height: 100vh;
  background: #FEDC19;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* CONTAINER */
.container {
  background: #ffffff;
  width: 100%;
  max-width: 420px;
  padding: 32px 24px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* LOGO */
.logo {
  width: 120px;
  margin-bottom: 16px;
}

/* TÍTULO */
h1 {
  font-size: 28px;
  color: #2b2b2b;
  margin-bottom: 12px;
}

/* BIO */
.bio {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 26px;
}

/* LINKS */
.links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* BOTÕES PADRÃO */
.links a {
  text-decoration: none;
  padding: 14px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  color: #2b2b2b;
  background: #fff6c2;
  border: 2px solid #f2cc00;
  transition: all 0.25s ease;
}

/* CTA DESTACADO */
.links a.cta {
  background: #2b2b2b;
  color: #FEDC19;
  border: none;
  font-size: 17px;
  padding: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

/* HOVER CTA */
.links a.cta:hover {
  background: #000000;
  transform: translateY(-3px);
}

/* HOVER PADRÃO */
.links a:not(.cta):hover {
  background: #2b2b2b;
  color: #FEDC19;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* CONTADOR */
.views {
  margin-top: 18px;
  font-size: 14px;
  color: #444;
  opacity: 0.85;
}

/* FOOTER */
footer {
  margin-top: 22px;
  font-size: 12px;
  color: #555;
}

/* RESPONSIVO */
@media (max-width: 480px) {
  .container {
    border-radius: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

