/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  height: 100%; /* Garante que o html tenha 100% da altura da viewport */
  margin: 0; /* Remove margem padrão do html */
  /* Removido o background daqui */
  /* background: url('Kerolay3.jpg') center center / cover no-repeat; */
}

body {
    min-height: 100vh; /* Garante que a área visível seja pelo menos a altura da tela */
    height: 100%; /* Isso faz a área do conteúdo esticar pela altura do html */
    margin: 0; /* Tira qualquer espaço extra */

    /* Aqui é onde colocamos a imagem de fundo */
    background-image: url('5CBDB8F8-0391-4421-97EF-71DBC572FC2A.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    /* Mantenha as outras linhas que já estão aqui, como display, flex-direction, etc. */
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative; /* Mantenha isso */
    /* ... outras linhas ... */
  }

/* Camada semitransparente por cima do fundo para destaque */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* Garante que essa camada escura cubra toda a altura do body */
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 1;
}

/* Container principal */
.container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 500px;
  padding: 20px;
  text-align: center;
  color: #ffffff;
  margin: 0 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Foto de perfil */
.profile-pic {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 3px solid #ffffff;
  object-fit: cover;
  margin: 0 auto 20px;
  display: block;
}

/* Nome e descrição */
h1 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
p.description {
  font-size: 1.1rem;
  margin-bottom: 0;
  line-height: 1.4;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Botões de link */
.links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 10px;
  margin-top: 50px;
  margin-bottom: 250px;
}

.links a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  text-decoration: none;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px 20px;
  border-radius: 30px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.links a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Ícones dentro dos botões */
.links i {
  font-size: 1.4rem;
}

/* Estilo para a pequena imagem de perfil nos botões */
.button-icon-pic {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 5px;
}

/* Responsividade */
@media (max-width: 480px) {
  .container {
    padding: 15px;
    margin: 0 10px;
  }

  h1 {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }

  p.description {
    font-size: 1rem;
    margin-bottom: 0;
  }

  .links {
    gap: 5px;
    margin-top: 40px;
    margin-bottom: 180px;
  }

  .links a {
    font-size: 1rem;
    padding: 12px 16px;
  }

  .profile-pic {
    width: 130px;
    height: 130px;
    margin-bottom: 15px;
  }

  .links i {
    font-size: 1.2rem;
  }
}

/* Ajustes para telas muito pequenas */
@media (max-width: 360px) {
  .container {
    padding: 10px;
    margin: 5px;
  }

  h1 {
    font-size: 1.6rem;
  }

  p.description {
    font-size: 0.9rem;
    margin-bottom: 0;
  }

  .profile-pic {
    width: 110px;
    height: 110px;
    margin-bottom: 8px;
  }

  .links a {
    font-size: 0.9rem;
    padding: 10px 14px;
  }

  .links {
    gap: 4px;
    margin-top: 30px;
    margin-bottom: 160px;
  }
}

/* Ajustes para telas maiores */
@media (min-width: 768px) {
  .container {
    max-width: 600px;
  }

  .profile-pic {
    width: 180px;
    height: 180px;
  }

  h1 {
    font-size: 2.2rem;
  }

  p.description {
    font-size: 1.2rem;
    margin-bottom: 0;
  }

  .links a {
    font-size: 1.2rem;
    padding: 16px 24px;
  }

  .links {
    gap: 12px;
    margin-top: 55px;
    margin-bottom: 280px;
  }
}

/* Estilo para o Footer */
footer {
  text-align: center;
  padding: 20px 0;
  color: #ffffff;
  z-index: 2;
  position: relative;
}

footer p {
  font-size: 0.9rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
} 