@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap");

* {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #e0f7fa, #fefce8); /* Um gradiente suave e acolhedor */
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100dvh;
  padding: 20px;
  font-size: 65.5%;
}

.container {
  width: 100%;  
  max-width: 90dvw;
  min-height: 50dvh;
  text-align: center;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.profile img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.profile h1 {
  font-size: 2rem;
  font-weight: 600;
  margin-top: 15px;
  color: #2c3e50;
}

.profile p {
  font-size: 1rem;
  color: #555;
  margin-top: 5px;
  margin-bottom: 30px;
}

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

.link {
  display: flex;
  align-items: center;
  padding:20px;
  background-color: #ffffff;  
  border-radius: 12px;
  text-decoration: none;
  color: #333;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;

  /* Para a animação do JS */
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.5s forwards;
}

.link:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.link i {
  font-size: 1.5rem;
  width: 40px; /* Alinha o texto mesmo com ícones de larguras diferentes */
  text-align: center;
  margin-right: 15px;
}
.link span{
  font-size: clamp(1rem,1.5vw,2rem);
}

.emoji-icon {
  font-size: 1.8rem; /* Ajuste o tamanho do emoji se necessário */
  width: 40px;
  margin-right: 15px;
}

footer {
  margin-top: 30px;
  font-size: 0.9rem;
  color: #777;
}

/* Animação de entrada dos links */
@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Ajustes para telas menores (celulares) */
@media (max-width: 480px) {
  .profile h1 {
    font-size: 1.5rem;
  }
  .profile p {
    font-size: 0.9rem;
  }
  .link{
    padding: 25px 20px;
  }
  
}
