/* ==========================================================================
           ARQUIVO DE ESTILO (CSS) - PODE SER EXTRAÍDO PARA UM 'styles.css'
           
           Para personalizar seu site, basta alterar os valores das variáveis abaixo!
           ========================================================================== */
:root {
  /* --- FONTE DO SITE (Google Fonts) --- */
  --font-family: "Plus Jakarta Sans", sans-serif;

  /* --- CORES PRINCIPAIS --- */
  --bg-color: #151516; /* Cor de fundo da página */
  --text-primary: #FEF6E6; /* Cor do Nome principal */
  --text-secondary: #e7e0d2; /* Cor do Cargo/Ocupação */

  /* --- TAMANHOS E PESOS DE FONTE --- */
  --name-font-size: 26px; /* Tamanho do Nome */
  --name-font-weight: 700; /* Peso/Espessura do Nome */
  --title-font-size: 15px; /* Tamanho do Cargo */
  --title-font-weight: 500; /* Peso/Espessura do Cargo */
  --link-font-size: 15px; /* Tamanho do texto nos Botões */
  --link-font-weight: 600; /* Peso/Espessura dos Botões */

  /* --- FOTO DE PERFIL --- */
  --avatar-size: 110px; /* Largura/Altura da foto */
  --avatar-radius: 50%; /* 50% para circular, 16px para quadrado arredondado */
  --avatar-border-color: rgba(255, 255, 255, 0.1);
  --avatar-border-width: 0px;

  /* --- ÍCONES DAS REDES SOCIAIS (Abaixo do Cargo) --- */
  --social-icon-size: 22px; /* Tamanho dos ícones sociais */
  --social-icon-color: #FEF6E6; /* Cor normal dos ícones */
  --social-icon-hover-color: #ffffff; /* Cor ao passar o mouse */
  --social-gap: 22px; /* Espaçamento entre os ícones */

  /* --- CARTÕES DE LINKS (BOTÕES) --- */
  --card-bg: #29292e; /* Cor de fundo do botão */
  --card-bg-hover: #34343a; /* Cor de fundo ao passar o mouse */
  --card-text-color: #FEF6E6; /* Cor do texto do botão */
  --card-icon-color: #FEF6E6; /* Cor do ícone no botão */
  --card-icon-size: 24px; /* Tamanho do ícone no botão */
  --card-radius: 28px; /* Arredondamento dos botões */
  --card-padding-v: 16px; /* Altura/Espaçamento interno vertical */
  --card-padding-h: 22px; /* Espaçamento interno horizontal */
  --card-border-color: rgba(255, 255, 255, 0.05); /* Borda sutil */
  --card-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  --card-gap: 14px; /* Espaço vertical entre cada botão */

  /* --- LARGURA MÁXIMA E PADDING --- */
  --container-max-width: 460px;
  --container-padding: 40px 20px;
}

/* RESET E ESTILOS BASE */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.2s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-color);
  /* background-image: url('images/bg.webp');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;   */
  color: var(--text-primary);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--container-padding);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* Mosaico sutil de fundo opcional para textura visual refinada */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.05) 1px,
    transparent 1px
  );
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 0;
}

/* CONTAINERS PRINCIPAIS */
.profile-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container-max-width);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* FOTO DE PERFIL */
.avatar-container {
  margin-bottom: 20px;
  position: relative;
}

.avatar-img {
  width: var(--avatar-size);
  height: var(--avatar-size);
  border-radius: var(--avatar-radius);
  object-fit: cover;
  border: var(--avatar-border-width) solid var(--avatar-border-color);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  display: block;
}

/* TEXTOS DO PERFIL */
.profile-name {
  font-size: var(--name-font-size);
  font-weight: var(--name-font-weight);
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.profile-title {
  font-size: var(--title-font-size);
  font-weight: var(--title-font-weight);
  color: var(--text-secondary);
  margin-bottom: 22px;
  opacity: 0.9;
}

.email-button {
  font-size: var(--title-font-size);
  font-weight: var(--title-font-weight);
  color: var(--text-secondary);
  margin-bottom: 22px;
  opacity: 0.9;

  outline: none;
  border: none;
  box-shadow: none;
  background: none;
}
.email-button:hover {
  color: var(--social-icon-hover-color);
  /* transform: translateY(-3px) scale(1.08); */
  background: rgba(255, 255, 255, 0.08);
}

/* REDES SOCIAIS */
.social-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--social-gap);
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.social-link {
  color: var(--social-icon-color);
  font-size: var(--social-icon-size);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(var(--social-icon-size) + 16px);
  height: calc(var(--social-icon-size) + 16px);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.social-link:hover {
  color: var(--social-icon-hover-color);
  transform: translateY(-3px) scale(1.08);
  background: rgba(255, 255, 255, 0.08);
}

/* LISTA DE LINKS (BOTÕES) */
.links-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--card-gap);
}

.link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--card-bg);
  color: var(--card-text-color);
  text-decoration: none;
  padding: var(--card-padding-v) var(--card-padding-h);
  border-radius: var(--card-radius);
  border: 1px solid var(--card-border-color);
  box-shadow: var(--card-shadow);
  position: relative;
  cursor: pointer;
  user-select: none;
}

.link-card:hover {
  background-color: var(--card-bg-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.link-card:active {
  transform: translateY(0) scale(0.99);
}

.link-icon-left {
  font-size: var(--card-icon-size);
  color: var(--card-icon-color);
  width: 32px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
}

.link-text {
  font-size: var(--link-font-size);
  font-weight: var(--link-font-weight);
  text-align: center;
  flex-grow: 1;
  padding: 0 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.link-action-right {
  font-size: 14px;
  opacity: 0.4;
  width: 32px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
}

.link-card:hover .link-action-right {
  opacity: 0.9;
}

/* FOOTER SUBTIL */
.site-footer {
  margin-top: 40px;
  font-size: 12px;
  color: var(--text-secondary);
  opacity: 0.5;
  text-align: center;
}