* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  font-family: Arial, sans-serif;
  background: radial-gradient(
    circle at top,
    #b00000 0%,
    #6f0000 28%,
    #240000 62%,
    #050505 100%
  );
  color: #fff;
}

.container {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 32px 18px;
}

.profile {
  text-align: center;
  margin-bottom: 24px;
}

.profile img {
  width: 118px;
  height: 118px;
  object-fit: contain;
  border-radius: 50%;
  border: 3px solid #ffffff;
  background: #000;
  padding: 8px;
  box-shadow: 0 0 28px rgba(255, 255, 255, 0.22);
}

.profile h1 {
  margin-top: 18px;
  font-size: 26px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.25;
  color: #ffffff;

  text-shadow:
    0 2px 0 #9c9c9c,
    0 4px 8px rgba(0, 0, 0, 0.75);
}

.descricao {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: #ffffff;
}

.descricao strong {
  display: block;
  margin-bottom: 6px;
  color: #ff3b3b;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.social {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 24px;
}

.social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff1f1f, #8b0000);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 18px rgba(255, 0, 0, 0.45);
  transition: 0.3s;
}

.social a:hover {
  transform: translateY(-3px) scale(1.05);
  background: linear-gradient(135deg, #ff4444, #b00000);
}

.links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.banner-card {
  display: block;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 60, 60, 0.45);
  background: #111;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.55);
  transition: 0.3s;
}

.banner-card img {
  width: 100%;
  display: block;
}

.banner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(255, 0, 0, 0.35);
  border-color: #ff2b2b;
}

footer {
  margin-top: 28px;
  text-align: center;
  font-size: 13px;
  color: #ddd;
}

footer a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
}
