/* ==========================================================================
   STYLE — Perocco Bio
   Layout mobile-first, coluna centralizada máx. 600px.
   Proibições absolutas: nenhum azul, roxo, neon, gradiente ou glow.
   Vinho nunca como fundo grande nem texto longo.
   ========================================================================== */

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

html {
  background: var(--cor-fundo);
}

body {
  background: var(--cor-fundo);
  color: var(--cor-texto);
  font-family: var(--font-corpo);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

img, svg {
  display: block;
  max-width: 100%;
}

.page {
  max-width: 600px;
  margin: 0 auto;
  padding: var(--space-8) var(--space-4) var(--space-6);
}

/* ---------- Header ---------- */

.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-3);
  margin-bottom: var(--space-7);
}

.avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 2px solid var(--cor-acento);
  background: var(--cor-superficie-2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-monograma {
  font-family: var(--font-titulo);
  font-weight: 800;
  font-size: 2.375rem;
  color: var(--cor-titulo);
}

.nome {
  font-family: var(--font-titulo);
  font-weight: 800;
  color: var(--cor-titulo);
}

.bio {
  color: var(--cor-texto);
  max-width: 46ch;
}

.bio .realce {
  color: var(--cor-realce);
}

.header-email {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--cor-texto-rebaixado);
  transition: color 150ms ease;
}

.header-email svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
}

.header-email:hover {
  color: var(--cor-texto);
}

.socials {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-1);
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cor-superficie-2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 150ms ease, opacity 150ms ease;
}

.social-icon img {
  max-width: 18px;
  max-height: 18px;
  width: auto;
  height: auto;
}

.social-icon:hover,
.social-icon:active {
  transform: translateY(-2px);
  opacity: 0.85;
}

/* ---------- Cards de rede (componente reutilizável) ---------- */

.card-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.card {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  background: var(--cor-superficie);
  border: 1px solid var(--cor-borda);
  border-radius: 16px;
  padding: var(--space-4);
  transition: transform 150ms ease, opacity 150ms ease;
}

.card:hover,
.card:active {
  transform: translateY(-2px);
  opacity: 0.92;
}

.card-thumb {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 12px;
  background: var(--cor-superficie-2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Thumbs de icone de plataforma (nao fotograficas): preservar a marca inteira sem cortar */
.card-thumb-icon {
  background: transparent;
  padding: var(--space-2);
}

.card-thumb-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card-thumb-monograma {
  font-family: var(--font-titulo);
  font-weight: 800;
  font-size: var(--fs-h6);
  color: var(--cor-titulo);
}

.card-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-1);
}

.card-body h6 {
  color: var(--cor-titulo);
}

.card-body .text-small {
  color: var(--cor-texto-rebaixado);
}

.card-chevron {
  width: 20px;
  height: 20px;
  min-width: 20px;
  stroke: var(--cor-texto-rebaixado);
  fill: none;
}

/* ---------- Seção wrapper ---------- */

.section {
  margin-top: var(--space-6);
}

.section-label {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--cor-texto-rebaixado);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-5);
  white-space: nowrap;
}

.section-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--cor-borda);
}

/* ---------- CTA de mentoria ---------- */

.cta-box {
  margin-top: var(--space-7);
  border: 1px solid var(--cor-acento-fraca);
  border-radius: 20px;
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-4);
}

.cta-box p {
  color: var(--cor-texto);
  max-width: 42ch;
}

.btn-solido {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cor-acento);
  color: var(--cor-titulo);
  font-weight: 600;
  padding: var(--space-3) var(--space-6);
  border-radius: 999px;
  white-space: nowrap;
  transition: transform 150ms ease, opacity 150ms ease;
}

.btn-solido:hover,
.btn-solido:active {
  transform: translateY(-2px);
  opacity: 0.92;
}

