:root {
  --branco: #ffffff;
  --cinza-escuro: #595959;
  --cinza-claro: #8c8d94;
  --cinza-nome: #c4c5cb;
  --cinza-card: #f5f5f6;
  --cinza-card-borda: #ebebed;
  --verde-whatsapp: #25d366;
  --azul-hover: #4fa8ff;
  --azul-hover-bg: #eef6ff;
  --amarelo-meli: #ffe600;

  --raio: 12px;
  --raio-pill: 999px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--branco);
  color: var(--cinza-escuro);
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 420px;
  padding: 40px 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Perfil */

.perfil {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 28px;
  width: 100%;
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.nome-grande {
  margin: 0;
  padding: 0;
  font-family: "Century Gothic", "Questrial", "Montserrat", sans-serif;
  font-size: clamp(48px, 17vw, 76px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: normal;
  color: var(--cinza-nome);
  text-align: center;
}

.nome-grande span {
  display: block;
}

.foto-perfil {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 14px 28px rgba(40, 40, 45, 0.32), 0 6px 12px rgba(40, 40, 45, 0.22);
}

.usuario {
  font-size: 14px;
  font-weight: 600;
  color: var(--cinza-claro);
  margin: 6px 0 0;
}

/* Redes sociais (ícones pequenos) */

.redes-sociais {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.rede-social {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cinza-escuro);
  background: var(--cinza-card);
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.rede-social:hover {
  background: var(--azul-hover-bg);
  color: var(--azul-hover);
}

.rede-social svg {
  width: 18px;
  height: 18px;
}

.rede-social .texto-icone {
  font-size: 14px;
  font-weight: 700;
  font-style: italic;
  font-family: Georgia, "Times New Roman", serif;
}

/* Lista de links (cards) */

.lista-links {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.link-card {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 16px 18px;
  border-radius: var(--raio);
  background: var(--cinza-card);
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.1s ease;
}

.link-card:hover {
  background: var(--azul-hover-bg);
  border-color: var(--azul-hover);
}

.link-card:active {
  transform: scale(0.98);
}

.link-card .icone {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
}

.link-card .icone svg {
  width: 100%;
  height: 100%;
}

.link-card .texto {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
  min-width: 0;
}

.link-card .titulo {
  font-size: 15px;
  font-weight: 400;
  color: var(--cinza-escuro);
  line-height: 1.3;
}

.link-card .subtitulo {
  font-size: 12.5px;
  font-weight: 400;
  color: var(--cinza-claro);
  line-height: 1.3;
}

/* Estado desabilitado ("Em breve") */

.link-card.desabilitado {
  border: 1px dashed var(--cinza-card-borda);
  cursor: default;
  pointer-events: none;
  opacity: 0.5;
}

.link-card.desabilitado .titulo {
  color: var(--cinza-claro);
}

.tag-em-breve {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--cinza-claro);
  border: 1px solid var(--cinza-claro);
  border-radius: var(--raio-pill);
  padding: 3px 8px;
  margin-left: auto;
  flex-shrink: 0;
  white-space: nowrap;
}

/* Rodapé */

.rodape {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  opacity: 0.6;
}

.logo-rodape {
  height: 40px;
  width: auto;
}

.copyright {
  font-size: 11px;
  color: var(--cinza-claro);
  text-align: center;
  margin: 0;
}

/* Responsivo */

@media (max-width: 360px) {
  .container {
    padding: 32px 16px 24px;
  }
}
