/* RESET BÁSICO */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #111;
}

/* VARIÁVEIS */
:root {
  --logo-width: 300px;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADER */
.site-header {
  background: #fff;
  padding: 1rem 0;
  border-bottom: 1px solid #e0e0e0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img {
  width: var(--logo-width);
  height: auto;
  margin-top: 14px;
}
.site-nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}
.site-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.search {
  padding: 0.5rem 1rem;
  border: 1px solid #ccc;
  border-radius: 100px;
  width: 300px;
}
.icon-btn {
  font-size: 1.2rem;
  text-decoration: none;
}

/* SECTION PERFIL — P&B do projeto */
.profile {
  background: #fff;
  padding: 2rem 0 3rem;
  color: #111;
}

/* Capa */
.profile-cover {
  position: relative;
  height: 220px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  background: #111;
  box-shadow: 0 8px 20px rgba(0,0,0,.06);
}
.profile-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.55);
}

/* Bloco principal (avatar + info + ações) */
.profile-main {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: end;
  margin-top: -60px;     /* mantém o avatar levemente sobre a capa */
  padding: 0 1rem;
}

/* Avatar */
.profile-avatar {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
  background: #fff;

  position: relative;
  z-index: 2;               /* fica por cima da capa */
  transform: translateY(-40px); /* ajuste fino: -32px a -56px */
}
.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Infos — movidas para BAIXO para não sobrepor a imagem */
.profile-info {
  align-self: start;      /* alinha pelo topo da linha do grid */
  margin-top: 72px;       /* empurra o bloco para baixo */
  padding-bottom: .5rem;
}

/* Texto agora em tons escuros, pois ficou abaixo da capa */
.profile-name {
  font-size: 1.75rem;
  line-height: 1.2;
  letter-spacing: .2px;
  color: #111;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.verified {
  display: inline-block;
  font-size: 0.95rem;
  background: #111;
  color: #fff;
  border-radius: 999px;
  padding: 2px 8px;
}
.profile-headline {
  margin-top: .35rem;
  color: #333;
}
.profile-meta {
  margin-top: .5rem;
  color: #555;
}
.profile-link {
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid #111;
}
.profile-link:hover { opacity: .85; }

/* Badges (empresas/escola) */
.profile-badges {
  margin-top: .9rem;
  list-style: none;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.profile-badges li {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem .65rem;
  border: 1px solid #e0e0e0;
  border-radius: 999px;
  background: #fff;
}
.profile-badges img {
  width: 18px;
  height: 18px;
  object-fit: cover;
}

/* Ações (botões) */
.profile-actions {
  display: flex;
  gap: .75rem;
  padding-bottom: .75rem;
}
.btn {
  display: inline-block;
  padding: .65rem 1rem;
  border-radius: 999px;
  background: #111;
  color: #fff;
  text-decoration: none;
  border: 1px solid #111;
  box-shadow: 0 6px 16px rgba(0,0,0,.10);
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}
.btn:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
}
.btn:active { transform: scale(0.99); }
.btn.btn-outline {
  background: #fff;
  color: #111;
  border-color: #111;
  box-shadow: 0 6px 16px rgba(0,0,0,.06);
}

/* Cards secundários (Sobre / Habilidades) */
.profile-cards {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1rem;
  margin-top: 1.25rem;
}
.card {
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  padding: 1rem;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,.05);
}
.card h2 {
  font-size: 1.1rem;
  margin-bottom: .6rem;
  color: #111;
}
.card p { color: #333; }

/* Chips de habilidades */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.chip {
  border: 1px solid #e0e0e0;
  border-radius: 999px;
  padding: .35rem .65rem;
  background: #fff;
  color: #111;
}


