@charset "UTF-8";
/**
 * RESET GLOBAL SCSS
 * ================
 * - Remove margens e paddings padrão
 * - Box-sizing mais intuitivo
 * - Reset de elementos de formulário
 * - Normalização de tipografia
 * - Tratamento de imagens responsivas
 * - Melhorias de acessibilidade
 */
/* Reset básico */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Remove list styles (ul, ol) */
ul[class],
ol[class] {
  list-style: none;
}

/* Reset de links */
a {
  text-decoration: none;
  color: inherit;
}

/* Reset de botões */
button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
}

/* Elementos de formulário reset */
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: transparent;
  border: none;
  outline: none;
}

/* Imagens responsivas */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Remove animações para quem prefere reduzir */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* Normalização de tipografia */
html {
  font-size: 62.5%; /* 1rem = 10px em font-size padrão 16px */
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  text-rendering: optimizeSpeed;
}

/* Remove estilos padrão de headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/* Remove espaçamento entre células de tabela */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Reset de fieldset */
fieldset {
  border: none;
  margin: 0;
  padding: 0;
}

/* Remove o ícone de detalhes no Chrome */
details > summary {
  list-style: none;
}

details > summary::-webkit-details-marker {
  display: none;
}

body {
  background: hsl(0, 0%, 8%);
  color: hsl(0, 0%, 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: "Inter", sans-serif;
}

.container {
  max-width: 1440px;
}

.card-perfil {
  min-width: 350px;
  background: hsl(0, 0%, 12%);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 30px;
  border-radius: 10px;
}

.perfil-foto {
  width: 70px;
}
.perfil-foto img {
  width: 100%;
  border-radius: 50%;
}

.name-title {
  font-weight: 600;
  font-size: 17px;
  margin-top: 25px;
}

.localization-text {
  font-weight: 700;
  color: hsl(75, 94%, 57%);
}

.citation-text {
  margin-top: 20px;
  margin-bottom: 15px;
}

.list-social_media {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.list-social_media li.social-media {
  background: hsl(0, 0%, 20%);
  border-radius: 5px;
  transition: 0.5s;
}
.list-social_media li.social-media:hover, .list-social_media li.social-media:active {
  background: hsl(75, 94%, 57%);
  color: hsl(0, 0%, 8%);
}
.list-social_media li.social-media a {
  font-weight: 700;
  display: block;
  padding: 10px 0;
}

/*# sourceMappingURL=styles.css.map */
