:root {
  color-scheme: dark;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #0b0b0f;
  color: #f5f5f5;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
}

.page {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(32px, 6vw, 64px) 24px clamp(48px, 8vw, 96px);
  gap: clamp(28px, 5vw, 52px);
  overflow: hidden;
}

.background {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(11, 11, 15, 0.88), rgba(19, 19, 26, 0.9)),
    /* Fundo embacado local */
    url("imagens/fundo-embacado.webp") center / cover no-repeat;
  filter: blur(18px);
  transform: scale(1.1);
  z-index: -2;
}

.card {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 4vw, 26px);
  align-items: center;
  width: min(100%, 860px);
  padding: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55);
}

.avatar {
  width: min(45vw, 180px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.name {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
}

.verified {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(56px, 7vw, 72px);
  height: clamp(56px, 7vw, 72px);
  border-radius: 50%;
  font-size: 0;
  /* Ícone verificado local */
  background: url("imagens/verificado.webp") center / contain no-repeat;
  animation: verified-pop 0.5s ease forwards;
  margin-left: -10px;
}

@keyframes verified-pop {
  0% {
    transform: scale(0.6);
  }
  70% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}

.tagline {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
}

.banner {
  position: relative;
  width: min(100%, 860px);
  border-radius: 32px;
  overflow: hidden;
  background: rgba(28, 28, 40, 0.6);
  display: block;
  animation: pulse 2.8s ease-in-out infinite;
}

.banner::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(120deg, rgba(93, 193, 255, 0.8), rgba(249, 110, 206, 0.7));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.banner-link {
  display: block;
  width: 100%;
  text-decoration: none;
  cursor: pointer;
}

.banner-photo {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.38);
  transition: opacity 0.3s ease;
}

.banner-link:hover .banner-photo {
  opacity: 0.9;
}

.banner-button {
  position: absolute;
  left: 50%;
  bottom: clamp(10px, 2.5vw, 18px);
  transform: translate(-50%, 0);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  z-index: 10;
  padding: clamp(22px, 5.5vw, 30px) clamp(56px, 12vw, 84px);
  padding-left: clamp(100px, 25vw, 140px);
  border-radius: 999px;
  background: #ffffff;
  border: 2px solid rgba(0, 119, 255, 0.9);
  box-shadow:
    0 12px 34px rgba(0, 119, 255, 0.28),
    0 4px 14px rgba(0, 0, 0, 0.28);
  color: #111;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
  min-width: clamp(320px, 80vw, 440px);
}

.banner-button span {
  display: inline-block;
}

.banner-button:hover,
.banner-button:focus-visible {
  transform: translate(-50%, -3px) scale(1.03);
  box-shadow:
    0 16px 40px rgba(0, 119, 255, 0.35),
    0 6px 18px rgba(0, 0, 0, 0.3);
  border-color: rgba(0, 119, 255, 1);
}

.banner-button:active {
  transform: translate(-50%, 2px) scale(0.99);
}

.telegram-icon {
  position: absolute;
  top: 50%;
  left: clamp(28px, 7vw, 40px);
  transform: translateY(-50%);
  width: clamp(42px, 10.5vw, 52px);
  height: clamp(42px, 10.5vw, 52px);
  object-fit: contain;
}

.footer {
  align-self: center;
  max-width: 720px;
  font-size: clamp(0.52rem, 0.95vw, 0.62rem);
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  line-height: 1.32;
  padding: 0 16px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(93, 193, 255, 0.35);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 0 25px 0 rgba(93, 193, 255, 0.45);
  }
}

@media (max-width: 560px) {
  .page {
    padding: clamp(26px, 12vw, 40px) 18px clamp(46px, 14vw, 68px);
    gap: clamp(22px, 10vw, 36px);
  }

  .avatar {
    width: min(42vw, 140px);
    border-width: 3px;
  }

  .banner {
    width: min(100%, 94vw);
    border-radius: 26px;
  }

  .banner-photo {
    border-radius: 22px;
  }

  .banner-button {
    bottom: clamp(12px, 4vw, 18px);
    padding: 20px 40px;
    padding-left: 88px;
    min-width: 300px;
    font-size: 1.3rem;
  }

  .telegram-icon {
    left: 26px;
    width: 40px;
    height: 40px;
  }

  .background {
    background:
      linear-gradient(120deg, rgba(11, 11, 15, 0.55), rgba(19, 19, 26, 0.6)),
      /* Fundo embacado local (mobile) */
      url("imagens/fundo-embacado.webp") center / cover no-repeat;
    filter: blur(14px);
  }
  .footer {
    padding: 0 12px;
    font-size: clamp(0.46rem, 2vw, 0.56rem);
    line-height: 1.28;
  }
}


