*{
    text-align: center;
    list-style: none;
}


body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(160deg, #0b0c2a, #1e003e);
    color: #e0e0f0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }


 header img {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    object-fit: cover;
    object-position: 50% 30%;
    border: 3px solid #8a2be2;
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.6);
    margin-bottom: 20px;
  }
  
  .description {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .description input[type="button"] {
    background-color: transparent;
    color: #e0e0f0;
    border: 2px solid #8a2be2;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
  }
  
  .description input[type="button"]:hover {
    background-color: #8a2be2;
    color: #fff;
    box-shadow: 0 0 10px #8a2be2;
  }
  
  main ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
  }
  
  main ul li {
    margin: 10px 0;
    font-size: 1.2rem;
    color: #bfaeff;
    transition: color 0.3s, transform 0.3s;
    cursor: pointer;
  }
  
  main ul li:hover {
    color: #e0b3ff;
    transform: scale(1.1);
  }
  
  footer {
    margin-top: 40px;
    font-size: 0.9rem;
    color: #8884c9;
    text-align: center;
  }

  main ul li a {
    text-decoration: none;
    color: #bfaeff;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s, transform 0.3s;
  }
  
  main ul li a:hover {
    color: #e0b3ff;
    transform: scale(1.05);
  }
  
  main ul li i {
    font-size: 1.4rem;
  }
  

  body.light-theme {
    background: #f1f5f9;
    color: #212529;
}

/* Adicional: deixar botão legível no tema claro */
body.light-theme .description input[type="button"] {
    color: #212529;
    border-color: #6c63ff;
}

body.light-theme .description input[type="button"]:hover {
    background-color: #6c63ff;
    color: #fff;
}

/* Links no tema claro */
body.light-theme main ul li a {
    color: #4b3d91;
}

body.light-theme main ul li a:hover {
    color: #3b2d7f;
}
