/* ==========================
   Importação de Fontes
========================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&family=Poppins:wght@400;600&family=MuseoModerno:wght@400;700&display=swap');

/* ==========================
   Estilos Globais
========================== */
body {
  margin: 0;
  font-family: 'Inter', 'Poppins', sans-serif;
  background-color: #094b48; /* verde escuro */
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
}

/* ==========================
   Container Central
========================== */
.container {
  max-width: 500px;
  width: 100%;
  padding: 20px;
}

/* ==========================
   Perfil
========================== */
.profile {
  margin-bottom: 25px;
}

.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.title {
  font-family: 'MuseoModerno', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 6px 0;
  text-align: center;
  color: #094b48;
}

.subtitle {
  font-family: 'MuseoModerno', sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 20px;
  color: #444;
}

.location {
  margin: 5px 0;
  font-size: 0.95rem;
}

.bio {
  font-size: 1rem;
  color: #e0e0e0;
}

/* ==========================
   Botões de Links
========================== */
.links {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 20px;
}

.btn {
  position: relative;          /* necessário para posicionar o ícone */
  display: flex;
  align-items: center;
  justify-content: center;     /* centraliza o texto */
  background-color: #fff;
  color: #094b48;
  text-decoration: none;
  padding: 18px 18px 18px 50px; /* espaço extra à esquerda pro ícone */
  border-radius: 7px;
  font-size: 1.1rem;
  font-weight: 400;
  transition: transform 0.2s ease, background 0.3s;
}

.btn i {
  position: absolute;
  left: 18px;   /* fixa o ícone no canto esquerdo */
  font-size: 2.5rem;
}

.btn:hover {
  transform: scale(1.05);
  background-color: #f0f0f0;
}

/* ==========================
   Rodapé
========================== */
.footer {
  margin-top: 80px;
  font-size: 0.9rem;
  color: #ccc;
}
