/* Variáveis de cor */
:root {
  --primary-bg: rgba(30, 34, 44, 0.45);
  --primary-border: rgba(255,255,255,0.18);
  --primary-shadow: 0 8px 32px 0 rgba(31,38,135,0.25);
  --primary-text: #fff;
  --secondary-text: #b0c4e6;
  --bio-text: #e3e8f0;
  --button-bg: #2196F3;
  --button-bg-hover: #1769aa;
  --button-shadow: 0 2px 8px #2196F340;
  --button-shadow-hover: 0 4px 16px #2196F360;
}

@font-face {
  font-family: 'SF Pro';
  src: url('https://cdn.jsdelivr.net/gh/sahibjotsaggu/San-Francisco-Pro-Fonts@master/SF-Pro.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'SF Pro', Arial, sans-serif;
  box-sizing: border-box;
  min-height: 100vh;
  min-width: 100vw;
  overflow-x: hidden;
}
body {
  min-height: 100vh;
  min-width: 100vw;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #000;
}
#gradient {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  transition: background 0.5s;
}
.container {
  position: relative;
  z-index: 1;
  background: var(--primary-bg);
  box-shadow: var(--primary-shadow);
  border-radius: 28px;
  padding: 48px 36px 36px 36px;
  max-width: 420px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1.5px solid var(--primary-border);
  transition: box-shadow 0.2s;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.container.show {
  opacity: 1;
  transform: translateY(0);
}
.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 18px;
  border: 2.5px solid #e0e0e0;
  box-shadow: 0 2px 8px #0002;
  background: #fff;
}
h1 {
  font-size: 2.3rem;
  font-weight: 700;
  margin: 0 0 8px 0;
  letter-spacing: -1px;
  color: var(--primary-text);
  text-shadow: 0 1px 8px #0003;
}
.subtitle {
  color: var(--secondary-text);
  font-size: 1.08rem;
  margin-bottom: 8px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.location {
  color: var(--secondary-text);
  font-size: 1rem;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.bio {
  max-width: 340px;
  margin: 0 auto 28px auto;
  font-size: 1.08rem;
  color: var(--bio-text);
  line-height: 1.6;
  text-align: center;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.skills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 28px;
}
.skill {
  background: rgba(255,255,255,0.13);
  color: var(--bio-text);
  border-radius: 16px;
  padding: 5px 16px;
  font-size: 0.97rem;
  font-weight: 500;
  box-shadow: 0 1px 2px #0001;
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(2px);
}
.links {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-bottom: 28px;
}
.links a {
  color: var(--bio-text);
  text-decoration: none;
  font-size: 1.5rem;
  transition: color 0.2s, transform 0.2s, background 0.2s, box-shadow 0.2s;
  border-radius: 50%;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  outline: none;
}
.links a:hover, .links a:focus {
  color: var(--button-bg);
  background: rgba(255,255,255,0.18);
  transform: scale(1.12);
  box-shadow: 0 0 0 2px var(--button-bg);
}
.links a.pressed, .contact a.pressed {
  filter: brightness(0.8);
  transform: scale(0.96);
}
.contact {
  margin-bottom: 0;
  text-align: center;
}
.contact a {
  color: #fff;
  background: var(--button-bg);
  padding: 10px 28px;
  border-radius: 24px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.08rem;
  transition: background 0.2s, box-shadow 0.2s, filter 0.2s, transform 0.2s;
  display: inline-block;
  box-shadow: var(--button-shadow);
  letter-spacing: 0.01em;
  outline: none;
}
.contact a:hover, .contact a:focus {
  background: var(--button-bg-hover);
  box-shadow: var(--button-shadow-hover);
  filter: brightness(1.1);
  transform: scale(1.04);
}
.footer {
  margin-top: 24px;
  color: var(--secondary-text);
  font-size: 0.95rem;
  text-align: center;
  opacity: 0.7;
  letter-spacing: 0.01em;
}
@media (max-width: 600px) {
  body {
    padding: 0;
    margin: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
  }
  .container {
    box-sizing: border-box;
    padding: 28px 6vw 18px 6vw;
    margin: 6vw auto 6vw auto;
    border-radius: 18px;
    max-width: 420px;
    min-width: 0;
    width: 100%;
    box-shadow: 0 2px 12px 0 rgba(31,38,135,0.10);
    background: var(--primary-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .avatar {
    width: 72px;
    height: 72px;
    margin-bottom: 12px;
  }
  h1 {
    font-size: 1.15rem;
    margin-bottom: 4px;
    font-weight: 700;
    letter-spacing: -0.5px;
  }
  .subtitle {
    font-size: 0.98rem;
    margin-bottom: 4px;
    font-weight: 500;
  }
  .location {
    font-size: 0.93rem;
    margin-bottom: 14px;
    gap: 3px;
  }
  .bio {
    font-size: 0.97rem;
    margin-bottom: 16px;
    max-width: 96vw;
    line-height: 1.5;
  }
  .skills {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    margin-bottom: 16px;
  }
  .skill {
    font-size: 0.92rem;
    padding: 6px 0;
    border-radius: 10px;
    text-align: center;
    margin: 0 0 0 0;
  }
  .links {
    gap: 10px;
    margin-bottom: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .links a {
    font-size: 1.2rem;
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 50%;
    margin: 0 2px;
  }
  .contact a {
    font-size: 0.98rem;
    padding: 12px 16px;
    border-radius: 16px;
    min-width: 44px;
    min-height: 44px;
  }
  .footer {
    font-size: 0.82rem;
    margin-top: 12px;
  }
} 