/* styles.css */

body {
  font-family: "Montserrat", sans-serif;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: 100vh;
  margin: 0;
  background-color: rgb(10, 10, 14);
}

.container {
  text-align: center;
  background-color: rgb(10, 10, 14);

  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  margin-bottom: 20px;
  width: 38rem;
}

.profile-pic {
  width: 95px;
  height: 95px;
  margin-bottom: 5px;
  border-radius: 50%;
}

h1 {
  color: #ffffff;
  font-size: 18px;
}

.subtitulo {
  color: #ffffff;
  margin: 10px 0 20px;
  font-size: 11px;
}

p {
  color: #ffffff;
  margin: 10px 0 20px;
  font-size: 12px;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.links a {
  
  text-decoration: none;
  color: #ffffff;
  background-color: #9713cf;
  padding: 10px;
  border-radius: 5px;
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: space-between; /* <-- separa o bloco esquerdo do ícone */
  gap: 75px;
  position: relative;
  font-size: 13px;
}

.link-content {
  display: flex;
  align-items: center;
  gap: 180px;
  flex-grow: 1; /*permite que o conteúdo ocupe o espaço disp. proporcionalmente.*/
}

.link-content i{
  font-size: 20px;
}

.links a:hover {
  background-color: #7d0faa;
  box-shadow: 0 0 10px rgba(160, 50, 220, 0.5);
  cursor: pointer;
}

/* card minha trajetoria */
.card {
  width: 100%;
  background-color: #9713cf;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(160, 50, 220, 0.5);
  font-size: 13px;
  margin-bottom: 18px;
  margin-top: 18px;
}

.card-header {
  text-decoration: none;
  background-color: #9713cf;
  color: #ffffff;
  padding: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.card-header-left {
  display: flex;
  align-items: center;
  gap: 200px;
}

.card-content {
  background-color: #9713cf;
  padding: 20px;
  line-height: 1.6;
  text-align: justify; /*deixa o texto justificado*/
}

.card-header:hover {
  background-color: #7d0faa;
  box-shadow: 0 0 10px rgba(160, 50, 220, 0.5);
  cursor: pointer;
}

.hidden {
  display: none;
}

.profile-small {
  width: 30px;
  height: 30px;
  border-radius: 50%; /* Deixa redondo */
  object-fit: cover;
  margin-right: 10px;
}

/* icones whts - github e e-mail*/
.icons {
  display: flex;
  justify-content: center; /* Centraliza os ícones */
  gap: 15px; /* Espaçamento entre os ícones */
}

.icons a {
  font-size: 24px; /* Tamanho dos ícones */
  color: #ffffff; /* Cor padrão dos ícones */
  text-decoration: none; /* <--- evita sublinhado */
  transition: color 0.3s; /* Transição suave para a cor */
}

.icons a:hover {
  color: #9713cf;
}


/* rodapé */
.footer {
  text-align: center;
  padding: 10px;
  border-radius: 10px;
  margin-top: auto;
  width: 100%;
  max-width: 600px;
  font-size: 10px;
}

.footer p {
  margin: 8px 0;
}

.footer a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}
.footer i {
  margin-right: 5px;
}

/* responsividade */

@media (max-width: 500px){
  .link-content {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-grow: 1; /*permite que o conteúdo ocupe o espaço disp. proporcionalmente.*/
}

.card-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
}