:root {
  --cor-fundo: #ebe8f2;
  --cor-card: #ffffff;
  --cor-texto: #1a1a1a;
  --cor-texto-suave: #7a7a8c;
  --cor-borda: #ddd8ea;
  --cor-link-ig: #7c5cbf;
  --raio: 16px;
  --sombra: 0 2px 14px rgba(100, 80, 140, 0.10);
  --sombra-hover: 0 8px 28px rgba(100, 80, 140, 0.20);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--cor-fundo);
  color: var(--cor-texto);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

.container {
  max-width: 580px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ===== PERFIL ===== */

.perfil {
  padding: 40px 0 28px;
  text-align: center;
}

.avatar {
  display: block;
  margin: 0 auto 16px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid #ffffff;
  box-shadow: 0 4px 20px rgba(100, 80, 140, 0.18);
}

.nome {
  font-size: 20px;
  font-weight: 700;
  color: var(--cor-texto);
  line-height: 1.2;
  margin-bottom: 5px;
}

.titulo {
  font-size: 13px;
  font-weight: 400;
  color: var(--cor-texto-suave);
  margin-bottom: 16px;
}

.links-sociais {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.link-social {
  display: inline-flex;
  align-items: center;
  color: var(--cor-link-ig);
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}

.link-social:hover {
  opacity: 0.65;
  transform: scale(1.12);
}

/* ===== MAIN ===== */

main {
  padding-bottom: 40px;
}

/* ===== SEÇÕES ===== */

.secao {
  margin-bottom: 4px;
}

.secao-legenda {
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--cor-link-ig);
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}

/* ===== CARDS DE PRODUTO ===== */

.lista-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-produto {
  display: block;
  position: relative;
  border-radius: var(--raio);
  overflow: hidden;
  box-shadow: var(--sombra);
  text-decoration: none;
  background: var(--cor-card);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  -webkit-tap-highlight-color: transparent;
}

.faixa-evento {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #f7c400;
  color: #1a1a1a;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  padding: 7px 12px;
  letter-spacing: 0.04em;
}

.card-produto:hover {
  transform: translateY(-3px);
  box-shadow: var(--sombra-hover);
}

.card-produto:active {
  transform: translateY(-1px);
  box-shadow: var(--sombra);
}

.card-produto img {
  display: block;
  width: 100%;
  height: auto;
}

/* ===== SEÇÃO PROFISSIONAIS ===== */

.secao-pro {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--cor-borda);
}

/* ===== BOTÕES SIMPLES ===== */

.lista-botoes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.botao-link {
  display: block;
  text-align: center;
  padding: 14px 20px;
  background: var(--cor-card);
  border: 1.5px solid var(--cor-borda);
  border-radius: var(--raio);
  color: var(--cor-texto);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  box-shadow: var(--sombra);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.botao-link:hover {
  background: #f0ecf8;
  border-color: #c4b8e0;
  transform: translateY(-2px);
}

.botao-link:active {
  transform: translateY(0);
}

/* ===== RODAPÉ ===== */

.rodape {
  text-align: center;
  padding: 28px 16px 36px;
  font-size: 11px;
  color: #aaa;
  line-height: 2;
}

.rodape a {
  color: #aaa;
  text-decoration: none;
}

.rodape a:hover {
  text-decoration: underline;
}

/* ===== RESPONSIVE ===== */

@media (min-width: 480px) {
  .nome  { font-size: 22px; }
  .titulo { font-size: 14px; }
  .link-social { font-size: 14px; }
}
