.main-header {
    background: #111;
    padding: 20px 0;
    border-bottom: 2px solid #7c3aed;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 50px;
}

.logo-text {
    font-size: 22px;
    font-weight: bold;
    color: #fff;
}

.header-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-list a {
    color: #ddd;
    font-weight: 500;
    transition: 0.3s;
}

.nav-list a:hover {
    color: #c084fc;
}

/* Perfil */
.perfil-menu {
    position: relative;
    margin-left: 15px;
}

.perfil-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    object-fit: cover;
}

.perfil-dropdown {
    position: absolute;
    top: 50px;
    right: 0;
    background: #fff;
    width: 180px;
    display: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    opacity: 0;
    transform: translateY(-10px);
    transition: 0.3s ease;
}

.perfil-dropdown.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.perfil-dropdown-header {
    padding: 10px;
    text-align: center;
    border-bottom: 1px solid #eee;
    background: #fafafa;
}

.perfil-dropdown-header img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin-bottom: 5px;
}

.perfil-dropdown a {
    display: block;
    padding: 10px;
    color: #333;
}

.perfil-dropdown a:hover {
    background: #7c3aed;
    color: #fff;
}
