* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #000;
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ================= HEADER ================= */
.header {
  margin-top: 50px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* LOGO CENTRAL */
.logo {
  width: 44px;
}

/* NOME DA MARCA */
.brand-name {
  font-size: 20px;
  color: #ffffff;
  text-align: center;
}

/* ÍCONES SOCIAIS */
.social-icons {
  display: flex;
  gap: 18px;
  margin-top: 6px;
}

.social-icons a {
  color: #fff;
  font-size: 18px;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.social-icons a:active {
  transform: scale(0.9);
  opacity: 0.8;
}

/* ================= MAIN ================= */
.main {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px 16px;
}

/* CARD CENTRAL */
.info-card {
  background: #0f0f0f;
  border: 1px solid #1f1f1f;
  border-radius: 16px;
  padding: 26px;
  max-width: 420px;
  width: 100%;
  text-align: center;
}

.info-card h2 {
  font-size: 16px;
  margin-bottom: 16px;
  color: #ff0000;
}

.info-card p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 12px;
}

/* ================= FOOTER ================= */
.footer {
  padding: 20px 12px;
  text-align: center;
  font-size: 12px;
  color: #666;
  border-top: 1px solid #222;
}
