* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  background: none;
  border: none;
  text-decoration: none;
  font-weight: 400;
}

:root {
  font-size: 16px;

  --font-family: 'Poppins', serif;
  --dark: #000000;
  --primary: #012d60;
  --light-bg: #f0f7ff;
}

html,
body {
  width: 100vw;
  min-height: 100vh;
  overflow-x: hidden;
}

body {
  font-family: var(--font-family);
}

button,
a {
  display: inline-block;
  cursor: pointer;
  font-family: var(--font-family);
}

span {
  display: inline-block;
}

strong {
  font-weight: bold;
}

.topo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.container {
  width: 100%;
  max-width: 1280px;
  padding: 0 1rem;
  display: grid;
  justify-items: center;
  gap: 2rem;
  margin: 0 auto;
  min-height: 70vh;
}

.informacoes {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.imagem-pessoal {
  width: 150px;
  border-radius: 100%;
  border: 6px solid var(--primary);
}

.nome {
  font-size: 1.2rem;
  font-weight: 600;
}

.descricao {
  font-size: 1rem;
  text-align: center;
  line-height: 2;
}

.social {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}

.social-link {
  text-decoration: none;
  color: var(--primary);
}

.social-link svg {
  width: 32px;
  height: 32px;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.link {
  width: 100%;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background-color: var(--light-bg);
  border: 2px solid var(--primary);
  padding: 1rem;
  border-radius: 8px;
  color: var(--dark);
}

.link-titulo {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.rodape {
  text-align: center;
  padding: 2rem 0;
  font-size: 0.8rem;
}

@media (min-width: 768px) {
  .topo {
    margin-bottom: 3rem;
  }

  .container {
    grid-template-columns: 1.5fr 3fr;
    justify-items: center;
  }

  .imagem-pessoal {
    width: 280px;
  }
}
