body {
    font-family: Arial, sans-serif;
    background-color: #0A0A0A;
    color: #FFFFFF;
    text-align: center;
    margin: 0;
    padding: 0;
    cursor: url(img/cusorseta.png), auto;
}
  
a {
    cursor: pointer;
}

header {
    background-color: #0a0f63;
    padding: 20px;
}
  
nav {
    background: linear-gradient(to right, #0600ab, #067eef);
    position: fixed;
    top: 0;
    width: 100%;
    padding: 10px 0;
    z-index: 1000;
}
  
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
  
nav ul li {
    display: inline-block;
    position: relative;
    margin: 0 15px;
}
  
nav ul li a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 18px;
    padding: 10px;
    display: block;
}

.dropdown-content {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    background-color: #1a51aa;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
    text-align: left;
    transform: translateY(-10px);
    border-radius: 10px;
    overflow: hidden;
}
  
.dropdown-content {
    border-radius: 10px;
    overflow: hidden;
}

.dropdown-content li a {
    border-radius: 0; 
}
  
.dropdown:hover .dropdown-content {
    visibility: visible;
    animation: dropdownBounce 0.4s ease forwards;
}

.profile, .content, .projects {
    margin-top: 60px;
}

/* Perfil */
.profile {
    margin: 20px;
    text-align: center;
}

.profile img {
    border-radius: 50%;
    width: 300px;
    height: 300px;
    border: 3px solid #007BFF;
}

@keyframes dropdownBounce {
    0% {
        transform: translateY(-10px);
        opacity: 0;
    }
    60% {
        transform: translateY(5px);
        opacity: 1;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Seções */
.content, .projects {
    padding: 20px;
    background-color: #0a0f63;
    margin: 20px;
    border-radius: 10px;
}

footer {
    background: linear-gradient(to right, #0600ab, #067eef);
    padding: 10px;
    text-align: center;
    bottom: 0;
    width: 100%;
}
