
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
  }

  body {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, #045a6b, #022c36); /*Azul petrólio suave*/
    /* background: linear-gradient(to bottom, #d68543, #4d4347); laranja neon */
    
    padding: 20px;
  }

  .container {
    width: 100%;
    max-width: 360px;
    text-align: center;
    color: white;
  }

  .perfil img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.3);
    margin-bottom: 12px;
  }

  .perfil h1 {
    font-size: 22px;
    margin-bottom: 6px;
    font-weight: bold;
  }

  .perfil p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 35px;
  }

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

  .links a {
    background: white;
    color: #333;
    text-decoration: none;
    padding: 16px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: bold;
    transition: 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }

  .links a:hover {
    transform: translateY(-3px);
    background: #0b6f86;
    color: white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  }

  .redes {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    gap: 25px;
  }

  .redes a {
    color: white;
    font-size: 24px;
    transition: 0.3s;
  }

  .redes a:hover {
    transform: scale(1.15);
    opacity: 0.8;
  }

  @media (max-width: 420px) {
    .links a {
      padding: 14px;
      font-size: 15px;
    }

    .perfil h1 {
      font-size: 20px;
    }
  }
  
  
  /* 
  Efeito ao carregar a página 
  body {
  animation: fadeIn 5.5s ease;
  }

  @keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
*/
    
    
    
    
    
  
