/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
  margin: 0;
}

body {
  min-height: 100vh;
  height: 100%;
  margin: 0;
  background-image: url('IMG_3945.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* 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;
  }
}

@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;
  }
}

@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;
  }
} 